retell-sdk 5.27.0 → 5.29.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 +16 -0
- package/package.json +1 -1
- package/resources/agent.d.mts +4 -3
- package/resources/agent.d.mts.map +1 -1
- package/resources/agent.d.ts +4 -3
- package/resources/agent.d.ts.map +1 -1
- package/resources/batch-call.d.mts +1 -1
- package/resources/batch-call.d.ts +1 -1
- package/resources/call.d.mts +73 -13
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +73 -13
- package/resources/call.d.ts.map +1 -1
- package/resources/chat.d.mts +327 -2
- package/resources/chat.d.mts.map +1 -1
- package/resources/chat.d.ts +327 -2
- package/resources/chat.d.ts.map +1 -1
- package/resources/concurrency.d.mts +4 -0
- package/resources/concurrency.d.mts.map +1 -1
- package/resources/concurrency.d.ts +4 -0
- package/resources/concurrency.d.ts.map +1 -1
- package/resources/conversation-flow-component.d.mts +27 -0
- package/resources/conversation-flow-component.d.mts.map +1 -1
- package/resources/conversation-flow-component.d.ts +27 -0
- package/resources/conversation-flow-component.d.ts.map +1 -1
- package/resources/conversation-flow.d.mts +54 -0
- package/resources/conversation-flow.d.mts.map +1 -1
- package/resources/conversation-flow.d.ts +54 -0
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/llm.d.mts +30 -0
- package/resources/llm.d.mts.map +1 -1
- package/resources/llm.d.ts +30 -0
- package/resources/llm.d.ts.map +1 -1
- package/resources/phone-number.d.mts +96 -60
- package/resources/phone-number.d.mts.map +1 -1
- package/resources/phone-number.d.ts +96 -60
- package/resources/phone-number.d.ts.map +1 -1
- package/resources/voice.d.mts +1 -1
- package/resources/voice.d.mts.map +1 -1
- package/resources/voice.d.ts +1 -1
- package/resources/voice.d.ts.map +1 -1
- package/src/resources/agent.ts +4 -3
- package/src/resources/batch-call.ts +1 -1
- package/src/resources/call.ts +85 -4
- package/src/resources/chat.ts +474 -2
- package/src/resources/concurrency.ts +5 -0
- package/src/resources/conversation-flow-component.ts +33 -0
- package/src/resources/conversation-flow.ts +66 -0
- package/src/resources/llm.ts +36 -0
- package/src/resources/phone-number.ts +96 -60
- package/src/resources/voice.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1632,6 +1632,11 @@ export declare namespace ConversationFlowComponentResponse {
|
|
|
1632
1632
|
* The variables to be extracted.
|
|
1633
1633
|
*/
|
|
1634
1634
|
variables: Array<ExtractDynamicVariableTool.StringAnalysisData | ExtractDynamicVariableTool.EnumAnalysisData | ExtractDynamicVariableTool.BooleanAnalysisData | ExtractDynamicVariableTool.NumberAnalysisData>;
|
|
1635
|
+
/**
|
|
1636
|
+
* If true, play a typing sound on the agent audio track while this tool is
|
|
1637
|
+
* executing.
|
|
1638
|
+
*/
|
|
1639
|
+
enable_typing_sound?: boolean;
|
|
1635
1640
|
}
|
|
1636
1641
|
namespace ExtractDynamicVariableTool {
|
|
1637
1642
|
interface StringAnalysisData {
|
|
@@ -3999,6 +4004,10 @@ export declare namespace ConversationFlowComponentResponse {
|
|
|
3999
4004
|
display_position?: ExtractDynamicVariablesNode.DisplayPosition;
|
|
4000
4005
|
edges?: Array<ExtractDynamicVariablesNode.Edge>;
|
|
4001
4006
|
else_edge?: ExtractDynamicVariablesNode.ElseEdge;
|
|
4007
|
+
/**
|
|
4008
|
+
* If true, play a typing sound while this extract step executes.
|
|
4009
|
+
*/
|
|
4010
|
+
enable_typing_sound?: boolean;
|
|
4002
4011
|
finetune_transition_examples?: Array<ExtractDynamicVariablesNode.FinetuneTransitionExample>;
|
|
4003
4012
|
global_node_setting?: ExtractDynamicVariablesNode.GlobalNodeSetting;
|
|
4004
4013
|
model_choice?: ExtractDynamicVariablesNode.ModelChoice;
|
|
@@ -7436,6 +7445,11 @@ export declare namespace ConversationFlowComponentCreateParams {
|
|
|
7436
7445
|
* The variables to be extracted.
|
|
7437
7446
|
*/
|
|
7438
7447
|
variables: Array<ExtractDynamicVariableTool.StringAnalysisData | ExtractDynamicVariableTool.EnumAnalysisData | ExtractDynamicVariableTool.BooleanAnalysisData | ExtractDynamicVariableTool.NumberAnalysisData>;
|
|
7448
|
+
/**
|
|
7449
|
+
* If true, play a typing sound on the agent audio track while this tool is
|
|
7450
|
+
* executing.
|
|
7451
|
+
*/
|
|
7452
|
+
enable_typing_sound?: boolean;
|
|
7439
7453
|
}
|
|
7440
7454
|
namespace ExtractDynamicVariableTool {
|
|
7441
7455
|
interface StringAnalysisData {
|
|
@@ -9803,6 +9817,10 @@ export declare namespace ConversationFlowComponentCreateParams {
|
|
|
9803
9817
|
display_position?: ExtractDynamicVariablesNode.DisplayPosition;
|
|
9804
9818
|
edges?: Array<ExtractDynamicVariablesNode.Edge>;
|
|
9805
9819
|
else_edge?: ExtractDynamicVariablesNode.ElseEdge;
|
|
9820
|
+
/**
|
|
9821
|
+
* If true, play a typing sound while this extract step executes.
|
|
9822
|
+
*/
|
|
9823
|
+
enable_typing_sound?: boolean;
|
|
9806
9824
|
finetune_transition_examples?: Array<ExtractDynamicVariablesNode.FinetuneTransitionExample>;
|
|
9807
9825
|
global_node_setting?: ExtractDynamicVariablesNode.GlobalNodeSetting;
|
|
9808
9826
|
model_choice?: ExtractDynamicVariablesNode.ModelChoice;
|
|
@@ -13260,6 +13278,11 @@ export declare namespace ConversationFlowComponentUpdateParams {
|
|
|
13260
13278
|
* The variables to be extracted.
|
|
13261
13279
|
*/
|
|
13262
13280
|
variables: Array<ExtractDynamicVariableTool.StringAnalysisData | ExtractDynamicVariableTool.EnumAnalysisData | ExtractDynamicVariableTool.BooleanAnalysisData | ExtractDynamicVariableTool.NumberAnalysisData>;
|
|
13281
|
+
/**
|
|
13282
|
+
* If true, play a typing sound on the agent audio track while this tool is
|
|
13283
|
+
* executing.
|
|
13284
|
+
*/
|
|
13285
|
+
enable_typing_sound?: boolean;
|
|
13263
13286
|
}
|
|
13264
13287
|
namespace ExtractDynamicVariableTool {
|
|
13265
13288
|
interface StringAnalysisData {
|
|
@@ -15627,6 +15650,10 @@ export declare namespace ConversationFlowComponentUpdateParams {
|
|
|
15627
15650
|
display_position?: ExtractDynamicVariablesNode.DisplayPosition;
|
|
15628
15651
|
edges?: Array<ExtractDynamicVariablesNode.Edge>;
|
|
15629
15652
|
else_edge?: ExtractDynamicVariablesNode.ElseEdge;
|
|
15653
|
+
/**
|
|
15654
|
+
* If true, play a typing sound while this extract step executes.
|
|
15655
|
+
*/
|
|
15656
|
+
enable_typing_sound?: boolean;
|
|
15630
15657
|
finetune_transition_examples?: Array<ExtractDynamicVariablesNode.FinetuneTransitionExample>;
|
|
15631
15658
|
global_node_setting?: ExtractDynamicVariablesNode.GlobalNodeSetting;
|
|
15632
15659
|
model_choice?: ExtractDynamicVariablesNode.ModelChoice;
|