Skip to content

Commit a34b8f1

Browse files
Moving gmail app prop to the top of the prop def (#16195)
1 parent 7de6b87 commit a34b8f1

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

components/gmail/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/gmail",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"description": "Pipedream Gmail Components",
55
"main": "gmail.app.mjs",
66
"keywords": [

components/gmail/sources/new-attachment-received/new-attachment-received.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ export default {
66
key: "gmail-new-attachment-received",
77
name: "New Attachment Received",
88
description: "Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.",
9-
version: "0.0.8",
9+
version: "0.0.9",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {
13-
...common.props,
1413
gmail,
14+
...common.props,
1515
q: {
1616
propDefinition: [
1717
gmail,

components/gmail/sources/new-email-matching-search/new-email-matching-search.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ export default {
66
key: "gmail-new-email-matching-search",
77
name: "New Email Matching Search",
88
description: "Emit new event when an email matching the search criteria is received. This source is capped at 100 max new messages per run.",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {
13-
...common.props,
1413
gmail,
14+
...common.props,
1515
q: {
1616
propDefinition: [
1717
gmail,

components/gmail/sources/new-labeled-email/new-labeled-email.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ export default {
88
name: "New Labeled Email",
99
description: "Emit new event when a new email is labeled.",
1010
type: "source",
11-
version: "0.0.9",
11+
version: "0.0.10",
1212
dedupe: "unique",
1313
props: {
14-
...common.props,
1514
gmail,
15+
...common.props,
1616
labels: {
1717
propDefinition: [
1818
gmail,

components/gmail/sources/new-sent-email/new-sent-email.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ export default {
66
key: "gmail-new-sent-email",
77
name: "New Sent Email",
88
description: "Emit new event for each new email sent. (Maximum of 100 events emited per execution)",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {
13-
...common.props,
1413
gmail,
14+
...common.props,
1515
q: {
1616
propDefinition: [
1717
gmail,

0 commit comments

Comments
 (0)