Skip to content

Commit 8da5f82

Browse files
committed
versions
1 parent a2a0672 commit 8da5f82

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

components/google_docs/actions/append-image/append-image.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_docs-append-image",
55
name: "Append Image to Document",
66
description: "Appends an image to the end of a document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#InsertInlineImageRequest)",
7-
version: "0.0.7",
7+
version: "0.0.8",
88
type: "action",
99
props: {
1010
googleDocs,

components/google_docs/actions/append-text/append-text.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_docs-append-text",
55
name: "Append Text",
66
description: "Append text to an existing document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#InsertTextRequest)",
7-
version: "0.1.6",
7+
version: "0.1.7",
88
type: "action",
99
props: {
1010
googleDocs,

components/google_docs/actions/create-document-from-template/create-document-from-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
...others,
1414
key: "google_docs-create-document-from-template",
1515
name: "Create New Document From Template",
16-
version: "0.0.2",
16+
version: "0.0.3",
1717
description,
1818
type,
1919
props: {

components/google_docs/actions/create-document/create-document.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_docs-create-document",
55
name: "Create a New Document",
66
description: "Create a new document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/create)",
7-
version: "0.1.6",
7+
version: "0.1.7",
88
type: "action",
99
props: {
1010
googleDocs,

components/google_docs/actions/find-document/find-document.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
...others,
1515
key: "google_docs-find-document",
1616
name: "Find Document",
17-
version: "0.0.2",
17+
version: "0.0.3",
1818
description,
1919
type,
2020
props: {

components/google_docs/actions/get-document/get-document.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "google_docs-get-document",
66
name: "Get Document",
77
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)",
8-
version: "0.1.6",
8+
version: "0.1.7",
99
type: "action",
1010
props: {
1111
googleDocs,

components/google_docs/actions/replace-image/replace-image.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_docs-replace-image",
55
name: "Replace Image",
66
description: "Replace image in a existing document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#ReplaceImageRequest)",
7-
version: "0.0.7",
7+
version: "0.0.8",
88
type: "action",
99
props: {
1010
googleDocs,

components/google_docs/sources/new-document-created/new-document-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "google_docs-new-document-created",
66
name: "New Document Created (Instant)",
77
description: "Emit new event when a new document is created in Google Docs. [See the documentation](https://developers.google.com/drive/api/reference/rest/v3/changes/watch)",
8-
version: "0.0.4",
8+
version: "0.0.5",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

components/google_docs/sources/new-or-updated-document/new-or-updated-document.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
key: "google_docs-new-or-updated-document",
1010
name: "New or Updated Document (Instant)",
1111
description: "Emit new event when a document is created or updated in Google Docs. [See the documentation](https://developers.google.com/drive/api/reference/rest/v3/changes/watch)",
12-
version: "0.0.4",
12+
version: "0.0.5",
1313
type: "source",
1414
dedupe: "unique",
1515
methods: {

0 commit comments

Comments
 (0)