From 74d78dc4549ac0eb645252b0ea5e5a543070c3aa Mon Sep 17 00:00:00 2001 From: chihlasm Date: Wed, 25 Feb 2026 13:46:17 -0500 Subject: [PATCH] feat: add is_flow_synced and source_tree_name to Step types Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/types/step.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/types/step.ts b/frontend/src/types/step.ts index 54d5df29..08f76383 100644 --- a/frontend/src/types/step.ts +++ b/frontend/src/types/step.ts @@ -28,6 +28,8 @@ export interface Step { helpful_no: number is_featured: boolean is_verified: boolean + is_flow_synced: boolean + source_tree_name: string | null created_by: string author_name?: string created_at: string @@ -46,6 +48,8 @@ export interface StepListItem { rating_average: number rating_count: number is_featured: boolean + is_flow_synced: boolean + source_tree_name: string | null created_by: string author_name?: string created_at: string