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:
23
packages/nodes-base/nodes/TheHive/interfaces/LogInterface.ts
Normal file
23
packages/nodes-base/nodes/TheHive/interfaces/LogInterface.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user