X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes%2FConfigurationData.ts;h=3248ec555263eeabc3c66d81546cb471d9526083;hb=4c3f6c20f9416e148a3d26b6a06acc13274ab469;hp=7f5353f4c391ac2ca17c12e51b7f4d9d7bcb37fc;hpb=a807045be19c1ed4996a44d8c2c8774e926dc6dc;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ConfigurationData.ts b/src/types/ConfigurationData.ts index 7f5353f4..3248ec55 100644 --- a/src/types/ConfigurationData.ts +++ b/src/types/ConfigurationData.ts @@ -3,9 +3,9 @@ import type { ResourceLimits } from 'node:worker_threads' import type { WorkerChoiceStrategy } from 'poolifier' +import type { WorkerProcessType } from '../worker/index.js' import type { StorageType } from './Storage.js' import type { ApplicationProtocol, AuthenticationType } from './UIProtocol.js' -import type { WorkerProcessType } from '../worker/index.js' type ServerOptions = ListenOptions @@ -13,13 +13,13 @@ export enum ConfigurationSection { log = 'log', performanceStorage = 'performanceStorage', worker = 'worker', - uiServer = 'uiServer', + uiServer = 'uiServer' } export enum SupervisionUrlDistribution { ROUND_ROBIN = 'round-robin', RANDOM = 'random', - CHARGING_STATION_AFFINITY = 'charging-station-affinity', + CHARGING_STATION_AFFINITY = 'charging-station-affinity' } export interface StationTemplateUrl { @@ -42,7 +42,7 @@ export interface LogConfiguration { export enum ApplicationProtocolVersion { VERSION_11 = 1.1, - VERSION_20 = 2.0, + VERSION_20 = 2.0 } export interface UIServerConfiguration {