build: add keywords section to package.json
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationInfo.ts
index e56db70980ea14a71a3af7c224f9119848f50a7e..2f9a07fc9c13ac5637af0a73caae1b7ddb4c6e19 100644 (file)
@@ -1,13 +1,5 @@
-import type { ChargingStationTemplate, FirmwareStatus } from './internal';
-
-enum x509CertificateType {
-  V2GRootCertificate = 'V2GRootCertificate',
-  MORootCertificate = 'MORootCertificate',
-  CSMSRootCertificate = 'CSMSRootCertificate',
-  ManufacturerRootCertificate = 'ManufacturerRootCertificate',
-  ChargingStationCertificate = 'ChargingStationCertificate',
-  V2GCertificate = 'V2GCertificate',
-}
+import type { ChargingStationTemplate } from './ChargingStationTemplate';
+import type { FirmwareStatus } from './ocpp/Requests';
 
 export type ChargingStationInfo = Omit<
   ChargingStationTemplate,
@@ -31,7 +23,6 @@ export type ChargingStationInfo = Omit<
   maximumPower?: number; // Always in Watt
   maximumAmperage?: number; // Always in Ampere
   firmwareStatus?: FirmwareStatus;
-  x509Certificates?: Record<x509CertificateType, string>;
 };
 
 export type ChargingStationInfoConfiguration = {