-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomponent.json
More file actions
94 lines (94 loc) · 2.64 KB
/
Copy pathcomponent.json
File metadata and controls
94 lines (94 loc) · 2.64 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"title": "Podio component",
"description": "A smart connector for accessing Podio API",
"version": "1.1.0",
"authClientTypes": [
"oauth2"
],
"credentials": {
"fields": {
"oauth": {
"label": "Authentication",
"viewClass": "HTTPAuthView",
"required": true
},
"retries": {
"label": "Number of retries",
"viewClass": "TextFieldView",
"placeholder": "5",
"required": false,
"help": {
"description": "Number of retries (Default: 5)"
}
},
"retriesDelay": {
"label": "Delay between retries",
"viewClass": "TextFieldView",
"placeholder": "1000",
"required": false,
"help": {
"description": "Delay between retries in ms (Default: 10000ms)"
}
}
}
},
"actions": {
"deleteObjectById": {
"main": "./src/actions/deleteObjectById.js",
"title": "Delete Object By ID",
"help": {
"description": "Delete Object By ID",
"link": "/components/podio/index.html#delete-object-by-id"
},
"fields": {
"objectType": {
"label": "Object Type",
"viewClass": "SelectView",
"prompt": "Please select the type of object to delete",
"required": true,
"order": 10,
"model": "getDeleteByIdObjects"
}
},
"metadata": {
"in": "./src/schemas/metadata/deleteObjectById/in.json",
"out": "./src/schemas/metadata/deleteObjectById/out.json"
}
},
"lookupObjectById": {
"main": "./src/actions/lookupObjectById.js",
"title": "Lookup Object By ID",
"help": {
"description": "Lookup Object By ID",
"link": "/components/podio/index.html#lookup-object-by-id"
},
"fields": {
"objectType": {
"label": "Object Type",
"viewClass": "SelectView",
"prompt": "Please select the type of object to lookup",
"required": true,
"order": 10,
"model": "getLookupByIdObjects"
}
},
"metadata": {
"in": "src/schemas/metadata/lookupObjectById/in.json",
"out": "src/schemas/metadata/lookupObjectById/out.json"
}
},
"makeRawRequest": {
"main": "./src/actions/rawRequest.js",
"title": "Make Raw Request",
"help": {
"description": "Manually construct a request to send to the server.",
"link": "/components/podio/index.html#make-raw-request"
},
"metadata": {
"in": "./src/schemas/rawRequest/in.json",
"out": "./src/schemas/rawRequest/out.json"
}
}
},
"triggers": {}
}