@avallon-labs/mcp 35.1.0 → 35.3.0-staging.881
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
|
@@ -5553,13 +5553,19 @@ var CancelJobResponse = zod.object({
|
|
|
5553
5553
|
created_at: zod.string().datetime({})
|
|
5554
5554
|
});
|
|
5555
5555
|
var ListApiKeysQueryParams = zod.object({
|
|
5556
|
-
include_revoked: zod.enum(["true", "false"]).optional().describe("Include revoked keys in the response")
|
|
5556
|
+
include_revoked: zod.enum(["true", "false"]).optional().describe("Include revoked keys in the response"),
|
|
5557
|
+
owner_profile_id: zod.string().uuid().optional().describe(
|
|
5558
|
+
"Only return keys owned by this team member. Ids come from the team endpoint."
|
|
5559
|
+
)
|
|
5557
5560
|
});
|
|
5558
5561
|
var ListApiKeysResponse = zod.object({
|
|
5559
5562
|
data: zod.array(
|
|
5560
5563
|
zod.object({
|
|
5561
5564
|
id: zod.string().describe("Unique identifier for the API key"),
|
|
5562
5565
|
name: zod.string().describe("Human-readable name for the API key"),
|
|
5566
|
+
owner_profile_id: zod.string().describe(
|
|
5567
|
+
"Id of the team member the key acts as, as returned by the team endpoint. The owner's role caps the key's effective role, and the key stops working once the owner is removed from the tenant."
|
|
5568
|
+
),
|
|
5563
5569
|
key_prefix: zod.string().describe("First 12 characters of the key (e.g. ak_live_abc1)"),
|
|
5564
5570
|
role: zod.enum(["admin", "avallon_admin", "member"]).describe("Role granted to this API key"),
|
|
5565
5571
|
last_used_at: zod.string().datetime({}).optional().describe("Last usage timestamp, if ever used"),
|
|
@@ -5598,6 +5604,9 @@ var UpdateApiKeyBody = zod.object({
|
|
|
5598
5604
|
var UpdateApiKeyResponse = zod.object({
|
|
5599
5605
|
id: zod.string().describe("Unique identifier for the API key"),
|
|
5600
5606
|
name: zod.string().describe("Human-readable name for the API key"),
|
|
5607
|
+
owner_profile_id: zod.string().describe(
|
|
5608
|
+
"Id of the team member the key acts as, as returned by the team endpoint. The owner's role caps the key's effective role, and the key stops working once the owner is removed from the tenant."
|
|
5609
|
+
),
|
|
5601
5610
|
key_prefix: zod.string().describe("First 12 characters of the key (e.g. ak_live_abc1)"),
|
|
5602
5611
|
role: zod.enum(["admin", "avallon_admin", "member"]).describe("Role granted to this API key"),
|
|
5603
5612
|
last_used_at: zod.string().datetime({}).optional().describe("Last usage timestamp, if ever used"),
|
|
@@ -6995,6 +7004,7 @@ var AddCaseLinksBody = zod.object({
|
|
|
6995
7004
|
entity_type: zod.enum([
|
|
6996
7005
|
"artifact",
|
|
6997
7006
|
"call",
|
|
7007
|
+
"chat",
|
|
6998
7008
|
"email",
|
|
6999
7009
|
"extract",
|
|
7000
7010
|
"worker_run"
|
|
@@ -7010,6 +7020,7 @@ var AddCaseLinksResponse = zod.object({
|
|
|
7010
7020
|
entity_type: zod.enum([
|
|
7011
7021
|
"artifact",
|
|
7012
7022
|
"call",
|
|
7023
|
+
"chat",
|
|
7013
7024
|
"email",
|
|
7014
7025
|
"extract",
|
|
7015
7026
|
"worker_run"
|
|
@@ -7029,7 +7040,7 @@ var listCaseLinksQueryOffsetMin = 0;
|
|
|
7029
7040
|
var listCaseLinksQuerySortByDefault = `created_at`;
|
|
7030
7041
|
var listCaseLinksQuerySortOrderDefault = `desc`;
|
|
7031
7042
|
var ListCaseLinksQueryParams = zod.object({
|
|
7032
|
-
entity_type: zod.enum(["artifact", "call", "email", "extract", "worker_run"]).optional().describe("Filter links by entity type."),
|
|
7043
|
+
entity_type: zod.enum(["artifact", "call", "chat", "email", "extract", "worker_run"]).optional().describe("Filter links by entity type."),
|
|
7033
7044
|
count: zod.number().min(1).max(listCaseLinksQueryCountMax).default(listCaseLinksQueryCountDefault),
|
|
7034
7045
|
offset: zod.number().min(listCaseLinksQueryOffsetMin).default(listCaseLinksQueryOffsetDefault),
|
|
7035
7046
|
sort_by: zod.enum(["created_at"]).default(listCaseLinksQuerySortByDefault),
|
|
@@ -7037,14 +7048,28 @@ var ListCaseLinksQueryParams = zod.object({
|
|
|
7037
7048
|
});
|
|
7038
7049
|
var ListCaseLinksResponseItem = zod.object({
|
|
7039
7050
|
case_id: zod.string(),
|
|
7040
|
-
entity_type: zod.enum([
|
|
7051
|
+
entity_type: zod.enum([
|
|
7052
|
+
"artifact",
|
|
7053
|
+
"call",
|
|
7054
|
+
"chat",
|
|
7055
|
+
"email",
|
|
7056
|
+
"extract",
|
|
7057
|
+
"worker_run"
|
|
7058
|
+
]),
|
|
7041
7059
|
entity_id: zod.string().uuid(),
|
|
7042
7060
|
created_at: zod.string().datetime({})
|
|
7043
7061
|
});
|
|
7044
7062
|
var ListCaseLinksResponse = zod.array(ListCaseLinksResponseItem);
|
|
7045
7063
|
var RemoveCaseLinkParams = zod.object({
|
|
7046
7064
|
id: zod.string().min(1),
|
|
7047
|
-
entityType: zod.enum([
|
|
7065
|
+
entityType: zod.enum([
|
|
7066
|
+
"artifact",
|
|
7067
|
+
"call",
|
|
7068
|
+
"chat",
|
|
7069
|
+
"email",
|
|
7070
|
+
"extract",
|
|
7071
|
+
"worker_run"
|
|
7072
|
+
]),
|
|
7048
7073
|
entityId: zod.string().uuid()
|
|
7049
7074
|
});
|
|
7050
7075
|
var RemoveCaseLinkResponse = zod.object({});
|
|
@@ -8949,4 +8974,4 @@ var transport = new StdioServerTransport();
|
|
|
8949
8974
|
server.connect(transport).then(() => {
|
|
8950
8975
|
console.error("MCP server running on stdio");
|
|
8951
8976
|
}).catch(console.error);
|
|
8952
|
-
//# sourceMappingURL=server-
|
|
8977
|
+
//# sourceMappingURL=server-PM4GNHWZ.js.map
|