@apteva/integrations 0.3.37 → 0.3.39
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.39",
|
|
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",
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"name": "generate_speech",
|
|
397
|
-
"description": "Generate speech/voiceover from text using ElevenLabs. Select a voice from list-voices (sync-voices first if empty).\n\nResponse includes: audio.url, audio.durationMs (milliseconds — divide by 1000 for seconds), audio.sizeBytes, audio.format, voice info
|
|
397
|
+
"description": "Generate speech/voiceover from text using ElevenLabs. Select a voice from list-voices (sync-voices first if empty).\n\nResponse includes: audio.url, audio.durationMs (milliseconds — divide by 1000 for seconds), audio.sizeBytes, audio.format, and voice info. Ignore the cost field — it is not accurate.",
|
|
398
398
|
"method": "POST",
|
|
399
399
|
"path": "/ai/generate/speech",
|
|
400
400
|
"input_schema": {
|
|
@@ -780,7 +780,7 @@
|
|
|
780
780
|
},
|
|
781
781
|
{
|
|
782
782
|
"name": "generate_script",
|
|
783
|
-
"description": "Generate audio from a script using text-to-speech. Uses the script's assigned voice or an override.\n\nResponse includes: audio.url, audio.durationMs (milliseconds — divide by 1000 for seconds), audio.sizeBytes, audio.format, voice info
|
|
783
|
+
"description": "Generate audio from a script using text-to-speech. Uses the script's assigned voice or an override.\n\nResponse includes: audio.url, audio.durationMs (milliseconds — divide by 1000 for seconds), audio.sizeBytes, audio.format, and voice info. Ignore the cost field — it is not accurate.",
|
|
784
784
|
"method": "POST",
|
|
785
785
|
"path": "/ai/scripts/{id}/generate",
|
|
786
786
|
"input_schema": {
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
241
|
"name": "search",
|
|
242
|
-
"description": "Advanced file search with filtering
|
|
242
|
+
"description": "Advanced file search with filtering and sorting. For oldest/newest content use sort_by=uploaded_at (content date) with sort_order=asc/desc. created_at is the system upload timestamp, uploaded_at reflects the actual content date. For portrait/vertical videos: file_type=video, format=portrait. For landscape/horizontal: file_type=video, format=landscape. Supports filtering by type, format, dimensions, duration, size, dates, tags, content_rating, and more.",
|
|
243
243
|
"method": "GET",
|
|
244
244
|
"path": "/storage/search",
|
|
245
245
|
"input_schema": {
|
|
@@ -247,7 +247,11 @@
|
|
|
247
247
|
"properties": {
|
|
248
248
|
"query": {
|
|
249
249
|
"type": "string",
|
|
250
|
-
"description": "Search query (searches file names and
|
|
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"
|
|
251
255
|
},
|
|
252
256
|
"file_type": {
|
|
253
257
|
"type": "string",
|
|
@@ -255,25 +259,48 @@
|
|
|
255
259
|
"image",
|
|
256
260
|
"video",
|
|
257
261
|
"audio",
|
|
258
|
-
"document"
|
|
262
|
+
"document",
|
|
263
|
+
"archive",
|
|
264
|
+
"other"
|
|
259
265
|
],
|
|
260
266
|
"description": "Filter by file type"
|
|
261
267
|
},
|
|
262
268
|
"mime_type": {
|
|
263
269
|
"type": "string",
|
|
264
|
-
"description": "Filter by MIME type (e.g., video/mp4)"
|
|
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
|
+
"format": {
|
|
281
|
+
"type": "string",
|
|
282
|
+
"enum": [
|
|
283
|
+
"portrait",
|
|
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)"
|
|
265
292
|
},
|
|
266
293
|
"folder_id": {
|
|
267
294
|
"type": "integer",
|
|
268
|
-
"description": "Filter by folder"
|
|
295
|
+
"description": "Filter by folder ID"
|
|
269
296
|
},
|
|
270
297
|
"bucket_id": {
|
|
271
298
|
"type": "integer",
|
|
272
|
-
"description": "Filter by bucket"
|
|
299
|
+
"description": "Filter by storage bucket ID"
|
|
273
300
|
},
|
|
274
301
|
"tags": {
|
|
275
302
|
"type": "string",
|
|
276
|
-
"description": "Comma-separated tags to filter by"
|
|
303
|
+
"description": "Comma-separated tags to filter by (matches any)"
|
|
277
304
|
},
|
|
278
305
|
"min_size": {
|
|
279
306
|
"type": "integer",
|
|
@@ -283,13 +310,80 @@
|
|
|
283
310
|
"type": "integer",
|
|
284
311
|
"description": "Maximum file size in bytes"
|
|
285
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
|
+
},
|
|
286
329
|
"min_duration": {
|
|
287
330
|
"type": "number",
|
|
288
|
-
"description": "Minimum duration in seconds (audio
|
|
331
|
+
"description": "Minimum duration in seconds (video/audio)"
|
|
289
332
|
},
|
|
290
333
|
"max_duration": {
|
|
291
334
|
"type": "number",
|
|
292
|
-
"description": "Maximum duration in seconds (audio
|
|
335
|
+
"description": "Maximum duration in seconds (video/audio)"
|
|
336
|
+
},
|
|
337
|
+
"created_after": {
|
|
338
|
+
"type": "string",
|
|
339
|
+
"description": "Filter by system upload date (after). For content date filtering use uploaded_after instead."
|
|
340
|
+
},
|
|
341
|
+
"created_before": {
|
|
342
|
+
"type": "string",
|
|
343
|
+
"description": "Filter by system upload date (before). For content date filtering use uploaded_before instead."
|
|
344
|
+
},
|
|
345
|
+
"uploaded_after": {
|
|
346
|
+
"type": "string",
|
|
347
|
+
"description": "Filter by content date (after). This reflects when the content was originally from, not when it was added to the platform."
|
|
348
|
+
},
|
|
349
|
+
"uploaded_before": {
|
|
350
|
+
"type": "string",
|
|
351
|
+
"description": "Filter by content date (before). This reflects when the content was originally from, not when it was added to the platform."
|
|
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"
|
|
371
|
+
},
|
|
372
|
+
"content_rating": {
|
|
373
|
+
"type": "string",
|
|
374
|
+
"enum": [
|
|
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"
|
|
383
|
+
},
|
|
384
|
+
"has_thumbnails": {
|
|
385
|
+
"type": "boolean",
|
|
386
|
+
"description": "Filter files that have/don't have thumbnails"
|
|
293
387
|
},
|
|
294
388
|
"sort_by": {
|
|
295
389
|
"type": "string",
|
|
@@ -297,11 +391,16 @@
|
|
|
297
391
|
"name",
|
|
298
392
|
"size",
|
|
299
393
|
"created_at",
|
|
300
|
-
"
|
|
301
|
-
"file_type"
|
|
394
|
+
"uploaded_at",
|
|
395
|
+
"file_type",
|
|
396
|
+
"extension",
|
|
397
|
+
"width",
|
|
398
|
+
"height",
|
|
399
|
+
"duration",
|
|
400
|
+
"random"
|
|
302
401
|
],
|
|
303
402
|
"default": "created_at",
|
|
304
|
-
"description": "Sort field"
|
|
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."
|
|
305
404
|
},
|
|
306
405
|
"sort_order": {
|
|
307
406
|
"type": "string",
|
|
@@ -310,17 +409,32 @@
|
|
|
310
409
|
"desc"
|
|
311
410
|
],
|
|
312
411
|
"default": "desc",
|
|
313
|
-
"description": "Sort
|
|
412
|
+
"description": "Sort direction. 'asc' = ascending (oldest/smallest first), 'desc' = descending (newest/largest first)"
|
|
314
413
|
},
|
|
315
414
|
"limit": {
|
|
316
415
|
"type": "integer",
|
|
317
416
|
"default": 50,
|
|
318
|
-
"description": "
|
|
417
|
+
"description": "Number of results to return (max 1000)"
|
|
319
418
|
},
|
|
320
419
|
"offset": {
|
|
321
420
|
"type": "integer",
|
|
322
421
|
"default": 0,
|
|
323
422
|
"description": "Pagination offset"
|
|
423
|
+
},
|
|
424
|
+
"include_metadata": {
|
|
425
|
+
"type": "boolean",
|
|
426
|
+
"default": false,
|
|
427
|
+
"description": "Include file metadata in response"
|
|
428
|
+
},
|
|
429
|
+
"include_storage_info": {
|
|
430
|
+
"type": "boolean",
|
|
431
|
+
"default": false,
|
|
432
|
+
"description": "Include storage bucket info and full URLs"
|
|
433
|
+
},
|
|
434
|
+
"include_thumbnails": {
|
|
435
|
+
"type": "boolean",
|
|
436
|
+
"default": false,
|
|
437
|
+
"description": "Include thumbnail data in response"
|
|
324
438
|
}
|
|
325
439
|
}
|
|
326
440
|
}
|
package/src/apps/rankbird.json
CHANGED
|
@@ -293,7 +293,7 @@
|
|
|
293
293
|
},
|
|
294
294
|
{
|
|
295
295
|
"name": "keyword_domain_rankings",
|
|
296
|
-
"description": "Get
|
|
296
|
+
"description": "Get all domains ranking for a keyword with page data (title, h1, word count, h2 count) and a content brief (target word count, title/h1 examples). Use with rankbird-content-gap: first get keyword opportunities, then call this to see what top pages look like and plan content.",
|
|
297
297
|
"method": "GET",
|
|
298
298
|
"path": "/keywords/{keyword_id}/domains",
|
|
299
299
|
"input_schema": {
|