@avallon-labs/mcp 23.16.0-staging.567 → 23.17.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
|
@@ -5442,12 +5442,25 @@ var ListEmailThreadsResponse = zod.array(ListEmailThreadsResponseItem);
|
|
|
5442
5442
|
var ReplyToEmailParams = zod.object({
|
|
5443
5443
|
emailId: zod.string().min(1)
|
|
5444
5444
|
});
|
|
5445
|
+
var replyToEmailBodyAttachmentsItemFilenameMax = 255;
|
|
5446
|
+
var replyToEmailBodyAttachmentsItemContentTypeMax = 255;
|
|
5447
|
+
var replyToEmailBodyAttachmentsMax = 10;
|
|
5445
5448
|
var ReplyToEmailBody = zod.object({
|
|
5446
|
-
body_text: zod.string().min(1)
|
|
5449
|
+
body_text: zod.string().min(1),
|
|
5450
|
+
attachments: zod.array(
|
|
5451
|
+
zod.object({
|
|
5452
|
+
filename: zod.string().min(1).max(replyToEmailBodyAttachmentsItemFilenameMax),
|
|
5453
|
+
content_type: zod.string().min(1).max(replyToEmailBodyAttachmentsItemContentTypeMax),
|
|
5454
|
+
content_base64: zod.string().min(1)
|
|
5455
|
+
})
|
|
5456
|
+
).max(replyToEmailBodyAttachmentsMax).optional()
|
|
5447
5457
|
});
|
|
5448
5458
|
var ReplyToEmailResponse = zod.object({
|
|
5449
5459
|
sent: zod.boolean()
|
|
5450
5460
|
});
|
|
5461
|
+
var sendEmailBodyAttachmentsItemFilenameMax = 255;
|
|
5462
|
+
var sendEmailBodyAttachmentsItemContentTypeMax = 255;
|
|
5463
|
+
var sendEmailBodyAttachmentsMax = 10;
|
|
5451
5464
|
var SendEmailBody = zod.object({
|
|
5452
5465
|
inbox_id: zod.string().min(1),
|
|
5453
5466
|
to: zod.array(zod.string().email()).min(1),
|
|
@@ -5455,7 +5468,14 @@ var SendEmailBody = zod.object({
|
|
|
5455
5468
|
bcc: zod.array(zod.string().email()).optional(),
|
|
5456
5469
|
subject: zod.string().min(1),
|
|
5457
5470
|
body_text: zod.string().min(1),
|
|
5458
|
-
claim_id: zod.string().min(1).optional()
|
|
5471
|
+
claim_id: zod.string().min(1).optional(),
|
|
5472
|
+
attachments: zod.array(
|
|
5473
|
+
zod.object({
|
|
5474
|
+
filename: zod.string().min(1).max(sendEmailBodyAttachmentsItemFilenameMax),
|
|
5475
|
+
content_type: zod.string().min(1).max(sendEmailBodyAttachmentsItemContentTypeMax),
|
|
5476
|
+
content_base64: zod.string().min(1)
|
|
5477
|
+
})
|
|
5478
|
+
).max(sendEmailBodyAttachmentsMax).optional()
|
|
5459
5479
|
});
|
|
5460
5480
|
var SendEmailResponse = zod.object({
|
|
5461
5481
|
email_id: zod.string(),
|
|
@@ -7502,4 +7522,4 @@ var transport = new StdioServerTransport();
|
|
|
7502
7522
|
server.connect(transport).then(() => {
|
|
7503
7523
|
console.error("MCP server running on stdio");
|
|
7504
7524
|
}).catch(console.error);
|
|
7505
|
-
//# sourceMappingURL=server-
|
|
7525
|
+
//# sourceMappingURL=server-MMTKAAEP.js.map
|