1f8d1e6fe7ba432fa02516cb4da851757297a47f
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / UIProtocol.ts
1 import type { JsonObject } from './JsonType'
2
3 export enum Protocol {
4 UI = 'ui'
5 }
6
7 export enum ApplicationProtocol {
8 WS = 'ws',
9 WSS = 'wss'
10 }
11
12 export enum ProtocolVersion {
13 '0.0.1' = '0.0.1'
14 }
15
16 export enum AuthenticationType {
17 BASIC_AUTH = 'basic-auth'
18 }
19
20 export type ProtocolRequest = [string, ProcedureName, RequestPayload]
21 export type ProtocolResponse = [string, ResponsePayload]
22
23 export type ProtocolRequestHandler = (
24 payload: RequestPayload
25 ) => ResponsePayload | Promise<ResponsePayload>
26
27 export enum ProcedureName {
28 START_SIMULATOR = 'startSimulator',
29 STOP_SIMULATOR = 'stopSimulator',
30 LIST_CHARGING_STATIONS = 'listChargingStations',
31 START_CHARGING_STATION = 'startChargingStation',
32 STOP_CHARGING_STATION = 'stopChargingStation',
33 OPEN_CONNECTION = 'openConnection',
34 CLOSE_CONNECTION = 'closeConnection',
35 START_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator',
36 STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator',
37 START_TRANSACTION = 'startTransaction',
38 STOP_TRANSACTION = 'stopTransaction'
39 }
40
41 export interface RequestPayload extends JsonObject {
42 hashIds?: string[]
43 connectorIds?: number[]
44 }
45
46 export enum ResponseStatus {
47 SUCCESS = 'success',
48 FAILURE = 'failure'
49 }
50
51 export interface ResponsePayload extends JsonObject {
52 status: ResponseStatus
53 hashIds?: string[]
54 }