You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/google_docs/actions/get-document/get-document.mjs
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
key: "google_docs-get-document",
5
5
name: "Get Document",
6
6
description: "Get the contents of the latest version of a document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/get)",
7
-
version: "0.1.4",
7
+
version: "0.1.5",
8
8
type: "action",
9
9
props: {
10
10
googleDocs,
@@ -14,9 +14,15 @@ export default {
14
14
"docId",
15
15
],
16
16
},
17
+
includeTabsContent: {
18
+
type: "boolean",
19
+
label: "Include Tabs Content",
20
+
description: "Whether to populate the `Document.tabs` field instead of the text content fields like `body` and `documentStyle` on `Document`",
0 commit comments