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_my_business/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
1 change: 1 addition & 0 deletions components/google_my_business/sources/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Loading