@avallon-labs/mcp 19.3.0 → 19.4.0-staging.460
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
|
@@ -4912,7 +4912,7 @@ var GetProfileResponse = zod.object({
|
|
|
4912
4912
|
first_name: zod.union([zod.string(), zod.null()]),
|
|
4913
4913
|
last_name: zod.union([zod.string(), zod.null()]),
|
|
4914
4914
|
email: zod.string(),
|
|
4915
|
-
role: zod.enum(["admin", "member"]),
|
|
4915
|
+
role: zod.enum(["admin", "avallon_admin", "member"]),
|
|
4916
4916
|
permissions: zod.array(
|
|
4917
4917
|
zod.enum([
|
|
4918
4918
|
"voice-agents:write",
|
|
@@ -4928,7 +4928,9 @@ var GetProfileResponse = zod.object({
|
|
|
4928
4928
|
"feedback:write",
|
|
4929
4929
|
"outbound-jobs:write",
|
|
4930
4930
|
"workers:write",
|
|
4931
|
-
"chat-agents:write"
|
|
4931
|
+
"chat-agents:write",
|
|
4932
|
+
"prompts:read",
|
|
4933
|
+
"prompts:write"
|
|
4932
4934
|
])
|
|
4933
4935
|
),
|
|
4934
4936
|
tenants: zod.object({
|
|
@@ -4949,7 +4951,7 @@ var ListTeamMembersResponseItem = zod.object({
|
|
|
4949
4951
|
first_name: zod.union([zod.string(), zod.null()]),
|
|
4950
4952
|
last_name: zod.union([zod.string(), zod.null()]),
|
|
4951
4953
|
email: zod.string(),
|
|
4952
|
-
role: zod.enum(["admin", "member"]),
|
|
4954
|
+
role: zod.enum(["admin", "avallon_admin", "member"]),
|
|
4953
4955
|
created_at: zod.string(),
|
|
4954
4956
|
updated_at: zod.string()
|
|
4955
4957
|
});
|
|
@@ -6063,4 +6065,4 @@ var transport = new StdioServerTransport();
|
|
|
6063
6065
|
server.connect(transport).then(() => {
|
|
6064
6066
|
console.error("MCP server running on stdio");
|
|
6065
6067
|
}).catch(console.error);
|
|
6066
|
-
//# sourceMappingURL=server-
|
|
6068
|
+
//# sourceMappingURL=server-GHNSEJ6P.js.map
|