Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/gmail/actions/find-email/find-email.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/gmail/actions/send-email/send-email.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/gmail/sources/new-attachment/new-attachment.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/gmail/sources/new-email/new-email.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ overrideApp(base);
export default {
...base,
key: "gmail_custom_oauth-add-label-to-email",
version: "0.0.2",
};
14 changes: 14 additions & 0 deletions components/gmail_custom_oauth/actions/find-email/find-email.mjs
Original file line number Diff line number Diff line change
@@ -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",
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ overrideApp(base);
export default {
...base,
key: "gmail_custom_oauth-send-email",
version: "0.0.2",
};
3 changes: 2 additions & 1 deletion components/gmail_custom_oauth/gmail_custom_oauth.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ export default {
type: "app",
app: "gmail_custom_oauth",
methods: {
_accessToken(){
...base.methods,
_accessToken() {
return this.$auth.oauth_access_token;
},
_client() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ overrideApp(base);
export default {
...base,
key: "gmail_custom_oauth-new-attachment",
version: "0.0.2",
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ overrideApp(base);
export default {
...base,
key: "gmail_custom_oauth-new-email",
version: "0.0.2",
};