@apteva/integrations 0.15.9 → 0.15.10

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.
@@ -84,6 +84,22 @@
84
84
  "type": "string",
85
85
  "description": "Next text for continuity across chunks."
86
86
  },
87
+ "previous_request_ids": {
88
+ "type": "array",
89
+ "items": {
90
+ "type": "string"
91
+ },
92
+ "maxItems": 3,
93
+ "description": "Up to three previous ElevenLabs generation request IDs for request-stitching continuity. Not supported by eleven_v3."
94
+ },
95
+ "next_request_ids": {
96
+ "type": "array",
97
+ "items": {
98
+ "type": "string"
99
+ },
100
+ "maxItems": 3,
101
+ "description": "Up to three following ElevenLabs generation request IDs for request-stitching continuity when regenerating a middle segment. Not supported by eleven_v3."
102
+ },
87
103
  "apply_text_normalization": {
88
104
  "type": "string",
89
105
  "enum": [
@@ -505,6 +521,273 @@
505
521
  ]
506
522
  }
507
523
  },
524
+ {
525
+ "name": "design_voice",
526
+ "description": "Generate reusable voice preview candidates from a text description using ElevenLabs Voice Design. Returns previews with generated_voice_id values; save the preferred one with create_voice_from_preview.",
527
+ "method": "POST",
528
+ "path": "/text-to-voice/design",
529
+ "timeout_ms": 180000,
530
+ "query_params": [
531
+ "output_format"
532
+ ],
533
+ "input_schema": {
534
+ "type": "object",
535
+ "properties": {
536
+ "voice_description": {
537
+ "type": "string",
538
+ "minLength": 20,
539
+ "maxLength": 1000,
540
+ "description": "Description of the voice to create, including age, gender, accent, tone, pacing, and audio quality."
541
+ },
542
+ "text": {
543
+ "type": "string",
544
+ "minLength": 100,
545
+ "maxLength": 1000,
546
+ "description": "Optional preview text. If omitted, set auto_generate_text=true."
547
+ },
548
+ "auto_generate_text": {
549
+ "type": "boolean",
550
+ "default": false,
551
+ "description": "Ask ElevenLabs to generate suitable preview text for the voice description."
552
+ },
553
+ "loudness": {
554
+ "type": "number",
555
+ "minimum": -1,
556
+ "maximum": 1,
557
+ "default": 0.5,
558
+ "description": "Preview loudness control. -1 is quietest, 1 is loudest."
559
+ },
560
+ "quality": {
561
+ "type": "number",
562
+ "minimum": -1,
563
+ "maximum": 1,
564
+ "default": 0.9,
565
+ "description": "Higher quality improves output but reduces variety."
566
+ },
567
+ "seed": {
568
+ "type": "integer",
569
+ "minimum": 0,
570
+ "maximum": 2147483647,
571
+ "description": "Optional deterministic seed."
572
+ },
573
+ "guidance_scale": {
574
+ "type": "number",
575
+ "minimum": 0,
576
+ "maximum": 100,
577
+ "default": 5,
578
+ "description": "How closely the model follows the prompt."
579
+ },
580
+ "should_enhance": {
581
+ "type": "boolean",
582
+ "default": false,
583
+ "description": "Enhance the voice description with AI before generating previews."
584
+ },
585
+ "output_format": {
586
+ "type": "string",
587
+ "default": "mp3_44100_128",
588
+ "description": "Preview audio output format."
589
+ }
590
+ },
591
+ "required": [
592
+ "voice_description"
593
+ ]
594
+ }
595
+ },
596
+ {
597
+ "name": "create_voice_from_preview",
598
+ "description": "Save a generated Voice Design or remix preview as a reusable ElevenLabs voice. Use generated_voice_id from design_voice or remix_voice.",
599
+ "method": "POST",
600
+ "path": "/text-to-voice",
601
+ "timeout_ms": 60000,
602
+ "input_schema": {
603
+ "type": "object",
604
+ "properties": {
605
+ "voice_name": {
606
+ "type": "string",
607
+ "description": "Name for the new saved voice."
608
+ },
609
+ "voice_description": {
610
+ "type": "string",
611
+ "minLength": 20,
612
+ "maxLength": 1000,
613
+ "description": "Description for the saved voice."
614
+ },
615
+ "generated_voice_id": {
616
+ "type": "string",
617
+ "description": "Generated preview voice id returned by design_voice or remix_voice."
618
+ },
619
+ "labels": {
620
+ "type": "object",
621
+ "additionalProperties": {
622
+ "type": "string"
623
+ },
624
+ "description": "Optional metadata labels, for example language, accent, gender, age, or use_case."
625
+ },
626
+ "played_not_selected_voice_ids": {
627
+ "type": "array",
628
+ "items": {
629
+ "type": "string"
630
+ },
631
+ "description": "Optional generated voice ids the user previewed but did not select."
632
+ }
633
+ },
634
+ "required": [
635
+ "voice_name",
636
+ "voice_description",
637
+ "generated_voice_id"
638
+ ]
639
+ }
640
+ },
641
+ {
642
+ "name": "remix_voice",
643
+ "description": "Generate voice preview candidates by remixing an existing ElevenLabs voice with a text prompt. Save the preferred generated_voice_id with create_voice_from_preview.",
644
+ "method": "POST",
645
+ "path": "/text-to-voice/{voice_id}/remix",
646
+ "timeout_ms": 180000,
647
+ "query_params": [
648
+ "output_format"
649
+ ],
650
+ "input_schema": {
651
+ "type": "object",
652
+ "properties": {
653
+ "voice_id": {
654
+ "type": "string",
655
+ "description": "Existing voice id to remix."
656
+ },
657
+ "voice_description": {
658
+ "type": "string",
659
+ "minLength": 5,
660
+ "maxLength": 1000,
661
+ "description": "Description of the changes to make to the voice."
662
+ },
663
+ "text": {
664
+ "type": "string",
665
+ "minLength": 100,
666
+ "maxLength": 1000,
667
+ "description": "Optional preview text."
668
+ },
669
+ "auto_generate_text": {
670
+ "type": "boolean",
671
+ "default": false
672
+ },
673
+ "loudness": {
674
+ "type": "number",
675
+ "minimum": -1,
676
+ "maximum": 1,
677
+ "default": 0.5
678
+ },
679
+ "seed": {
680
+ "type": "integer",
681
+ "minimum": 0,
682
+ "maximum": 2147483647
683
+ },
684
+ "guidance_scale": {
685
+ "type": "number",
686
+ "minimum": 0,
687
+ "maximum": 100,
688
+ "default": 2
689
+ },
690
+ "stream_previews": {
691
+ "type": "boolean",
692
+ "default": false,
693
+ "description": "When true, return generated IDs without inline preview audio."
694
+ },
695
+ "remixing_session_id": {
696
+ "type": "string"
697
+ },
698
+ "remixing_session_iteration_id": {
699
+ "type": "string"
700
+ },
701
+ "prompt_strength": {
702
+ "type": "number",
703
+ "minimum": 0,
704
+ "maximum": 1,
705
+ "description": "Balance prompt versus reference audio when supported by the selected model."
706
+ },
707
+ "output_format": {
708
+ "type": "string",
709
+ "default": "mp3_44100_128"
710
+ }
711
+ },
712
+ "required": [
713
+ "voice_id",
714
+ "voice_description"
715
+ ]
716
+ }
717
+ },
718
+ {
719
+ "name": "stream_voice_preview",
720
+ "description": "Stream/download the audio preview for a generated_voice_id returned by design_voice or remix_voice. Returns binary audio.",
721
+ "method": "GET",
722
+ "path": "/text-to-voice/{generated_voice_id}/stream",
723
+ "timeout_ms": 60000,
724
+ "input_schema": {
725
+ "type": "object",
726
+ "properties": {
727
+ "generated_voice_id": {
728
+ "type": "string",
729
+ "description": "Generated preview voice id."
730
+ }
731
+ },
732
+ "required": [
733
+ "generated_voice_id"
734
+ ]
735
+ }
736
+ },
737
+ {
738
+ "name": "create_ivc_voice",
739
+ "description": "Create an Instant Voice Clone from one or more audio samples and add it to ElevenLabs Voices. Requires multipart/form-data executor support; until that is available, prefer design_voice/create_voice_from_preview.",
740
+ "method": "POST",
741
+ "path": "/voices/add",
742
+ "timeout_ms": 180000,
743
+ "multipart_form": {
744
+ "file_fields": {
745
+ "files": "files[]"
746
+ },
747
+ "field_names": [
748
+ "name",
749
+ "description",
750
+ "labels",
751
+ "remove_background_noise"
752
+ ]
753
+ },
754
+ "input_schema": {
755
+ "type": "object",
756
+ "properties": {
757
+ "name": {
758
+ "type": "string",
759
+ "description": "Name for the cloned voice."
760
+ },
761
+ "files": {
762
+ "type": "array",
763
+ "items": {
764
+ "type": "string"
765
+ },
766
+ "description": "Audio sample files as blobref:// handles, runtime binary envelopes, base64 strings, or storage-resolved files once multipart support is enabled."
767
+ },
768
+ "description": {
769
+ "type": "string",
770
+ "description": "Optional description of the voice."
771
+ },
772
+ "remove_background_noise": {
773
+ "type": "boolean",
774
+ "default": false,
775
+ "description": "Remove background noise from samples before cloning."
776
+ },
777
+ "labels": {
778
+ "type": "object",
779
+ "additionalProperties": {
780
+ "type": "string"
781
+ },
782
+ "description": "Optional labels such as language, accent, gender, or age."
783
+ }
784
+ },
785
+ "required": [
786
+ "name",
787
+ "files"
788
+ ]
789
+ }
790
+ },
508
791
  {
509
792
  "name": "list_models",
510
793
  "description": "List ElevenLabs models, including flags such as can_do_text_to_speech and model rate metadata.",
@@ -447,6 +447,117 @@
447
447
  "required": ["id"]
448
448
  }
449
449
  },
450
+ {
451
+ "name": "agent",
452
+ "description": "Run Firecrawl's autonomous web data gathering agent. Use when the agent should search, navigate, and extract structured data without you knowing the exact URLs upfront.",
453
+ "method": "POST",
454
+ "path": "/agent",
455
+ "timeout_ms": 305000,
456
+ "input_schema": {
457
+ "type": "object",
458
+ "properties": {
459
+ "prompt": {
460
+ "type": "string",
461
+ "description": "Natural-language task describing what data to gather."
462
+ },
463
+ "schema": {
464
+ "type": "object",
465
+ "description": "Optional JSON Schema for structured output."
466
+ },
467
+ "model": {
468
+ "type": "string",
469
+ "description": "Optional Firecrawl agent model tier, when supported by the account."
470
+ },
471
+ "maxPages": {
472
+ "type": "integer",
473
+ "description": "Optional page budget for the agent run."
474
+ },
475
+ "timeout": {
476
+ "type": "integer",
477
+ "description": "Optional timeout in milliseconds."
478
+ }
479
+ },
480
+ "required": ["prompt"]
481
+ }
482
+ },
483
+ {
484
+ "name": "interact_with_scrape",
485
+ "description": "Continue interacting with the browser state from a previous scrape. Provide either a natural-language prompt or Playwright code, not both. Use the scrapeId/jobId from scrape response metadata.",
486
+ "method": "POST",
487
+ "path": "/scrape/{jobId}/interact",
488
+ "timeout_ms": 305000,
489
+ "input_schema": {
490
+ "type": "object",
491
+ "properties": {
492
+ "jobId": {
493
+ "type": "string",
494
+ "description": "The scrape job ID / scrapeId returned by firecrawl_scrape."
495
+ },
496
+ "prompt": {
497
+ "type": "string",
498
+ "description": "Natural-language instruction, e.g. click a filter, fill a form, or extract after interaction."
499
+ },
500
+ "code": {
501
+ "type": "string",
502
+ "description": "Playwright code to execute in the existing browser session."
503
+ },
504
+ "timeout": {
505
+ "type": "integer",
506
+ "description": "Optional timeout in milliseconds."
507
+ }
508
+ },
509
+ "required": ["jobId"]
510
+ }
511
+ },
512
+ {
513
+ "name": "stop_scrape_interact",
514
+ "description": "Stop and release the interactive browser session associated with a scrape job.",
515
+ "method": "DELETE",
516
+ "path": "/scrape/{jobId}/interact",
517
+ "input_schema": {
518
+ "type": "object",
519
+ "properties": {
520
+ "jobId": {
521
+ "type": "string",
522
+ "description": "The scrape job ID / scrapeId."
523
+ }
524
+ },
525
+ "required": ["jobId"]
526
+ }
527
+ },
528
+ {
529
+ "name": "create_interact_session",
530
+ "description": "Start a standalone Firecrawl Interact browser session that can be driven with code, without first calling scrape.",
531
+ "method": "POST",
532
+ "path": "/interact",
533
+ "input_schema": {
534
+ "type": "object",
535
+ "properties": {
536
+ "ttl": {
537
+ "type": "integer",
538
+ "description": "Session time-to-live in seconds."
539
+ },
540
+ "activityTtl": {
541
+ "type": "integer",
542
+ "description": "Idle timeout in seconds."
543
+ },
544
+ "streamWebView": {
545
+ "type": "boolean",
546
+ "description": "Whether to return a live web view URL."
547
+ }
548
+ }
549
+ }
550
+ },
551
+ {
552
+ "name": "list_interact_sessions",
553
+ "description": "List standalone Firecrawl Interact browser sessions.",
554
+ "method": "GET",
555
+ "path": "/interact",
556
+ "input_schema": {
557
+ "type": "object",
558
+ "properties": {}
559
+ }
560
+ },
450
561
  {
451
562
  "name": "batch_scrape",
452
563
  "description": "Scrape a fixed list of URLs in one job. Returns a job id — poll firecrawl_batch_scrape_status to retrieve results. Use this when you already have the list of URLs (vs crawl, which discovers them).",
@@ -0,0 +1,119 @@
1
+ {
2
+ "slug": "ingram-coresource",
3
+ "name": "Ingram CoreSource",
4
+ "description": "Enterprise Ingram CoreSource integration scaffold for publisher asset, metadata, and distribution workflows. CoreSource API contracts are account-specific; configure the provisioned API host and adjust paths if Ingram supplies a different route set.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=coresource.ingramcontent.com&sz=128",
6
+ "categories": ["books", "publishing", "distribution", "metadata", "enterprise"],
7
+ "base_url": "https://{{credential.api_host}}",
8
+ "auth": {
9
+ "types": ["bearer"],
10
+ "headers": {
11
+ "Authorization": "Bearer {{token}}",
12
+ "Accept": "application/json"
13
+ },
14
+ "credential_fields": [
15
+ {
16
+ "name": "api_host",
17
+ "label": "API host",
18
+ "description": "Host supplied by Ingram, for example a CoreSource or gateway host without https://.",
19
+ "type": "text"
20
+ },
21
+ {
22
+ "name": "token",
23
+ "label": "Access token",
24
+ "description": "Bearer token or API token provisioned by Ingram."
25
+ }
26
+ ]
27
+ },
28
+ "tools": [
29
+ {
30
+ "name": "list_titles",
31
+ "description": "List titles from an Ingram/CoreSource enterprise title endpoint. Confirm this path against the account-specific contract.",
32
+ "method": "GET",
33
+ "path": "/titles",
34
+ "query_params": ["page", "limit", "modified_since", "status"],
35
+ "input_schema": {
36
+ "type": "object",
37
+ "properties": {
38
+ "page": { "type": "integer" },
39
+ "limit": { "type": "integer" },
40
+ "modified_since": { "type": "string", "description": "ISO date/time filter when supported." },
41
+ "status": { "type": "string" }
42
+ }
43
+ }
44
+ },
45
+ {
46
+ "name": "get_title",
47
+ "description": "Fetch one title by provider ID. Confirm this path against the account-specific contract.",
48
+ "method": "GET",
49
+ "path": "/titles/{title_id}",
50
+ "input_schema": {
51
+ "type": "object",
52
+ "properties": {
53
+ "title_id": { "type": "string" }
54
+ },
55
+ "required": ["title_id"]
56
+ }
57
+ },
58
+ {
59
+ "name": "upsert_title",
60
+ "description": "Create or update title metadata. Body should follow the Ingram-provided schema for this account.",
61
+ "method": "PUT",
62
+ "path": "/titles/{title_id}",
63
+ "body_root_param": "body",
64
+ "input_schema": {
65
+ "type": "object",
66
+ "properties": {
67
+ "title_id": { "type": "string" },
68
+ "body": { "type": "object", "description": "Account-specific title metadata payload." }
69
+ },
70
+ "required": ["title_id", "body"]
71
+ }
72
+ },
73
+ {
74
+ "name": "create_title",
75
+ "description": "Create a title metadata record. Body should follow the Ingram-provided schema for this account.",
76
+ "method": "POST",
77
+ "path": "/titles",
78
+ "body_root_param": "body",
79
+ "input_schema": {
80
+ "type": "object",
81
+ "properties": {
82
+ "body": { "type": "object", "description": "Account-specific title metadata payload." }
83
+ },
84
+ "required": ["body"]
85
+ }
86
+ },
87
+ {
88
+ "name": "list_assets",
89
+ "description": "List digital assets/files in CoreSource. Confirm this path against the account-specific contract.",
90
+ "method": "GET",
91
+ "path": "/assets",
92
+ "query_params": ["page", "limit", "title_id", "type"],
93
+ "input_schema": {
94
+ "type": "object",
95
+ "properties": {
96
+ "page": { "type": "integer" },
97
+ "limit": { "type": "integer" },
98
+ "title_id": { "type": "string" },
99
+ "type": { "type": "string", "description": "Asset type, for example epub, pdf, cover, audiobook." }
100
+ }
101
+ }
102
+ },
103
+ {
104
+ "name": "create_distribution_job",
105
+ "description": "Create a distribution/delivery job using the account-specific Ingram contract.",
106
+ "method": "POST",
107
+ "path": "/distribution/jobs",
108
+ "body_root_param": "body",
109
+ "timeout_ms": 120000,
110
+ "input_schema": {
111
+ "type": "object",
112
+ "properties": {
113
+ "body": { "type": "object", "description": "Distribution job payload supplied by Ingram." }
114
+ },
115
+ "required": ["body"]
116
+ }
117
+ }
118
+ ]
119
+ }