2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
|
|
|
|
import { VersionedNodeType } from 'n8n-workflow';
|
2022-10-25 12:33:12 -07:00
|
|
|
|
2022-10-24 02:06:43 -07:00
|
|
|
import { EmailReadImapV1 } from './v1/EmailReadImapV1.node';
|
|
|
|
import { EmailReadImapV2 } from './v2/EmailReadImapV2.node';
|
|
|
|
|
2022-10-25 12:33:12 -07:00
|
|
|
export class EmailReadImap extends VersionedNodeType {
|
2022-10-24 02:06:43 -07:00
|
|
|
constructor() {
|
|
|
|
const baseDescription: INodeTypeBaseDescription = {
|
|
|
|
displayName: 'Email Trigger (IMAP)',
|
|
|
|
name: 'emailReadImap',
|
|
|
|
icon: 'fa:inbox',
|
|
|
|
group: ['trigger'],
|
|
|
|
description: 'Triggers the workflow when a new email is received',
|
|
|
|
defaultVersion: 2,
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
|
2022-10-25 12:33:12 -07:00
|
|
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
2022-10-24 02:06:43 -07:00
|
|
|
1: new EmailReadImapV1(baseDescription),
|
|
|
|
2: new EmailReadImapV2(baseDescription),
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
|
2022-10-24 02:06:43 -07:00
|
|
|
super(nodeVersions, baseDescription);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|