retell-sdk 5.38.0 → 5.40.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 +24 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts.map +1 -1
- package/client.js +9 -1
- package/client.js.map +1 -1
- package/client.mjs +9 -1
- package/client.mjs.map +1 -1
- 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 +3 -3
- package/resources/batch-call.d.mts.map +1 -1
- package/resources/batch-call.d.ts +3 -3
- package/resources/batch-call.d.ts.map +1 -1
- package/resources/call.d.mts +9 -9
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +9 -9
- package/resources/call.d.ts.map +1 -1
- package/resources/chat-agent.d.mts +3 -3
- package/resources/chat-agent.d.mts.map +1 -1
- package/resources/chat-agent.d.ts +3 -3
- package/resources/chat-agent.d.ts.map +1 -1
- package/resources/conversation-flow-component.d.mts +192 -66
- package/resources/conversation-flow-component.d.mts.map +1 -1
- package/resources/conversation-flow-component.d.ts +192 -66
- package/resources/conversation-flow-component.d.ts.map +1 -1
- package/resources/conversation-flow.d.mts +392 -135
- package/resources/conversation-flow.d.mts.map +1 -1
- package/resources/conversation-flow.d.ts +392 -135
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/llm.d.mts +153 -27
- package/resources/llm.d.mts.map +1 -1
- package/resources/llm.d.ts +153 -27
- package/resources/llm.d.ts.map +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/client.ts +9 -1
- package/src/resources/agent.ts +0 -3
- package/src/resources/batch-call.ts +0 -3
- package/src/resources/call.ts +0 -9
- package/src/resources/chat-agent.ts +0 -3
- package/src/resources/conversation-flow-component.ts +168 -66
- package/src/resources/conversation-flow.ts +342 -135
- package/src/resources/llm.ts +168 -27
- package/src/resources/tests.ts +0 -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
|
@@ -431,7 +431,6 @@ export interface ChatAgentResponse {
|
|
|
431
431
|
| 'claude-4.5-sonnet'
|
|
432
432
|
| 'claude-4.6-sonnet'
|
|
433
433
|
| 'claude-4.5-haiku'
|
|
434
|
-
| 'gemini-2.5-flash-lite'
|
|
435
434
|
| 'gemini-3.0-flash'
|
|
436
435
|
| 'gemini-3.1-flash-lite'
|
|
437
436
|
| null;
|
|
@@ -1022,7 +1021,6 @@ export interface ChatAgentCreateParams {
|
|
|
1022
1021
|
| 'claude-4.5-sonnet'
|
|
1023
1022
|
| 'claude-4.6-sonnet'
|
|
1024
1023
|
| 'claude-4.5-haiku'
|
|
1025
|
-
| 'gemini-2.5-flash-lite'
|
|
1026
1024
|
| 'gemini-3.0-flash'
|
|
1027
1025
|
| 'gemini-3.1-flash-lite'
|
|
1028
1026
|
| null;
|
|
@@ -1634,7 +1632,6 @@ export interface ChatAgentUpdateParams {
|
|
|
1634
1632
|
| 'claude-4.5-sonnet'
|
|
1635
1633
|
| 'claude-4.6-sonnet'
|
|
1636
1634
|
| 'claude-4.5-haiku'
|
|
1637
|
-
| 'gemini-2.5-flash-lite'
|
|
1638
1635
|
| 'gemini-3.0-flash'
|
|
1639
1636
|
| 'gemini-3.1-flash-lite'
|
|
1640
1637
|
| null;
|