retell-sdk 4.46.0 → 4.48.0
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/CHANGELOG.md +28 -0
- package/core.js +3 -3
- package/core.js.map +1 -1
- package/core.mjs +3 -3
- package/core.mjs.map +1 -1
- package/index.d.mts +2 -2
- package/index.d.ts +2 -2
- package/index.d.ts.map +1 -1
- package/index.js.map +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/agent.d.ts +12 -0
- package/resources/agent.d.ts.map +1 -1
- package/resources/agent.js +17 -0
- package/resources/agent.js.map +1 -1
- package/resources/agent.mjs +17 -0
- package/resources/agent.mjs.map +1 -1
- package/resources/chat.d.ts +51 -1
- package/resources/chat.d.ts.map +1 -1
- package/resources/chat.js +16 -0
- package/resources/chat.js.map +1 -1
- package/resources/chat.mjs +16 -0
- package/resources/chat.mjs.map +1 -1
- package/resources/conversation-flow.d.ts +12 -0
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/llm.d.ts +48 -6
- package/resources/llm.d.ts.map +1 -1
- package/src/core.ts +3 -3
- package/src/index.ts +2 -0
- package/src/resources/agent.ts +18 -0
- package/src/resources/chat.ts +58 -0
- package/src/resources/conversation-flow.ts +15 -0
- package/src/resources/index.ts +1 -0
- package/src/resources/llm.ts +60 -12
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/llm.ts
CHANGED
|
@@ -764,6 +764,11 @@ export namespace LlmResponse {
|
|
|
764
764
|
*/
|
|
765
765
|
name: string;
|
|
766
766
|
|
|
767
|
+
/**
|
|
768
|
+
* Post call analysis setting for the agent swap.
|
|
769
|
+
*/
|
|
770
|
+
post_call_analysis_setting: 'both_agents' | 'only_destination_agent';
|
|
771
|
+
|
|
767
772
|
type: 'agent_swap';
|
|
768
773
|
|
|
769
774
|
/**
|
|
@@ -783,9 +788,12 @@ export namespace LlmResponse {
|
|
|
783
788
|
*/
|
|
784
789
|
execution_message_description?: string;
|
|
785
790
|
|
|
786
|
-
post_call_analysis_setting?: 'both_agents' | 'only_destination_agent';
|
|
787
|
-
|
|
788
791
|
speak_during_execution?: boolean;
|
|
792
|
+
|
|
793
|
+
/**
|
|
794
|
+
* Webhook setting for the agent swap, defaults to only source.
|
|
795
|
+
*/
|
|
796
|
+
webhook_setting?: 'both_agents' | 'only_destination_agent' | 'only_source_agent';
|
|
789
797
|
}
|
|
790
798
|
|
|
791
799
|
export interface McpTool {
|
|
@@ -1504,6 +1512,11 @@ export namespace LlmResponse {
|
|
|
1504
1512
|
*/
|
|
1505
1513
|
name: string;
|
|
1506
1514
|
|
|
1515
|
+
/**
|
|
1516
|
+
* Post call analysis setting for the agent swap.
|
|
1517
|
+
*/
|
|
1518
|
+
post_call_analysis_setting: 'both_agents' | 'only_destination_agent';
|
|
1519
|
+
|
|
1507
1520
|
type: 'agent_swap';
|
|
1508
1521
|
|
|
1509
1522
|
/**
|
|
@@ -1523,9 +1536,12 @@ export namespace LlmResponse {
|
|
|
1523
1536
|
*/
|
|
1524
1537
|
execution_message_description?: string;
|
|
1525
1538
|
|
|
1526
|
-
post_call_analysis_setting?: 'both_agents' | 'only_destination_agent';
|
|
1527
|
-
|
|
1528
1539
|
speak_during_execution?: boolean;
|
|
1540
|
+
|
|
1541
|
+
/**
|
|
1542
|
+
* Webhook setting for the agent swap, defaults to only source.
|
|
1543
|
+
*/
|
|
1544
|
+
webhook_setting?: 'both_agents' | 'only_destination_agent' | 'only_source_agent';
|
|
1529
1545
|
}
|
|
1530
1546
|
|
|
1531
1547
|
export interface McpTool {
|
|
@@ -2260,6 +2276,11 @@ export namespace LlmCreateParams {
|
|
|
2260
2276
|
*/
|
|
2261
2277
|
name: string;
|
|
2262
2278
|
|
|
2279
|
+
/**
|
|
2280
|
+
* Post call analysis setting for the agent swap.
|
|
2281
|
+
*/
|
|
2282
|
+
post_call_analysis_setting: 'both_agents' | 'only_destination_agent';
|
|
2283
|
+
|
|
2263
2284
|
type: 'agent_swap';
|
|
2264
2285
|
|
|
2265
2286
|
/**
|
|
@@ -2279,9 +2300,12 @@ export namespace LlmCreateParams {
|
|
|
2279
2300
|
*/
|
|
2280
2301
|
execution_message_description?: string;
|
|
2281
2302
|
|
|
2282
|
-
post_call_analysis_setting?: 'both_agents' | 'only_destination_agent';
|
|
2283
|
-
|
|
2284
2303
|
speak_during_execution?: boolean;
|
|
2304
|
+
|
|
2305
|
+
/**
|
|
2306
|
+
* Webhook setting for the agent swap, defaults to only source.
|
|
2307
|
+
*/
|
|
2308
|
+
webhook_setting?: 'both_agents' | 'only_destination_agent' | 'only_source_agent';
|
|
2285
2309
|
}
|
|
2286
2310
|
|
|
2287
2311
|
export interface McpTool {
|
|
@@ -3000,6 +3024,11 @@ export namespace LlmCreateParams {
|
|
|
3000
3024
|
*/
|
|
3001
3025
|
name: string;
|
|
3002
3026
|
|
|
3027
|
+
/**
|
|
3028
|
+
* Post call analysis setting for the agent swap.
|
|
3029
|
+
*/
|
|
3030
|
+
post_call_analysis_setting: 'both_agents' | 'only_destination_agent';
|
|
3031
|
+
|
|
3003
3032
|
type: 'agent_swap';
|
|
3004
3033
|
|
|
3005
3034
|
/**
|
|
@@ -3019,9 +3048,12 @@ export namespace LlmCreateParams {
|
|
|
3019
3048
|
*/
|
|
3020
3049
|
execution_message_description?: string;
|
|
3021
3050
|
|
|
3022
|
-
post_call_analysis_setting?: 'both_agents' | 'only_destination_agent';
|
|
3023
|
-
|
|
3024
3051
|
speak_during_execution?: boolean;
|
|
3052
|
+
|
|
3053
|
+
/**
|
|
3054
|
+
* Webhook setting for the agent swap, defaults to only source.
|
|
3055
|
+
*/
|
|
3056
|
+
webhook_setting?: 'both_agents' | 'only_destination_agent' | 'only_source_agent';
|
|
3025
3057
|
}
|
|
3026
3058
|
|
|
3027
3059
|
export interface McpTool {
|
|
@@ -3771,6 +3803,11 @@ export namespace LlmUpdateParams {
|
|
|
3771
3803
|
*/
|
|
3772
3804
|
name: string;
|
|
3773
3805
|
|
|
3806
|
+
/**
|
|
3807
|
+
* Post call analysis setting for the agent swap.
|
|
3808
|
+
*/
|
|
3809
|
+
post_call_analysis_setting: 'both_agents' | 'only_destination_agent';
|
|
3810
|
+
|
|
3774
3811
|
type: 'agent_swap';
|
|
3775
3812
|
|
|
3776
3813
|
/**
|
|
@@ -3790,9 +3827,12 @@ export namespace LlmUpdateParams {
|
|
|
3790
3827
|
*/
|
|
3791
3828
|
execution_message_description?: string;
|
|
3792
3829
|
|
|
3793
|
-
post_call_analysis_setting?: 'both_agents' | 'only_destination_agent';
|
|
3794
|
-
|
|
3795
3830
|
speak_during_execution?: boolean;
|
|
3831
|
+
|
|
3832
|
+
/**
|
|
3833
|
+
* Webhook setting for the agent swap, defaults to only source.
|
|
3834
|
+
*/
|
|
3835
|
+
webhook_setting?: 'both_agents' | 'only_destination_agent' | 'only_source_agent';
|
|
3796
3836
|
}
|
|
3797
3837
|
|
|
3798
3838
|
export interface McpTool {
|
|
@@ -4511,6 +4551,11 @@ export namespace LlmUpdateParams {
|
|
|
4511
4551
|
*/
|
|
4512
4552
|
name: string;
|
|
4513
4553
|
|
|
4554
|
+
/**
|
|
4555
|
+
* Post call analysis setting for the agent swap.
|
|
4556
|
+
*/
|
|
4557
|
+
post_call_analysis_setting: 'both_agents' | 'only_destination_agent';
|
|
4558
|
+
|
|
4514
4559
|
type: 'agent_swap';
|
|
4515
4560
|
|
|
4516
4561
|
/**
|
|
@@ -4530,9 +4575,12 @@ export namespace LlmUpdateParams {
|
|
|
4530
4575
|
*/
|
|
4531
4576
|
execution_message_description?: string;
|
|
4532
4577
|
|
|
4533
|
-
post_call_analysis_setting?: 'both_agents' | 'only_destination_agent';
|
|
4534
|
-
|
|
4535
4578
|
speak_during_execution?: boolean;
|
|
4579
|
+
|
|
4580
|
+
/**
|
|
4581
|
+
* Webhook setting for the agent swap, defaults to only source.
|
|
4582
|
+
*/
|
|
4583
|
+
webhook_setting?: 'both_agents' | 'only_destination_agent' | 'only_source_agent';
|
|
4536
4584
|
}
|
|
4537
4585
|
|
|
4538
4586
|
export interface McpTool {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.48.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.
|
|
1
|
+
export declare const VERSION = "4.48.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.48.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|