retell-sdk 4.51.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 +8 -0
- package/package.json +1 -1
- package/resources/conversation-flow.d.ts +42 -0
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/llm.d.ts +42 -0
- package/resources/llm.d.ts.map +1 -1
- package/src/resources/conversation-flow.ts +48 -0
- package/src/resources/llm.ts +48 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.52.0 (2025-10-19)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.51.0...v4.52.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.51.0...v4.52.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([dcde1b2](https://github.com/RetellAI/retell-typescript-sdk/commit/dcde1b21d94faae3b749865e7edab3da09755c34))
|
|
10
|
+
|
|
3
11
|
## 4.51.0 (2025-10-19)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v4.50.0...v4.51.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v4.50.0...v4.51.0)
|
package/package.json
CHANGED
|
@@ -857,6 +857,13 @@ export declare namespace ConversationFlowResponse {
|
|
|
857
857
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
858
858
|
*/
|
|
859
859
|
extension?: string;
|
|
860
|
+
/**
|
|
861
|
+
* If true, the e.164 validation will be ignored for the from_number. This can be
|
|
862
|
+
* useful when you want to dial to internal pseudo numbers. This only applies when
|
|
863
|
+
* you are using custom telephony and does not apply when you are using Retell
|
|
864
|
+
* Telephony. If omitted, the default value is false.
|
|
865
|
+
*/
|
|
866
|
+
ignore_e164_validation?: boolean;
|
|
860
867
|
}
|
|
861
868
|
interface TransferDestinationInferred {
|
|
862
869
|
/**
|
|
@@ -3381,6 +3388,13 @@ export declare namespace ConversationFlowResponse {
|
|
|
3381
3388
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
3382
3389
|
*/
|
|
3383
3390
|
extension?: string;
|
|
3391
|
+
/**
|
|
3392
|
+
* If true, the e.164 validation will be ignored for the from_number. This can be
|
|
3393
|
+
* useful when you want to dial to internal pseudo numbers. This only applies when
|
|
3394
|
+
* you are using custom telephony and does not apply when you are using Retell
|
|
3395
|
+
* Telephony. If omitted, the default value is false.
|
|
3396
|
+
*/
|
|
3397
|
+
ignore_e164_validation?: boolean;
|
|
3384
3398
|
}
|
|
3385
3399
|
interface TransferDestinationInferred {
|
|
3386
3400
|
/**
|
|
@@ -5926,6 +5940,13 @@ export declare namespace ConversationFlowCreateParams {
|
|
|
5926
5940
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
5927
5941
|
*/
|
|
5928
5942
|
extension?: string;
|
|
5943
|
+
/**
|
|
5944
|
+
* If true, the e.164 validation will be ignored for the from_number. This can be
|
|
5945
|
+
* useful when you want to dial to internal pseudo numbers. This only applies when
|
|
5946
|
+
* you are using custom telephony and does not apply when you are using Retell
|
|
5947
|
+
* Telephony. If omitted, the default value is false.
|
|
5948
|
+
*/
|
|
5949
|
+
ignore_e164_validation?: boolean;
|
|
5929
5950
|
}
|
|
5930
5951
|
interface TransferDestinationInferred {
|
|
5931
5952
|
/**
|
|
@@ -8270,6 +8291,13 @@ export declare namespace ConversationFlowCreateParams {
|
|
|
8270
8291
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
8271
8292
|
*/
|
|
8272
8293
|
extension?: string;
|
|
8294
|
+
/**
|
|
8295
|
+
* If true, the e.164 validation will be ignored for the from_number. This can be
|
|
8296
|
+
* useful when you want to dial to internal pseudo numbers. This only applies when
|
|
8297
|
+
* you are using custom telephony and does not apply when you are using Retell
|
|
8298
|
+
* Telephony. If omitted, the default value is false.
|
|
8299
|
+
*/
|
|
8300
|
+
ignore_e164_validation?: boolean;
|
|
8273
8301
|
}
|
|
8274
8302
|
interface TransferDestinationInferred {
|
|
8275
8303
|
/**
|
|
@@ -11028,6 +11056,13 @@ export declare namespace ConversationFlowUpdateParams {
|
|
|
11028
11056
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
11029
11057
|
*/
|
|
11030
11058
|
extension?: string;
|
|
11059
|
+
/**
|
|
11060
|
+
* If true, the e.164 validation will be ignored for the from_number. This can be
|
|
11061
|
+
* useful when you want to dial to internal pseudo numbers. This only applies when
|
|
11062
|
+
* you are using custom telephony and does not apply when you are using Retell
|
|
11063
|
+
* Telephony. If omitted, the default value is false.
|
|
11064
|
+
*/
|
|
11065
|
+
ignore_e164_validation?: boolean;
|
|
11031
11066
|
}
|
|
11032
11067
|
interface TransferDestinationInferred {
|
|
11033
11068
|
/**
|
|
@@ -13552,6 +13587,13 @@ export declare namespace ConversationFlowUpdateParams {
|
|
|
13552
13587
|
* digits, '\*', '#', or a dynamic variable like {{extension}}.
|
|
13553
13588
|
*/
|
|
13554
13589
|
extension?: string;
|
|
13590
|
+
/**
|
|
13591
|
+
* If true, the e.164 validation will be ignored for the from_number. This can be
|
|
13592
|
+
* useful when you want to dial to internal pseudo numbers. This only applies when
|
|
13593
|
+
* you are using custom telephony and does not apply when you are using Retell
|
|
13594
|
+
* Telephony. If omitted, the default value is false.
|
|
13595
|
+
*/
|
|
13596
|
+
ignore_e164_validation?: boolean;
|
|
13555
13597
|
}
|
|
13556
13598
|
interface TransferDestinationInferred {
|
|
13557
13599
|
/**
|