@apteva/integrations 0.3.29 → 0.3.31

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.29",
3
+ "version": "0.3.31",
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 all videos in the library with filtering and pagination",
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 detailed information about a specific video including status, encoding progress, and metadata",
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": {