2023-09-04 08:15:52 -07: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) {
|
2024-01-17 07:08:50 -08:00
|
|
|
return await router.call(this);
|
2023-09-04 08:15:52 -07:00
|
|
|
}
|
|
|
|
}
|