retell-sdk 4.52.0 → 4.54.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.
@@ -143,6 +143,14 @@ export interface ConversationFlowResponse {
143
143
  */
144
144
  version: number;
145
145
 
146
+ /**
147
+ * If set, the AI will begin the conversation after waiting for the user for the
148
+ * duration (in milliseconds) specified by this attribute. This only applies if the
149
+ * agent is configured to wait for the user to speak first. If not set, the agent
150
+ * will wait indefinitely for the user to speak.
151
+ */
152
+ begin_after_user_silence_ms?: number | null;
153
+
146
154
  /**
147
155
  * Display position for the begin tag in the frontend.
148
156
  */
@@ -1196,6 +1204,14 @@ export namespace ConversationFlowResponse {
1196
1204
 
1197
1205
  global_node_setting?: TransferCallNode.GlobalNodeSetting;
1198
1206
 
1207
+ /**
1208
+ * If true, the e.164 validation will be ignored for the from_number. This can be
1209
+ * useful when you want to dial to internal pseudo numbers. This only applies when
1210
+ * you are using custom telephony and does not apply when you are using Retell
1211
+ * Telephony. If omitted, the default value is false.
1212
+ */
1213
+ ignore_e164_validation?: boolean;
1214
+
1199
1215
  model_choice?: TransferCallNode.ModelChoice;
1200
1216
 
1201
1217
  /**
@@ -1296,14 +1312,6 @@ export namespace ConversationFlowResponse {
1296
1312
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
1297
1313
  */
1298
1314
  extension?: string;
1299
-
1300
- /**
1301
- * If true, the e.164 validation will be ignored for the from_number. This can be
1302
- * useful when you want to dial to internal pseudo numbers. This only applies when
1303
- * you are using custom telephony and does not apply when you are using Retell
1304
- * Telephony. If omitted, the default value is false.
1305
- */
1306
- ignore_e164_validation?: boolean;
1307
1315
  }
1308
1316
 
1309
1317
  export interface TransferDestinationInferred {
@@ -4830,6 +4838,14 @@ export namespace ConversationFlowResponse {
4830
4838
 
4831
4839
  global_node_setting?: TransferCallNode.GlobalNodeSetting;
4832
4840
 
4841
+ /**
4842
+ * If true, the e.164 validation will be ignored for the from_number. This can be
4843
+ * useful when you want to dial to internal pseudo numbers. This only applies when
4844
+ * you are using custom telephony and does not apply when you are using Retell
4845
+ * Telephony. If omitted, the default value is false.
4846
+ */
4847
+ ignore_e164_validation?: boolean;
4848
+
4833
4849
  model_choice?: TransferCallNode.ModelChoice;
4834
4850
 
4835
4851
  /**
@@ -4930,14 +4946,6 @@ export namespace ConversationFlowResponse {
4930
4946
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
4931
4947
  */
4932
4948
  extension?: string;
4933
-
4934
- /**
4935
- * If true, the e.164 validation will be ignored for the from_number. This can be
4936
- * useful when you want to dial to internal pseudo numbers. This only applies when
4937
- * you are using custom telephony and does not apply when you are using Retell
4938
- * Telephony. If omitted, the default value is false.
4939
- */
4940
- ignore_e164_validation?: boolean;
4941
4949
  }
4942
4950
 
4943
4951
  export interface TransferDestinationInferred {
@@ -7502,6 +7510,14 @@ export interface ConversationFlowCreateParams {
7502
7510
  */
7503
7511
  start_speaker: 'user' | 'agent';
7504
7512
 
7513
+ /**
7514
+ * If set, the AI will begin the conversation after waiting for the user for the
7515
+ * duration (in milliseconds) specified by this attribute. This only applies if the
7516
+ * agent is configured to wait for the user to speak first. If not set, the agent
7517
+ * will wait indefinitely for the user to speak.
7518
+ */
7519
+ begin_after_user_silence_ms?: number | null;
7520
+
7505
7521
  /**
7506
7522
  * Display position for the begin tag in the frontend.
7507
7523
  */
@@ -8509,6 +8525,14 @@ export namespace ConversationFlowCreateParams {
8509
8525
 
8510
8526
  global_node_setting?: TransferCallNode.GlobalNodeSetting;
8511
8527
 
8528
+ /**
8529
+ * If true, the e.164 validation will be ignored for the from_number. This can be
8530
+ * useful when you want to dial to internal pseudo numbers. This only applies when
8531
+ * you are using custom telephony and does not apply when you are using Retell
8532
+ * Telephony. If omitted, the default value is false.
8533
+ */
8534
+ ignore_e164_validation?: boolean;
8535
+
8512
8536
  model_choice?: TransferCallNode.ModelChoice;
8513
8537
 
8514
8538
  /**
@@ -8609,14 +8633,6 @@ export namespace ConversationFlowCreateParams {
8609
8633
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
8610
8634
  */
8611
8635
  extension?: string;
8612
-
8613
- /**
8614
- * If true, the e.164 validation will be ignored for the from_number. This can be
8615
- * useful when you want to dial to internal pseudo numbers. This only applies when
8616
- * you are using custom telephony and does not apply when you are using Retell
8617
- * Telephony. If omitted, the default value is false.
8618
- */
8619
- ignore_e164_validation?: boolean;
8620
8636
  }
8621
8637
 
8622
8638
  export interface TransferDestinationInferred {
@@ -11944,6 +11960,14 @@ export namespace ConversationFlowCreateParams {
11944
11960
 
11945
11961
  global_node_setting?: TransferCallNode.GlobalNodeSetting;
11946
11962
 
11963
+ /**
11964
+ * If true, the e.164 validation will be ignored for the from_number. This can be
11965
+ * useful when you want to dial to internal pseudo numbers. This only applies when
11966
+ * you are using custom telephony and does not apply when you are using Retell
11967
+ * Telephony. If omitted, the default value is false.
11968
+ */
11969
+ ignore_e164_validation?: boolean;
11970
+
11947
11971
  model_choice?: TransferCallNode.ModelChoice;
11948
11972
 
11949
11973
  /**
@@ -12044,14 +12068,6 @@ export namespace ConversationFlowCreateParams {
12044
12068
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
12045
12069
  */
12046
12070
  extension?: string;
12047
-
12048
- /**
12049
- * If true, the e.164 validation will be ignored for the from_number. This can be
12050
- * useful when you want to dial to internal pseudo numbers. This only applies when
12051
- * you are using custom telephony and does not apply when you are using Retell
12052
- * Telephony. If omitted, the default value is false.
12053
- */
12054
- ignore_e164_validation?: boolean;
12055
12071
  }
12056
12072
 
12057
12073
  export interface TransferDestinationInferred {
@@ -14814,6 +14830,14 @@ export interface ConversationFlowUpdateParams {
14814
14830
  */
14815
14831
  version?: string;
14816
14832
 
14833
+ /**
14834
+ * Body param: If set, the AI will begin the conversation after waiting for the
14835
+ * user for the duration (in milliseconds) specified by this attribute. This only
14836
+ * applies if the agent is configured to wait for the user to speak first. If not
14837
+ * set, the agent will wait indefinitely for the user to speak.
14838
+ */
14839
+ begin_after_user_silence_ms?: number | null;
14840
+
14817
14841
  /**
14818
14842
  * Body param: Display position for the begin tag in the frontend.
14819
14843
  */
@@ -15868,6 +15892,14 @@ export namespace ConversationFlowUpdateParams {
15868
15892
 
15869
15893
  global_node_setting?: TransferCallNode.GlobalNodeSetting;
15870
15894
 
15895
+ /**
15896
+ * If true, the e.164 validation will be ignored for the from_number. This can be
15897
+ * useful when you want to dial to internal pseudo numbers. This only applies when
15898
+ * you are using custom telephony and does not apply when you are using Retell
15899
+ * Telephony. If omitted, the default value is false.
15900
+ */
15901
+ ignore_e164_validation?: boolean;
15902
+
15871
15903
  model_choice?: TransferCallNode.ModelChoice;
15872
15904
 
15873
15905
  /**
@@ -15968,14 +16000,6 @@ export namespace ConversationFlowUpdateParams {
15968
16000
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
15969
16001
  */
15970
16002
  extension?: string;
15971
-
15972
- /**
15973
- * If true, the e.164 validation will be ignored for the from_number. This can be
15974
- * useful when you want to dial to internal pseudo numbers. This only applies when
15975
- * you are using custom telephony and does not apply when you are using Retell
15976
- * Telephony. If omitted, the default value is false.
15977
- */
15978
- ignore_e164_validation?: boolean;
15979
16003
  }
15980
16004
 
15981
16005
  export interface TransferDestinationInferred {
@@ -19502,6 +19526,14 @@ export namespace ConversationFlowUpdateParams {
19502
19526
 
19503
19527
  global_node_setting?: TransferCallNode.GlobalNodeSetting;
19504
19528
 
19529
+ /**
19530
+ * If true, the e.164 validation will be ignored for the from_number. This can be
19531
+ * useful when you want to dial to internal pseudo numbers. This only applies when
19532
+ * you are using custom telephony and does not apply when you are using Retell
19533
+ * Telephony. If omitted, the default value is false.
19534
+ */
19535
+ ignore_e164_validation?: boolean;
19536
+
19505
19537
  model_choice?: TransferCallNode.ModelChoice;
19506
19538
 
19507
19539
  /**
@@ -19602,14 +19634,6 @@ export namespace ConversationFlowUpdateParams {
19602
19634
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
19603
19635
  */
19604
19636
  extension?: string;
19605
-
19606
- /**
19607
- * If true, the e.164 validation will be ignored for the from_number. This can be
19608
- * useful when you want to dial to internal pseudo numbers. This only applies when
19609
- * you are using custom telephony and does not apply when you are using Retell
19610
- * Telephony. If omitted, the default value is false.
19611
- */
19612
- ignore_e164_validation?: boolean;
19613
19637
  }
19614
19638
 
19615
19639
  export interface TransferDestinationInferred {
@@ -129,6 +129,14 @@ export interface LlmResponse {
129
129
  */
130
130
  start_speaker: 'user' | 'agent';
131
131
 
132
+ /**
133
+ * If set, the AI will begin the conversation after waiting for the user for the
134
+ * duration (in milliseconds) specified by this attribute. This only applies if the
135
+ * agent is configured to wait for the user to speak first. If not set, the agent
136
+ * will wait indefinitely for the user to speak.
137
+ */
138
+ begin_after_user_silence_ms?: number | null;
139
+
132
140
  /**
133
141
  * First utterance said by the agent in the call. If not set, LLM will dynamically
134
142
  * generate a message. If set to "", agent will wait for user to speak first.
@@ -304,6 +312,14 @@ export namespace LlmResponse {
304
312
  * to call the tool.
305
313
  */
306
314
  description?: string;
315
+
316
+ /**
317
+ * If true, the e.164 validation will be ignored for the from_number. This can be
318
+ * useful when you want to dial to internal pseudo numbers. This only applies when
319
+ * you are using custom telephony and does not apply when you are using Retell
320
+ * Telephony. If omitted, the default value is false.
321
+ */
322
+ ignore_e164_validation?: boolean;
307
323
  }
308
324
 
309
325
  export namespace TransferCallTool {
@@ -324,14 +340,6 @@ export namespace LlmResponse {
324
340
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
325
341
  */
326
342
  extension?: string;
327
-
328
- /**
329
- * If true, the e.164 validation will be ignored for the from_number. This can be
330
- * useful when you want to dial to internal pseudo numbers. This only applies when
331
- * you are using custom telephony and does not apply when you are using Retell
332
- * Telephony. If omitted, the default value is false.
333
- */
334
- ignore_e164_validation?: boolean;
335
343
  }
336
344
 
337
345
  export interface TransferDestinationInferred {
@@ -1085,6 +1093,14 @@ export namespace LlmResponse {
1085
1093
  * to call the tool.
1086
1094
  */
1087
1095
  description?: string;
1096
+
1097
+ /**
1098
+ * If true, the e.164 validation will be ignored for the from_number. This can be
1099
+ * useful when you want to dial to internal pseudo numbers. This only applies when
1100
+ * you are using custom telephony and does not apply when you are using Retell
1101
+ * Telephony. If omitted, the default value is false.
1102
+ */
1103
+ ignore_e164_validation?: boolean;
1088
1104
  }
1089
1105
 
1090
1106
  export namespace TransferCallTool {
@@ -1105,14 +1121,6 @@ export namespace LlmResponse {
1105
1121
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
1106
1122
  */
1107
1123
  extension?: string;
1108
-
1109
- /**
1110
- * If true, the e.164 validation will be ignored for the from_number. This can be
1111
- * useful when you want to dial to internal pseudo numbers. This only applies when
1112
- * you are using custom telephony and does not apply when you are using Retell
1113
- * Telephony. If omitted, the default value is false.
1114
- */
1115
- ignore_e164_validation?: boolean;
1116
1124
  }
1117
1125
 
1118
1126
  export interface TransferDestinationInferred {
@@ -1718,6 +1726,14 @@ export interface LlmCreateParams {
1718
1726
  */
1719
1727
  start_speaker: 'user' | 'agent';
1720
1728
 
1729
+ /**
1730
+ * If set, the AI will begin the conversation after waiting for the user for the
1731
+ * duration (in milliseconds) specified by this attribute. This only applies if the
1732
+ * agent is configured to wait for the user to speak first. If not set, the agent
1733
+ * will wait indefinitely for the user to speak.
1734
+ */
1735
+ begin_after_user_silence_ms?: number | null;
1736
+
1721
1737
  /**
1722
1738
  * First utterance said by the agent in the call. If not set, LLM will dynamically
1723
1739
  * generate a message. If set to "", agent will wait for user to speak first.
@@ -1888,6 +1904,14 @@ export namespace LlmCreateParams {
1888
1904
  * to call the tool.
1889
1905
  */
1890
1906
  description?: string;
1907
+
1908
+ /**
1909
+ * If true, the e.164 validation will be ignored for the from_number. This can be
1910
+ * useful when you want to dial to internal pseudo numbers. This only applies when
1911
+ * you are using custom telephony and does not apply when you are using Retell
1912
+ * Telephony. If omitted, the default value is false.
1913
+ */
1914
+ ignore_e164_validation?: boolean;
1891
1915
  }
1892
1916
 
1893
1917
  export namespace TransferCallTool {
@@ -1908,14 +1932,6 @@ export namespace LlmCreateParams {
1908
1932
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
1909
1933
  */
1910
1934
  extension?: string;
1911
-
1912
- /**
1913
- * If true, the e.164 validation will be ignored for the from_number. This can be
1914
- * useful when you want to dial to internal pseudo numbers. This only applies when
1915
- * you are using custom telephony and does not apply when you are using Retell
1916
- * Telephony. If omitted, the default value is false.
1917
- */
1918
- ignore_e164_validation?: boolean;
1919
1935
  }
1920
1936
 
1921
1937
  export interface TransferDestinationInferred {
@@ -2669,6 +2685,14 @@ export namespace LlmCreateParams {
2669
2685
  * to call the tool.
2670
2686
  */
2671
2687
  description?: string;
2688
+
2689
+ /**
2690
+ * If true, the e.164 validation will be ignored for the from_number. This can be
2691
+ * useful when you want to dial to internal pseudo numbers. This only applies when
2692
+ * you are using custom telephony and does not apply when you are using Retell
2693
+ * Telephony. If omitted, the default value is false.
2694
+ */
2695
+ ignore_e164_validation?: boolean;
2672
2696
  }
2673
2697
 
2674
2698
  export namespace TransferCallTool {
@@ -2689,14 +2713,6 @@ export namespace LlmCreateParams {
2689
2713
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
2690
2714
  */
2691
2715
  extension?: string;
2692
-
2693
- /**
2694
- * If true, the e.164 validation will be ignored for the from_number. This can be
2695
- * useful when you want to dial to internal pseudo numbers. This only applies when
2696
- * you are using custom telephony and does not apply when you are using Retell
2697
- * Telephony. If omitted, the default value is false.
2698
- */
2699
- ignore_e164_validation?: boolean;
2700
2716
  }
2701
2717
 
2702
2718
  export interface TransferDestinationInferred {
@@ -3313,6 +3329,14 @@ export interface LlmUpdateParams {
3313
3329
  */
3314
3330
  query_version?: number;
3315
3331
 
3332
+ /**
3333
+ * Body param: If set, the AI will begin the conversation after waiting for the
3334
+ * user for the duration (in milliseconds) specified by this attribute. This only
3335
+ * applies if the agent is configured to wait for the user to speak first. If not
3336
+ * set, the agent will wait indefinitely for the user to speak.
3337
+ */
3338
+ begin_after_user_silence_ms?: number | null;
3339
+
3316
3340
  /**
3317
3341
  * Body param: First utterance said by the agent in the call. If not set, LLM will
3318
3342
  * dynamically generate a message. If set to "", agent will wait for user to speak
@@ -3487,6 +3511,14 @@ export namespace LlmUpdateParams {
3487
3511
  * to call the tool.
3488
3512
  */
3489
3513
  description?: string;
3514
+
3515
+ /**
3516
+ * If true, the e.164 validation will be ignored for the from_number. This can be
3517
+ * useful when you want to dial to internal pseudo numbers. This only applies when
3518
+ * you are using custom telephony and does not apply when you are using Retell
3519
+ * Telephony. If omitted, the default value is false.
3520
+ */
3521
+ ignore_e164_validation?: boolean;
3490
3522
  }
3491
3523
 
3492
3524
  export namespace TransferCallTool {
@@ -3507,14 +3539,6 @@ export namespace LlmUpdateParams {
3507
3539
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
3508
3540
  */
3509
3541
  extension?: string;
3510
-
3511
- /**
3512
- * If true, the e.164 validation will be ignored for the from_number. This can be
3513
- * useful when you want to dial to internal pseudo numbers. This only applies when
3514
- * you are using custom telephony and does not apply when you are using Retell
3515
- * Telephony. If omitted, the default value is false.
3516
- */
3517
- ignore_e164_validation?: boolean;
3518
3542
  }
3519
3543
 
3520
3544
  export interface TransferDestinationInferred {
@@ -4268,6 +4292,14 @@ export namespace LlmUpdateParams {
4268
4292
  * to call the tool.
4269
4293
  */
4270
4294
  description?: string;
4295
+
4296
+ /**
4297
+ * If true, the e.164 validation will be ignored for the from_number. This can be
4298
+ * useful when you want to dial to internal pseudo numbers. This only applies when
4299
+ * you are using custom telephony and does not apply when you are using Retell
4300
+ * Telephony. If omitted, the default value is false.
4301
+ */
4302
+ ignore_e164_validation?: boolean;
4271
4303
  }
4272
4304
 
4273
4305
  export namespace TransferCallTool {
@@ -4288,14 +4320,6 @@ export namespace LlmUpdateParams {
4288
4320
  * digits, '\*', '#', or a dynamic variable like {{extension}}.
4289
4321
  */
4290
4322
  extension?: string;
4291
-
4292
- /**
4293
- * If true, the e.164 validation will be ignored for the from_number. This can be
4294
- * useful when you want to dial to internal pseudo numbers. This only applies when
4295
- * you are using custom telephony and does not apply when you are using Retell
4296
- * Telephony. If omitted, the default value is false.
4297
- */
4298
- ignore_e164_validation?: boolean;
4299
4323
  }
4300
4324
 
4301
4325
  export interface TransferDestinationInferred {
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '4.52.0'; // x-release-please-version
1
+ export const VERSION = '4.54.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "4.52.0";
1
+ export declare const VERSION = "4.54.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '4.52.0'; // x-release-please-version
4
+ exports.VERSION = '4.54.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '4.52.0'; // x-release-please-version
1
+ export const VERSION = '4.54.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map