retell-sdk 4.62.0 → 4.64.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 +16 -0
- package/index.d.mts +3 -0
- package/index.d.ts +3 -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/conversation-flow-component.d.ts +7835 -0
- package/resources/conversation-flow-component.d.ts.map +1 -0
- package/resources/conversation-flow-component.js +93 -0
- package/resources/conversation-flow-component.js.map +1 -0
- package/resources/conversation-flow-component.mjs +89 -0
- package/resources/conversation-flow-component.mjs.map +1 -0
- package/resources/conversation-flow.d.ts +8 -3
- package/resources/conversation-flow.d.ts.map +1 -1
- 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/mcp-tool.d.ts +2 -1
- package/resources/mcp-tool.d.ts.map +1 -1
- package/src/index.ts +17 -0
- package/src/resources/conversation-flow-component.ts +11183 -0
- package/src/resources/conversation-flow.ts +8 -3
- package/src/resources/index.ts +7 -0
- package/src/resources/mcp-tool.ts +2 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -15143,14 +15143,19 @@ export namespace ConversationFlowCreateParams {
|
|
|
15143
15143
|
}
|
|
15144
15144
|
|
|
15145
15145
|
export interface ConversationFlowRetrieveParams {
|
|
15146
|
-
|
|
15146
|
+
/**
|
|
15147
|
+
* Optional version of the conversation flow to retrieve. Default to latest
|
|
15148
|
+
* version.
|
|
15149
|
+
*/
|
|
15150
|
+
version?: number;
|
|
15147
15151
|
}
|
|
15148
15152
|
|
|
15149
15153
|
export interface ConversationFlowUpdateParams {
|
|
15150
15154
|
/**
|
|
15151
|
-
* Query param:
|
|
15155
|
+
* Query param: Optional version of the conversation flow to update. Default to
|
|
15156
|
+
* latest version.
|
|
15152
15157
|
*/
|
|
15153
|
-
version?:
|
|
15158
|
+
version?: number;
|
|
15154
15159
|
|
|
15155
15160
|
/**
|
|
15156
15161
|
* Body param: If set, the AI will begin the conversation after waiting for the
|
package/src/resources/index.ts
CHANGED
|
@@ -53,6 +53,13 @@ export {
|
|
|
53
53
|
type ConversationFlowUpdateParams,
|
|
54
54
|
type ConversationFlowListParams,
|
|
55
55
|
} from './conversation-flow';
|
|
56
|
+
export {
|
|
57
|
+
ConversationFlowComponent,
|
|
58
|
+
type ConversationFlowComponentResponse,
|
|
59
|
+
type ConversationFlowComponentListResponse,
|
|
60
|
+
type ConversationFlowComponentCreateParams,
|
|
61
|
+
type ConversationFlowComponentUpdateParams,
|
|
62
|
+
} from './conversation-flow-component';
|
|
56
63
|
export {
|
|
57
64
|
KnowledgeBase,
|
|
58
65
|
type KnowledgeBaseResponse,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.64.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.
|
|
1
|
+
export declare const VERSION = "4.64.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.64.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|