@avallon-labs/mcp 49.0.0 → 49.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
|
@@ -6534,6 +6534,7 @@ var ListArtifactsQueryParams = zod.object({
|
|
|
6534
6534
|
case_id: zod.string().min(1).optional().describe(
|
|
6535
6535
|
"Only artifacts linked to this case. Values are normalized server-side (trimmed and lowercased)."
|
|
6536
6536
|
),
|
|
6537
|
+
environment: zod.enum(["live", "test"]).optional(),
|
|
6537
6538
|
created_after: zod.string().datetime({}).optional(),
|
|
6538
6539
|
created_before: zod.string().datetime({}).optional(),
|
|
6539
6540
|
metadata: zod.record(zod.string(), zod.string()).optional().describe(
|
|
@@ -7260,6 +7261,7 @@ var ListEmailsQueryParams = zod.object({
|
|
|
7260
7261
|
recipient: zod.string().email().optional(),
|
|
7261
7262
|
content: zod.string().min(1).max(listEmailsQueryContentMax).optional(),
|
|
7262
7263
|
case_id: zod.string().min(1).optional(),
|
|
7264
|
+
environment: zod.enum(["live", "test"]).optional(),
|
|
7263
7265
|
count: zod.number().min(1).max(listEmailsQueryCountMax).default(listEmailsQueryCountDefault),
|
|
7264
7266
|
offset: zod.number().min(listEmailsQueryOffsetMin).default(listEmailsQueryOffsetDefault),
|
|
7265
7267
|
sort_by: zod.enum(["created_at", "sent_at"]).default(listEmailsQuerySortByDefault),
|
|
@@ -8754,6 +8756,7 @@ var ListChatsQueryParams = zod.object({
|
|
|
8754
8756
|
case_id: zod.string().min(1).optional().describe(
|
|
8755
8757
|
"Only chats linked to this case. Values are normalized server-side (trimmed and lowercased)."
|
|
8756
8758
|
),
|
|
8759
|
+
environment: zod.enum(["live", "test"]).optional(),
|
|
8757
8760
|
count: zod.number().min(1).max(listChatsQueryCountMax).default(listChatsQueryCountDefault),
|
|
8758
8761
|
offset: zod.number().min(listChatsQueryOffsetMin).default(listChatsQueryOffsetDefault),
|
|
8759
8762
|
sort_by: zod.enum(["created_at"]).default(listChatsQuerySortByDefault),
|
|
@@ -8874,6 +8877,7 @@ var ListExtractsQueryParams = zod.object({
|
|
|
8874
8877
|
case_id: zod.string().min(1).optional().describe(
|
|
8875
8878
|
"Filter extracts linked to a specific case. Values are normalized server-side (trimmed and lowercased)."
|
|
8876
8879
|
),
|
|
8880
|
+
environment: zod.enum(["live", "test"]).optional(),
|
|
8877
8881
|
created_after: zod.string().optional(),
|
|
8878
8882
|
created_before: zod.string().optional(),
|
|
8879
8883
|
scope: zod.record(zod.string(), zod.string()).optional().describe(
|
|
@@ -9700,6 +9704,7 @@ var ListInformationRequestsQueryParams = zod.object({
|
|
|
9700
9704
|
case_id: zod.string().min(1).optional().describe(
|
|
9701
9705
|
"Only requests linked to this case. Values are normalized server-side (trimmed and lowercased)."
|
|
9702
9706
|
),
|
|
9707
|
+
environment: zod.enum(["live", "test"]).optional(),
|
|
9703
9708
|
count: zod.number().min(1).max(listInformationRequestsQueryCountMax).default(listInformationRequestsQueryCountDefault),
|
|
9704
9709
|
offset: zod.number().min(listInformationRequestsQueryOffsetMin).default(listInformationRequestsQueryOffsetDefault),
|
|
9705
9710
|
sort_by: zod.enum(["created_at"]).default(listInformationRequestsQuerySortByDefault),
|
|
@@ -11932,4 +11937,4 @@ var transport = new StdioServerTransport();
|
|
|
11932
11937
|
server.connect(transport).then(() => {
|
|
11933
11938
|
console.error("MCP server running on stdio");
|
|
11934
11939
|
}).catch(console.error);
|
|
11935
|
-
//# sourceMappingURL=server-
|
|
11940
|
+
//# sourceMappingURL=server-TRMJLUGT.js.map
|