n8n/packages/nodes-base/nodes/ProfitWell/CompanyDescription.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

25 lines
493 B
TypeScript

import { 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',
},
];