mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
Add other APIs
This commit is contained in:
26
packages/nodes-base/nodes/Harvest/CompanyDescription.ts
Normal file
26
packages/nodes-base/nodes/Harvest/CompanyDescription.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { INodeProperties } from "n8n-workflow";
|
||||
|
||||
export const clientOperations = [
|
||||
{
|
||||
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[];
|
||||
Reference in New Issue
Block a user