X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FWorkerBroadcastChannel.ts;h=f235200c283b0393e900754b19e93d9e26f377fc;hb=5566ca3ebbfc761e2b4538be722399628f34a87b;hp=ca3d42704f4bfea8b3049b82b6a11dfd2ce6abe3;hpb=39257250487f6d6704ed61bf5862ea9e1f906fbc;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/WorkerBroadcastChannel.ts b/src/types/WorkerBroadcastChannel.ts index ca3d4270..f235200c 100644 --- a/src/types/WorkerBroadcastChannel.ts +++ b/src/types/WorkerBroadcastChannel.ts @@ -16,6 +16,7 @@ export enum BroadcastChannelProcedureName { STOP_TRANSACTION = 'stopTransaction', START_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator', STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator', + STATUS_NOTIFICATION = 'statusNotification', } export interface BroadcastChannelRequestPayload extends RequestPayload { @@ -24,7 +25,8 @@ export interface BroadcastChannelRequestPayload extends RequestPayload { idTag?: string; } -export interface BroadcastChannelResponsePayload extends ResponsePayload { +export interface BroadcastChannelResponsePayload + extends Omit { hashId: string; }