@apteva/integrations 0.3.25 → 0.3.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/apps/apollo.json +3 -3
- package/src/apps/apteva-cloud.json +259 -0
- package/src/apps/ashby.json +1 -1
- package/src/apps/assemblyai.json +1 -1
- package/src/apps/callrail.json +1 -1
- package/src/apps/cartesia.json +3 -3
- package/src/apps/chargebee.json +1 -1
- package/src/apps/clicksend.json +1 -1
- package/src/apps/composio.json +8 -3
- package/src/apps/confluence.json +1 -1
- package/src/apps/dux-soup.json +1 -1
- package/src/apps/gravity-forms.json +2 -2
- package/src/apps/harmonic.json +2 -2
- package/src/apps/helpscout.json +3 -3
- package/src/apps/heyreach.json +3 -3
- package/src/apps/hunter.json +5 -4
- package/src/apps/learning-platform.json +3 -3
- package/src/apps/luma.json +3 -3
- package/src/apps/murf-ai.json +3 -3
- package/src/apps/omnikit-storage.json +724 -88
- package/src/apps/playht.json +7 -2
- package/src/apps/saltedge.json +8 -3
- package/src/apps/supabase.json +3 -3
- package/src/apps/trading212.json +1 -1
- package/src/apps/wellsaid.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apteva/integrations",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.28",
|
|
4
4
|
"description": "Local integrations, connections, and webhooks for Apteva. Self-contained app templates, OAuth engine, and trigger provider.",
|
|
5
5
|
"author": "Apteva <hello@apteva.com>",
|
|
6
6
|
"license": "Elastic-2.0",
|
package/src/apps/apollo.json
CHANGED
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"base_url": "https://api.apollo.io/api/v1",
|
|
15
15
|
"auth": {
|
|
16
16
|
"types": [
|
|
17
|
-
"
|
|
17
|
+
"api_key"
|
|
18
18
|
],
|
|
19
19
|
"headers": {
|
|
20
|
-
"
|
|
20
|
+
"x-api-key": "{{api_key}}"
|
|
21
21
|
},
|
|
22
22
|
"credential_fields": [
|
|
23
23
|
{
|
|
24
|
-
"name": "
|
|
24
|
+
"name": "api_key",
|
|
25
25
|
"label": "Api Key",
|
|
26
26
|
"description": "Apollo.io API key (find at app.apollo.io under Settings > Integrations > API)"
|
|
27
27
|
}
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "apteva-cloud",
|
|
3
|
+
"name": "Apteva Cloud",
|
|
4
|
+
"description": "Manage Apteva Cloud hosting instances — create, start, stop, restart, update, delete, and view logs for containerized deployments",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=apteva.ai&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"cloud",
|
|
8
|
+
"hosting",
|
|
9
|
+
"containers",
|
|
10
|
+
"deployment",
|
|
11
|
+
"infrastructure"
|
|
12
|
+
],
|
|
13
|
+
"base_url": "https://api.apteva.ai/apteva-cloud",
|
|
14
|
+
"auth": {
|
|
15
|
+
"types": [
|
|
16
|
+
"bearer"
|
|
17
|
+
],
|
|
18
|
+
"headers": {
|
|
19
|
+
"Authorization": "Bearer {{token}}"
|
|
20
|
+
},
|
|
21
|
+
"credential_fields": [
|
|
22
|
+
{
|
|
23
|
+
"name": "api_key",
|
|
24
|
+
"label": "Api_key",
|
|
25
|
+
"description": "Apteva API Key (from your Apteva dashboard)"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "create_instance",
|
|
32
|
+
"description": "Create a new Apteva Cloud instance with a unique subdomain, auto-SSL, and persistent storage. Instance will be available at {subdomain}.apteva.ai",
|
|
33
|
+
"method": "POST",
|
|
34
|
+
"path": "/instances",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {
|
|
38
|
+
"name": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"description": "Name for the instance (required)"
|
|
41
|
+
},
|
|
42
|
+
"subdomain": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "Subdomain for the instance (required). Will be accessible at {subdomain}.apteva.ai. Lowercase letters, numbers, and hyphens only."
|
|
45
|
+
},
|
|
46
|
+
"organization_id": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "Organization ID for billing and feature usage"
|
|
49
|
+
},
|
|
50
|
+
"version": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"default": "latest",
|
|
53
|
+
"description": "Apteva platform version tag to deploy"
|
|
54
|
+
},
|
|
55
|
+
"memory": {
|
|
56
|
+
"type": "integer",
|
|
57
|
+
"default": 512,
|
|
58
|
+
"description": "Memory allocation in MB"
|
|
59
|
+
},
|
|
60
|
+
"cpu": {
|
|
61
|
+
"type": "number",
|
|
62
|
+
"default": 0.5,
|
|
63
|
+
"description": "CPU allocation (e.g., 0.5 = half core)"
|
|
64
|
+
},
|
|
65
|
+
"env_vars": {
|
|
66
|
+
"type": "object",
|
|
67
|
+
"description": "Custom environment variables for the instance"
|
|
68
|
+
},
|
|
69
|
+
"config": {
|
|
70
|
+
"type": "object",
|
|
71
|
+
"description": "Additional configuration options"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"required": [
|
|
75
|
+
"name",
|
|
76
|
+
"subdomain"
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "list_instances",
|
|
82
|
+
"description": "List all Apteva Cloud instances with optional filtering by status, user, or project",
|
|
83
|
+
"method": "GET",
|
|
84
|
+
"path": "/instances",
|
|
85
|
+
"input_schema": {
|
|
86
|
+
"type": "object",
|
|
87
|
+
"properties": {
|
|
88
|
+
"status": {
|
|
89
|
+
"type": "string",
|
|
90
|
+
"enum": [
|
|
91
|
+
"running",
|
|
92
|
+
"stopped",
|
|
93
|
+
"creating",
|
|
94
|
+
"failed"
|
|
95
|
+
],
|
|
96
|
+
"description": "Filter by instance status"
|
|
97
|
+
},
|
|
98
|
+
"user_id": {
|
|
99
|
+
"type": "string",
|
|
100
|
+
"description": "Filter by user ID"
|
|
101
|
+
},
|
|
102
|
+
"organization_id": {
|
|
103
|
+
"type": "string",
|
|
104
|
+
"description": "Filter by organization ID"
|
|
105
|
+
},
|
|
106
|
+
"limit": {
|
|
107
|
+
"type": "integer",
|
|
108
|
+
"default": 50,
|
|
109
|
+
"description": "Max results to return"
|
|
110
|
+
},
|
|
111
|
+
"offset": {
|
|
112
|
+
"type": "integer",
|
|
113
|
+
"default": 0,
|
|
114
|
+
"description": "Offset for pagination"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "get_instance",
|
|
121
|
+
"description": "Get details and live status of a specific Apteva Cloud instance including container health",
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"path": "/instances/{id}",
|
|
124
|
+
"input_schema": {
|
|
125
|
+
"type": "object",
|
|
126
|
+
"properties": {
|
|
127
|
+
"id": {
|
|
128
|
+
"type": "string",
|
|
129
|
+
"description": "Instance ID (required)"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"required": [
|
|
133
|
+
"id"
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "update_instance",
|
|
139
|
+
"description": "Update instance configuration — name, version, memory, CPU, env vars. Version or resource changes trigger a container redeployment with data preserved.",
|
|
140
|
+
"method": "PUT",
|
|
141
|
+
"path": "/instances/{id}",
|
|
142
|
+
"input_schema": {
|
|
143
|
+
"type": "object",
|
|
144
|
+
"properties": {
|
|
145
|
+
"id": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "Instance ID (required)"
|
|
148
|
+
},
|
|
149
|
+
"name": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"description": "New instance name"
|
|
152
|
+
},
|
|
153
|
+
"version": {
|
|
154
|
+
"type": "string",
|
|
155
|
+
"description": "New version tag to deploy (triggers container update)"
|
|
156
|
+
},
|
|
157
|
+
"memory": {
|
|
158
|
+
"type": "integer",
|
|
159
|
+
"description": "New memory allocation in MB (triggers container update)"
|
|
160
|
+
},
|
|
161
|
+
"cpu": {
|
|
162
|
+
"type": "number",
|
|
163
|
+
"description": "New CPU allocation (triggers container update)"
|
|
164
|
+
},
|
|
165
|
+
"env_vars": {
|
|
166
|
+
"type": "object",
|
|
167
|
+
"description": "Environment variables to add/update (merged with existing)"
|
|
168
|
+
},
|
|
169
|
+
"config": {
|
|
170
|
+
"type": "object",
|
|
171
|
+
"description": "Configuration to add/update (merged with existing)"
|
|
172
|
+
},
|
|
173
|
+
"force": {
|
|
174
|
+
"type": "boolean",
|
|
175
|
+
"default": false,
|
|
176
|
+
"description": "Force container redeployment even if no version/resource changes"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"required": [
|
|
180
|
+
"id"
|
|
181
|
+
]
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "instance_action",
|
|
186
|
+
"description": "Perform an action on an instance: start, stop, restart, or redeploy. Redeploy preserves all persistent data.",
|
|
187
|
+
"method": "POST",
|
|
188
|
+
"path": "/instances/{id}/action",
|
|
189
|
+
"input_schema": {
|
|
190
|
+
"type": "object",
|
|
191
|
+
"properties": {
|
|
192
|
+
"id": {
|
|
193
|
+
"type": "string",
|
|
194
|
+
"description": "Instance ID (required)"
|
|
195
|
+
},
|
|
196
|
+
"action": {
|
|
197
|
+
"type": "string",
|
|
198
|
+
"enum": [
|
|
199
|
+
"start",
|
|
200
|
+
"stop",
|
|
201
|
+
"restart",
|
|
202
|
+
"redeploy"
|
|
203
|
+
],
|
|
204
|
+
"description": "Action to perform (required)"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"required": [
|
|
208
|
+
"id",
|
|
209
|
+
"action"
|
|
210
|
+
]
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "delete_instance",
|
|
215
|
+
"description": "Permanently delete an instance — stops container, removes domain routing, and cleans up all associated resources",
|
|
216
|
+
"method": "DELETE",
|
|
217
|
+
"path": "/instances/{id}",
|
|
218
|
+
"input_schema": {
|
|
219
|
+
"type": "object",
|
|
220
|
+
"properties": {
|
|
221
|
+
"id": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"description": "Instance ID to delete (required)"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"required": [
|
|
227
|
+
"id"
|
|
228
|
+
]
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "instance_logs",
|
|
233
|
+
"description": "Retrieve container logs for an instance with optional time filtering and tail length",
|
|
234
|
+
"method": "GET",
|
|
235
|
+
"path": "/instances/{id}/logs",
|
|
236
|
+
"input_schema": {
|
|
237
|
+
"type": "object",
|
|
238
|
+
"properties": {
|
|
239
|
+
"id": {
|
|
240
|
+
"type": "string",
|
|
241
|
+
"description": "Instance ID (required)"
|
|
242
|
+
},
|
|
243
|
+
"since": {
|
|
244
|
+
"type": "string",
|
|
245
|
+
"description": "Show logs since timestamp (ISO 8601) or relative (e.g., '1h', '30m')"
|
|
246
|
+
},
|
|
247
|
+
"tail": {
|
|
248
|
+
"type": "integer",
|
|
249
|
+
"default": 100,
|
|
250
|
+
"description": "Number of lines to return from the end"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"required": [
|
|
254
|
+
"id"
|
|
255
|
+
]
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
]
|
|
259
|
+
}
|
package/src/apps/ashby.json
CHANGED
package/src/apps/assemblyai.json
CHANGED
package/src/apps/callrail.json
CHANGED
package/src/apps/cartesia.json
CHANGED
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
"base_url": "https://api.cartesia.ai",
|
|
16
16
|
"auth": {
|
|
17
17
|
"types": [
|
|
18
|
-
"
|
|
18
|
+
"api_key"
|
|
19
19
|
],
|
|
20
20
|
"headers": {
|
|
21
|
-
"
|
|
21
|
+
"X-API-Key": "{{api_key}}"
|
|
22
22
|
},
|
|
23
23
|
"credential_fields": [
|
|
24
24
|
{
|
|
25
|
-
"name": "
|
|
25
|
+
"name": "api_key",
|
|
26
26
|
"label": "Api Key",
|
|
27
27
|
"description": "Cartesia API key (from your Cartesia dashboard)"
|
|
28
28
|
}
|
package/src/apps/chargebee.json
CHANGED
package/src/apps/clicksend.json
CHANGED
package/src/apps/composio.json
CHANGED
|
@@ -13,15 +13,20 @@
|
|
|
13
13
|
"base_url": "https://backend.composio.dev/api/v3",
|
|
14
14
|
"auth": {
|
|
15
15
|
"types": [
|
|
16
|
-
"
|
|
16
|
+
"api_key"
|
|
17
17
|
],
|
|
18
18
|
"headers": {
|
|
19
|
-
"
|
|
19
|
+
"X-API-Key": "{{api_key}}",
|
|
20
|
+
"X-User-Id": "{{user_id}}"
|
|
20
21
|
},
|
|
21
22
|
"credential_fields": [
|
|
22
23
|
{
|
|
23
|
-
"name": "
|
|
24
|
+
"name": "api_key",
|
|
24
25
|
"label": "API Key"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "user_id",
|
|
29
|
+
"label": "User Id"
|
|
25
30
|
}
|
|
26
31
|
]
|
|
27
32
|
},
|
package/src/apps/confluence.json
CHANGED
package/src/apps/dux-soup.json
CHANGED
package/src/apps/harmonic.json
CHANGED
package/src/apps/helpscout.json
CHANGED
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"bearer"
|
|
17
17
|
],
|
|
18
18
|
"headers": {
|
|
19
|
-
"Authorization": "Bearer {{
|
|
19
|
+
"Authorization": "Bearer {{access_token}}"
|
|
20
20
|
},
|
|
21
21
|
"credential_fields": [
|
|
22
22
|
{
|
|
23
|
-
"name": "
|
|
24
|
-
"label": "
|
|
23
|
+
"name": "access_token",
|
|
24
|
+
"label": "Access Token"
|
|
25
25
|
}
|
|
26
26
|
]
|
|
27
27
|
},
|
package/src/apps/heyreach.json
CHANGED
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"base_url": "https://api.heyreach.io/api",
|
|
14
14
|
"auth": {
|
|
15
15
|
"types": [
|
|
16
|
-
"
|
|
16
|
+
"api_key"
|
|
17
17
|
],
|
|
18
18
|
"headers": {
|
|
19
|
-
"
|
|
19
|
+
"X-API-KEY": "{{api_key}}"
|
|
20
20
|
},
|
|
21
21
|
"credential_fields": [
|
|
22
22
|
{
|
|
23
|
-
"name": "
|
|
23
|
+
"name": "api_key",
|
|
24
24
|
"label": "API Key"
|
|
25
25
|
}
|
|
26
26
|
]
|
package/src/apps/hunter.json
CHANGED
|
@@ -14,15 +14,16 @@
|
|
|
14
14
|
"base_url": "https://api.hunter.io/v2",
|
|
15
15
|
"auth": {
|
|
16
16
|
"types": [
|
|
17
|
-
"
|
|
17
|
+
"api_key"
|
|
18
18
|
],
|
|
19
19
|
"headers": {
|
|
20
|
-
"
|
|
20
|
+
"X-API-KEY": "{{api_key}}"
|
|
21
21
|
},
|
|
22
22
|
"credential_fields": [
|
|
23
23
|
{
|
|
24
|
-
"name": "
|
|
25
|
-
"label": "
|
|
24
|
+
"name": "api_key",
|
|
25
|
+
"label": "Api Key",
|
|
26
|
+
"description": "Your Hunter.io API Key (found at https://hunter.io/api-keys)"
|
|
26
27
|
}
|
|
27
28
|
]
|
|
28
29
|
},
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"base_url": "https://learning.schwartzindustries.com",
|
|
19
19
|
"auth": {
|
|
20
20
|
"types": [
|
|
21
|
-
"
|
|
21
|
+
"api_key"
|
|
22
22
|
],
|
|
23
23
|
"headers": {
|
|
24
|
-
"
|
|
24
|
+
"X-API-Key": "{{api_key}}"
|
|
25
25
|
},
|
|
26
26
|
"credential_fields": [
|
|
27
27
|
{
|
|
28
|
-
"name": "
|
|
28
|
+
"name": "api_key",
|
|
29
29
|
"label": "API Key"
|
|
30
30
|
}
|
|
31
31
|
]
|
package/src/apps/luma.json
CHANGED
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"base_url": "https://api.lu.ma",
|
|
14
14
|
"auth": {
|
|
15
15
|
"types": [
|
|
16
|
-
"
|
|
16
|
+
"api_key"
|
|
17
17
|
],
|
|
18
18
|
"headers": {
|
|
19
|
-
"
|
|
19
|
+
"x-luma-api-key": "{{api_key}}"
|
|
20
20
|
},
|
|
21
21
|
"credential_fields": [
|
|
22
22
|
{
|
|
23
|
-
"name": "
|
|
23
|
+
"name": "api_key",
|
|
24
24
|
"label": "Api Key",
|
|
25
25
|
"description": "Luma API key (generate from your Luma dashboard under Settings > API)"
|
|
26
26
|
}
|
package/src/apps/murf-ai.json
CHANGED
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"base_url": "https://api.murf.ai/v1",
|
|
17
17
|
"auth": {
|
|
18
18
|
"types": [
|
|
19
|
-
"
|
|
19
|
+
"api_key"
|
|
20
20
|
],
|
|
21
21
|
"headers": {
|
|
22
|
-
"
|
|
22
|
+
"api-key": "{{api_key}}"
|
|
23
23
|
},
|
|
24
24
|
"credential_fields": [
|
|
25
25
|
{
|
|
26
|
-
"name": "
|
|
26
|
+
"name": "api_key",
|
|
27
27
|
"label": "API Key"
|
|
28
28
|
}
|
|
29
29
|
]
|