@apteva/integrations 0.3.29 → 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.29",
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 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:\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 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 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": {