-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Expand file tree
/
Copy pathsend-message.mjs
More file actions
61 lines (57 loc) · 1.08 KB
/
send-message.mjs
File metadata and controls
61 lines (57 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import app from "../../loopmessage.app.mjs";
import utils from "../../common/utils.mjs";
import { ConfigurationError } from "@pipedream/platform";
export default {
props: {
app,
recipient: {
propDefinition: [
app,
"recipient",
],
},
text: {
propDefinition: [
app,
"text",
],
},
senderName: {
optional: true,
propDefinition: [
app,
"senderName",
],
},
statusCallback: {
propDefinition: [
app,
"statusCallback",
],
},
statusCallbackHeader: {
propDefinition: [
app,
"statusCallbackHeader",
],
},
},
methods: {
getSummary() {
throw new ConfigurationError("The `getSummary` method is not implemented.");
},
},
async run({ $: step }) {
const {
app,
getSummary,
...data
} = this;
const response = await app.sendMessage({
step,
data: utils.keysToSnakeCase(data),
});
step.export("$summary", getSummary(response));
return response;
},
};