Reference
Remy Reference/agent/createGoogleDoc
?

createGoogleDoc

Create a new Google Document and optionally populate it with content.
mindstudio.createGoogleDoc({ title, text, textType }) → Result

Create a new Google Document and optionally populate it with content.

Parameters
title
string
RequiredTitle for the new document
text
string
RequiredDocument body content
connectionId
string
Google OAuth connection ID
textType
string
RequiredFormat of the text field: "plain", "html", or "markdown"
plainhtmlmarkdown
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.createGoogleDoc({
  title: /* ... */,
  text: /* ... */,
  textType: /* ... */
});