9e7a71a8d4cb43ac93c758e863afed30eba3abaf
[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 PROTOCOL_BASIC_AUTH = 'protocol-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_TEMPLATES = 'listTemplates',
31 LIST_CHARGING_STATIONS = 'listChargingStations',
32 ADD_CHARGING_STATIONS = 'addChargingStations',
33 DELETE_CHARGING_STATIONS = 'deleteChargingStations',
34 START_CHARGING_STATION = 'startChargingStation',
35 STOP_CHARGING_STATION = 'stopChargingStation',
36 OPEN_CONNECTION = 'openConnection',
37 CLOSE_CONNECTION = 'closeConnection',
38 START_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator',
39 STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator',
40 START_TRANSACTION = 'startTransaction',
41 STOP_TRANSACTION = 'stopTransaction'
42 }
43
44 export interface RequestPayload extends JsonObject {
45 hashIds?: string[]
46 connectorIds?: number[]
47 }
48
49 export enum ResponseStatus {
50 SUCCESS = 'success',
51 FAILURE = 'failure'
52 }
53
54 export interface ResponsePayload extends JsonObject {
55 status: ResponseStatus
56 hashIds?: string[]
57 }