refactor(simulator): switch to internal modules export/import design
[e-mobility-charging-stations-simulator.git] / src / types / WorkerBroadcastChannel.ts
index 0ca8eef889c23d761e74a3d2bb851682c33f3691..3656fe3a9a1e8618375271002850ccd407a6e5fc 100644 (file)
@@ -1,4 +1,4 @@
-import type { RequestPayload, ResponsePayload } from './UIProtocol';
+import type { RequestPayload, ResponsePayload } from './internal';
 
 export type BroadcastChannelRequest = [
   string,
@@ -22,12 +22,13 @@ export enum BroadcastChannelProcedureName {
   HEARTBEAT = 'heartbeat',
   METER_VALUES = 'meterValues',
   DATA_TRANSFER = 'dataTransfer',
+  DIAGNOSTICS_STATUS_NOTIFICATION = 'diagnosticsStatusNotification',
+  FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification',
 }
 
 export interface BroadcastChannelRequestPayload extends RequestPayload {
   connectorId?: number;
   transactionId?: number;
-  idTag?: string;
 }
 
 export interface BroadcastChannelResponsePayload