@avallon-labs/mcp 15.3.0 → 15.4.0-staging.373
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
|
@@ -4113,7 +4113,22 @@ var GetProfileResponse = zod.object({
|
|
|
4113
4113
|
last_name: zod.union([zod.string(), zod.null()]),
|
|
4114
4114
|
email: zod.string(),
|
|
4115
4115
|
role: zod.enum(["admin", "member"]),
|
|
4116
|
-
permissions: zod.array(
|
|
4116
|
+
permissions: zod.array(
|
|
4117
|
+
zod.enum([
|
|
4118
|
+
"voice-agents:write",
|
|
4119
|
+
"tools:write",
|
|
4120
|
+
"extractors:write",
|
|
4121
|
+
"email-agents:write",
|
|
4122
|
+
"artifacts:write",
|
|
4123
|
+
"webhooks:write",
|
|
4124
|
+
"api-keys:write",
|
|
4125
|
+
"teams:write",
|
|
4126
|
+
"claims:write",
|
|
4127
|
+
"feedback:write",
|
|
4128
|
+
"outbound-jobs:write",
|
|
4129
|
+
"workers:write"
|
|
4130
|
+
])
|
|
4131
|
+
),
|
|
4117
4132
|
tenants: zod.object({
|
|
4118
4133
|
active: zod.object({
|
|
4119
4134
|
id: zod.string(),
|
|
@@ -5145,4 +5160,4 @@ var transport = new StdioServerTransport();
|
|
|
5145
5160
|
server.connect(transport).then(() => {
|
|
5146
5161
|
console.error("MCP server running on stdio");
|
|
5147
5162
|
}).catch(console.error);
|
|
5148
|
-
//# sourceMappingURL=server-
|
|
5163
|
+
//# sourceMappingURL=server-WBJ5OVVR.js.map
|