retell-sdk 5.23.0 → 5.24.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/agent.d.mts +3 -3
- package/resources/agent.d.mts.map +1 -1
- package/resources/agent.d.ts +3 -3
- package/resources/agent.d.ts.map +1 -1
- package/resources/batch-call.d.mts +2 -2
- package/resources/batch-call.d.mts.map +1 -1
- package/resources/batch-call.d.ts +2 -2
- package/resources/batch-call.d.ts.map +1 -1
- package/resources/call.d.mts +1165 -16
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +1165 -16
- package/resources/call.d.ts.map +1 -1
- package/resources/call.js.map +1 -1
- package/resources/call.mjs.map +1 -1
- package/resources/llm.d.mts +3 -3
- package/resources/llm.d.mts.map +1 -1
- package/resources/llm.d.ts +3 -3
- package/resources/llm.d.ts.map +1 -1
- package/src/resources/agent.ts +6 -0
- package/src/resources/batch-call.ts +3 -1
- package/src/resources/call.ts +1440 -13
- package/src/resources/llm.ts +3 -3
- 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
|
@@ -217,7 +217,7 @@ export interface LlmResponse {
|
|
|
217
217
|
* Select the underlying speech to speech model. Can only set this or model, not
|
|
218
218
|
* both.
|
|
219
219
|
*/
|
|
220
|
-
s2s_model?: 'gpt-realtime-1.5' | 'gpt-realtime' | 'gpt-realtime-mini' | null;
|
|
220
|
+
s2s_model?: 'gpt-realtime-2' | 'gpt-realtime-1.5' | 'gpt-realtime' | 'gpt-realtime-mini' | null;
|
|
221
221
|
|
|
222
222
|
/**
|
|
223
223
|
* The speaker who starts the conversation. Required. Must be either 'user' or
|
|
@@ -2770,7 +2770,7 @@ export interface LlmCreateParams {
|
|
|
2770
2770
|
* Select the underlying speech to speech model. Can only set this or model, not
|
|
2771
2771
|
* both.
|
|
2772
2772
|
*/
|
|
2773
|
-
s2s_model?: 'gpt-realtime-1.5' | 'gpt-realtime' | 'gpt-realtime-mini' | null;
|
|
2773
|
+
s2s_model?: 'gpt-realtime-2' | 'gpt-realtime-1.5' | 'gpt-realtime' | 'gpt-realtime-mini' | null;
|
|
2774
2774
|
|
|
2775
2775
|
/**
|
|
2776
2776
|
* The speaker who starts the conversation. Required. Must be either 'user' or
|
|
@@ -5325,7 +5325,7 @@ export interface LlmUpdateParams {
|
|
|
5325
5325
|
* Body param: Select the underlying speech to speech model. Can only set this or
|
|
5326
5326
|
* model, not both.
|
|
5327
5327
|
*/
|
|
5328
|
-
s2s_model?: 'gpt-realtime-1.5' | 'gpt-realtime' | 'gpt-realtime-mini' | null;
|
|
5328
|
+
s2s_model?: 'gpt-realtime-2' | 'gpt-realtime-1.5' | 'gpt-realtime' | 'gpt-realtime-mini' | null;
|
|
5329
5329
|
|
|
5330
5330
|
/**
|
|
5331
5331
|
* Body param: The speaker who starts the conversation. Required. Must be either
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.24.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.24.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.24.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.24.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|