-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
52 lines (52 loc) · 1.5 KB
/
manifest.json
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
{
"v2": {
"transposit": {
"operations": [{
"id": "execute",
"function": {
"parameters": [{
"name": "context",
"description": "Transposit sends information related to the application run via this \u0027context\u0027 parameter",
"type": "OBJECT"
}, {
"name": "input_form_blocks",
"type": "OBJECT",
"required": true,
"prettyName": "Input Form Blocks"
}],
"js": "execute.py",
"lang": "python",
"outputs": [{
"name": "outputs",
"type": "OBJECT",
"prettyName": "User input"
}]
}
}, {
"id": "handle_response",
"function": {
"parameters": [{
"name": "context",
"description": "The \u0027context\u0027 parameter is often essential to operations published to Mission Control",
"type": "OBJECT"
}, {
"name": "input_results",
"type": "OBJECT"
}],
"js": "handle_response.py",
"lang": "python",
"outputs": [{
"name": "outputs",
"type": "OBJECT",
"prettyName": "User input"
}]
}
}],
"javascriptAPIVersion": "6",
"source": "src",
"userSettingsDisplay": "GENERATED"
},
"description": "Takes user input using a form builder and outputs it",
"displayName": "Transposit user input form builder"
}
}