buildai-cli 0.3.74__tar.gz → 0.3.75__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/PKG-INFO +1 -1
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/gigcamera.py +6 -2
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/pyproject.toml +1 -1
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/.gitignore +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/AGENTS.md +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/CLAUDE.md +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/buildai_bootstrap.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/__init__.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/_has_core.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/auth_local.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/__init__.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/api_proxy.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/auth.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/db/__init__.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/db/broker.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/db/common.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/db/migrate.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/db/query.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/db/schema.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/db/status.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/db/tunnel.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/dev.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/doctor.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/commands/processing.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/config.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/console.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/context.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/db_broker.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/guard.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/internal_api.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/main.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/nl_query/__init__.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/nl_query/dataset_tools.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/ops_init.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/output.py +0 -0
- {buildai_cli-0.3.74 → buildai_cli-0.3.75}/cli/pagination.py +0 -0
|
@@ -198,14 +198,18 @@ def admin_analytics_read_model_refresh(
|
|
|
198
198
|
recent: bool = typer.Option(
|
|
199
199
|
False,
|
|
200
200
|
"--recent",
|
|
201
|
-
help="Refresh today plus the
|
|
201
|
+
help="Refresh today plus the active read-model freshness window instead of the full range.",
|
|
202
202
|
),
|
|
203
203
|
late_window_days: int = typer.Option(
|
|
204
204
|
3,
|
|
205
205
|
"--late-window-days",
|
|
206
206
|
min=0,
|
|
207
207
|
max=29,
|
|
208
|
-
help=
|
|
208
|
+
help=(
|
|
209
|
+
"Number of prior IST days refreshed with --recent. Scheduled warmers "
|
|
210
|
+
"pass 29 explicitly for the active 30-day key; ad-hoc operator runs "
|
|
211
|
+
"default to the smaller late-arrival window."
|
|
212
|
+
),
|
|
209
213
|
),
|
|
210
214
|
write: bool = typer.Option(False, "--write", help="Actually upsert read-model rows."),
|
|
211
215
|
format: Format = format_option(),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|