@retell-ai/mcp-server 5.22.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/code-tool-worker.d.mts.map +1 -1
- package/code-tool-worker.d.ts.map +1 -1
- package/code-tool-worker.js +2 -0
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +2 -0
- 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 +146 -85
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +146 -85
- 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 +22 -10
- package/methods.js.map +1 -1
- package/methods.mjs +22 -10
- 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 +2 -0
- package/src/local-docs-search.ts +154 -85
- package/src/methods.ts +22 -10
- package/src/server.ts +1 -1
package/src/methods.ts
CHANGED
|
@@ -26,7 +26,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
26
26
|
clientCallName: 'client.call.list',
|
|
27
27
|
fullyQualifiedName: 'call.list',
|
|
28
28
|
httpMethod: 'post',
|
|
29
|
-
httpPath: '/
|
|
29
|
+
httpPath: '/v3/list-calls',
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
32
|
clientCallName: 'client.call.delete',
|
|
@@ -79,8 +79,8 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
79
79
|
{
|
|
80
80
|
clientCallName: 'client.chat.list',
|
|
81
81
|
fullyQualifiedName: 'chat.list',
|
|
82
|
-
httpMethod: '
|
|
83
|
-
httpPath: '/list-
|
|
82
|
+
httpMethod: 'post',
|
|
83
|
+
httpPath: '/v3/list-chats',
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
clientCallName: 'client.chat.delete',
|
|
@@ -128,7 +128,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
128
128
|
clientCallName: 'client.phoneNumber.list',
|
|
129
129
|
fullyQualifiedName: 'phoneNumber.list',
|
|
130
130
|
httpMethod: 'get',
|
|
131
|
-
httpPath: '/list-phone-numbers',
|
|
131
|
+
httpPath: '/v2/list-phone-numbers',
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
134
|
clientCallName: 'client.phoneNumber.delete',
|
|
@@ -178,6 +178,12 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
178
178
|
httpMethod: 'get',
|
|
179
179
|
httpPath: '/get-agent-versions/{agent_id}',
|
|
180
180
|
},
|
|
181
|
+
{
|
|
182
|
+
clientCallName: 'client.agent.publish',
|
|
183
|
+
fullyQualifiedName: 'agent.publish',
|
|
184
|
+
httpMethod: 'post',
|
|
185
|
+
httpPath: '/publish-agent-version/{agent_id}',
|
|
186
|
+
},
|
|
181
187
|
{
|
|
182
188
|
clientCallName: 'client.chatAgent.create',
|
|
183
189
|
fullyQualifiedName: 'chatAgent.create',
|
|
@@ -214,6 +220,12 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
214
220
|
httpMethod: 'get',
|
|
215
221
|
httpPath: '/get-chat-agent-versions/{agent_id}',
|
|
216
222
|
},
|
|
223
|
+
{
|
|
224
|
+
clientCallName: 'client.chatAgent.publish',
|
|
225
|
+
fullyQualifiedName: 'chatAgent.publish',
|
|
226
|
+
httpMethod: 'post',
|
|
227
|
+
httpPath: '/publish-agent-version/{agent_id}',
|
|
228
|
+
},
|
|
217
229
|
{
|
|
218
230
|
clientCallName: 'client.llm.create',
|
|
219
231
|
fullyQualifiedName: 'llm.create',
|
|
@@ -236,7 +248,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
236
248
|
clientCallName: 'client.llm.list',
|
|
237
249
|
fullyQualifiedName: 'llm.list',
|
|
238
250
|
httpMethod: 'get',
|
|
239
|
-
httpPath: '/list-retell-llms',
|
|
251
|
+
httpPath: '/v2/list-retell-llms',
|
|
240
252
|
},
|
|
241
253
|
{
|
|
242
254
|
clientCallName: 'client.llm.delete',
|
|
@@ -266,7 +278,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
266
278
|
clientCallName: 'client.conversationFlow.list',
|
|
267
279
|
fullyQualifiedName: 'conversationFlow.list',
|
|
268
280
|
httpMethod: 'get',
|
|
269
|
-
httpPath: '/list-conversation-flows',
|
|
281
|
+
httpPath: '/v2/list-conversation-flows',
|
|
270
282
|
},
|
|
271
283
|
{
|
|
272
284
|
clientCallName: 'client.conversationFlow.delete',
|
|
@@ -296,7 +308,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
296
308
|
clientCallName: 'client.conversationFlowComponent.list',
|
|
297
309
|
fullyQualifiedName: 'conversationFlowComponent.list',
|
|
298
310
|
httpMethod: 'get',
|
|
299
|
-
httpPath: '/list-conversation-flow-components',
|
|
311
|
+
httpPath: '/v2/list-conversation-flow-components',
|
|
300
312
|
},
|
|
301
313
|
{
|
|
302
314
|
clientCallName: 'client.conversationFlowComponent.delete',
|
|
@@ -428,19 +440,19 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
428
440
|
clientCallName: 'client.tests.listBatchTests',
|
|
429
441
|
fullyQualifiedName: 'tests.listBatchTests',
|
|
430
442
|
httpMethod: 'get',
|
|
431
|
-
httpPath: '/list-batch-tests',
|
|
443
|
+
httpPath: '/v2/list-batch-tests',
|
|
432
444
|
},
|
|
433
445
|
{
|
|
434
446
|
clientCallName: 'client.tests.listTestCaseDefinitions',
|
|
435
447
|
fullyQualifiedName: 'tests.listTestCaseDefinitions',
|
|
436
448
|
httpMethod: 'get',
|
|
437
|
-
httpPath: '/list-test-case-definitions',
|
|
449
|
+
httpPath: '/v2/list-test-case-definitions',
|
|
438
450
|
},
|
|
439
451
|
{
|
|
440
452
|
clientCallName: 'client.tests.listTestRuns',
|
|
441
453
|
fullyQualifiedName: 'tests.listTestRuns',
|
|
442
454
|
httpMethod: 'get',
|
|
443
|
-
httpPath: '/list-test-runs/{test_case_batch_job_id}',
|
|
455
|
+
httpPath: '/v2/list-test-runs/{test_case_batch_job_id}',
|
|
444
456
|
},
|
|
445
457
|
{
|
|
446
458
|
clientCallName: 'client.tests.updateTestCaseDefinition',
|