mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
31 lines
1,022 B
TypeScript
31 lines
1,022 B
TypeScript
import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
|
|
import { VersionedNodeType } from 'n8n-workflow';
|
|
|
|
import { ItemListsV1 } from './V1/ItemListsV1.node';
|
|
import { ItemListsV2 } from './V2/ItemListsV2.node';
|
|
import { ItemListsV3 } from './V3/ItemListsV3.node';
|
|
|
|
export class ItemLists extends VersionedNodeType {
|
|
constructor() {
|
|
const baseDescription: INodeTypeBaseDescription = {
|
|
displayName: 'Item Lists',
|
|
name: 'itemLists',
|
|
icon: 'file:itemLists.svg',
|
|
group: ['input'],
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Helper for working with lists of items and transforming arrays',
|
|
defaultVersion: 3,
|
|
};
|
|
|
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
|
1: new ItemListsV1(baseDescription),
|
|
2: new ItemListsV2(baseDescription),
|
|
2.1: new ItemListsV2(baseDescription),
|
|
2.2: new ItemListsV2(baseDescription),
|
|
3: new ItemListsV3(baseDescription),
|
|
};
|
|
|
|
super(nodeVersions, baseDescription);
|
|
}
|
|
}
|