@avallon-labs/mcp 24.0.0-staging.599 → 24.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
|
@@ -6209,6 +6209,9 @@ var GetExtractResponse = zod.object({
|
|
|
6209
6209
|
processor_scope: zod.record(zod.string(), zod.unknown()),
|
|
6210
6210
|
extractor_job_id: zod.union([zod.string(), zod.null()]),
|
|
6211
6211
|
worker_run_id: zod.union([zod.string(), zod.null()]),
|
|
6212
|
+
case_id: zod.union([zod.string(), zod.null()]).describe(
|
|
6213
|
+
"Case this extract is associated with, or null if it is not linked to a case. Stored normalized (trimmed and lowercased)."
|
|
6214
|
+
),
|
|
6212
6215
|
result: zod.unknown(),
|
|
6213
6216
|
citations: zod.union([zod.unknown(), zod.null()]),
|
|
6214
6217
|
created_at: zod.string().datetime({}),
|
|
@@ -6257,6 +6260,9 @@ var ListExtractsQueryParams = zod.object({
|
|
|
6257
6260
|
extractor_id: zod.string().uuid().optional(),
|
|
6258
6261
|
worker_run_id: zod.string().uuid().optional(),
|
|
6259
6262
|
worker_id: zod.string().uuid().optional(),
|
|
6263
|
+
case_id: zod.string().min(1).optional().describe(
|
|
6264
|
+
"Filter extracts associated with a specific case (matches the dedicated `extracts.case_id` column). Values are normalized server-side (trimmed and lowercased)."
|
|
6265
|
+
),
|
|
6260
6266
|
created_after: zod.string().optional(),
|
|
6261
6267
|
created_before: zod.string().optional(),
|
|
6262
6268
|
scope: zod.record(zod.string(), zod.string()).optional().describe(
|
|
@@ -6267,6 +6273,9 @@ var ListExtractsResponseItem = zod.object({
|
|
|
6267
6273
|
id: zod.string(),
|
|
6268
6274
|
extractor_job_id: zod.union([zod.string(), zod.null()]),
|
|
6269
6275
|
worker_run_id: zod.union([zod.string(), zod.null()]),
|
|
6276
|
+
case_id: zod.union([zod.string(), zod.null()]).describe(
|
|
6277
|
+
"Case this extract is associated with, or null if it is not linked to a case. Stored normalized (trimmed and lowercased)."
|
|
6278
|
+
),
|
|
6270
6279
|
processor_type: zod.string(),
|
|
6271
6280
|
processor_id: zod.string(),
|
|
6272
6281
|
processor_version: zod.number(),
|
|
@@ -7678,4 +7687,4 @@ var transport = new StdioServerTransport();
|
|
|
7678
7687
|
server.connect(transport).then(() => {
|
|
7679
7688
|
console.error("MCP server running on stdio");
|
|
7680
7689
|
}).catch(console.error);
|
|
7681
|
-
//# sourceMappingURL=server-
|
|
7690
|
+
//# sourceMappingURL=server-CWEVEMF2.js.map
|