Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/HomeAssistant/ConfigDescription.ts
2025-09-08 04:48:28 +08:00

31 lines
573 B
TypeScript
Executable File

import type { INodeProperties } from 'n8n-workflow';
export const configOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['config'],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Get the configuration',
action: 'Get the config',
},
{
name: 'Check Configuration',
value: 'check',
description: 'Check the configuration',
action: 'Check the config',
},
],
default: 'get',
},
];