@apteva/integrations 0.3.28 → 0.3.30
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apteva/integrations",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.30",
|
|
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",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
"name": "list_videos",
|
|
156
|
-
"description": "List
|
|
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}",
|
|
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
|
|
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 used in these URLs. The libraryId is from your credentials.",
|
|
197
197
|
"method": "GET",
|
|
198
198
|
"path": "/library/{{credential.libraryId}}/videos/{videoId}",
|
|
199
199
|
"input_schema": {
|
|
@@ -632,14 +632,10 @@
|
|
|
632
632
|
"name": "update_folder",
|
|
633
633
|
"description": "Update folder name, description, or move to a different parent",
|
|
634
634
|
"method": "PUT",
|
|
635
|
-
"path": "/storage/folders/{
|
|
635
|
+
"path": "/storage/folders/{id}",
|
|
636
636
|
"input_schema": {
|
|
637
637
|
"type": "object",
|
|
638
638
|
"properties": {
|
|
639
|
-
"folder_id": {
|
|
640
|
-
"type": "integer",
|
|
641
|
-
"description": "ID of the folder to update"
|
|
642
|
-
},
|
|
643
639
|
"name": {
|
|
644
640
|
"type": "string",
|
|
645
641
|
"description": "New folder name"
|
|
@@ -651,10 +647,14 @@
|
|
|
651
647
|
"parent_folder_id": {
|
|
652
648
|
"type": "integer",
|
|
653
649
|
"description": "Move to this parent folder"
|
|
650
|
+
},
|
|
651
|
+
"id": {
|
|
652
|
+
"type": "integer",
|
|
653
|
+
"description": "ID of the folder to update"
|
|
654
654
|
}
|
|
655
655
|
},
|
|
656
656
|
"required": [
|
|
657
|
-
"
|
|
657
|
+
"id"
|
|
658
658
|
]
|
|
659
659
|
}
|
|
660
660
|
},
|
|
@@ -662,22 +662,22 @@
|
|
|
662
662
|
"name": "delete_folder",
|
|
663
663
|
"description": "Delete a folder. Use recursive=true to delete all contents.",
|
|
664
664
|
"method": "DELETE",
|
|
665
|
-
"path": "/storage/folders/{
|
|
665
|
+
"path": "/storage/folders/{id}",
|
|
666
666
|
"input_schema": {
|
|
667
667
|
"type": "object",
|
|
668
668
|
"properties": {
|
|
669
|
-
"folder_id": {
|
|
670
|
-
"type": "integer",
|
|
671
|
-
"description": "ID of the folder to delete"
|
|
672
|
-
},
|
|
673
669
|
"recursive": {
|
|
674
670
|
"type": "boolean",
|
|
675
671
|
"default": false,
|
|
676
672
|
"description": "Delete folder contents recursively"
|
|
673
|
+
},
|
|
674
|
+
"id": {
|
|
675
|
+
"type": "integer",
|
|
676
|
+
"description": "ID of the folder to delete"
|
|
677
677
|
}
|
|
678
678
|
},
|
|
679
679
|
"required": [
|
|
680
|
-
"
|
|
680
|
+
"id"
|
|
681
681
|
]
|
|
682
682
|
}
|
|
683
683
|
},
|