-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomponent.json
77 lines (77 loc) · 2.43 KB
/
component.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
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
{
"title": "Podio",
"description": "Podio",
"version": "1.0.1",
"credentials": {
"fields":{
"oauth":{
"label": "Authentication",
"viewClass": "OAuthFieldView",
"required": true
}
},
"oauth2":{
"client_id": "{{PODIO_APP_ID}}",
"client_secret": "{{PODIO_APP_SECRET}}",
"auth_uri": "https://podio.com/oauth/authorize",
"token_uri": "https://podio.com/oauth/token"
}
},
"actions": {
"createItem": {
"main": "./lib/actions/createItem.js",
"title": "Create Item",
"fields": {
"appId": {
"viewClass": "SelectView",
"prompt": "Select an Application",
"label": "Podio Application",
"required": false,
"model": "getApplications"
},
"spaceId": {
"viewClass": "SelectView",
"prompt": "Select a Space",
"label": "Podio Space",
"required": true,
"model": "getSpaces"
}
},
"dynamicMetadata": true
},
"createOrganization": {
"main": "./lib/actions/createOrganization.js",
"title": "Create Organization",
"metadata": {
"in": "./lib/schemas/createOrganization.in.json",
"out": "./lib/schemas/createOrganization.out.json"
}
},
"createReminder": {
"main": "./lib/actions/createReminder.js",
"title": "Create Reminder",
"metadata": {
"in": "./lib/schemas/createReminder.in.json",
"out": "./lib/schemas/createReminder.out.json"
}
},
"createTask": {
"main": "./lib/actions/createTask.js",
"title": "Create Task",
"metadata": {
"in": "./lib/schemas/createTask.in.json",
"out": "./lib/schemas/createTask.out.json"
}
}
},
"triggers": {
"getContacts": {
"main": "./lib/triggers/getContacts.js",
"title": "Get Contacts",
"type" : "polling",
"metadata": {
"out": "./lib/schemas/getContacts.out.json"
}
}
}
}