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
2 changes: 1 addition & 1 deletion components/google_drive/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/google_drive",
"version": "0.8.6",
"version": "0.8.7",
"description": "Pipedream Google_drive Components",
"main": "google_drive.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
export default {
...common,
key: "google_drive-changes-to-specific-files-shared-drive",
name: "Changes to Specific Files (Shared Drive)",

Check warning on line 28 in components/google_drive/sources/changes-to-specific-files-shared-drive/changes-to-specific-files-shared-drive.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source names should start with "New". See https://pipedream.com/docs/components/guidelines/#source-name
description: "Watches for changes to specific files in a shared drive, emitting an event when a change is made to one of those files",

Check warning on line 29 in components/google_drive/sources/changes-to-specific-files-shared-drive/changes-to-specific-files-shared-drive.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
version: "0.2.3",
version: "0.2.4",
type: "source",
// Dedupe events based on the "x-goog-message-number" header for the target channel:
// https://developers.google.com/drive/api/v3/push#making-watch-requests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
export default {
...changesToSpecificFiles,
key: "google_drive-changes-to-specific-files",
name: "Changes to Specific Files",

Check warning on line 16 in components/google_drive/sources/changes-to-specific-files/changes-to-specific-files.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source names should start with "New". See https://pipedream.com/docs/components/guidelines/#source-name
description: "Watches for changes to specific files, emitting an event when a change is made to one of those files. To watch for changes to [shared drive](https://support.google.com/a/users/answer/9310351) files, use the **Changes to Specific Files (Shared Drive)** source instead.",

Check warning on line 17 in components/google_drive/sources/changes-to-specific-files/changes-to-specific-files.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
version: "0.2.3",
version: "0.2.4",
type: "source",
// Dedupe events based on the "x-goog-message-number" header for the target channel:
// https://developers.google.com/drive/api/v3/push#making-watch-requests
Expand Down
1 change: 1 addition & 0 deletions components/google_drive/sources/common-webhook.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default {
static: {
intervalSeconds: WEBHOOK_SUBSCRIPTION_RENEWAL_SECONDS,
},
hidden: true,
},
},
hooks: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
key: "google_drive-new-files-instant",
name: "New Files (Instant)",
description: "Emit new event when a new file is added in your linked Google Drive",
version: "0.1.10",
version: "0.1.11",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default {
name: "New or Modified Comments (Instant)",
description:
"Emit new event when a comment is created or modified in the selected file",
version: "1.0.2",
version: "1.0.3",
type: "source",
// Dedupe events based on the "x-goog-message-number" header for the target channel:
// https://developers.google.com/drive/api/v3/push#making-watch-requests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default {
key: "google_drive-new-or-modified-files",
name: "New or Modified Files (Instant)",
description: "Emit new event when a file in the selected Drive is created, modified or trashed.",
version: "0.3.3",
version: "0.3.4",
type: "source",
// Dedupe events based on the "x-goog-message-number" header for the target channel:
// https://developers.google.com/drive/api/v3/push#making-watch-requests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default {
key: "google_drive-new-or-modified-folders",
name: "New or Modified Folders (Instant)",
description: "Emit new event when a folder is created or modified in the selected Drive",
version: "0.1.8",
version: "0.1.9",
type: "source",
// Dedupe events based on the "x-goog-message-number" header for the target channel:
// https://developers.google.com/drive/api/v3/push#making-watch-requests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
type: "source",
name: "New Spreadsheet (Instant)",
description: "Emit new event when a new spreadsheet is created in a drive.",
version: "0.1.8",
version: "0.1.9",
props: {
googleDrive: newFilesInstant.props.googleDrive,
db: newFilesInstant.props.db,
http: newFilesInstant.props.http,
drive: newFilesInstant.props.drive,
timer: newFilesInstant.props.timer,
folders: {

Check warning on line 16 in components/google_drive/sources/new-spreadsheet/new-spreadsheet.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop folders must have a label. See https://pipedream.com/docs/components/guidelines/#props
...newFilesInstant.props.folders,
description:
"(Optional) The folders you want to watch. Leave blank to watch for any new spreadsheet in the Drive.",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading