feat: add relative time and context menu in flows

This commit is contained in:
Ali BARIN
2022-07-31 13:36:28 +02:00
parent 0fdbe4d39b
commit 15aaada3fe
10 changed files with 139 additions and 12 deletions

View File

@@ -26,6 +26,7 @@ export interface IExecutionStep {
dataOut: IJSONObject;
status: string;
createdAt: string;
updatedAt: string;
}
export interface IExecution {
@@ -34,6 +35,7 @@ export interface IExecution {
flow: IFlow;
testRun: boolean;
executionSteps: IExecutionStep[];
updatedAt: string;
createdAt: string;
}
@@ -61,6 +63,8 @@ export interface IFlow {
userId: string;
active: boolean;
steps: IStep[];
createdAt: string;
updatedAt: string;
}
export interface IUser {