@avallon-labs/mcp 35.7.0 → 36.0.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
|
@@ -6448,7 +6448,9 @@ var ListWorkerRunsResponseItem = zod.object({
|
|
|
6448
6448
|
worker_version: zod.number().min(listWorkerRunsResponseWorkerVersionMin).max(listWorkerRunsResponseWorkerVersionMax).describe("Version of the worker at run creation time"),
|
|
6449
6449
|
worker_name: zod.string().describe("Name of the worker"),
|
|
6450
6450
|
status: zod.string().describe("Current run status"),
|
|
6451
|
-
scope: zod.record(zod.string(), zod.unknown()).
|
|
6451
|
+
scope: zod.union([zod.record(zod.string(), zod.unknown()), zod.null()]).describe(
|
|
6452
|
+
"Run scope metadata (e.g. claim_id, email_id). Null when the run has no artifacts."
|
|
6453
|
+
),
|
|
6452
6454
|
created_at: zod.string().datetime({}).describe("ISO 8601 timestamp when the run was created"),
|
|
6453
6455
|
started_at: zod.union([zod.string().datetime({}), zod.null()]).describe("ISO 8601 timestamp when processing started"),
|
|
6454
6456
|
completed_at: zod.union([zod.string().datetime({}), zod.null()]).describe("ISO 8601 timestamp when processing finished"),
|
|
@@ -6467,16 +6469,19 @@ var ListWorkerRunsResponseItem = zod.object({
|
|
|
6467
6469
|
var ListWorkerRunsResponse = zod.array(ListWorkerRunsResponseItem);
|
|
6468
6470
|
var CreateWorkerRunBody = zod.object({
|
|
6469
6471
|
worker_id: zod.string().uuid(),
|
|
6470
|
-
scope: zod.
|
|
6471
|
-
zod.
|
|
6472
|
-
|
|
6473
|
-
|
|
6472
|
+
scope: zod.union([
|
|
6473
|
+
zod.record(
|
|
6474
|
+
zod.string(),
|
|
6475
|
+
zod.union([zod.string(), zod.number(), zod.boolean(), zod.null()])
|
|
6476
|
+
),
|
|
6477
|
+
zod.null()
|
|
6478
|
+
])
|
|
6474
6479
|
});
|
|
6475
6480
|
var CreateWorkerRunResponse = zod.object({
|
|
6476
6481
|
id: zod.string(),
|
|
6477
6482
|
worker_id: zod.string(),
|
|
6478
6483
|
worker_version: zod.number(),
|
|
6479
|
-
scope: zod.record(zod.string(), zod.unknown()),
|
|
6484
|
+
scope: zod.union([zod.record(zod.string(), zod.unknown()), zod.null()]),
|
|
6480
6485
|
status: zod.string(),
|
|
6481
6486
|
created_at: zod.string().datetime({})
|
|
6482
6487
|
});
|
|
@@ -6517,7 +6522,9 @@ var UpdateWorkerRunScopeResponse = zod.object({
|
|
|
6517
6522
|
worker_version: zod.number().min(updateWorkerRunScopeResponseWorkerVersionMin).max(updateWorkerRunScopeResponseWorkerVersionMax).describe("Version of the worker at run creation time"),
|
|
6518
6523
|
worker_name: zod.string().describe("Name of the worker"),
|
|
6519
6524
|
status: zod.string().describe("Current run status"),
|
|
6520
|
-
scope: zod.record(zod.string(), zod.unknown()).
|
|
6525
|
+
scope: zod.union([zod.record(zod.string(), zod.unknown()), zod.null()]).describe(
|
|
6526
|
+
"Run scope metadata (e.g. claim_id, email_id). Null when the run has no artifacts."
|
|
6527
|
+
),
|
|
6521
6528
|
created_at: zod.string().datetime({}).describe("ISO 8601 timestamp when the run was created"),
|
|
6522
6529
|
started_at: zod.union([zod.string().datetime({}), zod.null()]).describe("ISO 8601 timestamp when processing started"),
|
|
6523
6530
|
completed_at: zod.union([zod.string().datetime({}), zod.null()]).describe("ISO 8601 timestamp when processing finished"),
|
|
@@ -6544,7 +6551,9 @@ var CancelWorkerRunResponse = zod.object({
|
|
|
6544
6551
|
worker_version: zod.number().min(cancelWorkerRunResponseWorkerVersionMin).max(cancelWorkerRunResponseWorkerVersionMax).describe("Version of the worker at run creation time"),
|
|
6545
6552
|
worker_name: zod.string().describe("Name of the worker"),
|
|
6546
6553
|
status: zod.string().describe("Current run status"),
|
|
6547
|
-
scope: zod.record(zod.string(), zod.unknown()).
|
|
6554
|
+
scope: zod.union([zod.record(zod.string(), zod.unknown()), zod.null()]).describe(
|
|
6555
|
+
"Run scope metadata (e.g. claim_id, email_id). Null when the run has no artifacts."
|
|
6556
|
+
),
|
|
6548
6557
|
created_at: zod.string().datetime({}).describe("ISO 8601 timestamp when the run was created"),
|
|
6549
6558
|
started_at: zod.union([zod.string().datetime({}), zod.null()]).describe("ISO 8601 timestamp when processing started"),
|
|
6550
6559
|
completed_at: zod.union([zod.string().datetime({}), zod.null()]).describe("ISO 8601 timestamp when processing finished"),
|
|
@@ -9008,4 +9017,4 @@ var transport = new StdioServerTransport();
|
|
|
9008
9017
|
server.connect(transport).then(() => {
|
|
9009
9018
|
console.error("MCP server running on stdio");
|
|
9010
9019
|
}).catch(console.error);
|
|
9011
|
-
//# sourceMappingURL=server-
|
|
9020
|
+
//# sourceMappingURL=server-XKFFASQR.js.map
|