X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes%2FWorkerBroadcastChannel.ts;h=ca3d42704f4bfea8b3049b82b6a11dfd2ce6abe3;hb=5af9aa8a875b3dbd4b4d394ecac022d046fa725c;hp=45168b03834471fad4fa41cdc2c62ad8b117b7ff;hpb=6c1761d470507ea23d186be61b94ca7375c5144a;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/WorkerBroadcastChannel.ts b/src/types/WorkerBroadcastChannel.ts index 45168b03..ca3d4270 100644 --- a/src/types/WorkerBroadcastChannel.ts +++ b/src/types/WorkerBroadcastChannel.ts @@ -10,30 +10,22 @@ export type BroadcastChannelResponse = [string, BroadcastChannelResponsePayload] export enum BroadcastChannelProcedureName { START_CHARGING_STATION = 'startChargingStation', STOP_CHARGING_STATION = 'stopChargingStation', - START_TRANSACTION = 'startTransaction', - STOP_TRANSACTION = 'stopTransaction', OPEN_CONNECTION = 'openConnection', CLOSE_CONNECTION = 'closeConnection', + START_TRANSACTION = 'startTransaction', + STOP_TRANSACTION = 'stopTransaction', + START_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator', + STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator', } -interface BaseBroadcastChannelRequestPayload extends Omit { +export interface BroadcastChannelRequestPayload extends RequestPayload { connectorId?: number; transactionId?: number; idTag?: string; } -interface HashIdBroadcastChannelRequestPayload extends BaseBroadcastChannelRequestPayload { +export interface BroadcastChannelResponsePayload extends ResponsePayload { hashId: string; } -interface HashIdsBroadcastChannelRequestPayload extends BaseBroadcastChannelRequestPayload { - hashIds: string[]; -} - -export type BroadcastChannelRequestPayload = - | HashIdBroadcastChannelRequestPayload - | HashIdsBroadcastChannelRequestPayload; - -export type BroadcastChannelResponsePayload = ResponsePayload; - export type MessageEvent = { data: BroadcastChannelRequest | BroadcastChannelResponse };