Skip to content

Commit 6ed3018

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-18447
2 parents 38d7917 + b2bbd16 commit 6ed3018

File tree

56 files changed

+912
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+912
-161
lines changed

components/cockpit/cockpit.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export default {
88
console.log(Object.keys(this.$auth));
99
},
1010
},
11-
};
11+
};
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "cratedb_cloud",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/cratedb_cloud",
3+
"version": "0.0.1",
4+
"description": "Pipedream CrateDB Cloud Components",
5+
"main": "cratedb_cloud.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"cratedb_cloud"
9+
],
10+
"homepage": "https://pipedream.com/apps/cratedb_cloud",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@ export default {
88
key: "gmail-new-attachment-received",
99
name: "New Attachment Received",
1010
description: "Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.",
11-
version: "0.2.0",
11+
version: "0.2.1",
1212
type: "source",
1313
dedupe: "unique",
1414
props: {
1515
gmail,
16+
info: {
17+
type: "alert",
18+
alertType: "info",
19+
content: "Note: May not emit events for attachments sent via a Gmail alias. [See issue](https://github.com/PipedreamHQ/pipedream/issues/15309) for more information.",
20+
},
1621
...common.props,
1722
q: {
1823
propDefinition: [

components/google_sheets/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/google_sheets",
3-
"version": "0.8.11",
3+
"version": "0.8.12",
44
"description": "Pipedream Google_sheets Components",
55
"main": "google_sheets.app.mjs",
66
"keywords": [
@@ -11,7 +11,7 @@
1111
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
1212
"dependencies": {
1313
"@googleapis/sheets": "^0.3.0",
14-
"@pipedream/google_drive": "^1.0.4",
14+
"@pipedream/google_drive": "^1.1.0",
1515
"@pipedream/platform": "^3.1.0",
1616
"lodash": "^4.17.21",
1717
"uuidv4": "^6.2.6",

components/google_sheets/sources/new-comment/new-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "google_sheets-new-comment",
77
name: "New Comment (Instant)",
88
description: "Emit new event each time a comment is added to a spreadsheet.",
9-
version: "0.0.10",
9+
version: "0.1.0",
1010
dedupe: "unique",
1111
type: "source",
1212
methods: {

components/google_sheets/sources/new-row-added-polling/new-row-added-polling.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "google_sheets-new-row-added-polling",
99
name: "New Row Added",
1010
description: "Emit new event each time a row or rows are added to the bottom of a spreadsheet.",
11-
version: "0.0.9",
11+
version: "0.1.0",
1212
dedupe: "unique",
1313
type: "source",
1414
props: {

components/google_sheets/sources/new-row-added/new-row-added.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "google_sheets-new-row-added",
99
name: "New Row Added (Instant)",
1010
description: "Emit new event each time a row or rows are added to the bottom of a spreadsheet.",
11-
version: "0.1.17",
11+
version: "0.2.0",
1212
dedupe: "unique",
1313
type: "source",
1414
props: {

components/google_sheets/sources/new-updates/new-updates.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
type: "source",
1010
name: "New Updates (Instant)",
1111
description: "Emit new event each time a row or cell is updated in a spreadsheet.",
12-
version: "0.2.12",
12+
version: "0.3.0",
1313
dedupe: "unique",
1414
props: {
1515
...httpBase.props,

components/google_sheets/sources/new-worksheet/new-worksheet.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
type: "source",
1010
name: "New Worksheet (Instant)",
1111
description: "Emit new event each time a new worksheet is created in a spreadsheet.",
12-
version: "0.1.15",
12+
version: "0.2.0",
1313
dedupe: "unique",
1414
hooks: {
1515
...httpBase.hooks,

0 commit comments

Comments
 (0)