Apply dependencies update
[e-mobility-charging-stations-simulator.git] / src / utils / Constants.ts
index 1c42087964ce36c8108a4001affc7923c6a53019..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 });
@@ -102,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,