feat: add single execution page

This commit is contained in:
Ali BARIN
2022-03-16 17:37:06 +01:00
parent c9bf7c9e21
commit f11f523b30
24 changed files with 372 additions and 36 deletions

View File

@@ -20,10 +20,12 @@ export interface IConnection {
export interface IExecutionStep {
id: string;
executionId: string;
stepId: string;
stepId: IStep["id"];
step: IStep;
dataIn: IJSONObject;
dataOut: IJSONObject;
status: string;
createdAt: string;
}
export interface IExecution {