X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FChargingStationInfo.ts;h=c66092c56f65d4347196b2d7236e9b67ab748697;hb=eba56146807fea49f821d3b0b46a679b0b0af29a;hp=29ff6fb719b6f550d600a5275e7d5ff99cb4be9a;hpb=c9a4f9ea603df09541c6837fee50012256fb46ad;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationInfo.ts b/src/types/ChargingStationInfo.ts index 29ff6fb7..c66092c5 100644 --- a/src/types/ChargingStationInfo.ts +++ b/src/types/ChargingStationInfo.ts @@ -5,6 +5,8 @@ export type ChargingStationInfo = Omit< ChargingStationTemplate, | 'AutomaticTransactionGenerator' | 'Configuration' + | 'Connectors' + | 'Evses' | 'power' | 'powerUnit' | 'chargeBoxSerialNumberPrefix' @@ -12,6 +14,7 @@ export type ChargingStationInfo = Omit< | 'meterSerialNumberPrefix' > & { hashId: string; + /** @deprecated Use hashId instead */ infoHash?: string; chargingStationId?: string; chargeBoxSerialNumber?: string; @@ -22,6 +25,6 @@ export type ChargingStationInfo = Omit< firmwareStatus?: FirmwareStatus; }; -export type ChargingStationInfoConfiguration = { +export interface ChargingStationInfoConfiguration { stationInfo?: ChargingStationInfo; -}; +}