@avallon-labs/mcp 24.1.0-staging.600 → 24.2.0-staging.602
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
|
@@ -6011,6 +6011,16 @@ var listCasesQueryOffsetMin = 0;
|
|
|
6011
6011
|
var listCasesQuerySortByDefault = `created_at`;
|
|
6012
6012
|
var listCasesQuerySortOrderDefault = `desc`;
|
|
6013
6013
|
var ListCasesQueryParams = zod.object({
|
|
6014
|
+
id: zod.string().min(1).optional().describe(
|
|
6015
|
+
"Filter by exact case id. Values are normalized server-side (trimmed and lowercased) to match how case ids are stored."
|
|
6016
|
+
),
|
|
6017
|
+
subject: zod.string().min(1).optional().describe(
|
|
6018
|
+
"Filter by case subject. Case-insensitive substring match against the case subject."
|
|
6019
|
+
),
|
|
6020
|
+
reporter: zod.string().min(1).optional().describe(
|
|
6021
|
+
"Filter by reporter. Case-insensitive substring match against the case reporter."
|
|
6022
|
+
),
|
|
6023
|
+
created_by: zod.string().optional().describe("Filter by the worker id that created the case."),
|
|
6014
6024
|
count: zod.number().min(1).max(listCasesQueryCountMax).default(listCasesQueryCountDefault),
|
|
6015
6025
|
offset: zod.number().min(listCasesQueryOffsetMin).default(listCasesQueryOffsetDefault),
|
|
6016
6026
|
sort_by: zod.enum(["created_at", "updated_at"]).default(listCasesQuerySortByDefault),
|
|
@@ -7687,4 +7697,4 @@ var transport = new StdioServerTransport();
|
|
|
7687
7697
|
server.connect(transport).then(() => {
|
|
7688
7698
|
console.error("MCP server running on stdio");
|
|
7689
7699
|
}).catch(console.error);
|
|
7690
|
-
//# sourceMappingURL=server-
|
|
7700
|
+
//# sourceMappingURL=server-HXG3WZYS.js.map
|