UI Protocol: add Authorize command support
[e-mobility-charging-stations-simulator.git] / src / types / WorkerBroadcastChannel.ts
CommitLineData
6c1761d4 1import type { RequestPayload, ResponsePayload } from './UIProtocol';
32de5a57 2
4e3ff94d
JB
3export type BroadcastChannelRequest = [
4 string,
5 BroadcastChannelProcedureName,
6 BroadcastChannelRequestPayload
7];
8export type BroadcastChannelResponse = [string, BroadcastChannelResponsePayload];
89b7a234
JB
9
10export enum BroadcastChannelProcedureName {
11 START_CHARGING_STATION = 'startChargingStation',
12 STOP_CHARGING_STATION = 'stopChargingStation',
db2336d9
JB
13 OPEN_CONNECTION = 'openConnection',
14 CLOSE_CONNECTION = 'closeConnection',
4f69be04
JB
15 START_TRANSACTION = 'startTransaction',
16 STOP_TRANSACTION = 'stopTransaction',
17 START_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator',
18 STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator',
1984f194 19 AUTHORIZE = 'authorize',
a9ed42b2 20 STATUS_NOTIFICATION = 'statusNotification',
10db00b2 21 HEARTBEAT = 'heartbeat',
89b7a234
JB
22}
23
39257250 24export interface BroadcastChannelRequestPayload extends RequestPayload {
32de5a57
LM
25 connectorId?: number;
26 transactionId?: number;
27 idTag?: string;
28}
89b7a234 29
a9ed42b2
JB
30export interface BroadcastChannelResponsePayload
31 extends Omit<ResponsePayload, 'hashIdsSucceeded' | 'hashIdsFailed' | 'responsesFailed'> {
10d244c0
JB
32 hashId: string;
33}
6c8f5d90
JB
34
35export type MessageEvent = { data: BroadcastChannelRequest | BroadcastChannelResponse };