From bf009ae13b08b5d50f4ea46c2ac9f465370a626b Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Tue, 8 Nov 2022 21:04:23 +0100 Subject: [PATCH] chore(types): add status in Execution --- packages/types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/types/index.d.ts b/packages/types/index.d.ts index 0685adf4..6701a7c5 100644 --- a/packages/types/index.d.ts +++ b/packages/types/index.d.ts @@ -40,6 +40,7 @@ export interface IExecution { flowId: string; flow: IFlow; testRun: boolean; + status: 'success' | 'failure'; executionSteps: IExecutionStep[]; updatedAt: string; createdAt: string;