n8n/packages/nodes-base/nodes/Cockpit/SingletonDescription.ts
2020-04-05 15:49:47 +02:00

46 lines
807 B
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const singletonOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'singletons',
],
},
},
options: [
{
name: 'Get All',
value: 'getAll',
description: 'Get all singletons',
},
],
default: 'getAll',
description: 'The operation to perform.',
}
] as INodeProperties[];
export const singletonFields = [
{
displayName: 'Singleton',
name: 'singleton',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getSingletons',
},
displayOptions: {
show: {
resource: [
'singletons',
],
},
},
required: true,
description: 'Name of the singleton to operate on.'
},
] as INodeProperties[];