X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FWorkerBroadcastChannel.ts;h=abc33752cb10616fde5474a4f68c2843675a911c;hb=974efe6c9928aabb0d9356c19342d0fa432f3cc1;hp=0ca44adac903f816f6917a60e1587762235b26e9;hpb=b3b45e6c81c2a01d793c3dc9ab48157e51c82ca3;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/WorkerBroadcastChannel.ts b/src/types/WorkerBroadcastChannel.ts index 0ca44ada..abc33752 100644 --- a/src/types/WorkerBroadcastChannel.ts +++ b/src/types/WorkerBroadcastChannel.ts @@ -3,39 +3,40 @@ import type { RequestPayload, ResponsePayload } from './UIProtocol'; export type BroadcastChannelRequest = [ string, BroadcastChannelProcedureName, - BroadcastChannelRequestPayload + BroadcastChannelRequestPayload, ]; 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_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator', + STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator', + SET_SUPERVISION_URL = 'setSupervisionUrl', + START_TRANSACTION = 'startTransaction', + STOP_TRANSACTION = 'stopTransaction', + AUTHORIZE = 'authorize', + BOOT_NOTIFICATION = 'bootNotification', + STATUS_NOTIFICATION = 'statusNotification', + HEARTBEAT = 'heartbeat', + METER_VALUES = 'meterValues', + DATA_TRANSFER = 'dataTransfer', + DIAGNOSTICS_STATUS_NOTIFICATION = 'diagnosticsStatusNotification', + FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification', } -interface BaseBroadcastChannelRequestPayload extends Omit { +export interface BroadcastChannelRequestPayload extends RequestPayload { connectorId?: number; transactionId?: number; - idTag?: string; } -interface HashIdBroadcastChannelRequestPayload extends BaseBroadcastChannelRequestPayload { +export interface BroadcastChannelResponsePayload + extends Omit { hashId: string; } -interface HashIdsBroadcastChannelRequestPayload extends BaseBroadcastChannelRequestPayload { - hashIds: string[]; +export interface MessageEvent { + data: BroadcastChannelRequest | BroadcastChannelResponse; } - -export type BroadcastChannelRequestPayload = - | HashIdBroadcastChannelRequestPayload - | HashIdsBroadcastChannelRequestPayload; - -export interface BroadcastChannelResponsePayload extends ResponsePayload { - hashId: string; -} - -export type MessageEvent = { data: BroadcastChannelRequest | BroadcastChannelResponse };