Commit 19102a1
authored
Enhance Google Drive component with new comment and reply actions (#18959)
* Enhance Google Drive component with new comment and reply actions
- Added new actions: Get Comment By ID, Get Reply By ID, List Replies, Update Comment, Update Reply, and Delete Reply.
- Introduced methods for managing replies, including listing, fetching, updating, and deleting replies.
- Updated existing methods to support new functionalities, including creating comments with optional anchor properties.
- Bumped package version to 1.2.0 for Google Drive component and 0.1.0 for the Add Comment action.
* Update Google Drive component versions for various actions and sources
- Bumped version numbers for multiple Google Drive actions, including:
- Add File Sharing Preference (0.2.7 to 0.2.8)
- Copy File (0.1.14 to 0.1.15)
- Create File From Template (0.1.15 to 0.1.16)
- Create File From Text (0.2.7 to 0.2.8)
- Create Folder (0.1.15 to 0.1.16)
- Create Shared Drive (0.1.15 to 0.1.16)
- Delete Comment (0.0.3 to 0.0.4)
- Delete File (0.1.15 to 0.1.16)
- Delete Shared Drive (0.1.14 to 0.1.15)
- Download File (0.1.17 to 0.1.18)
- Find File (0.1.14 to 0.1.15)
- Find Folder (0.1.14 to 0.1.15)
- Find Forms (0.0.15 to 0.0.16)
- Find Spreadsheets (0.1.14 to 0.1.15)
- Get Current User (0.0.1 to 0.0.2)
- Get File By ID (0.0.11 to 0.0.12)
- Get Folder ID for Path (0.1.16 to 0.1.17)
- Get Shared Drive (0.1.14 to 0.1.15)
- List Access Proposals (0.0.7 to 0.0.8)
- List Comments (0.0.3 to 0.0.4)
- List Files (0.1.18 to 0.1.19)
- Move File (0.1.14 to 0.1.15)
- Move File to Trash (0.1.14 to 0.1.15)
- Reply to Comment (0.0.3 to 0.0.4)
- Resolve Access Proposal (0.0.7 to 0.0.8)
- Resolve Comment (0.0.3 to 0.0.4)
- Search Shared Drives (0.1.15 to 0.1.16)
- Update File (2.0.6 to 2.0.7)
- Update Shared Drive (0.1.14 to 0.1.15)
- Upload File (2.0.7 to 2.0.8)
- Updated version numbers for various sources, including:
- Changes to Files in Drive (0.0.1 to 0.0.2)
- Changes to Specific Files (0.3.1 to 0.3.2)
- Changes to Specific Files (Shared Drive) (0.3.1 to 0.3.2)
- New Access Proposal (0.0.6 to 0.0.7)
- New Files (Instant) (0.2.1 to 0.2.2)
- New Files (Shared Drive) (0.1.1 to 0.1.2)
- New or Modified Comments (1.0.10 to 1.0.11)
- New or Modified Files (0.4.1 to 0.4.2)
- New or Modified Folders (0.2.3 to 0.2.4)
- New Shared Drive (0.1.13 to 0.1.14)
- New Spreadsheet (0.1.16 to 0.1.17)
This update ensures all components are aligned with the latest versioning standards.
* Refactor Google Drive reply actions to improve functionality
- Removed unused `driveId` parameter from the `options` method in the `google_drive.app.mjs` file.
- Updated `destructiveHint` to `true` for the `delete-reply` action and set `readOnlyHint` to `false` for both `delete-reply` and `update-reply` actions, allowing for more accurate action descriptions and user interactions.1 parent 9c78822 commit 19102a1
File tree
50 files changed
+559
-50
lines changed- components/google_drive
- actions
- add-comment
- add-file-sharing-preference
- copy-file
- create-file-from-template
- create-file-from-text
- create-folder
- delete-comment
- delete-file
- delete-reply
- download-file
- find-file
- find-folder
- find-forms
- find-spreadsheets
- get-comment
- get-current-user
- get-file-by-id
- get-folder-id-for-path
- get-reply
- list-access-proposals
- list-comments
- list-files
- list-replies
- move-file-to-trash
- move-file
- reply-to-comment
- resolve-access-proposal
- resolve-comment
- update-comment
- update-file
- update-reply
- upload-file
- sources
- changes-to-files-in-drive
- changes-to-specific-files
- new-access-proposal
- new-files-instant
- new-or-modified-comments
- new-or-modified-files
- new-or-modified-folders
- new-spreadsheet
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
50 files changed
+559
-50
lines changedLines changed: 11 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
38 | 44 | | |
39 | 45 | | |
40 | 46 | | |
41 | | - | |
42 | 47 | | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
43 | 52 | | |
44 | 53 | | |
45 | 54 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
Lines changed: 69 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
0 commit comments