@retell-ai/mcp-server 5.21.0 → 5.23.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 +3 -0
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +3 -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 +154 -69
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +154 -69
- 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 +28 -10
- package/methods.js.map +1 -1
- package/methods.mjs +28 -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 +3 -0
- package/src/local-docs-search.ts +166 -69
- package/src/methods.ts +28 -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,14 @@ 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
|
+
},
|
|
85
|
+
{
|
|
86
|
+
clientCallName: 'client.chat.delete',
|
|
87
|
+
fullyQualifiedName: 'chat.delete',
|
|
88
|
+
httpMethod: 'delete',
|
|
89
|
+
httpPath: '/delete-chat/{chat_id}',
|
|
84
90
|
},
|
|
85
91
|
{
|
|
86
92
|
clientCallName: 'client.chat.createChatCompletion',
|
|
@@ -122,7 +128,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
122
128
|
clientCallName: 'client.phoneNumber.list',
|
|
123
129
|
fullyQualifiedName: 'phoneNumber.list',
|
|
124
130
|
httpMethod: 'get',
|
|
125
|
-
httpPath: '/list-phone-numbers',
|
|
131
|
+
httpPath: '/v2/list-phone-numbers',
|
|
126
132
|
},
|
|
127
133
|
{
|
|
128
134
|
clientCallName: 'client.phoneNumber.delete',
|
|
@@ -172,6 +178,12 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
172
178
|
httpMethod: 'get',
|
|
173
179
|
httpPath: '/get-agent-versions/{agent_id}',
|
|
174
180
|
},
|
|
181
|
+
{
|
|
182
|
+
clientCallName: 'client.agent.publish',
|
|
183
|
+
fullyQualifiedName: 'agent.publish',
|
|
184
|
+
httpMethod: 'post',
|
|
185
|
+
httpPath: '/publish-agent-version/{agent_id}',
|
|
186
|
+
},
|
|
175
187
|
{
|
|
176
188
|
clientCallName: 'client.chatAgent.create',
|
|
177
189
|
fullyQualifiedName: 'chatAgent.create',
|
|
@@ -208,6 +220,12 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
208
220
|
httpMethod: 'get',
|
|
209
221
|
httpPath: '/get-chat-agent-versions/{agent_id}',
|
|
210
222
|
},
|
|
223
|
+
{
|
|
224
|
+
clientCallName: 'client.chatAgent.publish',
|
|
225
|
+
fullyQualifiedName: 'chatAgent.publish',
|
|
226
|
+
httpMethod: 'post',
|
|
227
|
+
httpPath: '/publish-agent-version/{agent_id}',
|
|
228
|
+
},
|
|
211
229
|
{
|
|
212
230
|
clientCallName: 'client.llm.create',
|
|
213
231
|
fullyQualifiedName: 'llm.create',
|
|
@@ -230,7 +248,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
230
248
|
clientCallName: 'client.llm.list',
|
|
231
249
|
fullyQualifiedName: 'llm.list',
|
|
232
250
|
httpMethod: 'get',
|
|
233
|
-
httpPath: '/list-retell-llms',
|
|
251
|
+
httpPath: '/v2/list-retell-llms',
|
|
234
252
|
},
|
|
235
253
|
{
|
|
236
254
|
clientCallName: 'client.llm.delete',
|
|
@@ -260,7 +278,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
260
278
|
clientCallName: 'client.conversationFlow.list',
|
|
261
279
|
fullyQualifiedName: 'conversationFlow.list',
|
|
262
280
|
httpMethod: 'get',
|
|
263
|
-
httpPath: '/list-conversation-flows',
|
|
281
|
+
httpPath: '/v2/list-conversation-flows',
|
|
264
282
|
},
|
|
265
283
|
{
|
|
266
284
|
clientCallName: 'client.conversationFlow.delete',
|
|
@@ -290,7 +308,7 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
290
308
|
clientCallName: 'client.conversationFlowComponent.list',
|
|
291
309
|
fullyQualifiedName: 'conversationFlowComponent.list',
|
|
292
310
|
httpMethod: 'get',
|
|
293
|
-
httpPath: '/list-conversation-flow-components',
|
|
311
|
+
httpPath: '/v2/list-conversation-flow-components',
|
|
294
312
|
},
|
|
295
313
|
{
|
|
296
314
|
clientCallName: 'client.conversationFlowComponent.delete',
|
|
@@ -422,19 +440,19 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
422
440
|
clientCallName: 'client.tests.listBatchTests',
|
|
423
441
|
fullyQualifiedName: 'tests.listBatchTests',
|
|
424
442
|
httpMethod: 'get',
|
|
425
|
-
httpPath: '/list-batch-tests',
|
|
443
|
+
httpPath: '/v2/list-batch-tests',
|
|
426
444
|
},
|
|
427
445
|
{
|
|
428
446
|
clientCallName: 'client.tests.listTestCaseDefinitions',
|
|
429
447
|
fullyQualifiedName: 'tests.listTestCaseDefinitions',
|
|
430
448
|
httpMethod: 'get',
|
|
431
|
-
httpPath: '/list-test-case-definitions',
|
|
449
|
+
httpPath: '/v2/list-test-case-definitions',
|
|
432
450
|
},
|
|
433
451
|
{
|
|
434
452
|
clientCallName: 'client.tests.listTestRuns',
|
|
435
453
|
fullyQualifiedName: 'tests.listTestRuns',
|
|
436
454
|
httpMethod: 'get',
|
|
437
|
-
httpPath: '/list-test-runs/{test_case_batch_job_id}',
|
|
455
|
+
httpPath: '/v2/list-test-runs/{test_case_batch_job_id}',
|
|
438
456
|
},
|
|
439
457
|
{
|
|
440
458
|
clientCallName: 'client.tests.updateTestCaseDefinition',
|