@avallon-labs/mcp 14.0.0 → 14.1.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
|
@@ -3818,6 +3818,9 @@ var ListWorkerRunsResponseItem = zod.object({
|
|
|
3818
3818
|
started_at: zod.union([zod.string().datetime({}), zod.null()]).describe("ISO 8601 timestamp when processing started"),
|
|
3819
3819
|
completed_at: zod.union([zod.string().datetime({}), zod.null()]).describe("ISO 8601 timestamp when processing finished"),
|
|
3820
3820
|
processing_duration_ms: zod.union([zod.number(), zod.null()]).describe("Processing duration in milliseconds"),
|
|
3821
|
+
extract_id: zod.union([zod.string().uuid(), zod.null()]).describe(
|
|
3822
|
+
"Optional extract ID, set only if the worker run created an extract."
|
|
3823
|
+
),
|
|
3821
3824
|
error: zod.union([zod.string(), zod.null()])
|
|
3822
3825
|
});
|
|
3823
3826
|
var ListWorkerRunsResponse = zod.array(ListWorkerRunsResponseItem);
|
|
@@ -5136,4 +5139,4 @@ var transport = new StdioServerTransport();
|
|
|
5136
5139
|
server.connect(transport).then(() => {
|
|
5137
5140
|
console.error("MCP server running on stdio");
|
|
5138
5141
|
}).catch(console.error);
|
|
5139
|
-
//# sourceMappingURL=server-
|
|
5142
|
+
//# sourceMappingURL=server-VKQHXS2A.js.map
|