n8n/packages/nodes-base/nodes/Harvest/CompanyDescription.ts
2020-01-29 12:34:52 +05:30

27 lines
470 B
TypeScript

import { INodeProperties } from "n8n-workflow";
export const companyOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'company',
],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Retrieves the company for the currently authenticated user',
},
],
default: 'get',
description: 'The operation to perform.',
},
] as INodeProperties[];