cctally 1.94.2 → 1.95.1
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.
- package/CHANGELOG.md +29 -0
- package/bin/_cctally_core.py +28 -24
- package/bin/_cctally_dashboard_share.py +6 -0
- package/bin/_cctally_db.py +198 -70
- package/bin/_cctally_journal.py +164 -288
- package/bin/_cctally_record.py +9 -0
- package/bin/_cctally_store.py +460 -292
- package/bin/_lib_doctor.py +2 -2
- package/bin/_lib_pricing.py +26 -7
- package/dashboard/static/assets/index-BvCbpJJA.css +1 -0
- package/dashboard/static/assets/{index-CaUQziq_.js → index-CRZMxeYI.js} +55 -55
- package/dashboard/static/dashboard.html +2 -2
- package/package.json +1 -1
- package/dashboard/static/assets/index-DUQjFSX7.css +0 -1
package/bin/_cctally_record.py
CHANGED
|
@@ -5812,6 +5812,15 @@ def _pipeline_claude_usage(ctx, rec):
|
|
|
5812
5812
|
columns=cols,
|
|
5813
5813
|
at=capture_at,
|
|
5814
5814
|
)
|
|
5815
|
+
# An exact retry can meet effective event metadata whose physical row a
|
|
5816
|
+
# later suppression deliberately deleted. emit_model_a must not
|
|
5817
|
+
# resurrect that row and therefore returns None; deriving milestones or
|
|
5818
|
+
# blocks from the absent target would either create dangling references
|
|
5819
|
+
# or attempt int(None). This is distinct from an ordinary fold-decision
|
|
5820
|
+
# skip, which resolves a real latest snapshot below and still runs the
|
|
5821
|
+
# idempotent side-effect chokepoints.
|
|
5822
|
+
if rowid is None:
|
|
5823
|
+
return
|
|
5815
5824
|
saved["id"] = rowid
|
|
5816
5825
|
else:
|
|
5817
5826
|
latest = conn.execute(
|