@avallon-labs/mcp 18.0.0 → 19.0.0-staging.442
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/dist/index.js
CHANGED
|
@@ -2834,7 +2834,7 @@ var CreateVoiceAgentBody = zod.object({
|
|
|
2834
2834
|
call_processor_type: zod.enum(["extractor", "worker"]).optional().describe("Type of processor: extractor or worker")
|
|
2835
2835
|
});
|
|
2836
2836
|
var GetVoiceAgentParams = zod.object({
|
|
2837
|
-
voiceAgentId: zod.string().
|
|
2837
|
+
voiceAgentId: zod.string().uuid().describe("Voice Agent ID")
|
|
2838
2838
|
});
|
|
2839
2839
|
var GetVoiceAgentResponse = zod.object({
|
|
2840
2840
|
agent: zod.object({
|
|
@@ -2894,7 +2894,7 @@ var UpdateVoiceAgentParams = zod.object({
|
|
|
2894
2894
|
});
|
|
2895
2895
|
var UpdateVoiceAgentBody = zod.object({
|
|
2896
2896
|
name: zod.string().min(1).optional(),
|
|
2897
|
-
call_processor_id: zod.union([zod.string(), zod.null()]).optional(),
|
|
2897
|
+
call_processor_id: zod.union([zod.string().uuid(), zod.null()]).optional(),
|
|
2898
2898
|
call_processor_type: zod.enum(["extractor", "worker"]).optional()
|
|
2899
2899
|
});
|
|
2900
2900
|
var UpdateVoiceAgentResponse = zod.object({
|
|
@@ -3069,13 +3069,13 @@ var DeleteToolsFromVoiceAgentResponse = zod.object({
|
|
|
3069
3069
|
})
|
|
3070
3070
|
});
|
|
3071
3071
|
var GetVoiceAgentPromptParams = zod.object({
|
|
3072
|
-
voiceAgentId: zod.string().
|
|
3072
|
+
voiceAgentId: zod.string().uuid()
|
|
3073
3073
|
});
|
|
3074
3074
|
var GetVoiceAgentPromptResponse = zod.object({
|
|
3075
3075
|
placeholders: zod.array(zod.string()).describe("Available placeholder variables")
|
|
3076
3076
|
});
|
|
3077
3077
|
var UpdateVoiceAgentModelsParams = zod.object({
|
|
3078
|
-
voiceAgentId: zod.string().
|
|
3078
|
+
voiceAgentId: zod.string().uuid()
|
|
3079
3079
|
});
|
|
3080
3080
|
var UpdateVoiceAgentModelsBody = zod.object({
|
|
3081
3081
|
llm_model: zod.enum([
|
|
@@ -3312,7 +3312,7 @@ var ListJobsResponseItem = zod.object({
|
|
|
3312
3312
|
});
|
|
3313
3313
|
var ListJobsResponse = zod.array(ListJobsResponseItem);
|
|
3314
3314
|
var CancelJobParams = zod.object({
|
|
3315
|
-
jobId: zod.string().
|
|
3315
|
+
jobId: zod.string().uuid()
|
|
3316
3316
|
});
|
|
3317
3317
|
var CancelJobResponse = zod.object({
|
|
3318
3318
|
id: zod.string(),
|
|
@@ -4571,7 +4571,7 @@ var ExecuteCodeResponse = zod.object({
|
|
|
4571
4571
|
)
|
|
4572
4572
|
});
|
|
4573
4573
|
var GetToolParams = zod.object({
|
|
4574
|
-
id: zod.string().
|
|
4574
|
+
id: zod.string().uuid()
|
|
4575
4575
|
});
|
|
4576
4576
|
var GetToolResponse = zod.object({
|
|
4577
4577
|
tool: zod.object({
|
|
@@ -5601,4 +5601,4 @@ var transport = new StdioServerTransport();
|
|
|
5601
5601
|
server.connect(transport).then(() => {
|
|
5602
5602
|
console.error("MCP server running on stdio");
|
|
5603
5603
|
}).catch(console.error);
|
|
5604
|
-
//# sourceMappingURL=server-
|
|
5604
|
+
//# sourceMappingURL=server-ABGHAGFW.js.map
|