build(deps): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationEvents.ts
index f7980b47b3f7e5a77473473383be465fc0689cd1..b690bc916f2dca73d604349dc508f11177ff0643 100644 (file)
@@ -1,8 +1,12 @@
 export enum ChargingStationEvents {
+  added = 'added',
+  deleted = 'deleted',
   started = 'started',
   stopped = 'stopped',
+  updated = 'updated',
   registered = 'registered',
   accepted = 'accepted',
-  updated = 'updated',
-  connectorStatusChanged = 'connectorStatusChanged',
+  rejected = 'rejected',
+  disconnected = 'disconnected',
+  connectorStatusChanged = 'connectorStatusChanged'
 }