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