From e1274c5ae206c9aa80c392143a2a3c8f44107694 Mon Sep 17 00:00:00 2001 From: Andrew Chuang Date: Thu, 18 Sep 2025 14:29:48 -0400 Subject: [PATCH 1/2] add debug log --- components/google_my_business/sources/common.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/components/google_my_business/sources/common.ts b/components/google_my_business/sources/common.ts index 0ab25a5f159ce..46e93ef75459c 100644 --- a/components/google_my_business/sources/common.ts +++ b/components/google_my_business/sources/common.ts @@ -53,6 +53,7 @@ export default { const currentRun: number = Date.now(); const lastRun: Date = this.getLastRun(); const items: EntityWithCreateTime[] = await this.getItems(); + console.log("Number of reviews: ", items.length); this.setLastRun(currentRun); const filteredItems = (lastRun From 8300a95a5f703189dc0b5939e9c91deb5ddc05a7 Mon Sep 17 00:00:00 2001 From: Andrew Chuang Date: Thu, 18 Sep 2025 14:36:05 -0400 Subject: [PATCH 2/2] bump versions --- components/google_my_business/package.json | 2 +- .../sources/new-post-created/new-post-created.ts | 2 +- .../new-review-created-multiple-locations.ts | 2 +- .../sources/new-review-created/new-review-created.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/google_my_business/package.json b/components/google_my_business/package.json index a5e75a73c25f1..f76dffc66416e 100644 --- a/components/google_my_business/package.json +++ b/components/google_my_business/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/google_my_business", - "version": "0.2.1", + "version": "0.2.2", "description": "Pipedream Google My Business Components", "main": "dist/app/google_my_business.app.mjs", "keywords": [ diff --git a/components/google_my_business/sources/new-post-created/new-post-created.ts b/components/google_my_business/sources/new-post-created/new-post-created.ts index 4e2ac9a9f436d..2e21f3a45e6d0 100644 --- a/components/google_my_business/sources/new-post-created/new-post-created.ts +++ b/components/google_my_business/sources/new-post-created/new-post-created.ts @@ -10,7 +10,7 @@ export default defineSource({ key: "google_my_business-new-post-created", name: "New Post Created", description: `Emit new event for each new local post on a location [See the documentation](${DOCS_LINK})`, - version: "0.0.5", + version: "0.0.6", type: "source", dedupe: "unique", methods: { diff --git a/components/google_my_business/sources/new-review-created-multiple-locations/new-review-created-multiple-locations.ts b/components/google_my_business/sources/new-review-created-multiple-locations/new-review-created-multiple-locations.ts index 53bf8255ca218..e557c52e9eaaa 100644 --- a/components/google_my_business/sources/new-review-created-multiple-locations/new-review-created-multiple-locations.ts +++ b/components/google_my_business/sources/new-review-created-multiple-locations/new-review-created-multiple-locations.ts @@ -13,7 +13,7 @@ export default defineSource({ key: "google_my_business-new-review-created-multiple-locations", name: "New Review Created (Multiple Locations)", description: `Emit new event for each new review on any of the selected locations [See the documentation](${DOCS_LINK})`, - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/google_my_business/sources/new-review-created/new-review-created.ts b/components/google_my_business/sources/new-review-created/new-review-created.ts index 27e7dca54f05b..2460080b98663 100644 --- a/components/google_my_business/sources/new-review-created/new-review-created.ts +++ b/components/google_my_business/sources/new-review-created/new-review-created.ts @@ -10,7 +10,7 @@ export default defineSource({ key: "google_my_business-new-review-created", name: "New Review Created", description: `Emit new event for each new review on a location [See the documentation](${DOCS_LINK})`, - version: "0.0.5", + version: "0.0.6", type: "source", dedupe: "unique", methods: {