feat(flow): add virtual paused/published/draft status

This commit is contained in:
Ali BARIN
2023-04-09 16:23:34 +00:00
parent df55f746ca
commit 77e29050c8
8 changed files with 66 additions and 3 deletions

View File

@@ -73,6 +73,7 @@ export interface IFlow {
name: string;
userId: string;
active: boolean;
status: 'paused' | 'published' | 'draft';
steps: IStep[];
createdAt: string;
updatedAt: string;