@retell-ai/mcp-server 5.18.0 → 5.20.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 +0 -2
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +0 -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 +96 -140
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +96 -140
- 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 +0 -12
- package/methods.js.map +1 -1
- package/methods.mjs +0 -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 +0 -2
- package/src/local-docs-search.ts +96 -149
- package/src/methods.ts +0 -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',
|