build: properly workaround Ajv TS type definitions bug
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / ChargePointErrorCode.ts
index 5baaece468ba746f0e315fb5a1643cbbecaeada9..4255cd059c8a8c22623b08f756a01c29c6145380 100644 (file)
@@ -1,4 +1,4 @@
-export enum ChargePointErrorCode {
+export enum OCPP16ChargePointErrorCode {
   CONNECTOR_LOCK_FAILURE = 'ConnectorLockFailure',
   EV_COMMUNICATION_ERROR = 'EVCommunicationError',
   GROUND_FAILURE = 'GroundFailure',
@@ -14,5 +14,5 @@ export enum ChargePointErrorCode {
   READER_FAILURE = 'ReaderFailure',
   RESET_FAILURE = 'ResetFailure',
   UNDER_VOLTAGE = 'UnderVoltage',
-  WEAK_SIGNAL = 'WeakSignal'
+  WEAK_SIGNAL = 'WeakSignal',
 }