diff --git a/components/gmail/actions/add-label-to-email/add-label-to-email.mjs b/components/gmail/actions/add-label-to-email/add-label-to-email.mjs index 9942d04a8bbbe..70360b08f2284 100644 --- a/components/gmail/actions/add-label-to-email/add-label-to-email.mjs +++ b/components/gmail/actions/add-label-to-email/add-label-to-email.mjs @@ -4,7 +4,7 @@ export default { key: "gmail-add-label-to-email", name: "Add Label to Email", description: "Add a label to an email message. [See the docs](https://developers.google.com/gmail/api/reference/rest/v1/users.messages/modify)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { gmail, diff --git a/components/gmail/actions/find-email/find-email.mjs b/components/gmail/actions/find-email/find-email.mjs index df6586ce52b0d..c587a959b3713 100644 --- a/components/gmail/actions/find-email/find-email.mjs +++ b/components/gmail/actions/find-email/find-email.mjs @@ -4,7 +4,7 @@ export default { key: "gmail-find-email", name: "Find Email", description: "Find an email using Google's Search Engine. [See the docs](https://developers.google.com/gmail/api/reference/rest/v1/users.messages/list)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { gmail, diff --git a/components/gmail/actions/send-email/send-email.mjs b/components/gmail/actions/send-email/send-email.mjs index 8d5d5242a07b7..f2506b21d53c5 100644 --- a/components/gmail/actions/send-email/send-email.mjs +++ b/components/gmail/actions/send-email/send-email.mjs @@ -6,7 +6,7 @@ export default { key: "gmail-send-email", name: "Send Email", description: "Send an email from your Google Workspace email account", - version: "0.0.1", + version: "0.0.2", type: "action", props: { gmail, diff --git a/components/gmail/sources/new-attachment/new-attachment.mjs b/components/gmail/sources/new-attachment/new-attachment.mjs index 1f29575023d94..f9d8a44691276 100644 --- a/components/gmail/sources/new-attachment/new-attachment.mjs +++ b/components/gmail/sources/new-attachment/new-attachment.mjs @@ -5,7 +5,7 @@ export default { key: "gmail-new-attachment", name: "New Attachment", description: "Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/gmail/sources/new-email/new-email.mjs b/components/gmail/sources/new-email/new-email.mjs index f8af9af72fa25..0dfd10c2c6e45 100644 --- a/components/gmail/sources/new-email/new-email.mjs +++ b/components/gmail/sources/new-email/new-email.mjs @@ -5,7 +5,7 @@ export default { key: "gmail-new-email", name: "New Email", description: "Emit new event when an email is received. This source is capped at 100 max new messages per run.", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/gmail_custom_oauth/actions/add-label-to-email/add-label-to-email.mjs b/components/gmail_custom_oauth/actions/add-label-to-email/add-label-to-email.mjs index a2aa1e8931445..b585821491a83 100644 --- a/components/gmail_custom_oauth/actions/add-label-to-email/add-label-to-email.mjs +++ b/components/gmail_custom_oauth/actions/add-label-to-email/add-label-to-email.mjs @@ -10,4 +10,5 @@ overrideApp(base); export default { ...base, key: "gmail_custom_oauth-add-label-to-email", + version: "0.0.2", }; diff --git a/components/gmail_custom_oauth/actions/find-email/find-email.mjs b/components/gmail_custom_oauth/actions/find-email/find-email.mjs new file mode 100644 index 0000000000000..6ffb1b5b93da4 --- /dev/null +++ b/components/gmail_custom_oauth/actions/find-email/find-email.mjs @@ -0,0 +1,14 @@ +/* eslint-disable pipedream/required-properties-name */ +/* eslint-disable pipedream/required-properties-description */ +/* eslint-disable pipedream/required-properties-version */ +/* eslint-disable pipedream/required-properties-type */ +import base from "../../../gmail/actions/find-email/find-email.mjs"; +import overrideApp from "../../common/override-app.mjs"; + +overrideApp(base); + +export default { + ...base, + key: "gmail_custom_oauth-find-email", + version: "0.0.3", +}; diff --git a/components/gmail_custom_oauth/actions/send-email/send-email.mjs b/components/gmail_custom_oauth/actions/send-email/send-email.mjs index ca65544e0f519..bb66b91cb4394 100644 --- a/components/gmail_custom_oauth/actions/send-email/send-email.mjs +++ b/components/gmail_custom_oauth/actions/send-email/send-email.mjs @@ -10,4 +10,5 @@ overrideApp(base); export default { ...base, key: "gmail_custom_oauth-send-email", + version: "0.0.2", }; diff --git a/components/gmail_custom_oauth/gmail_custom_oauth.app.mjs b/components/gmail_custom_oauth/gmail_custom_oauth.app.mjs index c260cee3f9d61..7bb184b18ea20 100644 --- a/components/gmail_custom_oauth/gmail_custom_oauth.app.mjs +++ b/components/gmail_custom_oauth/gmail_custom_oauth.app.mjs @@ -6,7 +6,8 @@ export default { type: "app", app: "gmail_custom_oauth", methods: { - _accessToken(){ + ...base.methods, + _accessToken() { return this.$auth.oauth_access_token; }, _client() { diff --git a/components/gmail_custom_oauth/sources/new-attachment/new-attachment.mjs b/components/gmail_custom_oauth/sources/new-attachment/new-attachment.mjs index 6183329439b7e..3862b8efdcbc7 100644 --- a/components/gmail_custom_oauth/sources/new-attachment/new-attachment.mjs +++ b/components/gmail_custom_oauth/sources/new-attachment/new-attachment.mjs @@ -10,4 +10,5 @@ overrideApp(base); export default { ...base, key: "gmail_custom_oauth-new-attachment", + version: "0.0.2", }; diff --git a/components/gmail_custom_oauth/sources/new-email/new-email.mjs b/components/gmail_custom_oauth/sources/new-email/new-email.mjs index 5b5333204b27d..1321c80a9db08 100644 --- a/components/gmail_custom_oauth/sources/new-email/new-email.mjs +++ b/components/gmail_custom_oauth/sources/new-email/new-email.mjs @@ -10,4 +10,5 @@ overrideApp(base); export default { ...base, key: "gmail_custom_oauth-new-email", + version: "0.0.2", };