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.

11 lines (10 loc) 544 B
import { ICredentialTestFunctions, ICredentialsDecrypted, IExecuteFunctions, INodeCredentialTestResult, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class EmailSearchAI implements INodeType { description: INodeTypeDescription; methods: { credentialTest: { testImapCredentials(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }