feat(transactions): add live energy and estimated cost to transaction data

This commit is contained in:
2026-03-12 17:38:49 +08:00
parent f7ee298060
commit 88a80d2268
4 changed files with 110 additions and 19 deletions

View File

@@ -120,6 +120,8 @@ export type Transaction = {
startMeterValue: number | null;
stopMeterValue: number | null;
energyWh: number | null;
liveEnergyWh: number | null;
estimatedCost: number | null;
stopIdTag: string | null;
stopReason: string | null;
chargeAmount: number | null;