2023-02-28 09:00:39 -08:00
|
|
|
import type { INodeTypeBaseDescription, IVersionedNodeType } from 'n8n-workflow';
|
|
|
|
import { VersionedNodeType } from 'n8n-workflow';
|
|
|
|
|
|
|
|
import { ItemListsV1 } from './V1/ItemListsV1.node';
|
|
|
|
|
|
|
|
import { ItemListsV2 } from './V2/ItemListsV2.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: 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
|
|
|
|
1: new ItemListsV1(baseDescription),
|
|
|
|
2: new ItemListsV2(baseDescription),
|
|
|
|
};
|
|
|
|
|
|
|
|
super(nodeVersions, baseDescription);
|
2021-09-15 00:55:36 -07:00
|
|
|
}
|
|
|
|
}
|