@amigo-ai/platform-sdk 0.5.9 → 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.
- package/dist/types/generated/api.d.ts +46 -1
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/agents.d.ts +48 -0
- package/dist/types/resources/agents.d.ts.map +1 -1
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/services.d.ts +60 -0
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts +16 -0
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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 */
|
|
@@ -18061,6 +18076,8 @@ export interface components {
|
|
|
18061
18076
|
};
|
|
18062
18077
|
/** PurgeEntityResponse */
|
|
18063
18078
|
PurgeEntityResponse: {
|
|
18079
|
+
/** Delta Events Note */
|
|
18080
|
+
delta_events_note?: string | null;
|
|
18064
18081
|
/** Display Name */
|
|
18065
18082
|
display_name: string | null;
|
|
18066
18083
|
/** Edges Deleted */
|
|
@@ -19381,6 +19398,10 @@ export interface components {
|
|
|
19381
19398
|
* @default false
|
|
19382
19399
|
*/
|
|
19383
19400
|
forward_call_enabled?: boolean;
|
|
19401
|
+
/** Language Providers */
|
|
19402
|
+
language_providers?: {
|
|
19403
|
+
[key: string]: components["schemas"]["LanguageProviderEntry"];
|
|
19404
|
+
} | null;
|
|
19384
19405
|
/** Max Buffer Delay Ms */
|
|
19385
19406
|
max_buffer_delay_ms?: number | null;
|
|
19386
19407
|
/** Max Response Sentences */
|
|
@@ -19397,8 +19418,14 @@ export interface components {
|
|
|
19397
19418
|
progress_vocabulary?: string[] | null;
|
|
19398
19419
|
/** Transition Deadline Ms */
|
|
19399
19420
|
transition_deadline_ms?: number | null;
|
|
19421
|
+
/** Tts Config */
|
|
19422
|
+
tts_config?: {
|
|
19423
|
+
[key: string]: unknown;
|
|
19424
|
+
} | null;
|
|
19400
19425
|
/** Tts Model */
|
|
19401
19426
|
tts_model?: ("sonic-turbo" | "sonic-3") | null;
|
|
19427
|
+
/** Tts Provider */
|
|
19428
|
+
tts_provider?: ("cartesia" | "elevenlabs" | "groq") | null;
|
|
19402
19429
|
};
|
|
19403
19430
|
/** SessionEndEvent */
|
|
19404
19431
|
SessionEndEvent: {
|
|
@@ -22601,6 +22628,10 @@ export interface components {
|
|
|
22601
22628
|
};
|
|
22602
22629
|
/** VoiceConfig */
|
|
22603
22630
|
VoiceConfig: {
|
|
22631
|
+
/** Language Providers */
|
|
22632
|
+
language_providers?: {
|
|
22633
|
+
[key: string]: components["schemas"]["LanguageProviderEntry"];
|
|
22634
|
+
} | null;
|
|
22604
22635
|
/**
|
|
22605
22636
|
* Similarity Boost
|
|
22606
22637
|
* @default 0
|
|
@@ -22616,6 +22647,12 @@ export interface components {
|
|
|
22616
22647
|
* @default 0
|
|
22617
22648
|
*/
|
|
22618
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;
|
|
22619
22656
|
/** Voice Id */
|
|
22620
22657
|
voice_id: string;
|
|
22621
22658
|
};
|
|
@@ -22744,6 +22781,10 @@ export interface components {
|
|
|
22744
22781
|
keyterms?: string[] | null;
|
|
22745
22782
|
/** Language */
|
|
22746
22783
|
language?: string | null;
|
|
22784
|
+
/** Language Providers */
|
|
22785
|
+
language_providers?: {
|
|
22786
|
+
[key: string]: components["schemas"]["LanguageProviderEntry"];
|
|
22787
|
+
} | null;
|
|
22747
22788
|
/** Post Call Analysis Enabled */
|
|
22748
22789
|
post_call_analysis_enabled?: boolean | null;
|
|
22749
22790
|
/** Pronunciation Dict Id */
|
|
@@ -22778,6 +22819,10 @@ export interface components {
|
|
|
22778
22819
|
keyterms: string[];
|
|
22779
22820
|
/** Language */
|
|
22780
22821
|
language: string;
|
|
22822
|
+
/** Language Providers */
|
|
22823
|
+
language_providers?: {
|
|
22824
|
+
[key: string]: components["schemas"]["LanguageProviderEntry"];
|
|
22825
|
+
} | null;
|
|
22781
22826
|
/** Post Call Analysis Enabled */
|
|
22782
22827
|
post_call_analysis_enabled: boolean;
|
|
22783
22828
|
/** Pronunciation Dict Id */
|