mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Fix lint issues, formatting and icons
This commit is contained in:
@@ -1,53 +1,53 @@
|
||||
import { IDataObject } from "n8n-workflow";
|
||||
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[];
|
||||
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;
|
||||
// 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[];
|
||||
// Backend generated attributes
|
||||
status?: CaseStatus;
|
||||
caseId?: number; // auto-generated attribute
|
||||
mergeInto?: string;
|
||||
mergeFrom?: string[];
|
||||
|
||||
createdBy?:string;
|
||||
createdAt?:Date;
|
||||
updatedBy?:string;
|
||||
upadtedAt?:Date;
|
||||
createdBy?: string;
|
||||
createdAt?: Date;
|
||||
updatedBy?: string;
|
||||
upadtedAt?: Date;
|
||||
}
|
||||
|
||||
|
||||
export enum CaseStatus{
|
||||
OPEN="Open",
|
||||
RESOLVED="Resolved",
|
||||
DELETED="Deleted",
|
||||
export enum CaseStatus {
|
||||
OPEN = 'Open',
|
||||
RESOLVED = 'Resolved',
|
||||
DELETED = 'Deleted',
|
||||
}
|
||||
|
||||
export enum CaseResolutionStatus{
|
||||
INDETERMINATE="Indeterminate",
|
||||
FALSEPOSITIVE="FalsePositive",
|
||||
TRUEPOSITIVE="TruePositive",
|
||||
OTHER="Other",
|
||||
DUPLICATED="Duplicated",
|
||||
export enum CaseResolutionStatus {
|
||||
INDETERMINATE = 'Indeterminate',
|
||||
FALSEPOSITIVE = 'FalsePositive',
|
||||
TRUEPOSITIVE = 'TruePositive',
|
||||
OTHER = 'Other',
|
||||
DUPLICATED = 'Duplicated',
|
||||
}
|
||||
|
||||
export enum CaseImpactStatus{
|
||||
NOIMPACT="NoImpact",
|
||||
WITHIMPACT="WithImpact",
|
||||
NOTAPPLICABLE="NotApplicable",
|
||||
}
|
||||
export enum CaseImpactStatus {
|
||||
NOIMPACT = 'NoImpact',
|
||||
WITHIMPACT = 'WithImpact',
|
||||
NOTAPPLICABLE = 'NotApplicable',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user