n8n/packages/nodes-base/nodes/Cockpit/SingletonDescription.ts
2021-12-03 09:44:16 +01:00

47 lines
791 B
TypeScript

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