retell-sdk 4.50.0 → 4.51.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 +11 -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 +48 -18
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/llm.d.ts +48 -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 +54 -18
- package/src/resources/llm.ts +54 -18
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/llm.ts
CHANGED
|
@@ -348,9 +348,8 @@ export namespace LlmResponse {
|
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
350
|
* 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).
|
|
351
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
352
|
+
* Twilio numbers support this option.
|
|
354
353
|
*/
|
|
355
354
|
show_transferee_as_caller?: boolean;
|
|
356
355
|
}
|
|
@@ -406,6 +405,13 @@ export namespace LlmResponse {
|
|
|
406
405
|
public_handoff_option?:
|
|
407
406
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
408
407
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
408
|
+
|
|
409
|
+
/**
|
|
410
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
411
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
412
|
+
* Twilio numbers support this option.
|
|
413
|
+
*/
|
|
414
|
+
show_transferee_as_caller?: boolean;
|
|
409
415
|
}
|
|
410
416
|
|
|
411
417
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -1115,9 +1121,8 @@ export namespace LlmResponse {
|
|
|
1115
1121
|
|
|
1116
1122
|
/**
|
|
1117
1123
|
* 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).
|
|
1124
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1125
|
+
* Twilio numbers support this option.
|
|
1121
1126
|
*/
|
|
1122
1127
|
show_transferee_as_caller?: boolean;
|
|
1123
1128
|
}
|
|
@@ -1173,6 +1178,13 @@ export namespace LlmResponse {
|
|
|
1173
1178
|
public_handoff_option?:
|
|
1174
1179
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
1175
1180
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
1181
|
+
|
|
1182
|
+
/**
|
|
1183
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
1184
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1185
|
+
* Twilio numbers support this option.
|
|
1186
|
+
*/
|
|
1187
|
+
show_transferee_as_caller?: boolean;
|
|
1176
1188
|
}
|
|
1177
1189
|
|
|
1178
1190
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -1904,9 +1916,8 @@ export namespace LlmCreateParams {
|
|
|
1904
1916
|
|
|
1905
1917
|
/**
|
|
1906
1918
|
* 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).
|
|
1919
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1920
|
+
* Twilio numbers support this option.
|
|
1910
1921
|
*/
|
|
1911
1922
|
show_transferee_as_caller?: boolean;
|
|
1912
1923
|
}
|
|
@@ -1962,6 +1973,13 @@ export namespace LlmCreateParams {
|
|
|
1962
1973
|
public_handoff_option?:
|
|
1963
1974
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
1964
1975
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
1976
|
+
|
|
1977
|
+
/**
|
|
1978
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
1979
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
1980
|
+
* Twilio numbers support this option.
|
|
1981
|
+
*/
|
|
1982
|
+
show_transferee_as_caller?: boolean;
|
|
1965
1983
|
}
|
|
1966
1984
|
|
|
1967
1985
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -2671,9 +2689,8 @@ export namespace LlmCreateParams {
|
|
|
2671
2689
|
|
|
2672
2690
|
/**
|
|
2673
2691
|
* 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).
|
|
2692
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
2693
|
+
* Twilio numbers support this option.
|
|
2677
2694
|
*/
|
|
2678
2695
|
show_transferee_as_caller?: boolean;
|
|
2679
2696
|
}
|
|
@@ -2729,6 +2746,13 @@ export namespace LlmCreateParams {
|
|
|
2729
2746
|
public_handoff_option?:
|
|
2730
2747
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
2731
2748
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
2749
|
+
|
|
2750
|
+
/**
|
|
2751
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
2752
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
2753
|
+
* Twilio numbers support this option.
|
|
2754
|
+
*/
|
|
2755
|
+
show_transferee_as_caller?: boolean;
|
|
2732
2756
|
}
|
|
2733
2757
|
|
|
2734
2758
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -3475,9 +3499,8 @@ export namespace LlmUpdateParams {
|
|
|
3475
3499
|
|
|
3476
3500
|
/**
|
|
3477
3501
|
* 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).
|
|
3502
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
3503
|
+
* Twilio numbers support this option.
|
|
3481
3504
|
*/
|
|
3482
3505
|
show_transferee_as_caller?: boolean;
|
|
3483
3506
|
}
|
|
@@ -3533,6 +3556,13 @@ export namespace LlmUpdateParams {
|
|
|
3533
3556
|
public_handoff_option?:
|
|
3534
3557
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
3535
3558
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
3559
|
+
|
|
3560
|
+
/**
|
|
3561
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
3562
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
3563
|
+
* Twilio numbers support this option.
|
|
3564
|
+
*/
|
|
3565
|
+
show_transferee_as_caller?: boolean;
|
|
3536
3566
|
}
|
|
3537
3567
|
|
|
3538
3568
|
export namespace TransferOptionWarmTransfer {
|
|
@@ -4242,9 +4272,8 @@ export namespace LlmUpdateParams {
|
|
|
4242
4272
|
|
|
4243
4273
|
/**
|
|
4244
4274
|
* 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).
|
|
4275
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
4276
|
+
* Twilio numbers support this option.
|
|
4248
4277
|
*/
|
|
4249
4278
|
show_transferee_as_caller?: boolean;
|
|
4250
4279
|
}
|
|
@@ -4300,6 +4329,13 @@ export namespace LlmUpdateParams {
|
|
|
4300
4329
|
public_handoff_option?:
|
|
4301
4330
|
| TransferOptionWarmTransfer.WarmTransferPrompt
|
|
4302
4331
|
| TransferOptionWarmTransfer.WarmTransferStaticMessage;
|
|
4332
|
+
|
|
4333
|
+
/**
|
|
4334
|
+
* If set to true, will show transferee (the user, not the AI agent) as caller when
|
|
4335
|
+
* transferring, requires the telephony side to support caller id override. Retell
|
|
4336
|
+
* Twilio numbers support this option.
|
|
4337
|
+
*/
|
|
4338
|
+
show_transferee_as_caller?: boolean;
|
|
4303
4339
|
}
|
|
4304
4340
|
|
|
4305
4341
|
export namespace TransferOptionWarmTransfer {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.51.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.51.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.51.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|