mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
86 lines
1.6 KiB
TypeScript
86 lines
1.6 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import type { INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import * as alert from './alert';
|
|
import * as case_ from './case';
|
|
import * as comment from './comment';
|
|
import * as log from './log';
|
|
import * as observable from './observable';
|
|
import * as query from './query';
|
|
import * as task from './task';
|
|
import * as page from './page';
|
|
|
|
export const description: INodeTypeDescription = {
|
|
displayName: 'TheHive 5',
|
|
name: 'theHiveProject',
|
|
icon: 'file:thehiveproject.svg',
|
|
group: ['transform'],
|
|
subtitle: '={{$parameter["operation"]}} : {{$parameter["resource"]}}',
|
|
version: 1,
|
|
description: 'Consume TheHive 5 API',
|
|
defaults: {
|
|
name: 'TheHive 5',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'theHiveProjectApi',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
required: true,
|
|
options: [
|
|
{
|
|
name: 'Alert',
|
|
value: 'alert',
|
|
},
|
|
{
|
|
name: 'Case',
|
|
value: 'case',
|
|
},
|
|
{
|
|
name: 'Comment',
|
|
value: 'comment',
|
|
},
|
|
{
|
|
name: 'Observable',
|
|
value: 'observable',
|
|
},
|
|
{
|
|
name: 'Page',
|
|
value: 'page',
|
|
},
|
|
{
|
|
name: 'Query',
|
|
value: 'query',
|
|
},
|
|
{
|
|
name: 'Task',
|
|
value: 'task',
|
|
},
|
|
{
|
|
name: 'Task Log',
|
|
value: 'log',
|
|
},
|
|
],
|
|
default: 'alert',
|
|
},
|
|
|
|
...alert.description,
|
|
...case_.description,
|
|
...comment.description,
|
|
...log.description,
|
|
...observable.description,
|
|
...page.description,
|
|
...query.description,
|
|
...task.description,
|
|
],
|
|
};
|