@retell-ai/mcp-server 5.17.0 → 5.19.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/code-tool-worker.d.mts.map +1 -1
- package/code-tool-worker.d.ts.map +1 -1
- package/code-tool-worker.js +1 -2
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +1 -2
- package/code-tool-worker.mjs.map +1 -1
- package/local-docs-search.d.mts.map +1 -1
- package/local-docs-search.d.ts.map +1 -1
- package/local-docs-search.js +125 -144
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +125 -144
- package/local-docs-search.mjs.map +1 -1
- package/methods.d.mts.map +1 -1
- package/methods.d.ts.map +1 -1
- package/methods.js +6 -12
- package/methods.js.map +1 -1
- package/methods.mjs +6 -12
- package/methods.mjs.map +1 -1
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/code-tool-worker.ts +1 -2
- package/src/local-docs-search.ts +130 -153
- package/src/methods.ts +6 -12
- package/src/server.ts +1 -1
package/src/methods.ts
CHANGED
|
@@ -172,12 +172,6 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
172
172
|
httpMethod: 'get',
|
|
173
173
|
httpPath: '/get-agent-versions/{agent_id}',
|
|
174
174
|
},
|
|
175
|
-
{
|
|
176
|
-
clientCallName: 'client.agent.publish',
|
|
177
|
-
fullyQualifiedName: 'agent.publish',
|
|
178
|
-
httpMethod: 'post',
|
|
179
|
-
httpPath: '/publish-agent/{agent_id}',
|
|
180
|
-
},
|
|
181
175
|
{
|
|
182
176
|
clientCallName: 'client.chatAgent.create',
|
|
183
177
|
fullyQualifiedName: 'chatAgent.create',
|
|
@@ -214,12 +208,6 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
214
208
|
httpMethod: 'get',
|
|
215
209
|
httpPath: '/get-chat-agent-versions/{agent_id}',
|
|
216
210
|
},
|
|
217
|
-
{
|
|
218
|
-
clientCallName: 'client.chatAgent.publish',
|
|
219
|
-
fullyQualifiedName: 'chatAgent.publish',
|
|
220
|
-
httpMethod: 'post',
|
|
221
|
-
httpPath: '/publish-chat-agent/{agent_id}',
|
|
222
|
-
},
|
|
223
211
|
{
|
|
224
212
|
clientCallName: 'client.llm.create',
|
|
225
213
|
fullyQualifiedName: 'llm.create',
|
|
@@ -382,6 +370,12 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
382
370
|
httpMethod: 'get',
|
|
383
371
|
httpPath: '/get-concurrency',
|
|
384
372
|
},
|
|
373
|
+
{
|
|
374
|
+
clientCallName: 'client.exportRequest.list',
|
|
375
|
+
fullyQualifiedName: 'exportRequest.list',
|
|
376
|
+
httpMethod: 'get',
|
|
377
|
+
httpPath: '/v2/list-export-requests',
|
|
378
|
+
},
|
|
385
379
|
{
|
|
386
380
|
clientCallName: 'client.batchCall.createBatchCall',
|
|
387
381
|
fullyQualifiedName: 'batchCall.createBatchCall',
|