2022-08-17 08:50:24 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2020-11-25 02:44:50 -08:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const companyOperations: INodeProperties[] = [
|
2020-11-25 02:44:50 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-11-25 02:44:50 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['company'],
|
2020-11-25 02:44:50 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Get Settings',
|
|
|
|
value: 'getSetting',
|
2022-08-17 08:50:24 -07:00
|
|
|
description: "Get your company's ProfitWell account settings",
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get settings for your company',
|
2020-11-25 02:44:50 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'getSetting',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|