feat: add `deleteChargingStations` SRPC command to UI Services
[e-mobility-charging-stations-simulator.git] / src / types / UIProtocol.ts
CommitLineData
66a7748d
JB
1import type { JsonObject } from './JsonType.js'
2import type { BroadcastChannelResponsePayload } from './WorkerBroadcastChannel.js'
d1888640 3
4198ad5c 4export enum Protocol {
a223d9be 5 UI = 'ui'
4198ad5c 6}
8244f5f0 7
675fa8e3
JB
8export enum ApplicationProtocol {
9 HTTP = 'http',
a223d9be 10 WS = 'ws'
675fa8e3
JB
11}
12
eb3abc4f 13export enum AuthenticationType {
a223d9be 14 BASIC_AUTH = 'basic-auth'
eb3abc4f
JB
15}
16
8244f5f0 17export enum ProtocolVersion {
a223d9be 18 '0.0.1' = '0.0.1'
8244f5f0
JB
19}
20
66a7748d
JB
21export type ProtocolRequest = [string, ProcedureName, RequestPayload]
22export type ProtocolResponse = [string, ResponsePayload]
89b7a234
JB
23
24export type ProtocolRequestHandler = (
4e3ff94d 25 uuid?: string,
5e8e29f4 26 procedureName?: ProcedureName,
66a7748d
JB
27 payload?: RequestPayload
28) => undefined | Promise<undefined> | ResponsePayload | Promise<ResponsePayload>
89b7a234 29
32de5a57 30export enum ProcedureName {
5e8e29f4
JB
31 START_SIMULATOR = 'startSimulator',
32 STOP_SIMULATOR = 'stopSimulator',
42e341c4 33 LIST_TEMPLATES = 'listTemplates',
ee0f106b 34 LIST_CHARGING_STATIONS = 'listChargingStations',
c5ecc04d 35 ADD_CHARGING_STATIONS = 'addChargingStations',
09e5a7a8 36 DELETE_CHARGING_STATIONS = 'deleteChargingStations',
a66bbcfe 37 PERFORMANCE_STATISTICS = 'performanceStatistics',
89b7a234
JB
38 START_CHARGING_STATION = 'startChargingStation',
39 STOP_CHARGING_STATION = 'stopChargingStation',
db2336d9
JB
40 OPEN_CONNECTION = 'openConnection',
41 CLOSE_CONNECTION = 'closeConnection',
4f69be04
JB
42 START_AUTOMATIC_TRANSACTION_GENERATOR = 'startAutomaticTransactionGenerator',
43 STOP_AUTOMATIC_TRANSACTION_GENERATOR = 'stopAutomaticTransactionGenerator',
269de583 44 SET_SUPERVISION_URL = 'setSupervisionUrl',
5e8e29f4
JB
45 START_TRANSACTION = 'startTransaction',
46 STOP_TRANSACTION = 'stopTransaction',
1984f194 47 AUTHORIZE = 'authorize',
8bfbc743 48 BOOT_NOTIFICATION = 'bootNotification',
a9ed42b2 49 STATUS_NOTIFICATION = 'statusNotification',
10db00b2 50 HEARTBEAT = 'heartbeat',
d3195f0a 51 METER_VALUES = 'meterValues',
91a7d3ea 52 DATA_TRANSFER = 'dataTransfer',
c9a4f9ea 53 DIAGNOSTICS_STATUS_NOTIFICATION = 'diagnosticsStatusNotification',
a223d9be 54 FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification'
8244f5f0 55}
5612b691 56
89b7a234 57export interface RequestPayload extends JsonObject {
66a7748d
JB
58 hashIds?: string[]
59 connectorIds?: number[]
89b7a234 60}
8244f5f0 61
32de5a57
LM
62export enum ResponseStatus {
63 SUCCESS = 'success',
a223d9be 64 FAILURE = 'failure'
32de5a57
LM
65}
66
67export interface ResponsePayload extends JsonObject {
66a7748d
JB
68 status: ResponseStatus
69 hashIdsSucceeded?: string[]
70 hashIdsFailed?: string[]
71 responsesFailed?: BroadcastChannelResponsePayload[]
32de5a57 72}