Skip to content

Commit 8aac563

Browse files
[Google Sheets] add shared drive prop (#15437)
* add shared drive prop * bump versions * make prop optional
1 parent 7f3c8a5 commit 8aac563

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

components/google_sheets/package.json

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

components/google_sheets/sources/common/http-based/base.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ export default {
4141
intervalSeconds: WEBHOOK_SUBSCRIPTION_RENEWAL_SECONDS,
4242
},
4343
},
44+
watchedDrive: {
45+
propDefinition: [
46+
googleSheets,
47+
"watchedDrive",
48+
],
49+
description: "Defaults to My Drive. To select a [Shared Drive](https://support.google.com/a/users/answer/9310351) instead, select it from this list.",
50+
},
51+
4452
sheetID: {
4553
propDefinition: [
4654
googleSheets,

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.4",
9+
version: "0.0.5",
1010
dedupe: "unique",
1111
type: "source",
1212
methods: {

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.8",
11+
version: "0.1.9",
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.6",
12+
version: "0.2.7",
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.9",
12+
version: "0.1.10",
1313
dedupe: "unique",
1414
hooks: {
1515
...httpBase.hooks,

0 commit comments

Comments
 (0)