@avallon-labs/mcp 37.2.0 → 37.3.0-staging.935
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
|
@@ -7380,6 +7380,7 @@ var AddCaseLinksBody = zod.object({
|
|
|
7380
7380
|
"chat",
|
|
7381
7381
|
"email",
|
|
7382
7382
|
"extract",
|
|
7383
|
+
"schedule",
|
|
7383
7384
|
"worker_run"
|
|
7384
7385
|
]),
|
|
7385
7386
|
entity_id: zod.string().uuid()
|
|
@@ -7396,6 +7397,7 @@ var AddCaseLinksResponse = zod.object({
|
|
|
7396
7397
|
"chat",
|
|
7397
7398
|
"email",
|
|
7398
7399
|
"extract",
|
|
7400
|
+
"schedule",
|
|
7399
7401
|
"worker_run"
|
|
7400
7402
|
]),
|
|
7401
7403
|
entity_id: zod.string().uuid(),
|
|
@@ -7413,7 +7415,15 @@ var listCaseLinksQueryOffsetMin = 0;
|
|
|
7413
7415
|
var listCaseLinksQuerySortByDefault = `created_at`;
|
|
7414
7416
|
var listCaseLinksQuerySortOrderDefault = `desc`;
|
|
7415
7417
|
var ListCaseLinksQueryParams = zod.object({
|
|
7416
|
-
entity_type: zod.enum([
|
|
7418
|
+
entity_type: zod.enum([
|
|
7419
|
+
"artifact",
|
|
7420
|
+
"call",
|
|
7421
|
+
"chat",
|
|
7422
|
+
"email",
|
|
7423
|
+
"extract",
|
|
7424
|
+
"schedule",
|
|
7425
|
+
"worker_run"
|
|
7426
|
+
]).optional().describe("Filter links by entity type."),
|
|
7417
7427
|
count: zod.number().min(1).max(listCaseLinksQueryCountMax).default(listCaseLinksQueryCountDefault),
|
|
7418
7428
|
offset: zod.number().min(listCaseLinksQueryOffsetMin).default(listCaseLinksQueryOffsetDefault),
|
|
7419
7429
|
sort_by: zod.enum(["created_at"]).default(listCaseLinksQuerySortByDefault),
|
|
@@ -7427,6 +7437,7 @@ var ListCaseLinksResponseItem = zod.object({
|
|
|
7427
7437
|
"chat",
|
|
7428
7438
|
"email",
|
|
7429
7439
|
"extract",
|
|
7440
|
+
"schedule",
|
|
7430
7441
|
"worker_run"
|
|
7431
7442
|
]),
|
|
7432
7443
|
entity_id: zod.string().uuid(),
|
|
@@ -7441,6 +7452,7 @@ var RemoveCaseLinkParams = zod.object({
|
|
|
7441
7452
|
"chat",
|
|
7442
7453
|
"email",
|
|
7443
7454
|
"extract",
|
|
7455
|
+
"schedule",
|
|
7444
7456
|
"worker_run"
|
|
7445
7457
|
]),
|
|
7446
7458
|
entityId: zod.string().uuid()
|
|
@@ -9765,4 +9777,4 @@ var transport = new StdioServerTransport();
|
|
|
9765
9777
|
server.connect(transport).then(() => {
|
|
9766
9778
|
console.error("MCP server running on stdio");
|
|
9767
9779
|
}).catch(console.error);
|
|
9768
|
-
//# sourceMappingURL=server-
|
|
9780
|
+
//# sourceMappingURL=server-7FBI6ZUL.js.map
|