mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
|
|
import { VersionedNodeType } from 'n8n-workflow';
|
|
|
|
import { GoogleSheetsV1 } from './v1/GoogleSheetsV1.node';
|
|
import { GoogleSheetsV2 } from './v2/GoogleSheetsV2.node';
|
|
|
|
export class GoogleSheets extends VersionedNodeType {
|
|
constructor() {
|
|
const baseDescription: INodeTypeBaseDescription = {
|
|
displayName: 'Google Sheets',
|
|
name: 'googleSheets',
|
|
icon: 'file:googleSheets.svg',
|
|
group: ['input', 'output'],
|
|
defaultVersion: 4.4,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Read, update and write data to Google Sheets',
|
|
};
|
|
|
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
|
1: new GoogleSheetsV1(baseDescription),
|
|
2: new GoogleSheetsV1(baseDescription),
|
|
3: new GoogleSheetsV2(baseDescription),
|
|
4: new GoogleSheetsV2(baseDescription),
|
|
4.1: new GoogleSheetsV2(baseDescription),
|
|
4.2: new GoogleSheetsV2(baseDescription),
|
|
4.3: new GoogleSheetsV2(baseDescription),
|
|
4.4: new GoogleSheetsV2(baseDescription),
|
|
};
|
|
|
|
super(nodeVersions, baseDescription);
|
|
}
|
|
}
|