From fccbbc8b1d01ca046dd77e0388b492e778096ea0 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 23 Jan 2024 18:42:35 -0300 Subject: [PATCH] Add last_tested_version field to FlowType --- src/frontend/src/types/flow/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/types/flow/index.ts b/src/frontend/src/types/flow/index.ts index 300fa9ee3..783a8963d 100644 --- a/src/frontend/src/types/flow/index.ts +++ b/src/frontend/src/types/flow/index.ts @@ -8,6 +8,7 @@ export type FlowType = { description: string; style?: FlowStyleType; is_component?: boolean; + last_tested_version?: string; }; export type NodeType = {