Skip to content

Commit dbaa090

Browse files
authored
Enhance Google Drive component: Added 'Include Items From All Drives'… (#20266)
* Enhance Google Drive component: Added 'Include Items From All Drives' option to list files action and updated version to 0.2.0. Bumped package version to 1.5.3. * Update Google Drive component versions to reflect recent changes across multiple actions and sources. Bumped versions for actions including 'Add Comment', 'Share File or Folder', 'Copy File', 'Create New File From Template', and others, ensuring consistency and incorporating enhancements. Updated source versions for 'Changes to Files in Drive', 'New Access Proposal', and 'New Files (Instant)', among others, to improve functionality and maintain compatibility.
1 parent f76bf2e commit dbaa090

File tree

57 files changed

+85
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+85
-67
lines changed

components/google_drive/actions/add-comment/add-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_drive-add-comment",
55
name: "Add Comment",
66
description: "Add an unanchored comment to a Google Doc (general feedback, no text highlighting). [See the documentation](https://developers.google.com/workspace/drive/api/reference/rest/v3/comments/create)",
7-
version: "0.1.2",
7+
version: "0.1.3",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/google_drive/actions/add-file-sharing-preference/add-file-sharing-preference.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default {
2020
name: "Share File or Folder",
2121
description:
2222
"Add a [sharing permission](https://support.google.com/drive/answer/7166529) to the sharing preferences of a file or folder and provide a sharing URL. [See the documentation](https://developers.google.com/drive/api/v3/reference/permissions/create)",
23-
version: "0.2.10",
23+
version: "0.2.11",
2424
annotations: {
2525
destructiveHint: false,
2626
openWorldHint: true,

components/google_drive/actions/copy-file/copy-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_drive-copy-file",
55
name: "Copy File",
66
description: "Create a copy of the specified file. [See the documentation](https://developers.google.com/drive/api/v3/reference/files/copy) for more information",
7-
version: "0.1.17",
7+
version: "0.1.18",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/google_drive/actions/create-file-from-template/create-file-from-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
key: "google_drive-create-file-from-template",
1010
name: "Create New File From Template",
1111
description: "Create a new Google Docs file from a template. Optionally include placeholders in the template document that will get replaced from this action. [See documentation](https://www.npmjs.com/package/google-docs-mustaches)",
12-
version: "0.1.20",
12+
version: "0.1.21",
1313
annotations: {
1414
destructiveHint: true,
1515
openWorldHint: true,

components/google_drive/actions/create-file-from-text/create-file-from-text.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "google_drive-create-file-from-text",
66
name: "Create New File From Text",
77
description: "Create a new file from plain text. [See the documentation](https://developers.google.com/drive/api/v3/reference/files/create) for more information",
8-
version: "0.2.10",
8+
version: "0.2.11",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/google_drive/actions/create-folder/create-folder.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
key: "google_drive-create-folder",
1414
name: "Create Folder",
1515
description: "Create a new empty folder. [See the documentation](https://developers.google.com/drive/api/v3/reference/files/create) for more information",
16-
version: "0.1.18",
16+
version: "0.1.19",
1717
annotations: {
1818
destructiveHint: false,
1919
openWorldHint: true,

components/google_drive/actions/create-shared-drive/create-shared-drive.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_drive-create-shared-drive",
55
name: "Create Shared Drive",
66
description: "Create a new shared drive. [See the documentation](https://developers.google.com/drive/api/v3/reference/drives/create) for more information",
7-
version: "0.1.18",
7+
version: "0.1.19",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/google_drive/actions/delete-comment/delete-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_drive-delete-comment",
55
name: "Delete Comment",
66
description: "Delete a specific comment (Requires ownership or permissions). [See the documentation](https://developers.google.com/workspace/drive/api/reference/rest/v3/comments/delete)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

components/google_drive/actions/delete-file/delete-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Delete File",
66
description:
77
"Permanently delete a file or folder without moving it to the trash. [See the documentation](https://developers.google.com/drive/api/v3/reference/files/delete) for more information",
8-
version: "0.1.18",
8+
version: "0.1.19",
99
annotations: {
1010
destructiveHint: true,
1111
openWorldHint: true,

components/google_drive/actions/delete-reply/delete-reply.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "google_drive-delete-reply",
55
name: "Delete Reply",
66
description: "Delete a reply on a specific comment. [See the documentation](https://developers.google.com/workspace/drive/api/reference/rest/v3/replies/delete) for more information",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

0 commit comments

Comments
 (0)