Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions components/google_sheets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/google_sheets",
"version": "0.9.0",
"version": "0.9.1",
"description": "Pipedream Google_sheets Components",
"main": "google_sheets.app.mjs",
"keywords": [
Expand All @@ -11,7 +11,7 @@
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"dependencies": {
"@googleapis/sheets": "^0.3.0",
"@pipedream/google_drive": "^1.1.0",
"@pipedream/google_drive": "^1.1.1",
"@pipedream/platform": "^3.1.0",
"lodash": "^4.17.21",
"uuidv4": "^6.2.6",
Expand Down
6 changes: 4 additions & 2 deletions components/google_sheets/sources/common/http-based/sheet.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,21 @@
import { v4 as uuid } from "uuid";

import base from "./base.mjs";
import drive from "./drive.mjs";

/**
* This source watches for changes to a specific spreadsheet in the user's Google Drive.
*/
export default {
...base,
methods: {
...drive.methods,
...base.methods,
async activateHook(channelID) {
return this.googleSheets.activateFileHook(
return this.googleSheets.activateHook(
channelID,
this.http.endpoint,
this.getSheetId(),
this.googleSheets.getDriveId(this.watchedDrive),
);
},
async getAllWorksheetIds(sheetID) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "google_sheets-new-comment",
name: "New Comment (Instant)",
description: "Emit new event each time a comment is added to a spreadsheet.",
version: "0.1.1",
version: "0.1.2",
dedupe: "unique",
type: "source",
methods: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
key: "google_sheets-new-row-added",
name: "New Row Added (Instant)",
description: "Emit new event each time a row or rows are added to the bottom of a spreadsheet.",
version: "0.2.1",
version: "0.2.2",
dedupe: "unique",
type: "source",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
type: "source",
name: "New Updates (Instant)",
description: "Emit new event each time a row or cell is updated in a spreadsheet.",
version: "0.3.1",
version: "0.3.2",
dedupe: "unique",
props: {
...httpBase.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
type: "source",
name: "New Worksheet (Instant)",
description: "Emit new event each time a new worksheet is created in a spreadsheet.",
version: "0.2.1",
version: "0.2.2",
dedupe: "unique",
hooks: {
...httpBase.hooks,
Expand Down
19 changes: 8 additions & 11 deletions pnpm-lock.yaml

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

Loading