build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationWorker.ts
index cd3f0ebd0ffcab7335b3c835adbb7249d130c28d..ff3c5ef0fe56ed6b29d11745279dd334741a3b92 100644 (file)
@@ -12,9 +12,13 @@ import type { Statistics } from './Statistics.js'
 import { type WorkerData, type WorkerMessage, WorkerMessageEvents } from '../worker/index.js'
 
 export interface ChargingStationOptions extends JsonObject {
+  supervisionUrls?: string | string[]
+  persistentConfiguration?: boolean
   autoStart?: boolean
   autoRegister?: boolean
-  persistentConfiguration?: boolean
+  enableStatistics?: boolean
+  ocppStrictCompliance?: boolean
+  stopTransactionsOnStopped?: boolean
 }
 
 export interface ChargingStationWorkerData extends WorkerData {