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,25 @@
|
||||
export interface ITask{
|
||||
// Required attributes
|
||||
id?:string;
|
||||
title?:string;
|
||||
status?:TaskStatus;
|
||||
flag?:boolean;
|
||||
// Optional attributes
|
||||
owner?:string;
|
||||
description?:string;
|
||||
startDate?:Date;
|
||||
endDate?:Date;
|
||||
// Backend generated attributes
|
||||
|
||||
createdBy?:string;
|
||||
createdAt?:Date;
|
||||
updatedBy?:string;
|
||||
upadtedAt?:Date;
|
||||
}
|
||||
|
||||
export enum TaskStatus{
|
||||
WAITING="Waiting",
|
||||
INPROGRESS="InProgress",
|
||||
COMPLETED="Completed",
|
||||
CANCEL="Cancel",
|
||||
}
|
||||
Reference in New Issue
Block a user