@apteva/integrations 0.15.10 → 0.15.12
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/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +144 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/braintree.json +53 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/elevenlabs.json +9 -0
- package/src/apps/fal-ai.json +278 -290
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/kling-ai.json +197 -161
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/leadbyte.json +16 -54
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/razorpay.json +207 -0
- package/src/apps/replicate.json +315 -61
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/runway.json +386 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/stability-ai.json +356 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +19 -21
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
package/src/apps/deepgram.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{
|
|
15
15
|
"name": "api_key",
|
|
16
16
|
"label": "Deepgram API Key",
|
|
17
|
-
"description": "Create one at https://console.deepgram.com/project/default/keys
|
|
17
|
+
"description": "Create one at https://console.deepgram.com/project/default/keys. Speech calls need the normal request scopes; reporting tools need usage:read, and billing/balance/purchase tools need billing:read."
|
|
18
18
|
}
|
|
19
19
|
]
|
|
20
20
|
},
|
|
@@ -345,6 +345,293 @@
|
|
|
345
345
|
},
|
|
346
346
|
"required": ["project_id", "model_id"]
|
|
347
347
|
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "get_usage",
|
|
351
|
+
"description": "Get raw Deepgram usage records for a project over a date range. Use this for detailed request-level usage auditing before summarizing cost. Dates use YYYY-MM-DD. Start with list_usage_fields to discover valid models, tags, features, and processing methods.",
|
|
352
|
+
"method": "GET",
|
|
353
|
+
"path": "/v1/projects/{project_id}/usage",
|
|
354
|
+
"timeout_ms": 60000,
|
|
355
|
+
"input_schema": {
|
|
356
|
+
"type": "object",
|
|
357
|
+
"properties": {
|
|
358
|
+
"project_id": {
|
|
359
|
+
"type": "string",
|
|
360
|
+
"description": "Target project id from list_projects."
|
|
361
|
+
},
|
|
362
|
+
"start": {
|
|
363
|
+
"type": "string",
|
|
364
|
+
"description": "Start date, YYYY-MM-DD."
|
|
365
|
+
},
|
|
366
|
+
"end": {
|
|
367
|
+
"type": "string",
|
|
368
|
+
"description": "End date, YYYY-MM-DD."
|
|
369
|
+
},
|
|
370
|
+
"accessor": {
|
|
371
|
+
"type": "string",
|
|
372
|
+
"description": "Filter by accessor UUID."
|
|
373
|
+
},
|
|
374
|
+
"deployment": {
|
|
375
|
+
"type": "string",
|
|
376
|
+
"description": "Filter by deployment type such as hosted, beta, self-hosted, or dedicated."
|
|
377
|
+
},
|
|
378
|
+
"endpoint": {
|
|
379
|
+
"type": "string",
|
|
380
|
+
"description": "Filter by API endpoint."
|
|
381
|
+
},
|
|
382
|
+
"method": {
|
|
383
|
+
"type": "string",
|
|
384
|
+
"description": "Filter by processing method, for example sync, async, or streaming."
|
|
385
|
+
},
|
|
386
|
+
"model": {
|
|
387
|
+
"type": "string",
|
|
388
|
+
"description": "Filter by model id."
|
|
389
|
+
},
|
|
390
|
+
"tag": {
|
|
391
|
+
"type": "string",
|
|
392
|
+
"description": "Filter by request tag."
|
|
393
|
+
},
|
|
394
|
+
"language": {
|
|
395
|
+
"type": "string",
|
|
396
|
+
"description": "Filter by language code."
|
|
397
|
+
},
|
|
398
|
+
"punctuate": {
|
|
399
|
+
"type": "boolean",
|
|
400
|
+
"description": "Filter by whether punctuate was enabled."
|
|
401
|
+
},
|
|
402
|
+
"smart_format": {
|
|
403
|
+
"type": "boolean",
|
|
404
|
+
"description": "Filter by whether smart_format was enabled."
|
|
405
|
+
},
|
|
406
|
+
"diarize": {
|
|
407
|
+
"type": "boolean",
|
|
408
|
+
"description": "Filter by whether diarize was enabled."
|
|
409
|
+
},
|
|
410
|
+
"detect_language": {
|
|
411
|
+
"type": "boolean",
|
|
412
|
+
"description": "Filter by whether language detection was enabled."
|
|
413
|
+
},
|
|
414
|
+
"summarize": {
|
|
415
|
+
"type": "string",
|
|
416
|
+
"description": "Filter by summarization setting."
|
|
417
|
+
},
|
|
418
|
+
"topics": {
|
|
419
|
+
"type": "boolean",
|
|
420
|
+
"description": "Filter by whether topic detection was enabled."
|
|
421
|
+
},
|
|
422
|
+
"intents": {
|
|
423
|
+
"type": "boolean",
|
|
424
|
+
"description": "Filter by whether intent detection was enabled."
|
|
425
|
+
},
|
|
426
|
+
"sentiment": {
|
|
427
|
+
"type": "boolean",
|
|
428
|
+
"description": "Filter by whether sentiment analysis was enabled."
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"required": ["project_id"]
|
|
432
|
+
},
|
|
433
|
+
"query_params": ["start", "end", "accessor", "deployment", "endpoint", "method", "model", "tag", "language", "punctuate", "smart_format", "diarize", "detect_language", "summarize", "topics", "intents", "sentiment"]
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"name": "get_usage_breakdown",
|
|
437
|
+
"description": "Aggregate Deepgram usage for a project by fields such as accessor, endpoint, feature_set, models, method, tags, and deployment. Use this to answer questions like which models or tags drove usage this month.",
|
|
438
|
+
"method": "GET",
|
|
439
|
+
"path": "/v1/projects/{project_id}/usage/breakdown",
|
|
440
|
+
"timeout_ms": 60000,
|
|
441
|
+
"input_schema": {
|
|
442
|
+
"type": "object",
|
|
443
|
+
"properties": {
|
|
444
|
+
"project_id": {
|
|
445
|
+
"type": "string",
|
|
446
|
+
"description": "Target project id from list_projects."
|
|
447
|
+
},
|
|
448
|
+
"start": {
|
|
449
|
+
"type": "string",
|
|
450
|
+
"description": "Start date, YYYY-MM-DD."
|
|
451
|
+
},
|
|
452
|
+
"end": {
|
|
453
|
+
"type": "string",
|
|
454
|
+
"description": "End date, YYYY-MM-DD."
|
|
455
|
+
},
|
|
456
|
+
"grouping": {
|
|
457
|
+
"type": "array",
|
|
458
|
+
"description": "Fields to group by. Official values: accessor, endpoint, feature_set, models, method, tags, deployment.",
|
|
459
|
+
"items": {
|
|
460
|
+
"type": "string",
|
|
461
|
+
"enum": ["accessor", "endpoint", "feature_set", "models", "method", "tags", "deployment"]
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"accessor": {
|
|
465
|
+
"type": "string",
|
|
466
|
+
"description": "Filter by accessor UUID."
|
|
467
|
+
},
|
|
468
|
+
"deployment": {
|
|
469
|
+
"type": "string",
|
|
470
|
+
"description": "Filter by deployment type."
|
|
471
|
+
},
|
|
472
|
+
"endpoint": {
|
|
473
|
+
"type": "string",
|
|
474
|
+
"description": "Filter by API endpoint."
|
|
475
|
+
},
|
|
476
|
+
"method": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"description": "Filter by processing method."
|
|
479
|
+
},
|
|
480
|
+
"model": {
|
|
481
|
+
"type": "string",
|
|
482
|
+
"description": "Filter by model id."
|
|
483
|
+
},
|
|
484
|
+
"tag": {
|
|
485
|
+
"type": "string",
|
|
486
|
+
"description": "Filter by request tag."
|
|
487
|
+
},
|
|
488
|
+
"language": {
|
|
489
|
+
"type": "string",
|
|
490
|
+
"description": "Filter by language code."
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"required": ["project_id"]
|
|
494
|
+
},
|
|
495
|
+
"query_params": ["start", "end", "grouping", "accessor", "deployment", "endpoint", "method", "model", "tag", "language"]
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "list_usage_fields",
|
|
499
|
+
"description": "List usage filter fields available for a project in a date range: tags, models, processing methods, and features. Call this before get_usage or get_usage_breakdown when an agent needs valid filter values.",
|
|
500
|
+
"method": "GET",
|
|
501
|
+
"path": "/v1/projects/{project_id}/usage/fields",
|
|
502
|
+
"input_schema": {
|
|
503
|
+
"type": "object",
|
|
504
|
+
"properties": {
|
|
505
|
+
"project_id": {
|
|
506
|
+
"type": "string",
|
|
507
|
+
"description": "Target project id from list_projects."
|
|
508
|
+
},
|
|
509
|
+
"start": {
|
|
510
|
+
"type": "string",
|
|
511
|
+
"description": "Start date, YYYY-MM-DD."
|
|
512
|
+
},
|
|
513
|
+
"end": {
|
|
514
|
+
"type": "string",
|
|
515
|
+
"description": "End date, YYYY-MM-DD."
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"required": ["project_id"]
|
|
519
|
+
},
|
|
520
|
+
"query_params": ["start", "end"]
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"name": "get_billing_breakdown",
|
|
524
|
+
"description": "Get Deepgram billing cost breakdown for a project. Results include USD dollar amounts, so this is the primary tool for questions like 'how much did Deepgram cost this month?' Use start/end dates in YYYY-MM-DD and optional grouping such as accessor, deployment, line_item, or tags.",
|
|
525
|
+
"method": "GET",
|
|
526
|
+
"path": "/v1/projects/{project_id}/billing/breakdown",
|
|
527
|
+
"timeout_ms": 60000,
|
|
528
|
+
"input_schema": {
|
|
529
|
+
"type": "object",
|
|
530
|
+
"properties": {
|
|
531
|
+
"project_id": {
|
|
532
|
+
"type": "string",
|
|
533
|
+
"description": "Target project id from list_projects."
|
|
534
|
+
},
|
|
535
|
+
"start": {
|
|
536
|
+
"type": "string",
|
|
537
|
+
"description": "Start date, YYYY-MM-DD."
|
|
538
|
+
},
|
|
539
|
+
"end": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"description": "End date, YYYY-MM-DD."
|
|
542
|
+
},
|
|
543
|
+
"grouping": {
|
|
544
|
+
"type": "array",
|
|
545
|
+
"description": "Fields to group by. Official values include accessor, deployment, line_item, and tags.",
|
|
546
|
+
"items": {
|
|
547
|
+
"type": "string",
|
|
548
|
+
"enum": ["accessor", "deployment", "line_item", "tags"]
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
"accessor": {
|
|
552
|
+
"type": "string",
|
|
553
|
+
"description": "Filter by accessor UUID."
|
|
554
|
+
},
|
|
555
|
+
"deployment": {
|
|
556
|
+
"type": "string",
|
|
557
|
+
"description": "Filter by deployment type."
|
|
558
|
+
},
|
|
559
|
+
"tag": {
|
|
560
|
+
"type": "string",
|
|
561
|
+
"description": "Filter by billing tag."
|
|
562
|
+
},
|
|
563
|
+
"line_item": {
|
|
564
|
+
"type": "string",
|
|
565
|
+
"description": "Filter by billing line item."
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
"required": ["project_id"]
|
|
569
|
+
},
|
|
570
|
+
"query_params": ["start", "end", "grouping", "accessor", "deployment", "tag", "line_item"]
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "list_billing_fields",
|
|
574
|
+
"description": "List billing filter fields available for a project in a date range: accessors, deployments, tags, and line_items. Use this to discover valid filters before get_billing_breakdown.",
|
|
575
|
+
"method": "GET",
|
|
576
|
+
"path": "/v1/projects/{project_id}/billing/fields",
|
|
577
|
+
"input_schema": {
|
|
578
|
+
"type": "object",
|
|
579
|
+
"properties": {
|
|
580
|
+
"project_id": {
|
|
581
|
+
"type": "string",
|
|
582
|
+
"description": "Target project id from list_projects."
|
|
583
|
+
},
|
|
584
|
+
"start": {
|
|
585
|
+
"type": "string",
|
|
586
|
+
"description": "Start date, YYYY-MM-DD."
|
|
587
|
+
},
|
|
588
|
+
"end": {
|
|
589
|
+
"type": "string",
|
|
590
|
+
"description": "End date, YYYY-MM-DD."
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"required": ["project_id"]
|
|
594
|
+
},
|
|
595
|
+
"query_params": ["start", "end"]
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "list_balances",
|
|
599
|
+
"description": "List outstanding Deepgram balances for a project, including amount, units, balance_id, and purchase_order_id.",
|
|
600
|
+
"method": "GET",
|
|
601
|
+
"path": "/v1/projects/{project_id}/balances",
|
|
602
|
+
"input_schema": {
|
|
603
|
+
"type": "object",
|
|
604
|
+
"properties": {
|
|
605
|
+
"project_id": {
|
|
606
|
+
"type": "string",
|
|
607
|
+
"description": "Target project id from list_projects."
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
"required": ["project_id"]
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"name": "list_purchases",
|
|
615
|
+
"description": "List Deepgram project purchases and order transactions, including amount, units, created date, expiration, order_id, and order_type.",
|
|
616
|
+
"method": "GET",
|
|
617
|
+
"path": "/v1/projects/{project_id}/purchases",
|
|
618
|
+
"input_schema": {
|
|
619
|
+
"type": "object",
|
|
620
|
+
"properties": {
|
|
621
|
+
"project_id": {
|
|
622
|
+
"type": "string",
|
|
623
|
+
"description": "Target project id from list_projects."
|
|
624
|
+
},
|
|
625
|
+
"limit": {
|
|
626
|
+
"type": "integer",
|
|
627
|
+
"description": "Number of purchases to return. Default 10, maximum 1000.",
|
|
628
|
+
"minimum": 1,
|
|
629
|
+
"maximum": 1000
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"required": ["project_id"]
|
|
633
|
+
},
|
|
634
|
+
"query_params": ["limit"]
|
|
348
635
|
}
|
|
349
636
|
]
|
|
350
637
|
}
|
package/src/apps/elevenlabs.json
CHANGED
|
@@ -539,6 +539,15 @@
|
|
|
539
539
|
"maxLength": 1000,
|
|
540
540
|
"description": "Description of the voice to create, including age, gender, accent, tone, pacing, and audio quality."
|
|
541
541
|
},
|
|
542
|
+
"model_id": {
|
|
543
|
+
"type": "string",
|
|
544
|
+
"enum": [
|
|
545
|
+
"eleven_ttv_v3",
|
|
546
|
+
"eleven_multilingual_ttv_v2"
|
|
547
|
+
],
|
|
548
|
+
"default": "eleven_ttv_v3",
|
|
549
|
+
"description": "ElevenLabs Voice Design model. Use eleven_ttv_v3 for the newer expressive voice design model, or eleven_multilingual_ttv_v2 for the previous multilingual voice design model."
|
|
550
|
+
},
|
|
542
551
|
"text": {
|
|
543
552
|
"type": "string",
|
|
544
553
|
"minLength": 100,
|