Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/ProfitWell/CompanyDescription.ts

25 lines
498 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
import type { INodeProperties } from 'n8n-workflow';
export const companyOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['company'],
},
},
options: [
{
name: 'Get Settings',
value: 'getSetting',
description: "Get your company's ProfitWell account settings",
action: 'Get settings for your company',
},
],
default: 'getSetting',
},
];