n8n/packages/nodes-base/nodes/ProfitWell/CompanyDescription.ts

28 lines
481 B
TypeScript
Raw Normal View History

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[];