fix: ensure the ATG is properly restored after disconnection to CSMS
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationEvents.ts
CommitLineData
db54d2e0
JB
1export enum ChargingStationEvents {
2 started = 'started',
3 stopped = 'stopped',
e054fc1c 4 updated = 'updated',
db54d2e0
JB
5 registered = 'registered',
6 accepted = 'accepted',
e054fc1c
JB
7 rejected = 'rejected',
8 disconnected = 'disconnected',
a223d9be 9 connectorStatusChanged = 'connectorStatusChanged'
db54d2e0 10}