chore(types): add status in Execution

This commit is contained in:
Ali BARIN
2022-11-08 21:04:23 +01:00
parent dbceed563a
commit bf009ae13b

View File

@@ -40,6 +40,7 @@ export interface IExecution {
flowId: string; flowId: string;
flow: IFlow; flow: IFlow;
testRun: boolean; testRun: boolean;
status: 'success' | 'failure';
executionSteps: IExecutionStep[]; executionSteps: IExecutionStep[];
updatedAt: string; updatedAt: string;
createdAt: string; createdAt: string;