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.

12 lines (11 loc) 605 B
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-workflow'; import { ImapCredentialsData } from '../../../credentials/ImapCredentials.credentials'; export declare const CREDENTIALS_TYPE_THIS_NODE = "imapThisNode"; export declare const CREDENTIALS_TYPE_CORE_IMAP_ACCOUNT = "coreImapAccount"; export declare const CREDENTIALS_TYPE_OAUTH2 = "oauth2"; export declare const credentialNames: { imapThisNode: string; coreImapAccount: string; oauth2: string; }; export declare function getImapCredentials(context: ILoadOptionsFunctions | IExecuteFunctions): Promise<ImapCredentialsData>;