retell-sdk 4.50.0 → 4.52.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 +19 -0
- package/package.json +1 -1
- package/resources/batch-call.d.ts +7 -0
- package/resources/batch-call.d.ts.map +1 -1
- package/resources/call.d.ts +15 -0
- package/resources/call.d.ts.map +1 -1
- package/resources/conversation-flow.d.ts +90 -18
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/llm.d.ts +90 -18
- package/resources/llm.d.ts.map +1 -1
- package/src/resources/batch-call.ts +8 -0
- package/src/resources/call.ts +18 -0
- package/src/resources/conversation-flow.ts +102 -18
- package/src/resources/llm.ts +102 -18
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1296,6 +1296,14 @@ export namespace ConversationFlowResponse {
|
|
|
1296
1296
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
1297
1297
|
*/
|
|
1298
1298
|
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;
|
|
1299
1307
|
}
|
|
1300
1308
|
|
|
1301
1309
|
export interface TransferDestinationInferred {
|
|
@@ -1320,9 +1328,8 @@ export namespace ConversationFlowResponse {
|
|
|
1320
1328
|
|
|
1321
1329
|
/**
|
|
1322
1330
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
1323
|
-
* transferring, requires the telephony side to support
|
|
1324
|
-
*
|
|
1325
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
1331
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1332
|
+
* Twilio numbers support this option.
|
|
1326
1333
|
*/
|
|
1327
1334
|
show_transferee_as_caller?: boolean;
|
|
1328
1335
|
}
|
|
@@ -1378,6 +1385,13 @@ export namespace ConversationFlowResponse {
|
|
|
1378
1385
|
public_handoff_option?:
|
|
1379
1386
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
1380
1387
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
1388
|
+
|
|
1389
|
+
/**
|
|
1390
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
1391
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1392
|
+
* Twilio numbers support this option.
|
|
1393
|
+
*/
|
|
1394
|
+
show_transferee_as_caller?: boolean;
|
|
1381
1395
|
}
|
|
1382
1396
|
|
|
1383
1397
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -4916,6 +4930,14 @@ export namespace ConversationFlowResponse {
|
|
|
4916
4930
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
4917
4931
|
*/
|
|
4918
4932
|
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;
|
|
4919
4941
|
}
|
|
4920
4942
|
|
|
4921
4943
|
export interface TransferDestinationInferred {
|
|
@@ -4940,9 +4962,8 @@ export namespace ConversationFlowResponse {
|
|
|
4940
4962
|
|
|
4941
4963
|
/**
|
|
4942
4964
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
4943
|
-
* transferring, requires the telephony side to support
|
|
4944
|
-
*
|
|
4945
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
4965
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
4966
|
+
* Twilio numbers support this option.
|
|
4946
4967
|
*/
|
|
4947
4968
|
show_transferee_as_caller?: boolean;
|
|
4948
4969
|
}
|
|
@@ -4998,6 +5019,13 @@ export namespace ConversationFlowResponse {
|
|
|
4998
5019
|
public_handoff_option?:
|
|
4999
5020
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
5000
5021
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
5022
|
+
|
|
5023
|
+
/**
|
|
5024
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
5025
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
5026
|
+
* Twilio numbers support this option.
|
|
5027
|
+
*/
|
|
5028
|
+
show_transferee_as_caller?: boolean;
|
|
5001
5029
|
}
|
|
5002
5030
|
|
|
5003
5031
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -8581,6 +8609,14 @@ export namespace ConversationFlowCreateParams {
|
|
|
8581
8609
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
8582
8610
|
*/
|
|
8583
8611
|
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;
|
|
8584
8620
|
}
|
|
8585
8621
|
|
|
8586
8622
|
export interface TransferDestinationInferred {
|
|
@@ -8605,9 +8641,8 @@ export namespace ConversationFlowCreateParams {
|
|
|
8605
8641
|
|
|
8606
8642
|
/**
|
|
8607
8643
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
8608
|
-
* transferring, requires the telephony side to support
|
|
8609
|
-
*
|
|
8610
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
8644
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
8645
|
+
* Twilio numbers support this option.
|
|
8611
8646
|
*/
|
|
8612
8647
|
show_transferee_as_caller?: boolean;
|
|
8613
8648
|
}
|
|
@@ -8663,6 +8698,13 @@ export namespace ConversationFlowCreateParams {
|
|
|
8663
8698
|
public_handoff_option?:
|
|
8664
8699
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
8665
8700
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
8701
|
+
|
|
8702
|
+
/**
|
|
8703
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
8704
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
8705
|
+
* Twilio numbers support this option.
|
|
8706
|
+
*/
|
|
8707
|
+
show_transferee_as_caller?: boolean;
|
|
8666
8708
|
}
|
|
8667
8709
|
|
|
8668
8710
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -12002,6 +12044,14 @@ export namespace ConversationFlowCreateParams {
|
|
|
12002
12044
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
12003
12045
|
*/
|
|
12004
12046
|
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;
|
|
12005
12055
|
}
|
|
12006
12056
|
|
|
12007
12057
|
export interface TransferDestinationInferred {
|
|
@@ -12026,9 +12076,8 @@ export namespace ConversationFlowCreateParams {
|
|
|
12026
12076
|
|
|
12027
12077
|
/**
|
|
12028
12078
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
12029
|
-
* transferring, requires the telephony side to support
|
|
12030
|
-
*
|
|
12031
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
12079
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
12080
|
+
* Twilio numbers support this option.
|
|
12032
12081
|
*/
|
|
12033
12082
|
show_transferee_as_caller?: boolean;
|
|
12034
12083
|
}
|
|
@@ -12084,6 +12133,13 @@ export namespace ConversationFlowCreateParams {
|
|
|
12084
12133
|
public_handoff_option?:
|
|
12085
12134
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
12086
12135
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
12136
|
+
|
|
12137
|
+
/**
|
|
12138
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
12139
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
12140
|
+
* Twilio numbers support this option.
|
|
12141
|
+
*/
|
|
12142
|
+
show_transferee_as_caller?: boolean;
|
|
12087
12143
|
}
|
|
12088
12144
|
|
|
12089
12145
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -15912,6 +15968,14 @@ export namespace ConversationFlowUpdateParams {
|
|
|
15912
15968
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
15913
15969
|
*/
|
|
15914
15970
|
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;
|
|
15915
15979
|
}
|
|
15916
15980
|
|
|
15917
15981
|
export interface TransferDestinationInferred {
|
|
@@ -15936,9 +16000,8 @@ export namespace ConversationFlowUpdateParams {
|
|
|
15936
16000
|
|
|
15937
16001
|
/**
|
|
15938
16002
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
15939
|
-
* transferring, requires the telephony side to support
|
|
15940
|
-
*
|
|
15941
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
16003
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
16004
|
+
* Twilio numbers support this option.
|
|
15942
16005
|
*/
|
|
15943
16006
|
show_transferee_as_caller?: boolean;
|
|
15944
16007
|
}
|
|
@@ -15994,6 +16057,13 @@ export namespace ConversationFlowUpdateParams {
|
|
|
15994
16057
|
public_handoff_option?:
|
|
15995
16058
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
15996
16059
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
16060
|
+
|
|
16061
|
+
/**
|
|
16062
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
16063
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
16064
|
+
* Twilio numbers support this option.
|
|
16065
|
+
*/
|
|
16066
|
+
show_transferee_as_caller?: boolean;
|
|
15997
16067
|
}
|
|
15998
16068
|
|
|
15999
16069
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -19532,6 +19602,14 @@ export namespace ConversationFlowUpdateParams {
|
|
|
19532
19602
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
19533
19603
|
*/
|
|
19534
19604
|
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;
|
|
19535
19613
|
}
|
|
19536
19614
|
|
|
19537
19615
|
export interface TransferDestinationInferred {
|
|
@@ -19556,9 +19634,8 @@ export namespace ConversationFlowUpdateParams {
|
|
|
19556
19634
|
|
|
19557
19635
|
/**
|
|
19558
19636
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
19559
|
-
* transferring, requires the telephony side to support
|
|
19560
|
-
*
|
|
19561
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
19637
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
19638
|
+
* Twilio numbers support this option.
|
|
19562
19639
|
*/
|
|
19563
19640
|
show_transferee_as_caller?: boolean;
|
|
19564
19641
|
}
|
|
@@ -19614,6 +19691,13 @@ export namespace ConversationFlowUpdateParams {
|
|
|
19614
19691
|
public_handoff_option?:
|
|
19615
19692
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
19616
19693
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
19694
|
+
|
|
19695
|
+
/**
|
|
19696
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
19697
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
19698
|
+
* Twilio numbers support this option.
|
|
19699
|
+
*/
|
|
19700
|
+
show_transferee_as_caller?: boolean;
|
|
19617
19701
|
}
|
|
19618
19702
|
|
|
19619
19703
|
export namespace TransferOptionWarmTransfer {
|
package/src/resources/llm.ts
CHANGED
|
@@ -324,6 +324,14 @@ export namespace LlmResponse {
|
|
|
324
324
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
325
325
|
*/
|
|
326
326
|
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;
|
|
327
335
|
}
|
|
328
336
|
|
|
329
337
|
export interface TransferDestinationInferred {
|
|
@@ -348,9 +356,8 @@ export namespace LlmResponse {
|
|
|
348
356
|
|
|
349
357
|
/**
|
|
350
358
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
351
|
-
* transferring, requires the telephony side to support
|
|
352
|
-
*
|
|
353
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
359
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
360
|
+
* Twilio numbers support this option.
|
|
354
361
|
*/
|
|
355
362
|
show_transferee_as_caller?: boolean;
|
|
356
363
|
}
|
|
@@ -406,6 +413,13 @@ export namespace LlmResponse {
|
|
|
406
413
|
public_handoff_option?:
|
|
407
414
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
408
415
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
419
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
420
|
+
* Twilio numbers support this option.
|
|
421
|
+
*/
|
|
422
|
+
show_transferee_as_caller?: boolean;
|
|
409
423
|
}
|
|
410
424
|
|
|
411
425
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -1091,6 +1105,14 @@ export namespace LlmResponse {
|
|
|
1091
1105
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
1092
1106
|
*/
|
|
1093
1107
|
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;
|
|
1094
1116
|
}
|
|
1095
1117
|
|
|
1096
1118
|
export interface TransferDestinationInferred {
|
|
@@ -1115,9 +1137,8 @@ export namespace LlmResponse {
|
|
|
1115
1137
|
|
|
1116
1138
|
/**
|
|
1117
1139
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
1118
|
-
* transferring, requires the telephony side to support
|
|
1119
|
-
*
|
|
1120
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
1140
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1141
|
+
* Twilio numbers support this option.
|
|
1121
1142
|
*/
|
|
1122
1143
|
show_transferee_as_caller?: boolean;
|
|
1123
1144
|
}
|
|
@@ -1173,6 +1194,13 @@ export namespace LlmResponse {
|
|
|
1173
1194
|
public_handoff_option?:
|
|
1174
1195
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
1175
1196
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
1197
|
+
|
|
1198
|
+
/**
|
|
1199
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
1200
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1201
|
+
* Twilio numbers support this option.
|
|
1202
|
+
*/
|
|
1203
|
+
show_transferee_as_caller?: boolean;
|
|
1176
1204
|
}
|
|
1177
1205
|
|
|
1178
1206
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -1880,6 +1908,14 @@ export namespace LlmCreateParams {
|
|
|
1880
1908
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
1881
1909
|
*/
|
|
1882
1910
|
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;
|
|
1883
1919
|
}
|
|
1884
1920
|
|
|
1885
1921
|
export interface TransferDestinationInferred {
|
|
@@ -1904,9 +1940,8 @@ export namespace LlmCreateParams {
|
|
|
1904
1940
|
|
|
1905
1941
|
/**
|
|
1906
1942
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
1907
|
-
* transferring, requires the telephony side to support
|
|
1908
|
-
*
|
|
1909
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
1943
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1944
|
+
* Twilio numbers support this option.
|
|
1910
1945
|
*/
|
|
1911
1946
|
show_transferee_as_caller?: boolean;
|
|
1912
1947
|
}
|
|
@@ -1962,6 +1997,13 @@ export namespace LlmCreateParams {
|
|
|
1962
1997
|
public_handoff_option?:
|
|
1963
1998
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
1964
1999
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
2000
|
+
|
|
2001
|
+
/**
|
|
2002
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
2003
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
2004
|
+
* Twilio numbers support this option.
|
|
2005
|
+
*/
|
|
2006
|
+
show_transferee_as_caller?: boolean;
|
|
1965
2007
|
}
|
|
1966
2008
|
|
|
1967
2009
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -2647,6 +2689,14 @@ export namespace LlmCreateParams {
|
|
|
2647
2689
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
2648
2690
|
*/
|
|
2649
2691
|
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;
|
|
2650
2700
|
}
|
|
2651
2701
|
|
|
2652
2702
|
export interface TransferDestinationInferred {
|
|
@@ -2671,9 +2721,8 @@ export namespace LlmCreateParams {
|
|
|
2671
2721
|
|
|
2672
2722
|
/**
|
|
2673
2723
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
2674
|
-
* transferring, requires the telephony side to support
|
|
2675
|
-
*
|
|
2676
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
2724
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
2725
|
+
* Twilio numbers support this option.
|
|
2677
2726
|
*/
|
|
2678
2727
|
show_transferee_as_caller?: boolean;
|
|
2679
2728
|
}
|
|
@@ -2729,6 +2778,13 @@ export namespace LlmCreateParams {
|
|
|
2729
2778
|
public_handoff_option?:
|
|
2730
2779
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
2731
2780
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
2781
|
+
|
|
2782
|
+
/**
|
|
2783
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
2784
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
2785
|
+
* Twilio numbers support this option.
|
|
2786
|
+
*/
|
|
2787
|
+
show_transferee_as_caller?: boolean;
|
|
2732
2788
|
}
|
|
2733
2789
|
|
|
2734
2790
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -3451,6 +3507,14 @@ export namespace LlmUpdateParams {
|
|
|
3451
3507
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
3452
3508
|
*/
|
|
3453
3509
|
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;
|
|
3454
3518
|
}
|
|
3455
3519
|
|
|
3456
3520
|
export interface TransferDestinationInferred {
|
|
@@ -3475,9 +3539,8 @@ export namespace LlmUpdateParams {
|
|
|
3475
3539
|
|
|
3476
3540
|
/**
|
|
3477
3541
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
3478
|
-
* transferring, requires the telephony side to support
|
|
3479
|
-
*
|
|
3480
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
3542
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
3543
|
+
* Twilio numbers support this option.
|
|
3481
3544
|
*/
|
|
3482
3545
|
show_transferee_as_caller?: boolean;
|
|
3483
3546
|
}
|
|
@@ -3533,6 +3596,13 @@ export namespace LlmUpdateParams {
|
|
|
3533
3596
|
public_handoff_option?:
|
|
3534
3597
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
3535
3598
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
3599
|
+
|
|
3600
|
+
/**
|
|
3601
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
3602
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
3603
|
+
* Twilio numbers support this option.
|
|
3604
|
+
*/
|
|
3605
|
+
show_transferee_as_caller?: boolean;
|
|
3536
3606
|
}
|
|
3537
3607
|
|
|
3538
3608
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -4218,6 +4288,14 @@ export namespace LlmUpdateParams {
|
|
|
4218
4288
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
4219
4289
|
*/
|
|
4220
4290
|
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;
|
|
4221
4299
|
}
|
|
4222
4300
|
|
|
4223
4301
|
export interface TransferDestinationInferred {
|
|
@@ -4242,9 +4320,8 @@ export namespace LlmUpdateParams {
|
|
|
4242
4320
|
|
|
4243
4321
|
/**
|
|
4244
4322
|
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
4245
|
-
* transferring, requires the telephony side to support
|
|
4246
|
-
*
|
|
4247
|
-
* field will be ignored. Default to false (default to show AI agent as caller).
|
|
4323
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
4324
|
+
* Twilio numbers support this option.
|
|
4248
4325
|
*/
|
|
4249
4326
|
show_transferee_as_caller?: boolean;
|
|
4250
4327
|
}
|
|
@@ -4300,6 +4377,13 @@ export namespace LlmUpdateParams {
|
|
|
4300
4377
|
public_handoff_option?:
|
|
4301
4378
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
4302
4379
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
4380
|
+
|
|
4381
|
+
/**
|
|
4382
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
4383
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
4384
|
+
* Twilio numbers support this option.
|
|
4385
|
+
*/
|
|
4386
|
+
show_transferee_as_caller?: boolean;
|
|
4303
4387
|
}
|
|
4304
4388
|
|
|
4305
4389
|
export namespace TransferOptionWarmTransfer {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.52.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.52.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.52.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|