mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add TheHive & Cortex nodes (#952)
* ✨ TheHive & Cortex nodes * 🔨 Make changes mentioned in #887 * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Add descriptions * ⚡ Improvements * ⚡ Improvements Co-authored-by: MedAliMarz <servfrdali@yahoo.fr>
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
import { IDataObject } from "n8n-workflow";
|
||||
import { TLP } from './AlertInterface';
|
||||
export interface ICase{
|
||||
// Required attributes
|
||||
id?:string;
|
||||
title?:string;
|
||||
description?:string;
|
||||
severity?:number;
|
||||
startDate?:Date;
|
||||
owner?:string;
|
||||
flag?:boolean;
|
||||
tlp?:TLP;
|
||||
tags?:string[];
|
||||
|
||||
// Optional attributes
|
||||
resolutionStatus?:CaseResolutionStatus;
|
||||
impactStatus?:CaseImpactStatus;
|
||||
summary?:string;
|
||||
endDate?:Date;
|
||||
metrics?:IDataObject;
|
||||
|
||||
// Backend generated attributes
|
||||
status?:CaseStatus;
|
||||
caseId?:number; // auto-generated attribute
|
||||
mergeInto?:string;
|
||||
mergeFrom?:string[];
|
||||
|
||||
createdBy?:string;
|
||||
createdAt?:Date;
|
||||
updatedBy?:string;
|
||||
upadtedAt?:Date;
|
||||
}
|
||||
|
||||
|
||||
export enum CaseStatus{
|
||||
OPEN="Open",
|
||||
RESOLVED="Resolved",
|
||||
DELETED="Deleted",
|
||||
}
|
||||
|
||||
export enum CaseResolutionStatus{
|
||||
INDETERMINATE="Indeterminate",
|
||||
FALSEPOSITIVE="FalsePositive",
|
||||
TRUEPOSITIVE="TruePositive",
|
||||
OTHER="Other",
|
||||
DUPLICATED="Duplicated",
|
||||
}
|
||||
|
||||
export enum CaseImpactStatus{
|
||||
NOIMPACT="NoImpact",
|
||||
WITHIMPACT="WithImpact",
|
||||
NOTAPPLICABLE="NotApplicable",
|
||||
}
|
||||
Reference in New Issue
Block a user