refactor(ui): move the charging stations data array to vue.js global
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationInfo.ts
index d4e4f8db675c606a613b0488d2b5dede109ae8ce..4ebdc150720488c5d37837c4161055d5f52979d6 100644 (file)
@@ -3,10 +3,11 @@ import type { FirmwareStatus } from './ocpp/Requests.js'
 
 export type ChargingStationInfo = Omit<
 ChargingStationTemplate,
-| 'AutomaticTransactionGenerator'
-| 'Configuration'
 | 'Connectors'
 | 'Evses'
+| 'Configuration'
+| 'AutomaticTransactionGenerator'
+| 'numberOfConnectors'
 | 'power'
 | 'powerUnit'
 | 'chargeBoxSerialNumberPrefix'
@@ -14,6 +15,7 @@ ChargingStationTemplate,
 | 'meterSerialNumberPrefix'
 > & {
   hashId: string
+  templateIndex: number
   templateName: string
   /** @deprecated Use hashId instead */
   infoHash?: string