Skip to content

Commit 7f9cf09

Browse files
authored
Merge branch 'master' into google-sheets-type-fix
2 parents 3f05602 + b36661e commit 7f9cf09

File tree

45 files changed

+157
-93
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+157
-93
lines changed

components/google_my_business/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_my_business",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Pipedream Google My Business Components",
55
"main": "dist/app/google_my_business.app.mjs",
66
"keywords": [

components/google_my_business/sources/common.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export default {
5353
const currentRun: number = Date.now();
5454
const lastRun: Date = this.getLastRun();
5555
const items: EntityWithCreateTime[] = await this.getItems();
56+
console.log("Number of reviews: ", items.length);
5657
this.setLastRun(currentRun);
5758

5859
const filteredItems = (lastRun

components/google_my_business/sources/new-post-created/new-post-created.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default defineSource({
1010
key: "google_my_business-new-post-created",
1111
name: "New Post Created",
1212
description: `Emit new event for each new local post on a location [See the documentation](${DOCS_LINK})`,
13-
version: "0.0.5",
13+
version: "0.0.6",
1414
type: "source",
1515
dedupe: "unique",
1616
methods: {

components/google_my_business/sources/new-review-created-multiple-locations/new-review-created-multiple-locations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default defineSource({
1313
key: "google_my_business-new-review-created-multiple-locations",
1414
name: "New Review Created (Multiple Locations)",
1515
description: `Emit new event for each new review on any of the selected locations [See the documentation](${DOCS_LINK})`,
16-
version: "0.0.2",
16+
version: "0.0.3",
1717
type: "source",
1818
dedupe: "unique",
1919
props: {

components/google_my_business/sources/new-review-created/new-review-created.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default defineSource({
1010
key: "google_my_business-new-review-created",
1111
name: "New Review Created",
1212
description: `Emit new event for each new review on a location [See the documentation](${DOCS_LINK})`,
13-
version: "0.0.5",
13+
version: "0.0.6",
1414
type: "source",
1515
dedupe: "unique",
1616
methods: {

components/notion/actions/append-block/append-block.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Append Block to Parent",
88
description:
99
"Append new and/or existing blocks to the specified parent. [See the documentation](https://developers.notion.com/reference/patch-block-children)",
10-
version: "0.3.9",
10+
version: "0.3.10",
1111
type: "action",
1212
props: {
1313
notion,

components/notion/actions/common/base-page-builder.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ export default {
8787
type: properties[property]?.type ?? property,
8888
label: properties[property]?.id || property,
8989
value: this[property] || this.properties?.[property],
90+
name: properties[property]?.name || property,
9091
}));
9192
},
9293
/**
@@ -107,7 +108,7 @@ export default {
107108
try {
108109
notionProperties[property.label] = notionProperty?.convertToNotion(property);
109110
} catch {
110-
throw new ConfigurationError(`Error converting property with label \`${property.label}\` to Notion format. Must be of type \`${NOTION_CONVERTER[property.type]?.type}\`.`);
111+
throw new ConfigurationError(`Error converting property \`${property.name}\` to Notion format. Must be of type \`${NOTION_CONVERTER[property.type]?.type}\`.`);
111112
}
112113
}
113114
}

components/notion/actions/complete-file-upload/complete-file-upload.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "notion-complete-file-upload",
77
name: "Complete File Upload",
88
description: "Use this action to finalize a `mode=multi_part` file upload after all of the parts have been sent successfully. [See the documentation](https://developers.notion.com/reference/complete-a-file-upload)",
9-
version: "0.0.4",
9+
version: "0.0.5",
1010
type: "action",
1111
props: {
1212
notion,

components/notion/actions/create-database/create-database.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "notion-create-database",
88
name: "Create Database",
99
description: "Create a database and its initial data source. [See the documentation](https://developers.notion.com/reference/database-create)",
10-
version: "0.1.1",
10+
version: "0.1.2",
1111
type: "action",
1212
props: {
1313
notion,

components/notion/actions/create-file-upload/create-file-upload.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "notion-create-file-upload",
77
name: "Create File Upload",
88
description: "Create a file upload. [See the documentation](https://developers.notion.com/reference/create-a-file-upload)",
9-
version: "0.0.4",
9+
version: "0.0.5",
1010
type: "action",
1111
props: {
1212
notion,

0 commit comments

Comments
 (0)