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
No known key found for this signature in database
GPG Key ID: 01C22C63F8065070

View File

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