retell-sdk 5.42.1 → 5.43.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 +12 -0
- package/package.json +1 -1
- package/resources/agent.d.mts +8 -8
- package/resources/agent.d.mts.map +1 -1
- package/resources/agent.d.ts +8 -8
- package/resources/agent.d.ts.map +1 -1
- package/resources/batch-call.d.mts +5 -5
- package/resources/batch-call.d.mts.map +1 -1
- package/resources/batch-call.d.ts +5 -5
- package/resources/batch-call.d.ts.map +1 -1
- package/resources/call.d.mts +15 -15
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +15 -15
- package/resources/call.d.ts.map +1 -1
- package/resources/chat-agent.d.mts +5 -5
- package/resources/chat-agent.d.mts.map +1 -1
- package/resources/chat-agent.d.ts +5 -5
- package/resources/chat-agent.d.ts.map +1 -1
- package/resources/chat.d.mts +2 -2
- package/resources/chat.d.ts +2 -2
- package/resources/conversation-flow-component.d.mts +54 -54
- package/resources/conversation-flow-component.d.mts.map +1 -1
- package/resources/conversation-flow-component.d.ts +54 -54
- package/resources/conversation-flow-component.d.ts.map +1 -1
- package/resources/conversation-flow.d.mts +111 -111
- package/resources/conversation-flow.d.mts.map +1 -1
- package/resources/conversation-flow.d.ts +111 -111
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/llm.d.mts +15 -15
- package/resources/llm.d.mts.map +1 -1
- package/resources/llm.d.ts +15 -15
- package/resources/llm.d.ts.map +1 -1
- package/resources/mcp-tool.d.mts +1 -1
- package/resources/mcp-tool.d.ts +1 -1
- package/resources/phone-number.d.mts +12 -12
- package/resources/phone-number.d.ts +12 -12
- package/resources/playground.d.mts +1 -1
- package/resources/playground.d.ts +1 -1
- package/resources/tests.d.mts +3 -3
- package/resources/tests.d.mts.map +1 -1
- package/resources/tests.d.ts +3 -3
- package/resources/tests.d.ts.map +1 -1
- package/src/resources/agent.ts +5 -8
- package/src/resources/batch-call.ts +4 -3
- package/src/resources/call.ts +12 -9
- package/src/resources/chat-agent.ts +5 -2
- package/src/resources/chat.ts +2 -2
- package/src/resources/conversation-flow-component.ts +54 -12
- package/src/resources/conversation-flow.ts +111 -24
- package/src/resources/llm.ts +15 -12
- package/src/resources/mcp-tool.ts +1 -1
- package/src/resources/phone-number.ts +12 -12
- package/src/resources/playground.ts +1 -1
- package/src/resources/tests.ts +3 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/llm.ts
CHANGED
|
@@ -188,6 +188,7 @@ export interface LlmResponse {
|
|
|
188
188
|
| 'gpt-5.5'
|
|
189
189
|
| 'claude-4.5-sonnet'
|
|
190
190
|
| 'claude-4.6-sonnet'
|
|
191
|
+
| 'claude-5-sonnet'
|
|
191
192
|
| 'claude-4.5-haiku'
|
|
192
193
|
| 'gemini-3.0-flash'
|
|
193
194
|
| 'gemini-3.1-flash-lite'
|
|
@@ -620,7 +621,7 @@ export namespace LlmResponse {
|
|
|
620
621
|
/**
|
|
621
622
|
* The version of the transfer agent to use.
|
|
622
623
|
*/
|
|
623
|
-
agent_version:
|
|
624
|
+
agent_version: string | number;
|
|
624
625
|
}
|
|
625
626
|
}
|
|
626
627
|
|
|
@@ -747,7 +748,7 @@ export namespace LlmResponse {
|
|
|
747
748
|
* The version of the agent to swap to. If not specified, will use the latest
|
|
748
749
|
* version.
|
|
749
750
|
*/
|
|
750
|
-
agent_version?:
|
|
751
|
+
agent_version?: string | number;
|
|
751
752
|
|
|
752
753
|
/**
|
|
753
754
|
* Describes what the tool does, sometimes can also include information about when
|
|
@@ -1916,7 +1917,7 @@ export namespace LlmResponse {
|
|
|
1916
1917
|
/**
|
|
1917
1918
|
* The version of the transfer agent to use.
|
|
1918
1919
|
*/
|
|
1919
|
-
agent_version:
|
|
1920
|
+
agent_version: string | number;
|
|
1920
1921
|
}
|
|
1921
1922
|
}
|
|
1922
1923
|
|
|
@@ -2043,7 +2044,7 @@ export namespace LlmResponse {
|
|
|
2043
2044
|
* The version of the agent to swap to. If not specified, will use the latest
|
|
2044
2045
|
* version.
|
|
2045
2046
|
*/
|
|
2046
|
-
agent_version?:
|
|
2047
|
+
agent_version?: string | number;
|
|
2047
2048
|
|
|
2048
2049
|
/**
|
|
2049
2050
|
* Describes what the tool does, sometimes can also include information about when
|
|
@@ -2801,6 +2802,7 @@ export interface LlmCreateParams {
|
|
|
2801
2802
|
| 'gpt-5.5'
|
|
2802
2803
|
| 'claude-4.5-sonnet'
|
|
2803
2804
|
| 'claude-4.6-sonnet'
|
|
2805
|
+
| 'claude-5-sonnet'
|
|
2804
2806
|
| 'claude-4.5-haiku'
|
|
2805
2807
|
| 'gemini-3.0-flash'
|
|
2806
2808
|
| 'gemini-3.1-flash-lite'
|
|
@@ -3228,7 +3230,7 @@ export namespace LlmCreateParams {
|
|
|
3228
3230
|
/**
|
|
3229
3231
|
* The version of the transfer agent to use.
|
|
3230
3232
|
*/
|
|
3231
|
-
agent_version:
|
|
3233
|
+
agent_version: string | number;
|
|
3232
3234
|
}
|
|
3233
3235
|
}
|
|
3234
3236
|
|
|
@@ -3355,7 +3357,7 @@ export namespace LlmCreateParams {
|
|
|
3355
3357
|
* The version of the agent to swap to. If not specified, will use the latest
|
|
3356
3358
|
* version.
|
|
3357
3359
|
*/
|
|
3358
|
-
agent_version?:
|
|
3360
|
+
agent_version?: string | number;
|
|
3359
3361
|
|
|
3360
3362
|
/**
|
|
3361
3363
|
* Describes what the tool does, sometimes can also include information about when
|
|
@@ -4524,7 +4526,7 @@ export namespace LlmCreateParams {
|
|
|
4524
4526
|
/**
|
|
4525
4527
|
* The version of the transfer agent to use.
|
|
4526
4528
|
*/
|
|
4527
|
-
agent_version:
|
|
4529
|
+
agent_version: string | number;
|
|
4528
4530
|
}
|
|
4529
4531
|
}
|
|
4530
4532
|
|
|
@@ -4651,7 +4653,7 @@ export namespace LlmCreateParams {
|
|
|
4651
4653
|
* The version of the agent to swap to. If not specified, will use the latest
|
|
4652
4654
|
* version.
|
|
4653
4655
|
*/
|
|
4654
|
-
agent_version?:
|
|
4656
|
+
agent_version?: string | number;
|
|
4655
4657
|
|
|
4656
4658
|
/**
|
|
4657
4659
|
* Describes what the tool does, sometimes can also include information about when
|
|
@@ -5428,6 +5430,7 @@ export interface LlmUpdateParams {
|
|
|
5428
5430
|
| 'gpt-5.5'
|
|
5429
5431
|
| 'claude-4.5-sonnet'
|
|
5430
5432
|
| 'claude-4.6-sonnet'
|
|
5433
|
+
| 'claude-5-sonnet'
|
|
5431
5434
|
| 'claude-4.5-haiku'
|
|
5432
5435
|
| 'gemini-3.0-flash'
|
|
5433
5436
|
| 'gemini-3.1-flash-lite'
|
|
@@ -5855,7 +5858,7 @@ export namespace LlmUpdateParams {
|
|
|
5855
5858
|
/**
|
|
5856
5859
|
* The version of the transfer agent to use.
|
|
5857
5860
|
*/
|
|
5858
|
-
agent_version:
|
|
5861
|
+
agent_version: string | number;
|
|
5859
5862
|
}
|
|
5860
5863
|
}
|
|
5861
5864
|
|
|
@@ -5982,7 +5985,7 @@ export namespace LlmUpdateParams {
|
|
|
5982
5985
|
* The version of the agent to swap to. If not specified, will use the latest
|
|
5983
5986
|
* version.
|
|
5984
5987
|
*/
|
|
5985
|
-
agent_version?:
|
|
5988
|
+
agent_version?: string | number;
|
|
5986
5989
|
|
|
5987
5990
|
/**
|
|
5988
5991
|
* Describes what the tool does, sometimes can also include information about when
|
|
@@ -7151,7 +7154,7 @@ export namespace LlmUpdateParams {
|
|
|
7151
7154
|
/**
|
|
7152
7155
|
* The version of the transfer agent to use.
|
|
7153
7156
|
*/
|
|
7154
|
-
agent_version:
|
|
7157
|
+
agent_version: string | number;
|
|
7155
7158
|
}
|
|
7156
7159
|
}
|
|
7157
7160
|
|
|
@@ -7278,7 +7281,7 @@ export namespace LlmUpdateParams {
|
|
|
7278
7281
|
* The version of the agent to swap to. If not specified, will use the latest
|
|
7279
7282
|
* version.
|
|
7280
7283
|
*/
|
|
7281
|
-
agent_version?:
|
|
7284
|
+
agent_version?: string | number;
|
|
7282
7285
|
|
|
7283
7286
|
/**
|
|
7284
7287
|
* Describes what the tool does, sometimes can also include information about when
|
|
@@ -237,7 +237,7 @@ export namespace PhoneNumberResponse {
|
|
|
237
237
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
238
238
|
* version (most recently assigned), if any.
|
|
239
239
|
*/
|
|
240
|
-
agent_version?:
|
|
240
|
+
agent_version?: string | number;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
export interface InboundSMSAgent {
|
|
@@ -260,7 +260,7 @@ export namespace PhoneNumberResponse {
|
|
|
260
260
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
261
261
|
* version (most recently assigned), if any.
|
|
262
262
|
*/
|
|
263
|
-
agent_version?:
|
|
263
|
+
agent_version?: string | number;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
export interface OutboundAgent {
|
|
@@ -283,7 +283,7 @@ export namespace PhoneNumberResponse {
|
|
|
283
283
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
284
284
|
* version (most recently assigned), if any.
|
|
285
285
|
*/
|
|
286
|
-
agent_version?:
|
|
286
|
+
agent_version?: string | number;
|
|
287
287
|
}
|
|
288
288
|
|
|
289
289
|
export interface OutboundSMSAgent {
|
|
@@ -306,7 +306,7 @@ export namespace PhoneNumberResponse {
|
|
|
306
306
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
307
307
|
* version (most recently assigned), if any.
|
|
308
308
|
*/
|
|
309
|
-
agent_version?:
|
|
309
|
+
agent_version?: string | number;
|
|
310
310
|
}
|
|
311
311
|
|
|
312
312
|
export interface SipOutboundTrunkConfig {
|
|
@@ -446,7 +446,7 @@ export namespace PhoneNumberCreateParams {
|
|
|
446
446
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
447
447
|
* version (most recently assigned), if any.
|
|
448
448
|
*/
|
|
449
|
-
agent_version?:
|
|
449
|
+
agent_version?: string | number;
|
|
450
450
|
}
|
|
451
451
|
|
|
452
452
|
export interface OutboundAgent {
|
|
@@ -469,7 +469,7 @@ export namespace PhoneNumberCreateParams {
|
|
|
469
469
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
470
470
|
* version (most recently assigned), if any.
|
|
471
471
|
*/
|
|
472
|
-
agent_version?:
|
|
472
|
+
agent_version?: string | number;
|
|
473
473
|
}
|
|
474
474
|
}
|
|
475
475
|
|
|
@@ -572,7 +572,7 @@ export namespace PhoneNumberImportParams {
|
|
|
572
572
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
573
573
|
* version (most recently assigned), if any.
|
|
574
574
|
*/
|
|
575
|
-
agent_version?:
|
|
575
|
+
agent_version?: string | number;
|
|
576
576
|
}
|
|
577
577
|
|
|
578
578
|
export interface OutboundAgent {
|
|
@@ -595,7 +595,7 @@ export namespace PhoneNumberImportParams {
|
|
|
595
595
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
596
596
|
* version (most recently assigned), if any.
|
|
597
597
|
*/
|
|
598
|
-
agent_version?:
|
|
598
|
+
agent_version?: string | number;
|
|
599
599
|
}
|
|
600
600
|
}
|
|
601
601
|
|
|
@@ -731,7 +731,7 @@ export namespace PhoneNumberUpdateParams {
|
|
|
731
731
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
732
732
|
* version (most recently assigned), if any.
|
|
733
733
|
*/
|
|
734
|
-
agent_version?:
|
|
734
|
+
agent_version?: string | number;
|
|
735
735
|
}
|
|
736
736
|
|
|
737
737
|
export interface InboundSMSAgent {
|
|
@@ -754,7 +754,7 @@ export namespace PhoneNumberUpdateParams {
|
|
|
754
754
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
755
755
|
* version (most recently assigned), if any.
|
|
756
756
|
*/
|
|
757
|
-
agent_version?:
|
|
757
|
+
agent_version?: string | number;
|
|
758
758
|
}
|
|
759
759
|
|
|
760
760
|
export interface OutboundAgent {
|
|
@@ -777,7 +777,7 @@ export namespace PhoneNumberUpdateParams {
|
|
|
777
777
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
778
778
|
* version (most recently assigned), if any.
|
|
779
779
|
*/
|
|
780
|
-
agent_version?:
|
|
780
|
+
agent_version?: string | number;
|
|
781
781
|
}
|
|
782
782
|
|
|
783
783
|
export interface OutboundSMSAgent {
|
|
@@ -800,7 +800,7 @@ export namespace PhoneNumberUpdateParams {
|
|
|
800
800
|
* resolution applies dynamic variables from the preferred tag for that resolved
|
|
801
801
|
* version (most recently assigned), if any.
|
|
802
802
|
*/
|
|
803
|
-
agent_version?:
|
|
803
|
+
agent_version?: string | number;
|
|
804
804
|
}
|
|
805
805
|
}
|
|
806
806
|
|
|
@@ -340,7 +340,7 @@ export interface PlaygroundCompletionParams {
|
|
|
340
340
|
/**
|
|
341
341
|
* Query param: Agent version to use. Defaults to latest.
|
|
342
342
|
*/
|
|
343
|
-
version?:
|
|
343
|
+
version?: string | number;
|
|
344
344
|
|
|
345
345
|
/**
|
|
346
346
|
* Body param: Conversation flow component id. Required when current_node_id refers
|
package/src/resources/tests.ts
CHANGED
|
@@ -225,6 +225,7 @@ export interface TestCaseDefinitionResponse {
|
|
|
225
225
|
| 'gpt-5.5'
|
|
226
226
|
| 'claude-4.5-sonnet'
|
|
227
227
|
| 'claude-4.6-sonnet'
|
|
228
|
+
| 'claude-5-sonnet'
|
|
228
229
|
| 'claude-4.5-haiku'
|
|
229
230
|
| 'gemini-3.0-flash'
|
|
230
231
|
| 'gemini-3.1-flash-lite'
|
|
@@ -488,6 +489,7 @@ export interface TestCreateTestCaseDefinitionParams {
|
|
|
488
489
|
| 'gpt-5.5'
|
|
489
490
|
| 'claude-4.5-sonnet'
|
|
490
491
|
| 'claude-4.6-sonnet'
|
|
492
|
+
| 'claude-5-sonnet'
|
|
491
493
|
| 'claude-4.5-haiku'
|
|
492
494
|
| 'gemini-3.0-flash'
|
|
493
495
|
| 'gemini-3.1-flash-lite'
|
|
@@ -631,6 +633,7 @@ export interface TestUpdateTestCaseDefinitionParams {
|
|
|
631
633
|
| 'gpt-5.5'
|
|
632
634
|
| 'claude-4.5-sonnet'
|
|
633
635
|
| 'claude-4.6-sonnet'
|
|
636
|
+
| 'claude-5-sonnet'
|
|
634
637
|
| 'claude-4.5-haiku'
|
|
635
638
|
| 'gemini-3.0-flash'
|
|
636
639
|
| 'gemini-3.1-flash-lite'
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.43.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.
|
|
1
|
+
export declare const VERSION = "5.43.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.
|
|
1
|
+
export declare const VERSION = "5.43.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.43.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|