retell-sdk 4.38.0 → 4.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 +29 -0
- package/core.d.ts +2 -2
- package/core.d.ts.map +1 -1
- package/core.js +5 -3
- package/core.js.map +1 -1
- package/core.mjs +5 -3
- package/core.mjs.map +1 -1
- package/index.d.mts +5 -0
- package/index.d.ts +5 -0
- package/index.d.ts.map +1 -1
- package/index.js +3 -0
- package/index.js.map +1 -1
- package/index.mjs +3 -0
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/agent.d.ts +2 -1
- package/resources/agent.d.ts.map +1 -1
- package/resources/call.d.ts +6 -6
- package/resources/call.d.ts.map +1 -1
- package/resources/conversation-flow.d.ts +7061 -0
- package/resources/conversation-flow.d.ts.map +1 -0
- package/resources/conversation-flow.js +83 -0
- package/resources/conversation-flow.js.map +1 -0
- package/resources/conversation-flow.mjs +79 -0
- package/resources/conversation-flow.mjs.map +1 -0
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/llm.d.ts +729 -15
- package/resources/llm.d.ts.map +1 -1
- package/src/core.ts +6 -4
- package/src/index.ts +23 -0
- package/src/resources/agent.ts +2 -1
- package/src/resources/call.ts +21 -6
- package/src/resources/conversation-flow.ts +9777 -0
- package/src/resources/index.ts +9 -0
- package/src/resources/llm.ts +931 -19
- 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/index.ts
CHANGED
|
@@ -31,6 +31,15 @@ export {
|
|
|
31
31
|
type ChatCreateChatCompletionParams,
|
|
32
32
|
} from './chat';
|
|
33
33
|
export { Concurrency, type ConcurrencyRetrieveResponse } from './concurrency';
|
|
34
|
+
export {
|
|
35
|
+
ConversationFlow,
|
|
36
|
+
type ConversationFlowResponse,
|
|
37
|
+
type ConversationFlowListResponse,
|
|
38
|
+
type ConversationFlowCreateParams,
|
|
39
|
+
type ConversationFlowRetrieveParams,
|
|
40
|
+
type ConversationFlowUpdateParams,
|
|
41
|
+
type ConversationFlowListParams,
|
|
42
|
+
} from './conversation-flow';
|
|
34
43
|
export {
|
|
35
44
|
KnowledgeBase,
|
|
36
45
|
type KnowledgeBaseResponse,
|