More strict boolean checks
[e-mobility-charging-stations-simulator.git] / src / utils / Constants.ts
index 433f95e032c80b43f7599404017f4d980529af63..b28674259454fce95bf2e37719a1c2e15ee4719d 100644 (file)
@@ -1,3 +1,4 @@
+import { MeterValueMeasurand } from '../types/ocpp/MeterValues';
 import {
   AvailabilityStatus,
   ChargingProfileStatus,
@@ -8,8 +9,6 @@ import {
   UnlockStatus,
 } from '../types/ocpp/Responses';
 
-import { MeterValueMeasurand } from '../types/ocpp/MeterValues';
-
 export default class Constants {
   static readonly OCPP_RESPONSE_EMPTY = Object.freeze({});
   static readonly OCPP_RESPONSE_ACCEPTED = Object.freeze({ status: DefaultStatus.ACCEPTED });
@@ -90,11 +89,6 @@ export default class Constants {
   static readonly CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // Ms
   static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000; // Ms
   static readonly CHARGING_STATION_ATG_DEFAULT_STOP_AFTER_HOURS = 0.25; // Hours
-  static readonly CHARGING_STATION_CONFIGURATION_SECTIONS = Object.freeze([
-    'stationInfo',
-    'configurationKey',
-    'configurationHash',
-  ]);
 
   static readonly DEFAULT_CIRCULAR_BUFFER_CAPACITY = Number.MAX_SAFE_INTEGER;
 
@@ -107,6 +101,7 @@ export default class Constants {
   static readonly DEFAULT_LOG_STATISTICS_INTERVAL = 60; // Seconds
 
   static readonly DEFAULT_HEARTBEAT_INTERVAL = 60000; // Ms
+  static readonly DEFAULT_METER_VALUES_INTERVAL = 60000; // Ms
 
   static readonly SUPPORTED_MEASURANDS = Object.freeze([
     MeterValueMeasurand.STATE_OF_CHARGE,
@@ -124,4 +119,8 @@ export default class Constants {
 
   static readonly DEFAULT_UI_WEBSOCKET_SERVER_HOST = 'localhost';
   static readonly DEFAULT_UI_WEBSOCKET_SERVER_PORT = 8080;
+
+  private constructor() {
+    // This is intentional
+  }
 }