Apply dependencies update
[e-mobility-charging-stations-simulator.git] / src / ui / web / src / types / UIProtocol.ts
index 97f44b0752a89f0ccd3b2e61493b7e9cd56c4e26..443e2352e05b82dca5f8bfdd16b331da70911b8a 100644 (file)
@@ -1,4 +1,3 @@
-import type { ChargingStationData } from './ChargingStationType';
 import type { JsonObject } from './JsonType';
 
 export enum Protocol {
@@ -29,11 +28,12 @@ export enum ProcedureName {
   STOP_CHARGING_STATION = 'stopChargingStation',
   OPEN_CONNECTION = 'openConnection',
   CLOSE_CONNECTION = 'closeConnection',
-  START_TRANSACTION = 'startTransaction',
-  STOP_TRANSACTION = 'stopTransaction',
   START_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator',
   STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator',
+  START_TRANSACTION = 'startTransaction',
+  STOP_TRANSACTION = 'stopTransaction',
 }
+
 export interface RequestPayload extends JsonObject {
   hashIds?: string[];
   connectorId?: number;