@avallon-labs/mcp 35.1.0 → 35.2.0-staging.878
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
|
@@ -6995,6 +6995,7 @@ var AddCaseLinksBody = zod.object({
|
|
|
6995
6995
|
entity_type: zod.enum([
|
|
6996
6996
|
"artifact",
|
|
6997
6997
|
"call",
|
|
6998
|
+
"chat",
|
|
6998
6999
|
"email",
|
|
6999
7000
|
"extract",
|
|
7000
7001
|
"worker_run"
|
|
@@ -7010,6 +7011,7 @@ var AddCaseLinksResponse = zod.object({
|
|
|
7010
7011
|
entity_type: zod.enum([
|
|
7011
7012
|
"artifact",
|
|
7012
7013
|
"call",
|
|
7014
|
+
"chat",
|
|
7013
7015
|
"email",
|
|
7014
7016
|
"extract",
|
|
7015
7017
|
"worker_run"
|
|
@@ -7029,7 +7031,7 @@ var listCaseLinksQueryOffsetMin = 0;
|
|
|
7029
7031
|
var listCaseLinksQuerySortByDefault = `created_at`;
|
|
7030
7032
|
var listCaseLinksQuerySortOrderDefault = `desc`;
|
|
7031
7033
|
var ListCaseLinksQueryParams = zod.object({
|
|
7032
|
-
entity_type: zod.enum(["artifact", "call", "email", "extract", "worker_run"]).optional().describe("Filter links by entity type."),
|
|
7034
|
+
entity_type: zod.enum(["artifact", "call", "chat", "email", "extract", "worker_run"]).optional().describe("Filter links by entity type."),
|
|
7033
7035
|
count: zod.number().min(1).max(listCaseLinksQueryCountMax).default(listCaseLinksQueryCountDefault),
|
|
7034
7036
|
offset: zod.number().min(listCaseLinksQueryOffsetMin).default(listCaseLinksQueryOffsetDefault),
|
|
7035
7037
|
sort_by: zod.enum(["created_at"]).default(listCaseLinksQuerySortByDefault),
|
|
@@ -7037,14 +7039,28 @@ var ListCaseLinksQueryParams = zod.object({
|
|
|
7037
7039
|
});
|
|
7038
7040
|
var ListCaseLinksResponseItem = zod.object({
|
|
7039
7041
|
case_id: zod.string(),
|
|
7040
|
-
entity_type: zod.enum([
|
|
7042
|
+
entity_type: zod.enum([
|
|
7043
|
+
"artifact",
|
|
7044
|
+
"call",
|
|
7045
|
+
"chat",
|
|
7046
|
+
"email",
|
|
7047
|
+
"extract",
|
|
7048
|
+
"worker_run"
|
|
7049
|
+
]),
|
|
7041
7050
|
entity_id: zod.string().uuid(),
|
|
7042
7051
|
created_at: zod.string().datetime({})
|
|
7043
7052
|
});
|
|
7044
7053
|
var ListCaseLinksResponse = zod.array(ListCaseLinksResponseItem);
|
|
7045
7054
|
var RemoveCaseLinkParams = zod.object({
|
|
7046
7055
|
id: zod.string().min(1),
|
|
7047
|
-
entityType: zod.enum([
|
|
7056
|
+
entityType: zod.enum([
|
|
7057
|
+
"artifact",
|
|
7058
|
+
"call",
|
|
7059
|
+
"chat",
|
|
7060
|
+
"email",
|
|
7061
|
+
"extract",
|
|
7062
|
+
"worker_run"
|
|
7063
|
+
]),
|
|
7048
7064
|
entityId: zod.string().uuid()
|
|
7049
7065
|
});
|
|
7050
7066
|
var RemoveCaseLinkResponse = zod.object({});
|
|
@@ -8949,4 +8965,4 @@ var transport = new StdioServerTransport();
|
|
|
8949
8965
|
server.connect(transport).then(() => {
|
|
8950
8966
|
console.error("MCP server running on stdio");
|
|
8951
8967
|
}).catch(console.error);
|
|
8952
|
-
//# sourceMappingURL=server-
|
|
8968
|
+
//# sourceMappingURL=server-HM3KDTG5.js.map
|