From 991526c19f5fc1dae3259b3569cbc5f352844712 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 5 May 2020 14:29:33 -0700 Subject: [PATCH] Add step_id to flow in progress --- src/data/data_entry_flow.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/data_entry_flow.ts b/src/data/data_entry_flow.ts index dd2d09363f79..189d13336e85 100644 --- a/src/data/data_entry_flow.ts +++ b/src/data/data_entry_flow.ts @@ -12,6 +12,7 @@ export interface DataEntryFlowProgressedEvent { export interface DataEntryFlowProgress { flow_id: string; handler: string; + step_id: string; context: { title_placeholders: { [key: string]: string }; [key: string]: any;