@avallon-labs/mcp 26.8.0 → 26.9.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/dist/index.js
CHANGED
|
@@ -6083,6 +6083,7 @@ var CreateWorkerResponse = zod.object({
|
|
|
6083
6083
|
created_at: zod.string().datetime({}),
|
|
6084
6084
|
updated_at: zod.string().datetime({}),
|
|
6085
6085
|
schema: zod.record(zod.string(), zod.unknown()),
|
|
6086
|
+
case_determination_context: zod.union([zod.string(), zod.null()]),
|
|
6086
6087
|
tool_ids: zod.array(zod.string())
|
|
6087
6088
|
});
|
|
6088
6089
|
var listWorkersQueryCountDefault = 50;
|
|
@@ -6120,6 +6121,7 @@ var GetWorkerResponse = zod.object({
|
|
|
6120
6121
|
created_at: zod.string().datetime({}),
|
|
6121
6122
|
updated_at: zod.string().datetime({}),
|
|
6122
6123
|
schema: zod.record(zod.string(), zod.unknown()),
|
|
6124
|
+
case_determination_context: zod.union([zod.string(), zod.null()]),
|
|
6123
6125
|
tool_ids: zod.array(zod.string())
|
|
6124
6126
|
});
|
|
6125
6127
|
var UpdateWorkerParams = zod.object({
|
|
@@ -6130,6 +6132,9 @@ var UpdateWorkerBody = zod.object({
|
|
|
6130
6132
|
schema: zod.record(zod.string(), zod.unknown()).optional(),
|
|
6131
6133
|
tools: zod.array(zod.string().uuid()).optional().describe(
|
|
6132
6134
|
"Replace the worker's attached tool set. Omit to leave unchanged; pass [] to clear."
|
|
6135
|
+
),
|
|
6136
|
+
case_determination_context: zod.union([zod.string().min(1), zod.null()]).optional().describe(
|
|
6137
|
+
"Customer-specific context appended to the case-ID determination prompt. Omit to leave unchanged; pass null to clear."
|
|
6133
6138
|
)
|
|
6134
6139
|
});
|
|
6135
6140
|
var updateWorkerResponseVersionMin = 0;
|
|
@@ -6141,6 +6146,7 @@ var UpdateWorkerResponse = zod.object({
|
|
|
6141
6146
|
created_at: zod.string().datetime({}),
|
|
6142
6147
|
updated_at: zod.string().datetime({}),
|
|
6143
6148
|
schema: zod.record(zod.string(), zod.unknown()),
|
|
6149
|
+
case_determination_context: zod.union([zod.string(), zod.null()]),
|
|
6144
6150
|
tool_ids: zod.array(zod.string())
|
|
6145
6151
|
});
|
|
6146
6152
|
var GetWorkerPromptParams = zod.object({
|
|
@@ -7979,4 +7985,4 @@ var transport = new StdioServerTransport();
|
|
|
7979
7985
|
server.connect(transport).then(() => {
|
|
7980
7986
|
console.error("MCP server running on stdio");
|
|
7981
7987
|
}).catch(console.error);
|
|
7982
|
-
//# sourceMappingURL=server-
|
|
7988
|
+
//# sourceMappingURL=server-5VKDIYHL.js.map
|