Skip to content

Commit 54623e8

Browse files
Merge branch 'master' of github.com:PipedreamHQ/pipedream
2 parents 3c8d918 + 12b2254 commit 54623e8

File tree

8 files changed

+103
-1
lines changed

8 files changed

+103
-1
lines changed

components/basecamp/sources/new-to-do-item-created/new-to-do-item-created.mjs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "basecamp-new-to-do-item-created",
66
name: "New To-Do Item Created (Instant)",
77
description: "Emit new event when a to-do item is created. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#webhooks)",
8-
version: "0.0.8",
8+
version: "0.1.0",
99
dedupe: "unique",
1010
type: "source",
1111
methods: {
@@ -20,5 +20,20 @@ export default {
2020
"todo_created",
2121
];
2222
},
23+
async getEventData(data) {
24+
return data;
25+
},
26+
},
27+
async run({ body }) {
28+
if (this.filterEvent(body)) {
29+
const {
30+
accountId, projectId,
31+
} = this;
32+
body.recording = await this.app.makeRequest({
33+
accountId,
34+
path: `/buckets/${projectId}/todos/${body.recording.id}.json`,
35+
});
36+
this.emitEvent(body);
37+
}
2338
},
2439
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/rocketadmin",
3+
"version": "0.0.1",
4+
"description": "Pipedream Rocketadmin Components",
5+
"main": "rocketadmin.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"rocketadmin"
9+
],
10+
"homepage": "https://pipedream.com/apps/rocketadmin",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
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: "rocketadmin",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/supadata/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/supadata",
3+
"version": "0.0.1",
4+
"description": "Pipedream Supadata Components",
5+
"main": "supadata.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"supadata"
9+
],
10+
"homepage": "https://pipedream.com/apps/supadata",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
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: "supadata",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/timelink/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/timelink",
3+
"version": "0.0.1",
4+
"description": "Pipedream timelink Components",
5+
"main": "timelink.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"timelink"
9+
],
10+
"homepage": "https://pipedream.com/apps/timelink",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
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: "timelink",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

pnpm-lock.yaml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)