@avallon-labs/mcp 16.3.0 → 17.1.0-staging.399
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
|
@@ -3601,6 +3601,12 @@ var UpdateInboxBody = zod.object({
|
|
|
3601
3601
|
pdf_splitting_enabled: zod.boolean().optional(),
|
|
3602
3602
|
allowed_sender_domains: zod.union([zod.array(zod.string()).min(1), zod.null()]).optional().describe(
|
|
3603
3603
|
"List of allowed sender domain patterns. Set to null to accept all senders. Set to an array to only process emails from matching domains. Supports wildcard patterns: '*.example.com' matches 'example.com' and all its subdomains."
|
|
3604
|
+
),
|
|
3605
|
+
processor: zod.object({
|
|
3606
|
+
id: zod.string().uuid().describe("ID of the processor (extractor or worker) to use."),
|
|
3607
|
+
type: zod.enum(["extractor", "worker"]).describe("Type of processor.")
|
|
3608
|
+
}).optional().describe(
|
|
3609
|
+
"Processor configuration. Pass an object with id and type to change the processor."
|
|
3604
3610
|
)
|
|
3605
3611
|
});
|
|
3606
3612
|
var UpdateInboxResponse = zod.object({
|
|
@@ -3905,7 +3911,7 @@ var ListExtractorsResponseItem = zod.object({
|
|
|
3905
3911
|
});
|
|
3906
3912
|
var ListExtractorsResponse = zod.array(ListExtractorsResponseItem);
|
|
3907
3913
|
var GetExtractorParams = zod.object({
|
|
3908
|
-
id: zod.string().
|
|
3914
|
+
id: zod.string().uuid()
|
|
3909
3915
|
});
|
|
3910
3916
|
var GetExtractorResponse = zod.object({
|
|
3911
3917
|
data: zod.object({
|
|
@@ -5212,4 +5218,4 @@ var transport = new StdioServerTransport();
|
|
|
5212
5218
|
server.connect(transport).then(() => {
|
|
5213
5219
|
console.error("MCP server running on stdio");
|
|
5214
5220
|
}).catch(console.error);
|
|
5215
|
-
//# sourceMappingURL=server-
|
|
5221
|
+
//# sourceMappingURL=server-3BAXGSWA.js.map
|