Skip to content

Commit 2302b66

Browse files
authored
Enhance Gmail component with thread message listing functionality (#18984)
* Enhance Gmail component with thread message listing functionality - Added a new action to list messages within a specific thread. - Introduced `listThreads` and `getThread` methods to facilitate thread message retrieval. - Updated version to 1.4.0 to reflect the new features. * Update version numbers for multiple Gmail actions and sources - Bumped version numbers for various actions, including: - Add Label to Email (0.0.14 to 0.0.15) - Approve Workflow (0.0.11 to 0.0.12) - Archive Email (0.0.9 to 0.0.10) - Create Draft (0.1.9 to 0.1.10) - Create Label (0.0.3 to 0.0.4) - Delete Email (0.0.3 to 0.0.4) - Download Attachment (0.0.14 to 0.0.15) - Find Email (0.1.8 to 0.1.9) - Get Send As Alias (0.0.3 to 0.0.4) - List Labels (0.0.10 to 0.0.11) - List Send As Aliases (0.0.3 to 0.0.4) - Remove Label from Email (0.0.12 to 0.0.13) - Send Email (0.2.1 to 0.2.2) - Update Org Signature (0.0.13 to 0.0.14) - Update Primary Signature (0.0.13 to 0.0.14) - New Attachment Received (0.2.2 to 0.2.3) - New Email Matching Search (0.1.2 to 0.1.3) - New Email Received (0.3.2 to 0.3.3) - New Labeled Email (0.1.2 to 0.1.3) - New Sent Email (0.1.2 to 0.1.3)
1 parent 207d1ef commit 2302b66

File tree

23 files changed

+98
-23
lines changed

23 files changed

+98
-23
lines changed

components/gmail/actions/add-label-to-email/add-label-to-email.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "gmail-add-label-to-email",
55
name: "Add Label to Email",
66
description: "Add label(s) to an email message. [See the docs](https://developers.google.com/gmail/api/reference/rest/v1/users.messages/modify)",
7-
version: "0.0.14",
7+
version: "0.0.15",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

components/gmail/actions/approve-workflow/approve-workflow.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "gmail-approve-workflow",
55
name: "Approve Workflow",
66
description: "Suspend the workflow until approved by email. [See the documentation](https://pipedream.com/docs/code/nodejs/rerun#flowsuspend)",
7-
version: "0.0.11",
7+
version: "0.0.12",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/gmail/actions/archive-email/archive-email.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "gmail-archive-email",
66
name: "Archive Email",
77
description: "Archive an email message. [See the documentation](https://developers.google.com/gmail/api/reference/rest/v1/users.messages/modify)",
8-
version: "0.0.9",
8+
version: "0.0.10",
99
annotations: {
1010
destructiveHint: true,
1111
openWorldHint: true,

components/gmail/actions/create-draft/create-draft.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "gmail-create-draft",
77
name: "Create Draft",
88
description: "Create a draft from your Google Workspace email account. [See the documentation](https://developers.google.com/gmail/api/reference/rest/v1/users.drafts/create)",
9-
version: "0.1.9",
9+
version: "0.1.10",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/gmail/actions/create-label/create-label.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "gmail-create-label",
77
name: "Create Label",
88
description: "Create a new label in the connected account. [See the documentation](https://developers.google.com/workspace/gmail/api/reference/rest/v1/users.labels/create)",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/gmail/actions/delete-email/delete-email.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "gmail-delete-email",
66
name: "Delete Email",
77
description: "Moves the specified message to the trash. [See the documentation](https://developers.google.com/workspace/gmail/api/reference/rest/v1/users.messages/trash)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
annotations: {
1010
destructiveHint: true,
1111
openWorldHint: true,

components/gmail/actions/download-attachment/download-attachment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "gmail-download-attachment",
88
name: "Download Attachment",
99
description: "Download an attachment by attachmentId to the /tmp directory. [See the documentation](https://developers.google.com/gmail/api/reference/rest/v1/users.messages.attachments/get)",
10-
version: "0.0.14",
10+
version: "0.0.15",
1111
annotations: {
1212
destructiveHint: false,
1313
openWorldHint: true,

components/gmail/actions/find-email/find-email.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "gmail-find-email",
66
name: "Find Email",
77
description: "Find an email using Google's Search Engine. [See the docs](https://developers.google.com/gmail/api/reference/rest/v1/users.messages/list)",
8-
version: "0.1.8",
8+
version: "0.1.9",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/gmail/actions/get-send-as-alias/get-send-as-alias.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "gmail-get-send-as-alias",
66
name: "Get Send As Alias",
77
description: "Get a send as alias for the authenticated user. [See the documentation](https://developers.google.com/workspace/gmail/api/reference/rest/v1/users.settings.sendAs/get)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/gmail/actions/list-labels/list-labels.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "gmail-list-labels",
55
name: "List Labels",
66
description: "List all the existing labels in the connected account. [See the docs](https://developers.google.com/gmail/api/reference/rest/v1/users.labels/list)",
7-
version: "0.0.10",
7+
version: "0.0.11",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

0 commit comments

Comments
 (0)