-
Notifications
You must be signed in to change notification settings - Fork 1
/
your_smart_action.js
48 lines (48 loc) · 1.1 KB
/
your_smart_action.js
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
async function your_smart_action(env, params) {
return {
action_response: params.action.settings.CUSTOM_SETTING
};
}
exports.your_smart_action = your_smart_action;
exports.openapi = {
"openapi": "3.1.0",
"info": {
"title": "Your Smart Action",
"version": "1.0.0"
},
"servers": [
{
"url": "UNUSED"
}
],
"paths": {
"/your-smart-action": {
"get": {
"operationId": "your_smart_action",
"summary": "Your Smart Action",
"description": "Your Smart Action Description",
"responses": {
"200": {
"description": "Your Smart Action Response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"action_response": {
"type": "string",
"description": "Your Smart Action Response"
}
}
}
}
}
}
}
}
}
}
};
exports.settings = {
CUSTOM_SETTING: 'string'
};