mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
* ✨ TheHive & Cortex nodes * 🔨 Make changes mentioned in #887 * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Add descriptions * ⚡ Improvements * ⚡ Improvements Co-authored-by: MedAliMarz <servfrdali@yahoo.fr>
26 lines
495 B
TypeScript
26 lines
495 B
TypeScript
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",
|
|
}
|