Skip to content

Commit 5f0cc01

Browse files
authored
Merge branch 'master' into issue-17276
2 parents b6a2c8e + af19436 commit 5f0cc01

File tree

359 files changed

+17273
-1368
lines changed

Some content is hidden

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

359 files changed

+17273
-1368
lines changed
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import { defineApp } from "@pipedream/types";
2-
3-
export default defineApp({
1+
export default {
42
type: "app",
5-
app: "freshsales",
3+
app: "accuweather",
64
propDefinitions: {},
75
methods: {
86
// this.$auth contains connected account data
97
authKeys() {
108
console.log(Object.keys(this.$auth));
119
},
1210
},
13-
});
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/accuweather",
3+
"version": "0.0.1",
4+
"description": "Pipedream AccuWeather Components",
5+
"main": "accuweather.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"accuweather"
9+
],
10+
"homepage": "https://pipedream.com/apps/accuweather",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/aircall/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/aircall",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Pipedream Aircall Components",
55
"main": "aircall.app.mjs",
66
"keywords": [

components/aircall/sources/common/common-webhook.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default {
2121
this.getEventType(),
2222
],
2323
});
24-
this._setHookId(webhook.id);
24+
this._setHookId(webhook.webhook_id);
2525
},
2626
async deactivate() {
2727
const hookId = this._getHookId();

components/aircall/sources/new-call-ended/new-call-ended.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "aircall-new-call-ended",
66
name: "New Call Ended",
77
description: "Emit new event when a call ends",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

components/aircall/sources/new-note-added/new-note-added.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "aircall-new-note-added",
66
name: "New Note Added",
77
description: "Emit new event when a new note is added to a call",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

components/aircall/sources/new-number-created/new-number-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "aircall-new-number-created",
66
name: "New Number Created",
77
description: "Emit new event when a number is created",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import common from "../common/common-webhook.mjs";
2+
3+
export default {
4+
...common,
5+
key: "aircall-new-sms",
6+
name: "New SMS",
7+
description: "Emit new event when a new SMS is received.",
8+
version: "0.0.1",
9+
type: "source",
10+
dedupe: "unique",
11+
methods: {
12+
...common.methods,
13+
async getHistoricalEvents() {
14+
return [];
15+
},
16+
getEventType() {
17+
return "message.received";
18+
},
19+
generateMeta(data) {
20+
return {
21+
id: data.id,
22+
summary: `New SMS received from ${data.raw_digits} to ${data.number.digits}`,
23+
ts: data.created_at,
24+
};
25+
},
26+
},
27+
};

components/aircall/sources/new-tag-added/new-tag-added.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "aircall-new-tag-added",
66
name: "New Tag Added",
77
description: "Emit new event when a tag is added to a call",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "source",
1010
dedupe: "unique",
1111
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: "alt_text_generator_ai",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

0 commit comments

Comments
 (0)