@avallon-labs/mcp 35.5.0 → 35.6.0-staging.890
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
|
@@ -6455,7 +6455,13 @@ var ListWorkerRunsResponseItem = zod.object({
|
|
|
6455
6455
|
extract_id: zod.union([zod.string().uuid(), zod.null()]).describe(
|
|
6456
6456
|
"Optional extract ID, set only if the worker run created an extract."
|
|
6457
6457
|
),
|
|
6458
|
-
error: zod.union([zod.string(), zod.null()])
|
|
6458
|
+
error: zod.union([zod.string(), zod.null()]),
|
|
6459
|
+
outcome: zod.union([zod.string(), zod.null()]).describe(
|
|
6460
|
+
"Use-case-specific business outcome reported by the worker. Null when the run predates outcome tracking or never executed to completion."
|
|
6461
|
+
),
|
|
6462
|
+
outcome_reason: zod.union([zod.string(), zod.null()]).describe(
|
|
6463
|
+
"Worker-authored explanation of the outcome. May contain case content."
|
|
6464
|
+
)
|
|
6459
6465
|
});
|
|
6460
6466
|
var ListWorkerRunsResponse = zod.array(ListWorkerRunsResponseItem);
|
|
6461
6467
|
var CreateWorkerRunBody = zod.object({
|
|
@@ -6518,7 +6524,13 @@ var UpdateWorkerRunScopeResponse = zod.object({
|
|
|
6518
6524
|
extract_id: zod.union([zod.string().uuid(), zod.null()]).describe(
|
|
6519
6525
|
"Optional extract ID, set only if the worker run created an extract."
|
|
6520
6526
|
),
|
|
6521
|
-
error: zod.union([zod.string(), zod.null()])
|
|
6527
|
+
error: zod.union([zod.string(), zod.null()]),
|
|
6528
|
+
outcome: zod.union([zod.string(), zod.null()]).describe(
|
|
6529
|
+
"Use-case-specific business outcome reported by the worker. Null when the run predates outcome tracking or never executed to completion."
|
|
6530
|
+
),
|
|
6531
|
+
outcome_reason: zod.union([zod.string(), zod.null()]).describe(
|
|
6532
|
+
"Worker-authored explanation of the outcome. May contain case content."
|
|
6533
|
+
)
|
|
6522
6534
|
});
|
|
6523
6535
|
var CancelWorkerRunParams = zod.object({
|
|
6524
6536
|
workerRunId: zod.string().uuid()
|
|
@@ -6539,7 +6551,13 @@ var CancelWorkerRunResponse = zod.object({
|
|
|
6539
6551
|
extract_id: zod.union([zod.string().uuid(), zod.null()]).describe(
|
|
6540
6552
|
"Optional extract ID, set only if the worker run created an extract."
|
|
6541
6553
|
),
|
|
6542
|
-
error: zod.union([zod.string(), zod.null()])
|
|
6554
|
+
error: zod.union([zod.string(), zod.null()]),
|
|
6555
|
+
outcome: zod.union([zod.string(), zod.null()]).describe(
|
|
6556
|
+
"Use-case-specific business outcome reported by the worker. Null when the run predates outcome tracking or never executed to completion."
|
|
6557
|
+
),
|
|
6558
|
+
outcome_reason: zod.union([zod.string(), zod.null()]).describe(
|
|
6559
|
+
"Worker-authored explanation of the outcome. May contain case content."
|
|
6560
|
+
)
|
|
6543
6561
|
});
|
|
6544
6562
|
var CreateExtractorBody = zod.object({
|
|
6545
6563
|
name: zod.string().min(1),
|
|
@@ -8989,4 +9007,4 @@ var transport = new StdioServerTransport();
|
|
|
8989
9007
|
server.connect(transport).then(() => {
|
|
8990
9008
|
console.error("MCP server running on stdio");
|
|
8991
9009
|
}).catch(console.error);
|
|
8992
|
-
//# sourceMappingURL=server-
|
|
9010
|
+
//# sourceMappingURL=server-XIOSURET.js.map
|