@apteva/integrations 0.15.6 → 0.15.8

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.
@@ -257,10 +257,13 @@
257
257
  },
258
258
  {
259
259
  "name": "list_videos",
260
- "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.",
260
+ "description": "List videos in the library with pagination and filtering. Each video includes guid, title, status, length, views, collectionId, and more. Pass collectionId to filter to one Bunny collection; the integration sends this to Bunny as the required collection query parameter.\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.",
261
261
  "method": "GET",
262
262
  "base_url": "https://video.bunnycdn.com",
263
263
  "path": "/library/{{credential.libraryId}}/videos",
264
+ "query_param_aliases": {
265
+ "collectionId": "collection"
266
+ },
264
267
  "input_schema": {
265
268
  "type": "object",
266
269
  "properties": {
@@ -477,6 +480,30 @@
477
480
  "statusCode": 200
478
481
  }
479
482
  },
483
+ {
484
+ "name": "delete_video",
485
+ "description": "Permanently delete a Bunny Stream video from the configured library. This cannot be undone. Args: videoId.",
486
+ "method": "DELETE",
487
+ "base_url": "https://video.bunnycdn.com",
488
+ "path": "/library/{{credential.libraryId}}/videos/{videoId}",
489
+ "input_schema": {
490
+ "type": "object",
491
+ "properties": {
492
+ "videoId": {
493
+ "type": "string",
494
+ "description": "Video ID (guid) to delete"
495
+ }
496
+ },
497
+ "required": [
498
+ "videoId"
499
+ ]
500
+ },
501
+ "mock_response": {
502
+ "success": true,
503
+ "message": "OK",
504
+ "statusCode": 200
505
+ }
506
+ },
480
507
  {
481
508
  "name": "list_collections",
482
509
  "description": "List all video collections in the library",
@@ -550,10 +577,14 @@
550
577
  },
551
578
  {
552
579
  "name": "fetch_video",
553
- "description": "Fetch and upload a video from an external URL to Bunny Stream for processing",
580
+ "description": "Fetch and upload a video from an external URL to Bunny Stream for processing. If collectionId is provided, it is sent as Bunny's collectionId query parameter so the fetched video is assigned to that collection.",
554
581
  "method": "POST",
555
582
  "base_url": "https://video.bunnycdn.com",
556
583
  "path": "/library/{{credential.libraryId}}/videos/fetch",
584
+ "query_params": [
585
+ "collectionId",
586
+ "thumbnailTime"
587
+ ],
557
588
  "input_schema": {
558
589
  "type": "object",
559
590
  "properties": {
@@ -18,10 +18,10 @@
18
18
  "base_url": "https://api.dataforseo.com/v3",
19
19
  "auth": {
20
20
  "types": [
21
- "bearer"
21
+ "basic"
22
22
  ],
23
23
  "headers": {
24
- "Authorization": "Bearer {{token}}"
24
+ "Authorization": "Basic {{basic_auth}}"
25
25
  },
26
26
  "credential_fields": [
27
27
  {
@@ -37,11 +37,22 @@
37
37
  ]
38
38
  },
39
39
  "tools": [
40
+ {
41
+ "name": "locations_and_languages",
42
+ "description": "List DataForSEO Labs locations and languages for Google, Bing, and Amazon. Free endpoint used to populate SEO app locales.",
43
+ "method": "GET",
44
+ "path": "/dataforseo_labs/locations_and_languages",
45
+ "input_schema": {
46
+ "type": "object",
47
+ "properties": {}
48
+ }
49
+ },
40
50
  {
41
51
  "name": "keyword_search_volume",
42
52
  "description": "Get search volume, competition, CPC data, and monthly trends for keywords via Google Ads API. Max 1000 keywords per request.",
43
53
  "method": "POST",
44
54
  "path": "/keywords_data/google_ads/search_volume/live",
55
+ "body_root_param": "tasks",
45
56
  "input_schema": {
46
57
  "type": "object",
47
58
  "properties": {
@@ -383,6 +394,7 @@
383
394
  "description": "Get domain-level SEO overview: organic traffic estimate, total keywords, visibility score, and rank distribution",
384
395
  "method": "POST",
385
396
  "path": "/dataforseo_labs/google/domain_rank_overview/live",
397
+ "body_root_param": "tasks",
386
398
  "input_schema": {
387
399
  "type": "object",
388
400
  "properties": {
@@ -615,6 +627,7 @@
615
627
  "description": "Get detailed list of backlinks with anchor text, source URLs, link type, and attributes",
616
628
  "method": "POST",
617
629
  "path": "/backlinks/backlinks/live",
630
+ "body_root_param": "tasks",
618
631
  "input_schema": {
619
632
  "type": "object",
620
633
  "properties": {
@@ -509,7 +509,7 @@
509
509
  },
510
510
  {
511
511
  "name": "get_thread",
512
- "description": "Get all messages in an email thread (conversation)",
512
+ "description": "Get an email thread efficiently. Defaults to metadata-only so long conversations do not flood the agent context. Use this first to inspect senders, dates, subjects, snippets, labels, and message IDs. If you need full body text, fetch only the specific message(s) you need with gmail_get_message; avoid format=full on large threads unless explicitly necessary.",
513
513
  "method": "GET",
514
514
  "path": "/users/me/threads/{threadId}",
515
515
  "input_schema": {
@@ -521,20 +521,23 @@
521
521
  },
522
522
  "format": {
523
523
  "type": "string",
524
- "description": "Message format in the thread",
524
+ "description": "Message format in the thread. Use metadata by default for efficient thread inspection. Prefer gmail_get_message for full body text of one specific message. Avoid full/raw on long threads because Gmail can return huge repeated HTML conversation bodies.",
525
525
  "enum": [
526
526
  "minimal",
527
527
  "full",
528
528
  "raw",
529
529
  "metadata"
530
530
  ],
531
- "default": "full"
531
+ "default": "metadata"
532
532
  }
533
533
  },
534
534
  "required": [
535
535
  "threadId"
536
536
  ]
537
537
  },
538
+ "response_transform": {
539
+ "type": "email_thread"
540
+ },
538
541
  "mock_response": {
539
542
  "id": "18f1a2b3c4d5e6f7",
540
543
  "historyId": "987600",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "slug": "google-ads",
3
3
  "name": "Google Ads",
4
- "description": "Google Ads API v23 \u2014 manage campaigns, ad groups, ads, keywords, budgets, and run performance reports via GAQL queries",
4
+ "description": "Google Ads API v23 manage campaigns, ad groups, ads, keywords, budgets, and run performance reports via GAQL queries",
5
5
  "logo": "https://upload.wikimedia.org/wikipedia/commons/c/c7/Google_Ads_logo.svg",
6
6
  "categories": [
7
7
  "advertising",
@@ -19,7 +19,9 @@
19
19
  "oauth2"
20
20
  ],
21
21
  "headers": {
22
- "Authorization": "Bearer {{token}}"
22
+ "Authorization": "Bearer {{token}}",
23
+ "developer-token": "{{developer_token}}",
24
+ "login-customer-id": "{{manager_customer_id}}"
23
25
  },
24
26
  "credential_fields": [
25
27
  {
@@ -106,7 +108,7 @@
106
108
  },
107
109
  {
108
110
  "name": "search_stream",
109
- "description": "Run a GAQL query using streaming \u2014 returns all results at once without pagination. Better for large result sets. Same query syntax as google-ads-search.",
111
+ "description": "Run a GAQL query using streaming returns all results at once without pagination. Better for large result sets. Same query syntax as google-ads-search.",
110
112
  "method": "POST",
111
113
  "path": "/customers/{customer_id}/googleAds:searchStream",
112
114
  "input_schema": {
@@ -257,9 +259,243 @@
257
259
  ]
258
260
  }
259
261
  },
262
+ {
263
+ "name": "asset_mutate",
264
+ "description": "Create, update, or remove reusable Google Ads assets: images, text assets, YouTube video assets, lead form assets, call assets, sitelinks, callouts, structured snippets, and other asset types supported by the Google Ads API. Use campaign_asset_mutate, customer_asset_mutate, asset_group_asset_mutate, or ad assets on ads to attach created assets where needed.",
265
+ "method": "POST",
266
+ "path": "/customers/{customer_id}/assets:mutate",
267
+ "input_schema": {
268
+ "type": "object",
269
+ "properties": {
270
+ "customer_id": {
271
+ "type": "string",
272
+ "description": "Google Ads customer ID (without hyphens)"
273
+ },
274
+ "operations": {
275
+ "type": "array",
276
+ "description": "Array of asset operations (create/update/remove)",
277
+ "items": {
278
+ "type": "object"
279
+ }
280
+ }
281
+ },
282
+ "required": [
283
+ "customer_id",
284
+ "operations"
285
+ ]
286
+ }
287
+ },
288
+ {
289
+ "name": "campaign_asset_mutate",
290
+ "description": "Attach, update, or remove assets at campaign scope. Use for campaign-level sitelinks, callouts, lead forms, images, and other asset links. Operations target campaignAsset resources.",
291
+ "method": "POST",
292
+ "path": "/customers/{customer_id}/campaignAssets:mutate",
293
+ "input_schema": {
294
+ "type": "object",
295
+ "properties": {
296
+ "customer_id": {
297
+ "type": "string",
298
+ "description": "Google Ads customer ID (without hyphens)"
299
+ },
300
+ "operations": {
301
+ "type": "array",
302
+ "description": "Array of campaign asset operations (create/update/remove)",
303
+ "items": {
304
+ "type": "object"
305
+ }
306
+ }
307
+ },
308
+ "required": [
309
+ "customer_id",
310
+ "operations"
311
+ ]
312
+ }
313
+ },
314
+ {
315
+ "name": "customer_asset_mutate",
316
+ "description": "Attach, update, or remove assets at customer/account scope. Use for account-level assets such as sitelinks, callouts, lead forms, calls, and other supported asset links. Operations target customerAsset resources.",
317
+ "method": "POST",
318
+ "path": "/customers/{customer_id}/customerAssets:mutate",
319
+ "input_schema": {
320
+ "type": "object",
321
+ "properties": {
322
+ "customer_id": {
323
+ "type": "string",
324
+ "description": "Google Ads customer ID (without hyphens)"
325
+ },
326
+ "operations": {
327
+ "type": "array",
328
+ "description": "Array of customer asset operations (create/update/remove)",
329
+ "items": {
330
+ "type": "object"
331
+ }
332
+ }
333
+ },
334
+ "required": [
335
+ "customer_id",
336
+ "operations"
337
+ ]
338
+ }
339
+ },
340
+ {
341
+ "name": "ad_group_criterion_mutate",
342
+ "description": "Create, update, or remove ad group criteria beyond keywords: audiences, placements, topics, demographics, listing groups, and other ad-group targeting criteria. keyword_mutate is a convenience alias for keyword criteria on this same endpoint.",
343
+ "method": "POST",
344
+ "path": "/customers/{customer_id}/adGroupCriteria:mutate",
345
+ "input_schema": {
346
+ "type": "object",
347
+ "properties": {
348
+ "customer_id": {
349
+ "type": "string",
350
+ "description": "Google Ads customer ID (without hyphens)"
351
+ },
352
+ "operations": {
353
+ "type": "array",
354
+ "description": "Array of ad group criterion operations (create/update/remove)",
355
+ "items": {
356
+ "type": "object"
357
+ }
358
+ }
359
+ },
360
+ "required": [
361
+ "customer_id",
362
+ "operations"
363
+ ]
364
+ }
365
+ },
366
+ {
367
+ "name": "campaign_criterion_mutate",
368
+ "description": "Create, update, or remove campaign-level criteria: locations, languages, negative keywords, audiences, and other campaign targeting or exclusions.",
369
+ "method": "POST",
370
+ "path": "/customers/{customer_id}/campaignCriteria:mutate",
371
+ "input_schema": {
372
+ "type": "object",
373
+ "properties": {
374
+ "customer_id": {
375
+ "type": "string",
376
+ "description": "Google Ads customer ID (without hyphens)"
377
+ },
378
+ "operations": {
379
+ "type": "array",
380
+ "description": "Array of campaign criterion operations (create/update/remove)",
381
+ "items": {
382
+ "type": "object"
383
+ }
384
+ }
385
+ },
386
+ "required": [
387
+ "customer_id",
388
+ "operations"
389
+ ]
390
+ }
391
+ },
392
+ {
393
+ "name": "user_list_mutate",
394
+ "description": "Create, update, or remove remarketing/customer match user lists. Use this for audience resources that can be targeted from campaigns or ad groups.",
395
+ "method": "POST",
396
+ "path": "/customers/{customer_id}/userLists:mutate",
397
+ "input_schema": {
398
+ "type": "object",
399
+ "properties": {
400
+ "customer_id": {
401
+ "type": "string",
402
+ "description": "Google Ads customer ID (without hyphens)"
403
+ },
404
+ "operations": {
405
+ "type": "array",
406
+ "description": "Array of user list operations (create/update/remove)",
407
+ "items": {
408
+ "type": "object"
409
+ }
410
+ }
411
+ },
412
+ "required": [
413
+ "customer_id",
414
+ "operations"
415
+ ]
416
+ }
417
+ },
418
+ {
419
+ "name": "conversion_action_mutate",
420
+ "description": "Create, update, or remove conversion actions for tracking leads, purchases, signups, page views, and other conversion goals.",
421
+ "method": "POST",
422
+ "path": "/customers/{customer_id}/conversionActions:mutate",
423
+ "input_schema": {
424
+ "type": "object",
425
+ "properties": {
426
+ "customer_id": {
427
+ "type": "string",
428
+ "description": "Google Ads customer ID (without hyphens)"
429
+ },
430
+ "operations": {
431
+ "type": "array",
432
+ "description": "Array of conversion action operations (create/update/remove)",
433
+ "items": {
434
+ "type": "object"
435
+ }
436
+ }
437
+ },
438
+ "required": [
439
+ "customer_id",
440
+ "operations"
441
+ ]
442
+ }
443
+ },
444
+ {
445
+ "name": "asset_group_mutate",
446
+ "description": "Create, update, or remove Performance Max asset groups. Use together with asset_group_asset_mutate to attach images, logos, headlines, descriptions, videos, and other assets to a Performance Max campaign.",
447
+ "method": "POST",
448
+ "path": "/customers/{customer_id}/assetGroups:mutate",
449
+ "input_schema": {
450
+ "type": "object",
451
+ "properties": {
452
+ "customer_id": {
453
+ "type": "string",
454
+ "description": "Google Ads customer ID (without hyphens)"
455
+ },
456
+ "operations": {
457
+ "type": "array",
458
+ "description": "Array of asset group operations (create/update/remove)",
459
+ "items": {
460
+ "type": "object"
461
+ }
462
+ }
463
+ },
464
+ "required": [
465
+ "customer_id",
466
+ "operations"
467
+ ]
468
+ }
469
+ },
470
+ {
471
+ "name": "asset_group_asset_mutate",
472
+ "description": "Attach, update, or remove assets inside Performance Max asset groups. Operations target assetGroupAsset resources.",
473
+ "method": "POST",
474
+ "path": "/customers/{customer_id}/assetGroupAssets:mutate",
475
+ "input_schema": {
476
+ "type": "object",
477
+ "properties": {
478
+ "customer_id": {
479
+ "type": "string",
480
+ "description": "Google Ads customer ID (without hyphens)"
481
+ },
482
+ "operations": {
483
+ "type": "array",
484
+ "description": "Array of asset group asset operations (create/update/remove)",
485
+ "items": {
486
+ "type": "object"
487
+ }
488
+ }
489
+ },
490
+ "required": [
491
+ "customer_id",
492
+ "operations"
493
+ ]
494
+ }
495
+ },
260
496
  {
261
497
  "name": "bulk_mutate",
262
- "description": "Create or modify multiple resource types in a single atomic request \u2014 budgets, campaigns, ad groups, and ads together. Uses temporary resource IDs (negative numbers) to reference resources created in the same request.\n\nExample creating a full campaign:\n{\"mutateOperations\": [{\"campaignBudgetOperation\": {\"create\": {\"resourceName\": \"customers/1234/campaignBudgets/-1\", \"name\": \"Budget\", \"amountMicros\": \"50000000\"}}}, {\"campaignOperation\": {\"create\": {\"resourceName\": \"customers/1234/campaigns/-2\", \"name\": \"My Campaign\", \"campaignBudget\": \"customers/1234/campaignBudgets/-1\", \"advertisingChannelType\": \"SEARCH\", \"status\": \"PAUSED\"}}}, {\"adGroupOperation\": {\"create\": {\"campaign\": \"customers/1234/campaigns/-2\", \"name\": \"Ad Group 1\"}}}]}",
498
+ "description": "Create or modify multiple resource types in a single atomic request budgets, campaigns, ad groups, and ads together. Uses temporary resource IDs (negative numbers) to reference resources created in the same request.\n\nExample creating a full campaign:\n{\"mutateOperations\": [{\"campaignBudgetOperation\": {\"create\": {\"resourceName\": \"customers/1234/campaignBudgets/-1\", \"name\": \"Budget\", \"amountMicros\": \"50000000\"}}}, {\"campaignOperation\": {\"create\": {\"resourceName\": \"customers/1234/campaigns/-2\", \"name\": \"My Campaign\", \"campaignBudget\": \"customers/1234/campaignBudgets/-1\", \"advertisingChannelType\": \"SEARCH\", \"status\": \"PAUSED\"}}}, {\"adGroupOperation\": {\"create\": {\"campaign\": \"customers/1234/campaigns/-2\", \"name\": \"Ad Group 1\"}}}]}",
263
499
  "method": "POST",
264
500
  "path": "/customers/{customer_id}/googleAds:mutate",
265
501
  "input_schema": {
@@ -286,6 +522,54 @@
286
522
  "mutateOperations"
287
523
  ]
288
524
  }
525
+ },
526
+ {
527
+ "name": "report_search",
528
+ "description": "Run a reporting GAQL query. This is an explicit reporting alias for googleAds:search; use metrics.*, segments.*, and date filters in the query.",
529
+ "method": "POST",
530
+ "path": "/customers/{customer_id}/googleAds:search",
531
+ "input_schema": {
532
+ "type": "object",
533
+ "properties": {
534
+ "customer_id": {
535
+ "type": "string"
536
+ },
537
+ "query": {
538
+ "type": "string"
539
+ },
540
+ "page_size": {
541
+ "type": "integer"
542
+ },
543
+ "page_token": {
544
+ "type": "string"
545
+ }
546
+ },
547
+ "required": [
548
+ "customer_id",
549
+ "query"
550
+ ]
551
+ }
552
+ },
553
+ {
554
+ "name": "report_search_stream",
555
+ "description": "Run a reporting GAQL query through searchStream for large report result sets.",
556
+ "method": "POST",
557
+ "path": "/customers/{customer_id}/googleAds:searchStream",
558
+ "input_schema": {
559
+ "type": "object",
560
+ "properties": {
561
+ "customer_id": {
562
+ "type": "string"
563
+ },
564
+ "query": {
565
+ "type": "string"
566
+ }
567
+ },
568
+ "required": [
569
+ "customer_id",
570
+ "query"
571
+ ]
572
+ }
289
573
  }
290
574
  ]
291
- }
575
+ }