@apteva/integrations 0.3.39 → 0.3.43
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/firecrawl.json +433 -105
- package/src/apps/gigs-marketplace.json +95 -152
- package/src/apps/omnikit-cms.json +18 -0
- package/src/apps/omnikit-code-ops.json +18 -0
- package/src/apps/omnikit-messaging.json +18 -0
- package/src/apps/omnikit-storage.json +29 -199
- package/src/apps/pushover.json +92 -15
- package/src/apps/sendgrid.json +226 -33
- package/src/apps/socialcast.json +13 -1
- package/src/apps/stripe.json +609 -151
- package/src/apps/pushover-notifications.json +0 -119
- package/src/apps/sendgrid-email.json +0 -275
- package/src/apps/stripe-payments.json +0 -911
|
@@ -924,6 +924,24 @@
|
|
|
924
924
|
],
|
|
925
925
|
"webhooks": {
|
|
926
926
|
"signature_header": "x-webhook-signature",
|
|
927
|
+
"registration": {
|
|
928
|
+
"method": "POST",
|
|
929
|
+
"path": "/webhooks-register",
|
|
930
|
+
"url_field": "endpoint_url",
|
|
931
|
+
"events_field": "event_types",
|
|
932
|
+
"secret_field": "secret_key",
|
|
933
|
+
"id_field": "webhook_id",
|
|
934
|
+
"extra": {
|
|
935
|
+
"name": "Apteva Webhook",
|
|
936
|
+
"direction": "outgoing",
|
|
937
|
+
"provider": "custom",
|
|
938
|
+
"auth_type": "hmac-sha256"
|
|
939
|
+
},
|
|
940
|
+
"delete_path": "/webhooks/{id}",
|
|
941
|
+
"delete_method": "DELETE",
|
|
942
|
+
"list_path": "/webhooks",
|
|
943
|
+
"list_field": "data"
|
|
944
|
+
},
|
|
927
945
|
"events": [
|
|
928
946
|
{
|
|
929
947
|
"name": "content.created",
|
|
@@ -1146,6 +1146,24 @@
|
|
|
1146
1146
|
],
|
|
1147
1147
|
"webhooks": {
|
|
1148
1148
|
"signature_header": "x-webhook-signature",
|
|
1149
|
+
"registration": {
|
|
1150
|
+
"method": "POST",
|
|
1151
|
+
"path": "/webhooks-register",
|
|
1152
|
+
"url_field": "endpoint_url",
|
|
1153
|
+
"events_field": "event_types",
|
|
1154
|
+
"secret_field": "secret_key",
|
|
1155
|
+
"id_field": "webhook_id",
|
|
1156
|
+
"extra": {
|
|
1157
|
+
"name": "Apteva Webhook",
|
|
1158
|
+
"direction": "outgoing",
|
|
1159
|
+
"provider": "custom",
|
|
1160
|
+
"auth_type": "hmac-sha256"
|
|
1161
|
+
},
|
|
1162
|
+
"delete_path": "/webhooks/{id}",
|
|
1163
|
+
"delete_method": "DELETE",
|
|
1164
|
+
"list_path": "/webhooks",
|
|
1165
|
+
"list_field": "data"
|
|
1166
|
+
},
|
|
1149
1167
|
"events": [
|
|
1150
1168
|
{
|
|
1151
1169
|
"name": "deployment.succeeded",
|
|
@@ -1826,6 +1826,24 @@
|
|
|
1826
1826
|
],
|
|
1827
1827
|
"webhooks": {
|
|
1828
1828
|
"signature_header": "x-webhook-signature",
|
|
1829
|
+
"registration": {
|
|
1830
|
+
"method": "POST",
|
|
1831
|
+
"path": "/webhooks-register",
|
|
1832
|
+
"url_field": "endpoint_url",
|
|
1833
|
+
"events_field": "event_types",
|
|
1834
|
+
"secret_field": "secret_key",
|
|
1835
|
+
"id_field": "webhook_id",
|
|
1836
|
+
"extra": {
|
|
1837
|
+
"name": "Apteva Webhook",
|
|
1838
|
+
"direction": "outgoing",
|
|
1839
|
+
"provider": "custom",
|
|
1840
|
+
"auth_type": "hmac-sha256"
|
|
1841
|
+
},
|
|
1842
|
+
"delete_path": "/webhooks/{id}",
|
|
1843
|
+
"delete_method": "DELETE",
|
|
1844
|
+
"list_path": "/webhooks",
|
|
1845
|
+
"list_field": "data"
|
|
1846
|
+
},
|
|
1829
1847
|
"events": [
|
|
1830
1848
|
{
|
|
1831
1849
|
"name": "messaging.inbound_message_processed",
|
|
@@ -219,202 +219,72 @@
|
|
|
219
219
|
]
|
|
220
220
|
}
|
|
221
221
|
},
|
|
222
|
-
{
|
|
223
|
-
"name": "download_file",
|
|
224
|
-
"description": "Get a download URL for a file",
|
|
225
|
-
"method": "GET",
|
|
226
|
-
"path": "/storage/files/{file_id}/download",
|
|
227
|
-
"input_schema": {
|
|
228
|
-
"type": "object",
|
|
229
|
-
"properties": {
|
|
230
|
-
"file_id": {
|
|
231
|
-
"type": "integer",
|
|
232
|
-
"description": "ID of the file to download"
|
|
233
|
-
}
|
|
234
|
-
},
|
|
235
|
-
"required": [
|
|
236
|
-
"file_id"
|
|
237
|
-
]
|
|
238
|
-
}
|
|
239
|
-
},
|
|
240
222
|
{
|
|
241
223
|
"name": "search",
|
|
242
|
-
"description": "
|
|
224
|
+
"description": "Search files in storage. For oldest content: sort_by=uploaded_at, sort_order=asc. For newest: sort_by=uploaded_at, sort_order=desc. For portrait videos: file_type=video, format=portrait. For safe content: content_rating=sfw. For random files: sort_by=random.",
|
|
243
225
|
"method": "GET",
|
|
244
226
|
"path": "/storage/search",
|
|
245
227
|
"input_schema": {
|
|
246
228
|
"type": "object",
|
|
247
229
|
"properties": {
|
|
248
|
-
"query": {
|
|
249
|
-
"type": "string",
|
|
250
|
-
"description": "Search query (searches file names, descriptions, and tags)"
|
|
251
|
-
},
|
|
252
|
-
"name_contains": {
|
|
253
|
-
"type": "string",
|
|
254
|
-
"description": "Search specifically in file names only"
|
|
255
|
-
},
|
|
256
230
|
"file_type": {
|
|
257
231
|
"type": "string",
|
|
258
|
-
"enum": [
|
|
259
|
-
"image",
|
|
260
|
-
"video",
|
|
261
|
-
"audio",
|
|
262
|
-
"document",
|
|
263
|
-
"archive",
|
|
264
|
-
"other"
|
|
265
|
-
],
|
|
232
|
+
"enum": ["image", "video", "audio", "document"],
|
|
266
233
|
"description": "Filter by file type"
|
|
267
234
|
},
|
|
268
|
-
"mime_type": {
|
|
269
|
-
"type": "string",
|
|
270
|
-
"description": "Filter by exact MIME type (e.g., video/mp4, image/png)"
|
|
271
|
-
},
|
|
272
|
-
"mime_type_prefix": {
|
|
273
|
-
"type": "string",
|
|
274
|
-
"description": "Filter by MIME type prefix (e.g., 'image/', 'video/')"
|
|
275
|
-
},
|
|
276
|
-
"extension": {
|
|
277
|
-
"type": "string",
|
|
278
|
-
"description": "Filter by file extension (e.g., mp4, jpg, pdf)"
|
|
279
|
-
},
|
|
280
235
|
"format": {
|
|
281
236
|
"type": "string",
|
|
282
|
-
"enum": [
|
|
283
|
-
|
|
284
|
-
"landscape",
|
|
285
|
-
"square"
|
|
286
|
-
],
|
|
287
|
-
"description": "Filter by aspect ratio format. portrait = height > width (vertical/mobile videos), landscape = width > height (horizontal/widescreen), square = equal dimensions"
|
|
288
|
-
},
|
|
289
|
-
"folder": {
|
|
290
|
-
"type": "string",
|
|
291
|
-
"description": "Folder name, path, or slug to search in (resolves automatically, includes subfolders)"
|
|
292
|
-
},
|
|
293
|
-
"folder_id": {
|
|
294
|
-
"type": "integer",
|
|
295
|
-
"description": "Filter by folder ID"
|
|
296
|
-
},
|
|
297
|
-
"bucket_id": {
|
|
298
|
-
"type": "integer",
|
|
299
|
-
"description": "Filter by storage bucket ID"
|
|
237
|
+
"enum": ["portrait", "landscape", "square"],
|
|
238
|
+
"description": "Filter by aspect ratio. portrait = vertical/mobile, landscape = horizontal/widescreen"
|
|
300
239
|
},
|
|
301
|
-
"
|
|
240
|
+
"content_rating": {
|
|
302
241
|
"type": "string",
|
|
303
|
-
"
|
|
304
|
-
|
|
305
|
-
"min_size": {
|
|
306
|
-
"type": "integer",
|
|
307
|
-
"description": "Minimum file size in bytes"
|
|
308
|
-
},
|
|
309
|
-
"max_size": {
|
|
310
|
-
"type": "integer",
|
|
311
|
-
"description": "Maximum file size in bytes"
|
|
312
|
-
},
|
|
313
|
-
"min_width": {
|
|
314
|
-
"type": "integer",
|
|
315
|
-
"description": "Minimum width in pixels (images/videos)"
|
|
316
|
-
},
|
|
317
|
-
"max_width": {
|
|
318
|
-
"type": "integer",
|
|
319
|
-
"description": "Maximum width in pixels (images/videos)"
|
|
320
|
-
},
|
|
321
|
-
"min_height": {
|
|
322
|
-
"type": "integer",
|
|
323
|
-
"description": "Minimum height in pixels (images/videos)"
|
|
324
|
-
},
|
|
325
|
-
"max_height": {
|
|
326
|
-
"type": "integer",
|
|
327
|
-
"description": "Maximum height in pixels (images/videos)"
|
|
328
|
-
},
|
|
329
|
-
"min_duration": {
|
|
330
|
-
"type": "number",
|
|
331
|
-
"description": "Minimum duration in seconds (video/audio)"
|
|
242
|
+
"enum": ["sfw", "nsfw", "suggestive", "adult", "explicit"],
|
|
243
|
+
"description": "Filter by content rating. sfw = safe only, nsfw = everything except safe"
|
|
332
244
|
},
|
|
333
|
-
"
|
|
334
|
-
"type": "number",
|
|
335
|
-
"description": "Maximum duration in seconds (video/audio)"
|
|
336
|
-
},
|
|
337
|
-
"created_after": {
|
|
245
|
+
"folder": {
|
|
338
246
|
"type": "string",
|
|
339
|
-
"description": "
|
|
247
|
+
"description": "Search within a folder by name (includes subfolders)"
|
|
340
248
|
},
|
|
341
|
-
"
|
|
249
|
+
"search": {
|
|
342
250
|
"type": "string",
|
|
343
|
-
"description": "
|
|
251
|
+
"description": "Search in file names, descriptions, and tags"
|
|
344
252
|
},
|
|
345
253
|
"uploaded_after": {
|
|
346
254
|
"type": "string",
|
|
347
|
-
"
|
|
255
|
+
"format": "date-time",
|
|
256
|
+
"description": "Content from after this date (e.g. 2024-01-01T00:00:00Z). This is the original content date, not upload date."
|
|
348
257
|
},
|
|
349
258
|
"uploaded_before": {
|
|
350
259
|
"type": "string",
|
|
351
|
-
"
|
|
352
|
-
|
|
353
|
-
"status": {
|
|
354
|
-
"type": "string",
|
|
355
|
-
"enum": [
|
|
356
|
-
"uploading",
|
|
357
|
-
"processing",
|
|
358
|
-
"completed",
|
|
359
|
-
"failed"
|
|
360
|
-
],
|
|
361
|
-
"description": "Filter by file processing status"
|
|
362
|
-
},
|
|
363
|
-
"access_level": {
|
|
364
|
-
"type": "string",
|
|
365
|
-
"enum": [
|
|
366
|
-
"public",
|
|
367
|
-
"private",
|
|
368
|
-
"restricted"
|
|
369
|
-
],
|
|
370
|
-
"description": "Filter by access level"
|
|
260
|
+
"format": "date-time",
|
|
261
|
+
"description": "Content from before this date. This is the original content date, not upload date."
|
|
371
262
|
},
|
|
372
|
-
"
|
|
373
|
-
"type": "
|
|
374
|
-
"
|
|
375
|
-
"sfw",
|
|
376
|
-
"nsfw",
|
|
377
|
-
"safe",
|
|
378
|
-
"suggestive",
|
|
379
|
-
"adult",
|
|
380
|
-
"explicit"
|
|
381
|
-
],
|
|
382
|
-
"description": "Filter by content rating. 'sfw' = safe-for-work only, 'nsfw' = not safe for work"
|
|
263
|
+
"max_duration": {
|
|
264
|
+
"type": "number",
|
|
265
|
+
"description": "Maximum duration in seconds (video/audio)"
|
|
383
266
|
},
|
|
384
|
-
"
|
|
385
|
-
"type": "
|
|
386
|
-
"description": "
|
|
267
|
+
"min_duration": {
|
|
268
|
+
"type": "number",
|
|
269
|
+
"description": "Minimum duration in seconds (video/audio)"
|
|
387
270
|
},
|
|
388
271
|
"sort_by": {
|
|
389
272
|
"type": "string",
|
|
390
|
-
"enum": [
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
"created_at",
|
|
394
|
-
"uploaded_at",
|
|
395
|
-
"file_type",
|
|
396
|
-
"extension",
|
|
397
|
-
"width",
|
|
398
|
-
"height",
|
|
399
|
-
"duration",
|
|
400
|
-
"random"
|
|
401
|
-
],
|
|
402
|
-
"default": "created_at",
|
|
403
|
-
"description": "Sort field. Use 'uploaded_at' for content date (oldest/newest content). Use 'created_at' for system upload date. 'asc' for oldest/smallest first, 'desc' for newest/largest first. 'size' sorts by file size. 'random' for random order."
|
|
273
|
+
"enum": ["uploaded_at", "created_at", "name", "size", "duration", "random"],
|
|
274
|
+
"default": "uploaded_at",
|
|
275
|
+
"description": "Sort field. uploaded_at = content date (use for oldest/newest). random = random order."
|
|
404
276
|
},
|
|
405
277
|
"sort_order": {
|
|
406
278
|
"type": "string",
|
|
407
|
-
"enum": [
|
|
408
|
-
"asc",
|
|
409
|
-
"desc"
|
|
410
|
-
],
|
|
279
|
+
"enum": ["asc", "desc"],
|
|
411
280
|
"default": "desc",
|
|
412
|
-
"description": "
|
|
281
|
+
"description": "asc = oldest/smallest first, desc = newest/largest first"
|
|
413
282
|
},
|
|
414
283
|
"limit": {
|
|
415
284
|
"type": "integer",
|
|
416
|
-
"default":
|
|
417
|
-
"
|
|
285
|
+
"default": 10,
|
|
286
|
+
"maximum": 50,
|
|
287
|
+
"description": "Number of results to return (default 10, max 50)"
|
|
418
288
|
},
|
|
419
289
|
"offset": {
|
|
420
290
|
"type": "integer",
|
|
@@ -476,46 +346,6 @@
|
|
|
476
346
|
]
|
|
477
347
|
}
|
|
478
348
|
},
|
|
479
|
-
{
|
|
480
|
-
"name": "generate_presigned_url",
|
|
481
|
-
"description": "Generate a presigned URL for direct client-to-storage file upload. Use for large files instead of base64 upload. After upload, call confirm-upload to trigger processing.",
|
|
482
|
-
"method": "POST",
|
|
483
|
-
"path": "/storage/generate-presigned-url",
|
|
484
|
-
"input_schema": {
|
|
485
|
-
"type": "object",
|
|
486
|
-
"properties": {
|
|
487
|
-
"file_name": {
|
|
488
|
-
"type": "string",
|
|
489
|
-
"description": "Name of the file to upload"
|
|
490
|
-
},
|
|
491
|
-
"mime_type": {
|
|
492
|
-
"type": "string",
|
|
493
|
-
"description": "MIME type of the file"
|
|
494
|
-
},
|
|
495
|
-
"size_bytes": {
|
|
496
|
-
"type": "integer",
|
|
497
|
-
"description": "File size in bytes"
|
|
498
|
-
},
|
|
499
|
-
"folder_id": {
|
|
500
|
-
"type": "integer",
|
|
501
|
-
"description": "Target folder ID"
|
|
502
|
-
},
|
|
503
|
-
"access_level": {
|
|
504
|
-
"type": "string",
|
|
505
|
-
"enum": [
|
|
506
|
-
"public",
|
|
507
|
-
"private"
|
|
508
|
-
],
|
|
509
|
-
"default": "public",
|
|
510
|
-
"description": "File access level"
|
|
511
|
-
}
|
|
512
|
-
},
|
|
513
|
-
"required": [
|
|
514
|
-
"file_name",
|
|
515
|
-
"mime_type"
|
|
516
|
-
]
|
|
517
|
-
}
|
|
518
|
-
},
|
|
519
349
|
{
|
|
520
350
|
"name": "confirm_upload",
|
|
521
351
|
"description": "Confirm that a presigned URL upload completed. Triggers post-processing: thumbnail generation, transcription, and AI description.",
|
package/src/apps/pushover.json
CHANGED
|
@@ -3,14 +3,29 @@
|
|
|
3
3
|
"name": "Pushover",
|
|
4
4
|
"description": "Real-time push notifications to mobile and desktop devices",
|
|
5
5
|
"logo": "https://www.google.com/s2/favicons?domain=pushover.net&sz=128",
|
|
6
|
-
"categories": [
|
|
6
|
+
"categories": [
|
|
7
|
+
"communication",
|
|
8
|
+
"notifications"
|
|
9
|
+
],
|
|
7
10
|
"base_url": "https://api.pushover.net/1",
|
|
8
11
|
"auth": {
|
|
9
|
-
"types": [
|
|
10
|
-
|
|
12
|
+
"types": [
|
|
13
|
+
"api_key"
|
|
14
|
+
],
|
|
15
|
+
"query_params": {
|
|
16
|
+
"token": "{{app_token}}"
|
|
17
|
+
},
|
|
11
18
|
"credential_fields": [
|
|
12
|
-
{
|
|
13
|
-
|
|
19
|
+
{
|
|
20
|
+
"name": "app_token",
|
|
21
|
+
"label": "Application Token",
|
|
22
|
+
"description": "Your Pushover application API token"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "user_key",
|
|
26
|
+
"label": "User/Group Key",
|
|
27
|
+
"description": "Your Pushover user or group key (default recipient)"
|
|
28
|
+
}
|
|
14
29
|
]
|
|
15
30
|
},
|
|
16
31
|
"tools": [
|
|
@@ -22,15 +37,39 @@
|
|
|
22
37
|
"input_schema": {
|
|
23
38
|
"type": "object",
|
|
24
39
|
"properties": {
|
|
25
|
-
"message": {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
40
|
+
"message": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"description": "Notification message body"
|
|
43
|
+
},
|
|
44
|
+
"title": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"description": "Notification title"
|
|
47
|
+
},
|
|
48
|
+
"user": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Override recipient user/group key (uses stored key if omitted)"
|
|
51
|
+
},
|
|
52
|
+
"priority": {
|
|
53
|
+
"type": "number",
|
|
54
|
+
"description": "Priority: -2 (lowest) to 2 (emergency)",
|
|
55
|
+
"default": 0
|
|
56
|
+
},
|
|
57
|
+
"sound": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"description": "Sound name (e.g. pushover, bike, bugle)"
|
|
60
|
+
},
|
|
61
|
+
"url": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"description": "Supplementary URL to show with the message"
|
|
64
|
+
},
|
|
65
|
+
"url_title": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"description": "Title for the supplementary URL"
|
|
68
|
+
}
|
|
32
69
|
},
|
|
33
|
-
"required": [
|
|
70
|
+
"required": [
|
|
71
|
+
"message"
|
|
72
|
+
]
|
|
34
73
|
}
|
|
35
74
|
},
|
|
36
75
|
{
|
|
@@ -41,9 +80,14 @@
|
|
|
41
80
|
"input_schema": {
|
|
42
81
|
"type": "object",
|
|
43
82
|
"properties": {
|
|
44
|
-
"user": {
|
|
83
|
+
"user": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"description": "User or group key to validate"
|
|
86
|
+
}
|
|
45
87
|
},
|
|
46
|
-
"required": [
|
|
88
|
+
"required": [
|
|
89
|
+
"user"
|
|
90
|
+
]
|
|
47
91
|
}
|
|
48
92
|
},
|
|
49
93
|
{
|
|
@@ -55,6 +99,39 @@
|
|
|
55
99
|
"type": "object",
|
|
56
100
|
"properties": {}
|
|
57
101
|
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "send_priority_alert",
|
|
105
|
+
"description": "Send a high-priority alert that requires acknowledgment",
|
|
106
|
+
"method": "POST",
|
|
107
|
+
"path": "/send-priority-alert",
|
|
108
|
+
"input_schema": {
|
|
109
|
+
"type": "object",
|
|
110
|
+
"properties": {
|
|
111
|
+
"message": {
|
|
112
|
+
"type": "string",
|
|
113
|
+
"description": "The alert message"
|
|
114
|
+
},
|
|
115
|
+
"title": {
|
|
116
|
+
"type": "string",
|
|
117
|
+
"description": "Alert title",
|
|
118
|
+
"default": "PRIORITY ALERT"
|
|
119
|
+
},
|
|
120
|
+
"expire": {
|
|
121
|
+
"type": "integer",
|
|
122
|
+
"description": "How long to keep sending alerts (seconds)",
|
|
123
|
+
"default": 3600
|
|
124
|
+
},
|
|
125
|
+
"retry": {
|
|
126
|
+
"type": "integer",
|
|
127
|
+
"description": "How often to retry (seconds)",
|
|
128
|
+
"default": 60
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"required": [
|
|
132
|
+
"message"
|
|
133
|
+
]
|
|
134
|
+
}
|
|
58
135
|
}
|
|
59
136
|
]
|
|
60
137
|
}
|