@apteva/integrations 0.3.30 → 0.3.32
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/bunny-stream.json +3 -3
- package/src/apps/omnikit-cms.json +19 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apteva/integrations",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.32",
|
|
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",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"tools": [
|
|
34
34
|
{
|
|
35
35
|
"name": "list_libraries",
|
|
36
|
-
"description": "List all video libraries in your account",
|
|
36
|
+
"description": "List all video libraries in your account. Returns Id, Name, VideoCount, StorageUsage, and PullZoneUrl for each library. The Id field is the libraryId needed for constructing video embed/play URLs.",
|
|
37
37
|
"method": "GET",
|
|
38
38
|
"path": "/videolibrary",
|
|
39
39
|
"input_schema": {
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
"name": "list_videos",
|
|
156
|
-
"description": "List videos in the library with pagination and filtering. Each video includes guid, title, status, length, views, and more.\n\nTo get play/embed URLs for a video, construct from guid:\n- Embed: https://iframe.mediadelivery.net/embed/{libraryId}/{guid}\n- Player: https://player.mediadelivery.net/embed/{libraryId}/{guid}",
|
|
156
|
+
"description": "List videos in the library with pagination and filtering. Each video includes guid, title, status, length, views, and more.\n\nTo get play/embed URLs for a video, construct from guid and libraryId:\n- Embed: https://iframe.mediadelivery.net/embed/{libraryId}/{guid}\n- Player: https://player.mediadelivery.net/embed/{libraryId}/{guid}\n\nUse list_libraries to get your libraryId if needed.",
|
|
157
157
|
"method": "GET",
|
|
158
158
|
"path": "/library/{{credential.libraryId}}/videos",
|
|
159
159
|
"input_schema": {
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
},
|
|
194
194
|
{
|
|
195
195
|
"name": "get_video",
|
|
196
|
-
"description": "Get video details including status, encoding progress, resolution, duration, and metadata.\n\nNOTE: The API does not return play/embed URLs directly. Construct them from the response:\n- Embed iframe: https://iframe.mediadelivery.net/embed/{libraryId}/{guid}\n- New player: https://player.mediadelivery.net/embed/{libraryId}/{guid}\n- MP4 direct (if MP4 fallback enabled): https://{pullZoneUrl}.b-cdn.net/{guid}/play_720p.mp4 (or 360p, 480p, 1080p)\n- Thumbnail: https://vz-{libraryId}.b-cdn.net/{guid}/thumbnail.jpg\n\nThe guid field in the response is the video ID
|
|
196
|
+
"description": "Get video details including status, encoding progress, resolution, duration, and metadata.\n\nNOTE: The API does not return play/embed URLs directly. Construct them from the response:\n- Embed iframe: https://iframe.mediadelivery.net/embed/{libraryId}/{guid}\n- New player: https://player.mediadelivery.net/embed/{libraryId}/{guid}\n- MP4 direct (if MP4 fallback enabled): https://{pullZoneUrl}.b-cdn.net/{guid}/play_720p.mp4 (or 360p, 480p, 1080p)\n- Thumbnail: https://vz-{libraryId}.b-cdn.net/{guid}/thumbnail.jpg\n\nThe guid field in the response is the video ID. The libraryId is your configured library ID — use list_libraries to find it if needed.",
|
|
197
197
|
"method": "GET",
|
|
198
198
|
"path": "/library/{{credential.libraryId}}/videos/{videoId}",
|
|
199
199
|
"input_schema": {
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
"type": "object",
|
|
195
195
|
"properties": {
|
|
196
196
|
"id": {
|
|
197
|
-
"type": "
|
|
197
|
+
"type": "string",
|
|
198
198
|
"description": "Entry ID"
|
|
199
199
|
},
|
|
200
200
|
"slug": {
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
"description": "Entry slug (alternative to ID)"
|
|
203
203
|
},
|
|
204
204
|
"content_type_id": {
|
|
205
|
-
"type": "
|
|
205
|
+
"type": "string",
|
|
206
206
|
"description": "Content type ID (for slug lookup)"
|
|
207
207
|
},
|
|
208
208
|
"content_type_slug": {
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
"type": "object",
|
|
227
227
|
"properties": {
|
|
228
228
|
"id": {
|
|
229
|
-
"type": "
|
|
229
|
+
"type": "string",
|
|
230
230
|
"description": "Entry ID to update"
|
|
231
231
|
},
|
|
232
232
|
"data": {
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
"type": "object",
|
|
266
266
|
"properties": {
|
|
267
267
|
"id": {
|
|
268
|
-
"type": "
|
|
268
|
+
"type": "string",
|
|
269
269
|
"description": "Entry ID to publish"
|
|
270
270
|
},
|
|
271
271
|
"updated_by": {
|
|
@@ -287,7 +287,7 @@
|
|
|
287
287
|
"type": "object",
|
|
288
288
|
"properties": {
|
|
289
289
|
"id": {
|
|
290
|
-
"type": "
|
|
290
|
+
"type": "string",
|
|
291
291
|
"description": "Entry ID to delete (required)"
|
|
292
292
|
},
|
|
293
293
|
"deleted_by": {
|
|
@@ -309,7 +309,7 @@
|
|
|
309
309
|
"type": "object",
|
|
310
310
|
"properties": {
|
|
311
311
|
"id": {
|
|
312
|
-
"type": "
|
|
312
|
+
"type": "string",
|
|
313
313
|
"description": "Content type ID to delete (required)"
|
|
314
314
|
},
|
|
315
315
|
"deleted_by": {
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
"type": "object",
|
|
337
337
|
"properties": {
|
|
338
338
|
"id": {
|
|
339
|
-
"type": "
|
|
339
|
+
"type": "string",
|
|
340
340
|
"description": "Entry ID to preview"
|
|
341
341
|
},
|
|
342
342
|
"content_type_slug": {
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
"description": "Search query (required - what to search for)"
|
|
372
372
|
},
|
|
373
373
|
"content_type_id": {
|
|
374
|
-
"type": "
|
|
374
|
+
"type": "string",
|
|
375
375
|
"description": "Filter by content type ID"
|
|
376
376
|
},
|
|
377
377
|
"content_type_slug": {
|
|
@@ -471,7 +471,7 @@
|
|
|
471
471
|
"type": "object",
|
|
472
472
|
"properties": {
|
|
473
473
|
"id": {
|
|
474
|
-
"type": "
|
|
474
|
+
"type": "string",
|
|
475
475
|
"description": "Content type ID to update"
|
|
476
476
|
},
|
|
477
477
|
"name": {
|
|
@@ -537,7 +537,7 @@
|
|
|
537
537
|
"type": "object",
|
|
538
538
|
"properties": {
|
|
539
539
|
"id": {
|
|
540
|
-
"type": "
|
|
540
|
+
"type": "string",
|
|
541
541
|
"description": "Entry ID to unpublish"
|
|
542
542
|
},
|
|
543
543
|
"updated_by": {
|
|
@@ -559,7 +559,7 @@
|
|
|
559
559
|
"type": "object",
|
|
560
560
|
"properties": {
|
|
561
561
|
"content_type_id": {
|
|
562
|
-
"type": "
|
|
562
|
+
"type": "string",
|
|
563
563
|
"description": "Content type ID to add the field to"
|
|
564
564
|
},
|
|
565
565
|
"name": {
|
|
@@ -629,7 +629,7 @@
|
|
|
629
629
|
"type": "object",
|
|
630
630
|
"properties": {
|
|
631
631
|
"id": {
|
|
632
|
-
"type": "
|
|
632
|
+
"type": "string",
|
|
633
633
|
"description": "Content field ID to update"
|
|
634
634
|
},
|
|
635
635
|
"label": {
|
|
@@ -667,7 +667,7 @@
|
|
|
667
667
|
"type": "object",
|
|
668
668
|
"properties": {
|
|
669
669
|
"id": {
|
|
670
|
-
"type": "
|
|
670
|
+
"type": "string",
|
|
671
671
|
"description": "Content field ID to delete"
|
|
672
672
|
}
|
|
673
673
|
},
|
|
@@ -685,7 +685,7 @@
|
|
|
685
685
|
"type": "object",
|
|
686
686
|
"properties": {
|
|
687
687
|
"content_type_id": {
|
|
688
|
-
"type": "
|
|
688
|
+
"type": "string",
|
|
689
689
|
"description": "Content type ID"
|
|
690
690
|
},
|
|
691
691
|
"field_orders": {
|
|
@@ -744,7 +744,7 @@
|
|
|
744
744
|
"type": "object",
|
|
745
745
|
"properties": {
|
|
746
746
|
"content_entry_id": {
|
|
747
|
-
"type": "
|
|
747
|
+
"type": "string",
|
|
748
748
|
"description": "Content entry ID"
|
|
749
749
|
},
|
|
750
750
|
"limit": {
|
|
@@ -777,7 +777,7 @@
|
|
|
777
777
|
"type": "object",
|
|
778
778
|
"properties": {
|
|
779
779
|
"version_id": {
|
|
780
|
-
"type": "
|
|
780
|
+
"type": "string",
|
|
781
781
|
"description": "Content version ID"
|
|
782
782
|
}
|
|
783
783
|
},
|
|
@@ -795,7 +795,7 @@
|
|
|
795
795
|
"type": "object",
|
|
796
796
|
"properties": {
|
|
797
797
|
"content_entry_id": {
|
|
798
|
-
"type": "
|
|
798
|
+
"type": "string",
|
|
799
799
|
"description": "Content entry ID"
|
|
800
800
|
},
|
|
801
801
|
"version_number": {
|
|
@@ -818,7 +818,7 @@
|
|
|
818
818
|
"type": "object",
|
|
819
819
|
"properties": {
|
|
820
820
|
"version_id": {
|
|
821
|
-
"type": "
|
|
821
|
+
"type": "string",
|
|
822
822
|
"description": "Version ID to restore to"
|
|
823
823
|
}
|
|
824
824
|
},
|
|
@@ -836,7 +836,7 @@
|
|
|
836
836
|
"type": "object",
|
|
837
837
|
"properties": {
|
|
838
838
|
"content_entry_id": {
|
|
839
|
-
"type": "
|
|
839
|
+
"type": "string",
|
|
840
840
|
"description": "Content entry ID"
|
|
841
841
|
},
|
|
842
842
|
"version_number": {
|