fix(simulator): order firmware upgrade statuses properly
[e-mobility-charging-stations-simulator.git] / src / types / UIProtocol.ts
index 174ae7dd0cbccf00cab4f49c7fdced2098f9ab5b..204051613d3305664fb808f42c5c66a70854ee1a 100644 (file)
@@ -1,5 +1,4 @@
-import type { JsonObject } from './JsonType';
-import type { BroadcastChannelResponsePayload } from './WorkerBroadcastChannel';
+import type { BroadcastChannelResponsePayload, JsonObject } from './internal';
 
 export enum Protocol {
   UI = 'ui',
@@ -44,6 +43,9 @@ export enum ProcedureName {
   STATUS_NOTIFICATION = 'statusNotification',
   HEARTBEAT = 'heartbeat',
   METER_VALUES = 'meterValues',
+  DATA_TRANSFER = 'dataTransfer',
+  DIAGNOSTICS_STATUS_NOTIFICATION = 'diagnosticsStatusNotification',
+  FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification',
 }
 
 export interface RequestPayload extends JsonObject {