Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/TheHiveProject/TheHiveProject.node.ts

16 lines
502 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
import type { IExecuteFunctions, INodeType, INodeTypeDescription } from 'n8n-workflow';
import { description } from './actions/node.description';
import { router } from './actions/router';
import { loadOptions, listSearch, resourceMapping } from './methods';
export class TheHiveProject implements INodeType {
description: INodeTypeDescription = description;
methods = { loadOptions, listSearch, resourceMapping };
async execute(this: IExecuteFunctions) {
return await router.call(this);
}
}