From b1fccb4b55b8758cd64d7e3a5d59af465f41f21c Mon Sep 17 00:00:00 2001 From: Gregory Klein Date: Wed, 26 Aug 2026 08:49:09 -0400 Subject: [PATCH] Add start_time and end_time to 'data-updates' output --- fulcra_api/cli/commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fulcra_api/cli/commands.py b/fulcra_api/cli/commands.py index 436ec16..c991bb5 100644 --- a/fulcra_api/cli/commands.py +++ b/fulcra_api/cli/commands.py @@ -823,4 +823,6 @@ def data_updates(fulcra_api: FulcraAPI, start_time: datetime, end_time: datetime except HTTPError as exc: raise click.ClickException(exc) from exc - click.echo(json.dumps(resp)) + click.echo( + json.dumps({"start_time": str(start_time), "end_time": str(end_time), **resp}) + )