Skip to content

Commit af3ef3b

Browse files
Merge branch 'master' into databricks-sql-warehouses
2 parents 8df764b + c08f93b commit af3ef3b

File tree

32 files changed

+130
-49
lines changed

32 files changed

+130
-49
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: {
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "instamojo",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/instamojo/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/instamojo",
3+
"version": "0.0.1",
4+
"description": "Pipedream Instamojo Components",
5+
"main": "instamojo.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"instamojo"
9+
],
10+
"homepage": "https://pipedream.com/apps/instamojo",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app);
1111
export default {
1212
...others,
1313
key: "notion_api_key-append-block",
14-
version: "0.0.2",
14+
version: "0.0.3",
1515
name,
1616
description,
1717
type,

components/notion_api_key/actions/create-comment/create-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app);
1111
export default {
1212
...others,
1313
key: "notion_api_key-create-comment",
14-
version: "0.0.2",
14+
version: "0.0.3",
1515
name,
1616
description,
1717
type,

components/notion_api_key/actions/create-page-from-database/create-page-from-database.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app);
1111
export default {
1212
...others,
1313
key: "notion_api_key-create-page-from-database",
14-
version: "0.0.2",
14+
version: "0.0.3",
1515
name,
1616
description,
1717
type,

0 commit comments

Comments
 (0)