mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
* ✨ TheHive & Cortex nodes * 🔨 Make changes mentioned in #887 * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Add descriptions * ⚡ Improvements * ⚡ Improvements Co-authored-by: MedAliMarz <servfrdali@yahoo.fr>
23 lines
478 B
TypeScript
23 lines
478 B
TypeScript
import { IDataObject } from "n8n-workflow";
|
|
import {IAttachment} from "./ObservableInterface";
|
|
export enum LogStatus{
|
|
OK="Ok",
|
|
DELETED="Deleted"
|
|
}
|
|
export interface ILog{
|
|
// Required attributes
|
|
id?:string;
|
|
message?:string;
|
|
startDate?:Date;
|
|
status?:LogStatus;
|
|
|
|
// Optional attributes
|
|
attachment?:IAttachment;
|
|
|
|
// Backend generated attributes
|
|
|
|
createdBy?:string;
|
|
createdAt?:Date;
|
|
updatedBy?:string;
|
|
upadtedAt?:Date;
|
|
} |