feat!: handle Set at JSON serialization to string
[e-mobility-charging-stations-simulator.git] / src / utils / index.ts
index f16b793d55297b31d2c6661a01670167442c93c7..daa67094d76ed4126fc9a57df1dd8e51dd137053 100644 (file)
@@ -1,14 +1,14 @@
-export { ACElectricUtils, DCElectricUtils } from './ElectricUtils.js'
 export { AsyncLock, AsyncLockType } from './AsyncLock.js'
 export {
-  OutputFormat,
   buildChargingStationAutomaticTransactionGeneratorConfiguration,
   buildConnectorsStatus,
-  buildEvsesStatus
+  buildEvsesStatus,
+  OutputFormat
 } from './ChargingStationConfigurationUtils.js'
 export { CircularArray } from './CircularArray.js'
 export { Configuration } from './Configuration.js'
 export { Constants } from './Constants.js'
+export { ACElectricUtils, DCElectricUtils } from './ElectricUtils.js'
 export {
   handleFileException,
   handleSendMessageError,
@@ -17,16 +17,18 @@ export {
   setDefaultErrorParams
 } from './ErrorUtils.js'
 export { watchJsonFile } from './FileUtils.js'
+export { logger } from './Logger.js'
 export {
   buildAddedMessage,
   buildChargingStationDataPayload,
+  buildDeletedMessage,
   buildPerformanceStatisticsMessage,
   buildStartedMessage,
   buildStoppedMessage,
   buildUpdatedMessage
 } from './MessageChannelUtils.js'
+export { average, median, nthPercentile, stdDeviation } from './StatisticUtils.js'
 export {
-  JSONStringifyWithMapSupport,
   clone,
   convertToBoolean,
   convertToDate,
@@ -49,6 +51,7 @@ export {
   isNotEmptyArray,
   isNotEmptyString,
   isValidDate,
+  JSONStringify,
   logPrefix,
   max,
   min,
@@ -58,5 +61,3 @@ export {
   sleep,
   validateUUID
 } from './Utils.js'
-export { average, median, nthPercentile, stdDeviation } from './StatisticUtils.js'
-export { logger } from './Logger.js'