X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FChargingStationInfo.ts;h=2f9a07fc9c13ac5637af0a73caae1b7ddb4c6e19;hb=f26233c0fd267bc2ef00636ca7531a0877bb5dbe;hp=fff8a1ad69e6805034807c9df1052bf4b560cf43;hpb=69074173770c04bc5e5aa744b655edf9491daa46;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationInfo.ts b/src/types/ChargingStationInfo.ts index fff8a1ad..2f9a07fc 100644 --- a/src/types/ChargingStationInfo.ts +++ b/src/types/ChargingStationInfo.ts @@ -1,15 +1,6 @@ import type { ChargingStationTemplate } from './ChargingStationTemplate'; import type { FirmwareStatus } from './ocpp/Requests'; -enum x509CertificateType { - V2GRootCertificate = 'V2GRootCertificate', - MORootCertificate = 'MORootCertificate', - CSMSRootCertificate = 'CSMSRootCertificate', - ManufacturerRootCertificate = 'ManufacturerRootCertificate', - ChargingStationCertificate = 'ChargingStationCertificate', - V2GCertificate = 'V2GCertificate', -} - export type ChargingStationInfo = Omit< ChargingStationTemplate, | 'AutomaticTransactionGenerator' @@ -32,7 +23,6 @@ export type ChargingStationInfo = Omit< maximumPower?: number; // Always in Watt maximumAmperage?: number; // Always in Ampere firmwareStatus?: FirmwareStatus; - x509Certificates?: Record; }; export type ChargingStationInfoConfiguration = {