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

28 lines
479 B
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const companyOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'company',
],
},
},
options: [
{
name: 'Get Settings',
value: 'getSetting',
description: 'Get your companys ProfitWell account settings',
},
],
default: 'getSetting',
description: 'The operation to perform.',
},
];