retell-sdk 5.11.0 → 5.13.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.
Files changed (76) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/README.md +2 -2
  3. package/client.d.mts +6 -3
  4. package/client.d.mts.map +1 -1
  5. package/client.d.ts +6 -3
  6. package/client.d.ts.map +1 -1
  7. package/client.js +3 -3
  8. package/client.js.map +1 -1
  9. package/client.mjs +3 -3
  10. package/client.mjs.map +1 -1
  11. package/internal/utils/env.js +2 -2
  12. package/internal/utils/env.js.map +1 -1
  13. package/internal/utils/env.mjs +2 -2
  14. package/internal/utils/env.mjs.map +1 -1
  15. package/package.json +1 -1
  16. package/resources/agent.d.mts +22 -45
  17. package/resources/agent.d.mts.map +1 -1
  18. package/resources/agent.d.ts +22 -45
  19. package/resources/agent.d.ts.map +1 -1
  20. package/resources/batch-call.d.mts +8 -17
  21. package/resources/batch-call.d.mts.map +1 -1
  22. package/resources/batch-call.d.ts +8 -17
  23. package/resources/batch-call.d.ts.map +1 -1
  24. package/resources/call.d.mts +55 -54
  25. package/resources/call.d.mts.map +1 -1
  26. package/resources/call.d.ts +55 -54
  27. package/resources/call.d.ts.map +1 -1
  28. package/resources/chat-agent.d.mts +10 -6
  29. package/resources/chat-agent.d.mts.map +1 -1
  30. package/resources/chat-agent.d.ts +10 -6
  31. package/resources/chat-agent.d.ts.map +1 -1
  32. package/resources/chat.d.mts +90 -76
  33. package/resources/chat.d.mts.map +1 -1
  34. package/resources/chat.d.ts +90 -76
  35. package/resources/chat.d.ts.map +1 -1
  36. package/resources/conversation-flow-component.d.mts +207 -48
  37. package/resources/conversation-flow-component.d.mts.map +1 -1
  38. package/resources/conversation-flow-component.d.ts +207 -48
  39. package/resources/conversation-flow-component.d.ts.map +1 -1
  40. package/resources/conversation-flow.d.mts +417 -99
  41. package/resources/conversation-flow.d.mts.map +1 -1
  42. package/resources/conversation-flow.d.ts +417 -99
  43. package/resources/conversation-flow.d.ts.map +1 -1
  44. package/resources/llm.d.mts +153 -9
  45. package/resources/llm.d.mts.map +1 -1
  46. package/resources/llm.d.ts +153 -9
  47. package/resources/llm.d.ts.map +1 -1
  48. package/resources/phone-number.d.mts +22 -125
  49. package/resources/phone-number.d.mts.map +1 -1
  50. package/resources/phone-number.d.ts +22 -125
  51. package/resources/phone-number.d.ts.map +1 -1
  52. package/resources/phone-number.js +14 -2
  53. package/resources/phone-number.js.map +1 -1
  54. package/resources/phone-number.mjs +14 -2
  55. package/resources/phone-number.mjs.map +1 -1
  56. package/resources/tests.d.mts +4 -8
  57. package/resources/tests.d.mts.map +1 -1
  58. package/resources/tests.d.ts +4 -8
  59. package/resources/tests.d.ts.map +1 -1
  60. package/src/client.ts +11 -4
  61. package/src/internal/utils/env.ts +2 -2
  62. package/src/resources/agent.ts +23 -42
  63. package/src/resources/batch-call.ts +9 -15
  64. package/src/resources/call.ts +64 -47
  65. package/src/resources/chat-agent.ts +11 -3
  66. package/src/resources/chat.ts +106 -90
  67. package/src/resources/conversation-flow-component.ts +300 -48
  68. package/src/resources/conversation-flow.ts +606 -99
  69. package/src/resources/llm.ts +201 -6
  70. package/src/resources/phone-number.ts +22 -141
  71. package/src/resources/tests.ts +7 -9
  72. package/src/version.ts +1 -1
  73. package/version.d.mts +1 -1
  74. package/version.d.ts +1 -1
  75. package/version.js +1 -1
  76. package/version.mjs +1 -1
@@ -437,7 +437,7 @@ export declare namespace ConversationFlowComponentResponse {
437
437
  /**
438
438
  * The LLM model to use
439
439
  */
440
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
440
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
441
441
  /**
442
442
  * Type of model choice
443
443
  */
@@ -821,7 +821,7 @@ export declare namespace ConversationFlowComponentResponse {
821
821
  /**
822
822
  * The LLM model to use
823
823
  */
824
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
824
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
825
825
  /**
826
826
  * Type of model choice
827
827
  */
@@ -1336,7 +1336,7 @@ export declare namespace ConversationFlowComponentResponse {
1336
1336
  * time (general tools + state tools + state edges).
1337
1337
  */
1338
1338
  name: string;
1339
- sms_content: SendSMSTool.SMSContentPredefined | SendSMSTool.SMSContentInferred;
1339
+ sms_content: SendSMSTool.SMSContentPredefined | SendSMSTool.SMSContentInferred | SendSMSTool.SMSContentTemplate;
1340
1340
  type: 'send_sms';
1341
1341
  /**
1342
1342
  * Describes what the tool does, sometimes can also include information about when
@@ -1378,6 +1378,14 @@ export declare namespace ConversationFlowComponentResponse {
1378
1378
  prompt?: string;
1379
1379
  type?: 'inferred';
1380
1380
  }
1381
+ interface SMSContentTemplate {
1382
+ /**
1383
+ * The template to use for the SMS content. "info_collection" sends a predefined
1384
+ * message requesting information from the user.
1385
+ */
1386
+ template: 'info_collection';
1387
+ type: 'template';
1388
+ }
1381
1389
  }
1382
1390
  interface CustomTool {
1383
1391
  /**
@@ -1402,6 +1410,12 @@ export declare namespace ConversationFlowComponentResponse {
1402
1410
  * Describes what this tool does and when to call this tool.
1403
1411
  */
1404
1412
  description?: string;
1413
+ /**
1414
+ * If true, play a typing sound on the agent audio track while this tool is
1415
+ * executing. Useful when the tool takes a noticeable amount of time to prevent
1416
+ * silence on the call.
1417
+ */
1418
+ enable_typing_sound?: boolean;
1405
1419
  /**
1406
1420
  * The description for the sentence agent say during execution. Only applicable
1407
1421
  * when speak_during_execution is true. Can write what to say or even provide
@@ -1512,6 +1526,11 @@ export declare namespace ConversationFlowComponentResponse {
1512
1526
  * Describes what this tool does and when to call this tool.
1513
1527
  */
1514
1528
  description?: string;
1529
+ /**
1530
+ * If true, play a typing sound on the agent audio track while this tool is
1531
+ * executing.
1532
+ */
1533
+ enable_typing_sound?: boolean;
1515
1534
  /**
1516
1535
  * The description for the sentence agent say during execution. Only applicable
1517
1536
  * when speak_during_execution is true.
@@ -1752,6 +1771,11 @@ export declare namespace ConversationFlowComponentResponse {
1752
1771
  */
1753
1772
  name: string;
1754
1773
  type: 'mcp';
1774
+ /**
1775
+ * If true, play a typing sound on the agent audio track while this MCP tool is
1776
+ * executing.
1777
+ */
1778
+ enable_typing_sound?: boolean;
1755
1779
  /**
1756
1780
  * The description for the sentence agent say during execution. Only applicable
1757
1781
  * when speak_during_execution is true. Can write what to say or even provide
@@ -1969,7 +1993,7 @@ export declare namespace ConversationFlowComponentResponse {
1969
1993
  /**
1970
1994
  * The LLM model to use
1971
1995
  */
1972
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
1996
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
1973
1997
  /**
1974
1998
  * Type of model choice
1975
1999
  */
@@ -2007,6 +2031,10 @@ export declare namespace ConversationFlowComponentResponse {
2007
2031
  display_position?: FunctionNode.DisplayPosition;
2008
2032
  edges?: Array<FunctionNode.Edge>;
2009
2033
  else_edge?: FunctionNode.ElseEdge;
2034
+ /**
2035
+ * If true, play a typing sound while this function executes.
2036
+ */
2037
+ enable_typing_sound?: boolean;
2010
2038
  finetune_transition_examples?: Array<FunctionNode.FinetuneTransitionExample>;
2011
2039
  global_node_setting?: FunctionNode.GlobalNodeSetting;
2012
2040
  instruction?: FunctionNode.NodeInstructionPrompt | FunctionNode.NodeInstructionStaticText;
@@ -2283,7 +2311,7 @@ export declare namespace ConversationFlowComponentResponse {
2283
2311
  /**
2284
2312
  * The LLM model to use
2285
2313
  */
2286
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
2314
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
2287
2315
  /**
2288
2316
  * Type of model choice
2289
2317
  */
@@ -2317,6 +2345,10 @@ export declare namespace ConversationFlowComponentResponse {
2317
2345
  display_position?: CodeNode.DisplayPosition;
2318
2346
  edges?: Array<CodeNode.Edge>;
2319
2347
  else_edge?: CodeNode.ElseEdge;
2348
+ /**
2349
+ * If true, play a typing sound while code executes.
2350
+ */
2351
+ enable_typing_sound?: boolean;
2320
2352
  finetune_transition_examples?: Array<CodeNode.FinetuneTransitionExample>;
2321
2353
  global_node_setting?: CodeNode.GlobalNodeSetting;
2322
2354
  instruction?: CodeNode.NodeInstructionPrompt | CodeNode.NodeInstructionStaticText;
@@ -2605,7 +2637,7 @@ export declare namespace ConversationFlowComponentResponse {
2605
2637
  /**
2606
2638
  * The LLM model to use
2607
2639
  */
2608
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
2640
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
2609
2641
  /**
2610
2642
  * Type of model choice
2611
2643
  */
@@ -3086,7 +3118,7 @@ export declare namespace ConversationFlowComponentResponse {
3086
3118
  /**
3087
3119
  * The LLM model to use
3088
3120
  */
3089
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
3121
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
3090
3122
  /**
3091
3123
  * Type of model choice
3092
3124
  */
@@ -3327,7 +3359,7 @@ export declare namespace ConversationFlowComponentResponse {
3327
3359
  /**
3328
3360
  * The LLM model to use
3329
3361
  */
3330
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
3362
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
3331
3363
  /**
3332
3364
  * Type of model choice
3333
3365
  */
@@ -3604,7 +3636,7 @@ export declare namespace ConversationFlowComponentResponse {
3604
3636
  /**
3605
3637
  * The LLM model to use
3606
3638
  */
3607
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
3639
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
3608
3640
  /**
3609
3641
  * Type of model choice
3610
3642
  */
@@ -3621,7 +3653,7 @@ export declare namespace ConversationFlowComponentResponse {
3621
3653
  */
3622
3654
  id: string;
3623
3655
  failed_edge: SMSNode.FailedEdge;
3624
- instruction: SMSNode.NodeInstructionPrompt | SMSNode.NodeInstructionStaticText;
3656
+ instruction: SMSNode.NodeInstructionPrompt | SMSNode.NodeInstructionStaticText | SMSNode.SMSInstructionTemplate;
3625
3657
  success_edge: SMSNode.SuccessEdge;
3626
3658
  /**
3627
3659
  * Type of the node
@@ -3709,6 +3741,17 @@ export declare namespace ConversationFlowComponentResponse {
3709
3741
  */
3710
3742
  type: 'static_text';
3711
3743
  }
3744
+ interface SMSInstructionTemplate {
3745
+ /**
3746
+ * The template to use for the instruction. "info_collection" sends a predefined
3747
+ * message requesting information from the user.
3748
+ */
3749
+ template: 'info_collection';
3750
+ /**
3751
+ * Type of instruction
3752
+ */
3753
+ type: 'template';
3754
+ }
3712
3755
  interface SuccessEdge {
3713
3756
  /**
3714
3757
  * Unique identifier for the edge
@@ -3881,7 +3924,7 @@ export declare namespace ConversationFlowComponentResponse {
3881
3924
  /**
3882
3925
  * The LLM model to use
3883
3926
  */
3884
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
3927
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
3885
3928
  /**
3886
3929
  * Type of model choice
3887
3930
  */
@@ -4267,7 +4310,7 @@ export declare namespace ConversationFlowComponentResponse {
4267
4310
  /**
4268
4311
  * The LLM model to use
4269
4312
  */
4270
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
4313
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
4271
4314
  /**
4272
4315
  * Type of model choice
4273
4316
  */
@@ -4531,7 +4574,7 @@ export declare namespace ConversationFlowComponentResponse {
4531
4574
  /**
4532
4575
  * The LLM model to use
4533
4576
  */
4534
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
4577
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
4535
4578
  /**
4536
4579
  * Type of model choice
4537
4580
  */
@@ -4569,6 +4612,10 @@ export declare namespace ConversationFlowComponentResponse {
4569
4612
  display_position?: McpNode.DisplayPosition;
4570
4613
  edges?: Array<McpNode.Edge>;
4571
4614
  else_edge?: McpNode.ElseEdge;
4615
+ /**
4616
+ * If true, play a typing sound while MCP tool executes.
4617
+ */
4618
+ enable_typing_sound?: boolean;
4572
4619
  finetune_transition_examples?: Array<McpNode.FinetuneTransitionExample>;
4573
4620
  global_node_setting?: McpNode.GlobalNodeSetting;
4574
4621
  /**
@@ -4855,7 +4902,7 @@ export declare namespace ConversationFlowComponentResponse {
4855
4902
  /**
4856
4903
  * The LLM model to use
4857
4904
  */
4858
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
4905
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
4859
4906
  /**
4860
4907
  * Type of model choice
4861
4908
  */
@@ -5320,7 +5367,7 @@ export declare namespace ConversationFlowComponentResponse {
5320
5367
  /**
5321
5368
  * The LLM model to use
5322
5369
  */
5323
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
5370
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
5324
5371
  /**
5325
5372
  * Type of model choice
5326
5373
  */
@@ -5503,7 +5550,7 @@ export declare namespace ConversationFlowComponentResponse {
5503
5550
  /**
5504
5551
  * The LLM model to use
5505
5552
  */
5506
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
5553
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
5507
5554
  /**
5508
5555
  * Type of model choice
5509
5556
  */
@@ -5603,6 +5650,12 @@ export declare namespace ConversationFlowComponentResponse {
5603
5650
  * Describes what this tool does and when to call this tool.
5604
5651
  */
5605
5652
  description?: string;
5653
+ /**
5654
+ * If true, play a typing sound on the agent audio track while this tool is
5655
+ * executing. Useful when the tool takes a noticeable amount of time to prevent
5656
+ * silence on the call.
5657
+ */
5658
+ enable_typing_sound?: boolean;
5606
5659
  /**
5607
5660
  * The description for the sentence agent say during execution. Only applicable
5608
5661
  * when speak_during_execution is true. Can write what to say or even provide
@@ -6132,7 +6185,7 @@ export declare namespace ConversationFlowComponentCreateParams {
6132
6185
  /**
6133
6186
  * The LLM model to use
6134
6187
  */
6135
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
6188
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
6136
6189
  /**
6137
6190
  * Type of model choice
6138
6191
  */
@@ -6516,7 +6569,7 @@ export declare namespace ConversationFlowComponentCreateParams {
6516
6569
  /**
6517
6570
  * The LLM model to use
6518
6571
  */
6519
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
6572
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
6520
6573
  /**
6521
6574
  * Type of model choice
6522
6575
  */
@@ -7031,7 +7084,7 @@ export declare namespace ConversationFlowComponentCreateParams {
7031
7084
  * time (general tools + state tools + state edges).
7032
7085
  */
7033
7086
  name: string;
7034
- sms_content: SendSMSTool.SMSContentPredefined | SendSMSTool.SMSContentInferred;
7087
+ sms_content: SendSMSTool.SMSContentPredefined | SendSMSTool.SMSContentInferred | SendSMSTool.SMSContentTemplate;
7035
7088
  type: 'send_sms';
7036
7089
  /**
7037
7090
  * Describes what the tool does, sometimes can also include information about when
@@ -7073,6 +7126,14 @@ export declare namespace ConversationFlowComponentCreateParams {
7073
7126
  prompt?: string;
7074
7127
  type?: 'inferred';
7075
7128
  }
7129
+ interface SMSContentTemplate {
7130
+ /**
7131
+ * The template to use for the SMS content. "info_collection" sends a predefined
7132
+ * message requesting information from the user.
7133
+ */
7134
+ template: 'info_collection';
7135
+ type: 'template';
7136
+ }
7076
7137
  }
7077
7138
  interface CustomTool {
7078
7139
  /**
@@ -7097,6 +7158,12 @@ export declare namespace ConversationFlowComponentCreateParams {
7097
7158
  * Describes what this tool does and when to call this tool.
7098
7159
  */
7099
7160
  description?: string;
7161
+ /**
7162
+ * If true, play a typing sound on the agent audio track while this tool is
7163
+ * executing. Useful when the tool takes a noticeable amount of time to prevent
7164
+ * silence on the call.
7165
+ */
7166
+ enable_typing_sound?: boolean;
7100
7167
  /**
7101
7168
  * The description for the sentence agent say during execution. Only applicable
7102
7169
  * when speak_during_execution is true. Can write what to say or even provide
@@ -7207,6 +7274,11 @@ export declare namespace ConversationFlowComponentCreateParams {
7207
7274
  * Describes what this tool does and when to call this tool.
7208
7275
  */
7209
7276
  description?: string;
7277
+ /**
7278
+ * If true, play a typing sound on the agent audio track while this tool is
7279
+ * executing.
7280
+ */
7281
+ enable_typing_sound?: boolean;
7210
7282
  /**
7211
7283
  * The description for the sentence agent say during execution. Only applicable
7212
7284
  * when speak_during_execution is true.
@@ -7447,6 +7519,11 @@ export declare namespace ConversationFlowComponentCreateParams {
7447
7519
  */
7448
7520
  name: string;
7449
7521
  type: 'mcp';
7522
+ /**
7523
+ * If true, play a typing sound on the agent audio track while this MCP tool is
7524
+ * executing.
7525
+ */
7526
+ enable_typing_sound?: boolean;
7450
7527
  /**
7451
7528
  * The description for the sentence agent say during execution. Only applicable
7452
7529
  * when speak_during_execution is true. Can write what to say or even provide
@@ -7664,7 +7741,7 @@ export declare namespace ConversationFlowComponentCreateParams {
7664
7741
  /**
7665
7742
  * The LLM model to use
7666
7743
  */
7667
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
7744
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
7668
7745
  /**
7669
7746
  * Type of model choice
7670
7747
  */
@@ -7702,6 +7779,10 @@ export declare namespace ConversationFlowComponentCreateParams {
7702
7779
  display_position?: FunctionNode.DisplayPosition;
7703
7780
  edges?: Array<FunctionNode.Edge>;
7704
7781
  else_edge?: FunctionNode.ElseEdge;
7782
+ /**
7783
+ * If true, play a typing sound while this function executes.
7784
+ */
7785
+ enable_typing_sound?: boolean;
7705
7786
  finetune_transition_examples?: Array<FunctionNode.FinetuneTransitionExample>;
7706
7787
  global_node_setting?: FunctionNode.GlobalNodeSetting;
7707
7788
  instruction?: FunctionNode.NodeInstructionPrompt | FunctionNode.NodeInstructionStaticText;
@@ -7978,7 +8059,7 @@ export declare namespace ConversationFlowComponentCreateParams {
7978
8059
  /**
7979
8060
  * The LLM model to use
7980
8061
  */
7981
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
8062
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
7982
8063
  /**
7983
8064
  * Type of model choice
7984
8065
  */
@@ -8012,6 +8093,10 @@ export declare namespace ConversationFlowComponentCreateParams {
8012
8093
  display_position?: CodeNode.DisplayPosition;
8013
8094
  edges?: Array<CodeNode.Edge>;
8014
8095
  else_edge?: CodeNode.ElseEdge;
8096
+ /**
8097
+ * If true, play a typing sound while code executes.
8098
+ */
8099
+ enable_typing_sound?: boolean;
8015
8100
  finetune_transition_examples?: Array<CodeNode.FinetuneTransitionExample>;
8016
8101
  global_node_setting?: CodeNode.GlobalNodeSetting;
8017
8102
  instruction?: CodeNode.NodeInstructionPrompt | CodeNode.NodeInstructionStaticText;
@@ -8300,7 +8385,7 @@ export declare namespace ConversationFlowComponentCreateParams {
8300
8385
  /**
8301
8386
  * The LLM model to use
8302
8387
  */
8303
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
8388
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
8304
8389
  /**
8305
8390
  * Type of model choice
8306
8391
  */
@@ -8781,7 +8866,7 @@ export declare namespace ConversationFlowComponentCreateParams {
8781
8866
  /**
8782
8867
  * The LLM model to use
8783
8868
  */
8784
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
8869
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
8785
8870
  /**
8786
8871
  * Type of model choice
8787
8872
  */
@@ -9022,7 +9107,7 @@ export declare namespace ConversationFlowComponentCreateParams {
9022
9107
  /**
9023
9108
  * The LLM model to use
9024
9109
  */
9025
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
9110
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
9026
9111
  /**
9027
9112
  * Type of model choice
9028
9113
  */
@@ -9299,7 +9384,7 @@ export declare namespace ConversationFlowComponentCreateParams {
9299
9384
  /**
9300
9385
  * The LLM model to use
9301
9386
  */
9302
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
9387
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
9303
9388
  /**
9304
9389
  * Type of model choice
9305
9390
  */
@@ -9316,7 +9401,7 @@ export declare namespace ConversationFlowComponentCreateParams {
9316
9401
  */
9317
9402
  id: string;
9318
9403
  failed_edge: SMSNode.FailedEdge;
9319
- instruction: SMSNode.NodeInstructionPrompt | SMSNode.NodeInstructionStaticText;
9404
+ instruction: SMSNode.NodeInstructionPrompt | SMSNode.NodeInstructionStaticText | SMSNode.SMSInstructionTemplate;
9320
9405
  success_edge: SMSNode.SuccessEdge;
9321
9406
  /**
9322
9407
  * Type of the node
@@ -9404,6 +9489,17 @@ export declare namespace ConversationFlowComponentCreateParams {
9404
9489
  */
9405
9490
  type: 'static_text';
9406
9491
  }
9492
+ interface SMSInstructionTemplate {
9493
+ /**
9494
+ * The template to use for the instruction. "info_collection" sends a predefined
9495
+ * message requesting information from the user.
9496
+ */
9497
+ template: 'info_collection';
9498
+ /**
9499
+ * Type of instruction
9500
+ */
9501
+ type: 'template';
9502
+ }
9407
9503
  interface SuccessEdge {
9408
9504
  /**
9409
9505
  * Unique identifier for the edge
@@ -9576,7 +9672,7 @@ export declare namespace ConversationFlowComponentCreateParams {
9576
9672
  /**
9577
9673
  * The LLM model to use
9578
9674
  */
9579
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
9675
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
9580
9676
  /**
9581
9677
  * Type of model choice
9582
9678
  */
@@ -9962,7 +10058,7 @@ export declare namespace ConversationFlowComponentCreateParams {
9962
10058
  /**
9963
10059
  * The LLM model to use
9964
10060
  */
9965
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
10061
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
9966
10062
  /**
9967
10063
  * Type of model choice
9968
10064
  */
@@ -10226,7 +10322,7 @@ export declare namespace ConversationFlowComponentCreateParams {
10226
10322
  /**
10227
10323
  * The LLM model to use
10228
10324
  */
10229
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
10325
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
10230
10326
  /**
10231
10327
  * Type of model choice
10232
10328
  */
@@ -10264,6 +10360,10 @@ export declare namespace ConversationFlowComponentCreateParams {
10264
10360
  display_position?: McpNode.DisplayPosition;
10265
10361
  edges?: Array<McpNode.Edge>;
10266
10362
  else_edge?: McpNode.ElseEdge;
10363
+ /**
10364
+ * If true, play a typing sound while MCP tool executes.
10365
+ */
10366
+ enable_typing_sound?: boolean;
10267
10367
  finetune_transition_examples?: Array<McpNode.FinetuneTransitionExample>;
10268
10368
  global_node_setting?: McpNode.GlobalNodeSetting;
10269
10369
  /**
@@ -10550,7 +10650,7 @@ export declare namespace ConversationFlowComponentCreateParams {
10550
10650
  /**
10551
10651
  * The LLM model to use
10552
10652
  */
10553
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
10653
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
10554
10654
  /**
10555
10655
  * Type of model choice
10556
10656
  */
@@ -11015,7 +11115,7 @@ export declare namespace ConversationFlowComponentCreateParams {
11015
11115
  /**
11016
11116
  * The LLM model to use
11017
11117
  */
11018
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
11118
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
11019
11119
  /**
11020
11120
  * Type of model choice
11021
11121
  */
@@ -11198,7 +11298,7 @@ export declare namespace ConversationFlowComponentCreateParams {
11198
11298
  /**
11199
11299
  * The LLM model to use
11200
11300
  */
11201
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
11301
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
11202
11302
  /**
11203
11303
  * Type of model choice
11204
11304
  */
@@ -11298,6 +11398,12 @@ export declare namespace ConversationFlowComponentCreateParams {
11298
11398
  * Describes what this tool does and when to call this tool.
11299
11399
  */
11300
11400
  description?: string;
11401
+ /**
11402
+ * If true, play a typing sound on the agent audio track while this tool is
11403
+ * executing. Useful when the tool takes a noticeable amount of time to prevent
11404
+ * silence on the call.
11405
+ */
11406
+ enable_typing_sound?: boolean;
11301
11407
  /**
11302
11408
  * The description for the sentence agent say during execution. Only applicable
11303
11409
  * when speak_during_execution is true. Can write what to say or even provide
@@ -11857,7 +11963,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
11857
11963
  /**
11858
11964
  * The LLM model to use
11859
11965
  */
11860
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
11966
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
11861
11967
  /**
11862
11968
  * Type of model choice
11863
11969
  */
@@ -12241,7 +12347,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
12241
12347
  /**
12242
12348
  * The LLM model to use
12243
12349
  */
12244
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
12350
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
12245
12351
  /**
12246
12352
  * Type of model choice
12247
12353
  */
@@ -12756,7 +12862,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
12756
12862
  * time (general tools + state tools + state edges).
12757
12863
  */
12758
12864
  name: string;
12759
- sms_content: SendSMSTool.SMSContentPredefined | SendSMSTool.SMSContentInferred;
12865
+ sms_content: SendSMSTool.SMSContentPredefined | SendSMSTool.SMSContentInferred | SendSMSTool.SMSContentTemplate;
12760
12866
  type: 'send_sms';
12761
12867
  /**
12762
12868
  * Describes what the tool does, sometimes can also include information about when
@@ -12798,6 +12904,14 @@ export declare namespace ConversationFlowComponentUpdateParams {
12798
12904
  prompt?: string;
12799
12905
  type?: 'inferred';
12800
12906
  }
12907
+ interface SMSContentTemplate {
12908
+ /**
12909
+ * The template to use for the SMS content. "info_collection" sends a predefined
12910
+ * message requesting information from the user.
12911
+ */
12912
+ template: 'info_collection';
12913
+ type: 'template';
12914
+ }
12801
12915
  }
12802
12916
  interface CustomTool {
12803
12917
  /**
@@ -12822,6 +12936,12 @@ export declare namespace ConversationFlowComponentUpdateParams {
12822
12936
  * Describes what this tool does and when to call this tool.
12823
12937
  */
12824
12938
  description?: string;
12939
+ /**
12940
+ * If true, play a typing sound on the agent audio track while this tool is
12941
+ * executing. Useful when the tool takes a noticeable amount of time to prevent
12942
+ * silence on the call.
12943
+ */
12944
+ enable_typing_sound?: boolean;
12825
12945
  /**
12826
12946
  * The description for the sentence agent say during execution. Only applicable
12827
12947
  * when speak_during_execution is true. Can write what to say or even provide
@@ -12932,6 +13052,11 @@ export declare namespace ConversationFlowComponentUpdateParams {
12932
13052
  * Describes what this tool does and when to call this tool.
12933
13053
  */
12934
13054
  description?: string;
13055
+ /**
13056
+ * If true, play a typing sound on the agent audio track while this tool is
13057
+ * executing.
13058
+ */
13059
+ enable_typing_sound?: boolean;
12935
13060
  /**
12936
13061
  * The description for the sentence agent say during execution. Only applicable
12937
13062
  * when speak_during_execution is true.
@@ -13172,6 +13297,11 @@ export declare namespace ConversationFlowComponentUpdateParams {
13172
13297
  */
13173
13298
  name: string;
13174
13299
  type: 'mcp';
13300
+ /**
13301
+ * If true, play a typing sound on the agent audio track while this MCP tool is
13302
+ * executing.
13303
+ */
13304
+ enable_typing_sound?: boolean;
13175
13305
  /**
13176
13306
  * The description for the sentence agent say during execution. Only applicable
13177
13307
  * when speak_during_execution is true. Can write what to say or even provide
@@ -13389,7 +13519,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
13389
13519
  /**
13390
13520
  * The LLM model to use
13391
13521
  */
13392
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
13522
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
13393
13523
  /**
13394
13524
  * Type of model choice
13395
13525
  */
@@ -13427,6 +13557,10 @@ export declare namespace ConversationFlowComponentUpdateParams {
13427
13557
  display_position?: FunctionNode.DisplayPosition;
13428
13558
  edges?: Array<FunctionNode.Edge>;
13429
13559
  else_edge?: FunctionNode.ElseEdge;
13560
+ /**
13561
+ * If true, play a typing sound while this function executes.
13562
+ */
13563
+ enable_typing_sound?: boolean;
13430
13564
  finetune_transition_examples?: Array<FunctionNode.FinetuneTransitionExample>;
13431
13565
  global_node_setting?: FunctionNode.GlobalNodeSetting;
13432
13566
  instruction?: FunctionNode.NodeInstructionPrompt | FunctionNode.NodeInstructionStaticText;
@@ -13703,7 +13837,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
13703
13837
  /**
13704
13838
  * The LLM model to use
13705
13839
  */
13706
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
13840
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
13707
13841
  /**
13708
13842
  * Type of model choice
13709
13843
  */
@@ -13737,6 +13871,10 @@ export declare namespace ConversationFlowComponentUpdateParams {
13737
13871
  display_position?: CodeNode.DisplayPosition;
13738
13872
  edges?: Array<CodeNode.Edge>;
13739
13873
  else_edge?: CodeNode.ElseEdge;
13874
+ /**
13875
+ * If true, play a typing sound while code executes.
13876
+ */
13877
+ enable_typing_sound?: boolean;
13740
13878
  finetune_transition_examples?: Array<CodeNode.FinetuneTransitionExample>;
13741
13879
  global_node_setting?: CodeNode.GlobalNodeSetting;
13742
13880
  instruction?: CodeNode.NodeInstructionPrompt | CodeNode.NodeInstructionStaticText;
@@ -14025,7 +14163,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
14025
14163
  /**
14026
14164
  * The LLM model to use
14027
14165
  */
14028
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
14166
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
14029
14167
  /**
14030
14168
  * Type of model choice
14031
14169
  */
@@ -14506,7 +14644,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
14506
14644
  /**
14507
14645
  * The LLM model to use
14508
14646
  */
14509
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
14647
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
14510
14648
  /**
14511
14649
  * Type of model choice
14512
14650
  */
@@ -14747,7 +14885,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
14747
14885
  /**
14748
14886
  * The LLM model to use
14749
14887
  */
14750
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
14888
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
14751
14889
  /**
14752
14890
  * Type of model choice
14753
14891
  */
@@ -15024,7 +15162,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
15024
15162
  /**
15025
15163
  * The LLM model to use
15026
15164
  */
15027
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
15165
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
15028
15166
  /**
15029
15167
  * Type of model choice
15030
15168
  */
@@ -15041,7 +15179,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
15041
15179
  */
15042
15180
  id: string;
15043
15181
  failed_edge: SMSNode.FailedEdge;
15044
- instruction: SMSNode.NodeInstructionPrompt | SMSNode.NodeInstructionStaticText;
15182
+ instruction: SMSNode.NodeInstructionPrompt | SMSNode.NodeInstructionStaticText | SMSNode.SMSInstructionTemplate;
15045
15183
  success_edge: SMSNode.SuccessEdge;
15046
15184
  /**
15047
15185
  * Type of the node
@@ -15129,6 +15267,17 @@ export declare namespace ConversationFlowComponentUpdateParams {
15129
15267
  */
15130
15268
  type: 'static_text';
15131
15269
  }
15270
+ interface SMSInstructionTemplate {
15271
+ /**
15272
+ * The template to use for the instruction. "info_collection" sends a predefined
15273
+ * message requesting information from the user.
15274
+ */
15275
+ template: 'info_collection';
15276
+ /**
15277
+ * Type of instruction
15278
+ */
15279
+ type: 'template';
15280
+ }
15132
15281
  interface SuccessEdge {
15133
15282
  /**
15134
15283
  * Unique identifier for the edge
@@ -15301,7 +15450,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
15301
15450
  /**
15302
15451
  * The LLM model to use
15303
15452
  */
15304
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
15453
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
15305
15454
  /**
15306
15455
  * Type of model choice
15307
15456
  */
@@ -15687,7 +15836,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
15687
15836
  /**
15688
15837
  * The LLM model to use
15689
15838
  */
15690
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
15839
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
15691
15840
  /**
15692
15841
  * Type of model choice
15693
15842
  */
@@ -15951,7 +16100,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
15951
16100
  /**
15952
16101
  * The LLM model to use
15953
16102
  */
15954
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
16103
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
15955
16104
  /**
15956
16105
  * Type of model choice
15957
16106
  */
@@ -15989,6 +16138,10 @@ export declare namespace ConversationFlowComponentUpdateParams {
15989
16138
  display_position?: McpNode.DisplayPosition;
15990
16139
  edges?: Array<McpNode.Edge>;
15991
16140
  else_edge?: McpNode.ElseEdge;
16141
+ /**
16142
+ * If true, play a typing sound while MCP tool executes.
16143
+ */
16144
+ enable_typing_sound?: boolean;
15992
16145
  finetune_transition_examples?: Array<McpNode.FinetuneTransitionExample>;
15993
16146
  global_node_setting?: McpNode.GlobalNodeSetting;
15994
16147
  /**
@@ -16275,7 +16428,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
16275
16428
  /**
16276
16429
  * The LLM model to use
16277
16430
  */
16278
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
16431
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
16279
16432
  /**
16280
16433
  * Type of model choice
16281
16434
  */
@@ -16740,7 +16893,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
16740
16893
  /**
16741
16894
  * The LLM model to use
16742
16895
  */
16743
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
16896
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
16744
16897
  /**
16745
16898
  * Type of model choice
16746
16899
  */
@@ -16923,7 +17076,7 @@ export declare namespace ConversationFlowComponentUpdateParams {
16923
17076
  /**
16924
17077
  * The LLM model to use
16925
17078
  */
16926
- model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
17079
+ model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
16927
17080
  /**
16928
17081
  * Type of model choice
16929
17082
  */
@@ -16992,6 +17145,12 @@ export declare namespace ConversationFlowComponentUpdateParams {
16992
17145
  * Describes what this tool does and when to call this tool.
16993
17146
  */
16994
17147
  description?: string;
17148
+ /**
17149
+ * If true, play a typing sound on the agent audio track while this tool is
17150
+ * executing. Useful when the tool takes a noticeable amount of time to prevent
17151
+ * silence on the call.
17152
+ */
17153
+ enable_typing_sound?: boolean;
16995
17154
  /**
16996
17155
  * The description for the sentence agent say during execution. Only applicable
16997
17156
  * when speak_during_execution is true. Can write what to say or even provide