feat(csms, web): add charge point status and error code to charge point details, hide the connector 0 from connectors view

This commit is contained in:
2026-03-11 11:00:16 +08:00
parent 48d9580d36
commit f74939917b
4 changed files with 98 additions and 15 deletions

View File

@@ -68,6 +68,8 @@ export type ChargePoint = {
lastBootNotificationAt: string | null;
feePerKwh: number;
connectors: ConnectorSummary[];
chargePointStatus: string | null;
chargePointErrorCode: string | null;
};
export type ChargePointDetail = {
@@ -89,6 +91,8 @@ export type ChargePointDetail = {
createdAt: string;
updatedAt: string;
connectors: ConnectorDetail[];
chargePointStatus: string | null;
chargePointErrorCode: string | null;
};
export type Transaction = {