mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Michael Kret <michael.k@radency.com>
36 lines
825 B
TypeScript
36 lines
825 B
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import type { INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import * as itemList from './itemList';
|
|
|
|
export const versionDescription: INodeTypeDescription = {
|
|
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',
|
|
version: [3, 3.1],
|
|
defaults: {
|
|
name: 'Item Lists',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'hidden',
|
|
options: [
|
|
{
|
|
name: 'Item List',
|
|
value: 'itemList',
|
|
},
|
|
],
|
|
default: 'itemList',
|
|
},
|
|
...itemList.description,
|
|
],
|
|
};
|