mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
8f9fe6269b
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
28 lines
807 B
TypeScript
28 lines
807 B
TypeScript
import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
|
|
import { VersionedNodeType } from 'n8n-workflow';
|
|
|
|
import { GmailV1 } from './v1/GmailV1.node';
|
|
import { GmailV2 } from './v2/GmailV2.node';
|
|
|
|
export class Gmail extends VersionedNodeType {
|
|
constructor() {
|
|
const baseDescription: INodeTypeBaseDescription = {
|
|
displayName: 'Gmail',
|
|
name: 'gmail',
|
|
icon: 'file:gmail.svg',
|
|
group: ['transform'],
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume the Gmail API',
|
|
defaultVersion: 2.1,
|
|
};
|
|
|
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
|
1: new GmailV1(baseDescription),
|
|
2: new GmailV2(baseDescription),
|
|
2.1: new GmailV2(baseDescription),
|
|
};
|
|
|
|
super(nodeVersions, baseDescription);
|
|
}
|
|
}
|