Skip to content

Commit 1229b7e

Browse files
committed
wip
1 parent 15cc437 commit 1229b7e

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

components/krispcall/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/krispcall",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Pipedream KrispCall Components",
55
"main": "krispcall.app.mjs",
66
"keywords": [
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import common from "../common/base.mjs";
2+
3+
export default {
4+
...common,
5+
key: "krispcall-new-call-instant",
6+
name: "New Call (Instant)",
7+
description: "Emit new event when a new call is created.",
8+
version: "0.0.{{ts}}",
9+
type: "source",
10+
dedupe: "unique",
11+
methods: {
12+
...common.methods,
13+
getAction() {
14+
return "new_call_log";
15+
},
16+
getSummary(body) {
17+
return `New call created: ${body.id}`;
18+
},
19+
},
20+
};

0 commit comments

Comments
 (0)