@avallon-labs/mcp 32.2.0-staging.828 → 32.3.0
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
|
@@ -6119,7 +6119,10 @@ var ListEmailsResponseItem = zod.object({
|
|
|
6119
6119
|
to: zod.array(zod.string()),
|
|
6120
6120
|
subject: zod.union([zod.string(), zod.null()]),
|
|
6121
6121
|
preview: zod.union([zod.string(), zod.null()]),
|
|
6122
|
-
ignored_reason: zod.union([
|
|
6122
|
+
ignored_reason: zod.union([
|
|
6123
|
+
zod.enum(["sender_domain_not_allowed", "received_via_cc_or_bcc"]),
|
|
6124
|
+
zod.null()
|
|
6125
|
+
]).describe(
|
|
6123
6126
|
"Why the email was stored without processing. Null for emails that were processed normally."
|
|
6124
6127
|
),
|
|
6125
6128
|
sent_at: zod.string(),
|
|
@@ -6144,7 +6147,10 @@ var GetEmailResponse = zod.object({
|
|
|
6144
6147
|
subject: zod.union([zod.string(), zod.null()]),
|
|
6145
6148
|
body_text: zod.union([zod.string(), zod.null()]),
|
|
6146
6149
|
body_html: zod.union([zod.string(), zod.null()]),
|
|
6147
|
-
ignored_reason: zod.union([
|
|
6150
|
+
ignored_reason: zod.union([
|
|
6151
|
+
zod.enum(["sender_domain_not_allowed", "received_via_cc_or_bcc"]),
|
|
6152
|
+
zod.null()
|
|
6153
|
+
]).describe(
|
|
6148
6154
|
"Why the email was stored without processing. Null for emails that were processed normally."
|
|
6149
6155
|
),
|
|
6150
6156
|
sent_at: zod.string(),
|
|
@@ -8761,4 +8767,4 @@ var transport = new StdioServerTransport();
|
|
|
8761
8767
|
server.connect(transport).then(() => {
|
|
8762
8768
|
console.error("MCP server running on stdio");
|
|
8763
8769
|
}).catch(console.error);
|
|
8764
|
-
//# sourceMappingURL=server-
|
|
8770
|
+
//# sourceMappingURL=server-CKZFUXVA.js.map
|