@avallon-labs/mcp 26.9.0 → 26.10.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
|
@@ -5773,6 +5773,9 @@ var replyToEmailBodyAttachmentsItemContentTypeMax = 255;
|
|
|
5773
5773
|
var replyToEmailBodyAttachmentsMax = 10;
|
|
5774
5774
|
var ReplyToEmailBody = zod.object({
|
|
5775
5775
|
body_text: zod.string().min(1),
|
|
5776
|
+
to: zod.array(zod.string().email()).optional(),
|
|
5777
|
+
cc: zod.array(zod.string().email()).optional(),
|
|
5778
|
+
bcc: zod.array(zod.string().email()).optional(),
|
|
5776
5779
|
attachments: zod.array(
|
|
5777
5780
|
zod.object({
|
|
5778
5781
|
filename: zod.string().min(1).max(replyToEmailBodyAttachmentsItemFilenameMax),
|
|
@@ -7985,4 +7988,4 @@ var transport = new StdioServerTransport();
|
|
|
7985
7988
|
server.connect(transport).then(() => {
|
|
7986
7989
|
console.error("MCP server running on stdio");
|
|
7987
7990
|
}).catch(console.error);
|
|
7988
|
-
//# sourceMappingURL=server-
|
|
7991
|
+
//# sourceMappingURL=server-VQ2YXI6O.js.map
|