mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
9f4d6f44cb
* ⚡ Improvements to ProfitWell Node ⚡ Improvements to Pro * ⚡ Improvements to ProfitWell-Node * ⚡ improvements simplifying data * ⚡ Small formatting improvement Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
28 lines
481 B
TypeScript
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[];
|