From e35d3473c739a6a6b84428502dd57bab466a0852 Mon Sep 17 00:00:00 2001 From: beckerinj Date: Mon, 14 Nov 2022 02:22:13 -0500 Subject: [PATCH] add start / end ts, in progress to update --- lib/types/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/types/src/lib.rs b/lib/types/src/lib.rs index 30df7a88d..d3e4181b1 100644 --- a/lib/types/src/lib.rs +++ b/lib/types/src/lib.rs @@ -137,7 +137,9 @@ pub struct Update { pub entity_id: Option, pub operation: Operation, pub log: Vec, - pub ts: i64, + pub start_ts: i64, + pub end_ts: i64, + pub in_progress: bool, pub is_error: bool, pub operator: String, }