@avallon-labs/mcp 36.5.0 → 36.6.0-staging.913
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
|
@@ -6379,7 +6379,11 @@ var ListEmailsResponseItem = zod.object({
|
|
|
6379
6379
|
subject: zod.union([zod.string(), zod.null()]),
|
|
6380
6380
|
preview: zod.union([zod.string(), zod.null()]),
|
|
6381
6381
|
ignored_reason: zod.union([
|
|
6382
|
-
zod.enum([
|
|
6382
|
+
zod.enum([
|
|
6383
|
+
"sender_domain_not_allowed",
|
|
6384
|
+
"received_via_cc_or_bcc",
|
|
6385
|
+
"sent_from_own_inbox"
|
|
6386
|
+
]),
|
|
6383
6387
|
zod.null()
|
|
6384
6388
|
]).describe(
|
|
6385
6389
|
"Why the email was stored without processing. Null for emails that were processed normally."
|
|
@@ -6407,7 +6411,11 @@ var GetEmailResponse = zod.object({
|
|
|
6407
6411
|
body_text: zod.union([zod.string(), zod.null()]),
|
|
6408
6412
|
body_html: zod.union([zod.string(), zod.null()]),
|
|
6409
6413
|
ignored_reason: zod.union([
|
|
6410
|
-
zod.enum([
|
|
6414
|
+
zod.enum([
|
|
6415
|
+
"sender_domain_not_allowed",
|
|
6416
|
+
"received_via_cc_or_bcc",
|
|
6417
|
+
"sent_from_own_inbox"
|
|
6418
|
+
]),
|
|
6411
6419
|
zod.null()
|
|
6412
6420
|
]).describe(
|
|
6413
6421
|
"Why the email was stored without processing. Null for emails that were processed normally."
|
|
@@ -9246,4 +9254,4 @@ var transport = new StdioServerTransport();
|
|
|
9246
9254
|
server.connect(transport).then(() => {
|
|
9247
9255
|
console.error("MCP server running on stdio");
|
|
9248
9256
|
}).catch(console.error);
|
|
9249
|
-
//# sourceMappingURL=server-
|
|
9257
|
+
//# sourceMappingURL=server-AI2JO577.js.map
|