UNPKG

n8n-nodes-imap-ai

Version:

Simplified IMAP node for n8n with AI-agent support. Clean and modular email and mailbox management for automation workflows.

28 lines 995 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.emailDateRangeParams = void 0; exports.emailDateRangeParams = { displayName: 'Date Range', name: 'emailDateRange', type: 'collection', placeholder: 'Add Date Range', default: { since: '' }, description: "Filter emails by date range. AI agents can specify dates like 'last week', 'yesterday', or specific dates.", options: [ { displayName: 'Since Date', name: 'since', type: 'dateTime', default: '', description: "Start date of search. AI can specify: 'yesterday', 'last week', '2024-01-01', etc.", }, { displayName: 'Before Date', name: 'before', type: 'dateTime', default: '', description: "End date of search. AI can specify: 'today', 'last month', '2024-12-31', etc.", }, ], }; //# sourceMappingURL=EmailSearchParams.js.map