n8n/packages/nodes-base/nodes/ProfitWell/CompanyDescription.ts
Jan 9f4d6f44cb
Add ProfitWell Node (#1204)
*  Improvements to ProfitWell Node

 Improvements to Pro

*  Improvements to ProfitWell-Node

*  improvements simplifying data

*  Small formatting improvement

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2020-11-25 11:44:50 +01:00

28 lines
481 B
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const companyOperations = [
{
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.',
},
] as INodeProperties[];