X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FChargingStationWorker.ts;h=6dbd879310592796529df358364c65c69f672734;hb=b1396a2e5ab5f52238df71daeb9da0ef6b12807a;hp=5a24dc540ab8856500bbea01989fa47794e4e2a7;hpb=244c1396e337032577839fa13e9191d5e943864f;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationWorker.ts b/src/types/ChargingStationWorker.ts index 5a24dc54..6dbd8793 100644 --- a/src/types/ChargingStationWorker.ts +++ b/src/types/ChargingStationWorker.ts @@ -11,14 +11,19 @@ import type { BootNotificationResponse } from './ocpp/Responses.js' import type { Statistics } from './Statistics.js' import { type WorkerData, type WorkerMessage, WorkerMessageEvents } from '../worker/index.js' -interface ChargingStationWorkerOptions extends JsonObject { - elementStartDelay?: number +export interface ChargingStationOptions extends JsonObject { + persistentConfiguration?: boolean + autoStart?: boolean + autoRegister?: boolean + enableStatistics?: boolean + ocppStrictCompliance?: boolean + stopTransactionsOnStopped?: boolean } export interface ChargingStationWorkerData extends WorkerData { index: number templateFile: string - chargingStationWorkerOptions?: ChargingStationWorkerOptions + options?: ChargingStationOptions } export type EvseStatusWorkerType = Omit & { @@ -31,6 +36,7 @@ export interface ChargingStationData extends WorkerData { connectors: ConnectorStatus[] evses: EvseStatusWorkerType[] ocppConfiguration: ChargingStationOcppConfiguration + supervisionUrl: string wsState?: | typeof WebSocket.CONNECTING | typeof WebSocket.OPEN