mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
27 lines
855 B
TypeScript
27 lines
855 B
TypeScript
import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
|
|
import { VersionedNodeType } from 'n8n-workflow';
|
|
|
|
import { MicrosoftExcelV1 } from './v1/MicrosoftExcelV1.node';
|
|
import { MicrosoftExcelV2 } from './v2/MicrosoftExcelV2.node';
|
|
|
|
export class MicrosoftExcel extends VersionedNodeType {
|
|
constructor() {
|
|
const baseDescription: INodeTypeBaseDescription = {
|
|
displayName: 'Microsoft Excel 365',
|
|
name: 'microsoftExcel',
|
|
icon: 'file:excel.svg',
|
|
group: ['input'],
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume Microsoft Excel API',
|
|
defaultVersion: 2,
|
|
};
|
|
|
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
|
1: new MicrosoftExcelV1(baseDescription),
|
|
2: new MicrosoftExcelV2(baseDescription),
|
|
};
|
|
|
|
super(nodeVersions, baseDescription);
|
|
}
|
|
}
|