Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Harvest/CompanyDescription.ts
2025-09-08 04:48:28 +08:00

27 lines
533 B
TypeScript
Executable File

import type { INodeProperties } from 'n8n-workflow';
const resource = ['company'];
export const companyOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource,
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Retrieves the company for the currently authenticated user',
action: 'Retrieve the company for the currently authenticated user',
},
],
default: 'get',
},
];