@amigo-ai/platform-sdk 0.5.8 → 0.5.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.
@@ -7720,7 +7720,7 @@ export interface paths {
7720
7720
  };
7721
7721
  /**
7722
7722
  * Outbound sync status per data source
7723
- * @description Multi-sink outbound sync progress. Shows total/synced/failed/pending counts per data source from outbound_sync_log. For workspaces with multiple outbound sinks (e.g. Revolution + HubSpot).
7723
+ * @description Multi-sink outbound sync progress. Shows total/synced/failed/pending counts per data source. For workspaces with multiple outbound sinks (e.g. Revolution + HubSpot).
7724
7724
  */
7725
7725
  get: operations["outbound-sync-by-sink"];
7726
7726
  put?: never;
@@ -15466,6 +15466,21 @@ export interface components {
15466
15466
  [key: string]: unknown;
15467
15467
  };
15468
15468
  };
15469
+ /**
15470
+ * LanguageProviderEntry
15471
+ * @description Per-language TTS provider configuration.
15472
+ */
15473
+ LanguageProviderEntry: {
15474
+ /** Config */
15475
+ config?: {
15476
+ [key: string]: unknown;
15477
+ };
15478
+ /**
15479
+ * Provider
15480
+ * @enum {string}
15481
+ */
15482
+ provider: "cartesia" | "elevenlabs" | "groq";
15483
+ };
15469
15484
  /** LastPollInfo */
15470
15485
  LastPollInfo: {
15471
15486
  /** At */
@@ -15617,6 +15632,8 @@ export interface components {
15617
15632
  sync_error?: string | null;
15618
15633
  /** Synced At */
15619
15634
  synced_at?: string | null;
15635
+ /** Workspace Id */
15636
+ workspace_id?: string | null;
15620
15637
  };
15621
15638
  /** MemoryAnalyticsResponse */
15622
15639
  MemoryAnalyticsResponse: {
@@ -18059,6 +18076,8 @@ export interface components {
18059
18076
  };
18060
18077
  /** PurgeEntityResponse */
18061
18078
  PurgeEntityResponse: {
18079
+ /** Delta Events Note */
18080
+ delta_events_note?: string | null;
18062
18081
  /** Display Name */
18063
18082
  display_name: string | null;
18064
18083
  /** Edges Deleted */
@@ -19379,6 +19398,10 @@ export interface components {
19379
19398
  * @default false
19380
19399
  */
19381
19400
  forward_call_enabled?: boolean;
19401
+ /** Language Providers */
19402
+ language_providers?: {
19403
+ [key: string]: components["schemas"]["LanguageProviderEntry"];
19404
+ } | null;
19382
19405
  /** Max Buffer Delay Ms */
19383
19406
  max_buffer_delay_ms?: number | null;
19384
19407
  /** Max Response Sentences */
@@ -19395,8 +19418,14 @@ export interface components {
19395
19418
  progress_vocabulary?: string[] | null;
19396
19419
  /** Transition Deadline Ms */
19397
19420
  transition_deadline_ms?: number | null;
19421
+ /** Tts Config */
19422
+ tts_config?: {
19423
+ [key: string]: unknown;
19424
+ } | null;
19398
19425
  /** Tts Model */
19399
19426
  tts_model?: ("sonic-turbo" | "sonic-3") | null;
19427
+ /** Tts Provider */
19428
+ tts_provider?: ("cartesia" | "elevenlabs" | "groq") | null;
19400
19429
  };
19401
19430
  /** SessionEndEvent */
19402
19431
  SessionEndEvent: {
@@ -22599,6 +22628,10 @@ export interface components {
22599
22628
  };
22600
22629
  /** VoiceConfig */
22601
22630
  VoiceConfig: {
22631
+ /** Language Providers */
22632
+ language_providers?: {
22633
+ [key: string]: components["schemas"]["LanguageProviderEntry"];
22634
+ } | null;
22602
22635
  /**
22603
22636
  * Similarity Boost
22604
22637
  * @default 0
@@ -22614,6 +22647,12 @@ export interface components {
22614
22647
  * @default 0
22615
22648
  */
22616
22649
  style?: number;
22650
+ /** Tts Config */
22651
+ tts_config?: {
22652
+ [key: string]: unknown;
22653
+ } | null;
22654
+ /** Tts Provider */
22655
+ tts_provider?: ("cartesia" | "elevenlabs" | "groq") | null;
22617
22656
  /** Voice Id */
22618
22657
  voice_id: string;
22619
22658
  };
@@ -22742,6 +22781,10 @@ export interface components {
22742
22781
  keyterms?: string[] | null;
22743
22782
  /** Language */
22744
22783
  language?: string | null;
22784
+ /** Language Providers */
22785
+ language_providers?: {
22786
+ [key: string]: components["schemas"]["LanguageProviderEntry"];
22787
+ } | null;
22745
22788
  /** Post Call Analysis Enabled */
22746
22789
  post_call_analysis_enabled?: boolean | null;
22747
22790
  /** Pronunciation Dict Id */
@@ -22754,6 +22797,12 @@ export interface components {
22754
22797
  tone?: string | null;
22755
22798
  /** Transcript Correction Enabled */
22756
22799
  transcript_correction_enabled?: boolean | null;
22800
+ /** Tts Config */
22801
+ tts_config?: {
22802
+ [key: string]: unknown;
22803
+ } | null;
22804
+ /** Tts Provider */
22805
+ tts_provider?: ("cartesia" | "elevenlabs" | "groq") | null;
22757
22806
  /** Voice Id */
22758
22807
  voice_id?: string | null;
22759
22808
  /** Volume */
@@ -22770,6 +22819,10 @@ export interface components {
22770
22819
  keyterms: string[];
22771
22820
  /** Language */
22772
22821
  language: string;
22822
+ /** Language Providers */
22823
+ language_providers?: {
22824
+ [key: string]: components["schemas"]["LanguageProviderEntry"];
22825
+ } | null;
22773
22826
  /** Post Call Analysis Enabled */
22774
22827
  post_call_analysis_enabled: boolean;
22775
22828
  /** Pronunciation Dict Id */
@@ -22782,6 +22835,12 @@ export interface components {
22782
22835
  tone: string | null;
22783
22836
  /** Transcript Correction Enabled */
22784
22837
  transcript_correction_enabled: boolean;
22838
+ /** Tts Config */
22839
+ tts_config: {
22840
+ [key: string]: unknown;
22841
+ } | null;
22842
+ /** Tts Provider */
22843
+ tts_provider: ("cartesia" | "elevenlabs" | "groq") | null;
22785
22844
  /** Voice Id */
22786
22845
  voice_id: string | null;
22787
22846
  /** Volume */