X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FChargingStationEvents.ts;h=3fa6adeccf6310ebebac3dbb679133dfe9f10aa3;hb=01b82de5b532cd149eccab7b82fe86a741289581;hp=f7980b47b3f7e5a77473473383be465fc0689cd1;hpb=649e3f97ae095f2f8653a126e72b37260216edfe;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationEvents.ts b/src/types/ChargingStationEvents.ts index f7980b47..3fa6adec 100644 --- a/src/types/ChargingStationEvents.ts +++ b/src/types/ChargingStationEvents.ts @@ -1,8 +1,13 @@ export enum ChargingStationEvents { + added = 'added', + deleted = 'deleted', started = 'started', stopped = 'stopped', + updated = 'updated', registered = 'registered', accepted = 'accepted', - updated = 'updated', - connectorStatusChanged = 'connectorStatusChanged', + rejected = 'rejected', + connected = 'connected', + disconnected = 'disconnected', + connectorStatusChanged = 'connectorStatusChanged' }