feat(ui): add charging station options to add action
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ChargingStationType.ts
index 9baff1ae043b594cb028e2105246a7c08baef94c..6814737e811106b70d9212e61cff24a9b007500a 100644 (file)
@@ -64,6 +64,16 @@ export const FirmwareStatus = {
 } as const
 export type FirmwareStatus = OCPP16FirmwareStatus
 
+export interface ChargingStationOptions extends JsonObject {
+  supervisionUrls?: string | string[]
+  persistentConfiguration?: boolean
+  autoStart?: boolean
+  autoRegister?: boolean
+  enableStatistics?: boolean
+  ocppStrictCompliance?: boolean
+  stopTransactionsOnStopped?: boolean
+}
+
 export type ChargingStationInfo = {
   hashId: string
   templateIndex: number