X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FConfigurationData.ts;h=10f2565a81f52a5b874c3331771cdd110c83a7f9;hb=72495c24c4e750fce20245faca4609dd4eacd7ba;hp=d218e08a3067917daa1a321e11281eef9c4affbd;hpb=6a49ad23c5b2b65424a2374c4eeca027beb77e79;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ConfigurationData.ts b/src/types/ConfigurationData.ts index d218e08a..10f2565a 100644 --- a/src/types/ConfigurationData.ts +++ b/src/types/ConfigurationData.ts @@ -3,7 +3,7 @@ import { StorageType } from './Storage'; import type { WorkerChoiceStrategy } from 'poolifier'; import { WorkerProcessType } from './Worker'; -export interface StationTemplateURL { +export interface StationTemplateUrl { file: string; numberOfStations: number; } @@ -16,12 +16,12 @@ export interface UIWebSocketServerConfiguration { export interface StorageConfiguration { enabled?: boolean; type?: StorageType; - URI?: string; + uri?: string; } export default interface ConfigurationData { - supervisionURLs?: string[]; - stationTemplateURLs: StationTemplateURL[]; + supervisionUrls?: string[]; + stationTemplateUrls: StationTemplateUrl[]; uiWebSocketServer?: UIWebSocketServerConfiguration; performanceStorage?: StorageConfiguration; autoReconnectMaxRetries?: number;