Update Insomnia UI requests collection export
[e-mobility-charging-stations-simulator.git] / src / types / UIProtocol.ts
index 4344c0d642df3e7ab229750b7b71be40455389d3..3a76bd0007302ec8a11540a6c317bd59fd3c4675 100644 (file)
@@ -1,21 +1,49 @@
-import { JsonType } from './JsonType';
+import type { JsonObject } from './JsonType';
 
 export enum Protocol {
   UI = 'ui',
 }
 
+export enum ApplicationProtocol {
+  HTTP = 'http',
+  WS = 'ws',
+}
+
 export enum ProtocolVersion {
   '0.0.1' = '0.0.1',
 }
 
-export enum ProtocolCommand {
+export type ProtocolRequest = [string, ProcedureName, RequestPayload];
+export type ProtocolResponse = [string, ResponsePayload];
+
+export type ProtocolRequestHandler = (
+  uuid?: string,
+  payload?: RequestPayload
+) => undefined | Promise<undefined> | ResponsePayload | Promise<ResponsePayload>;
+
+export enum ProcedureName {
   LIST_CHARGING_STATIONS = 'listChargingStations',
+  START_CHARGING_STATION = 'startChargingStation',
+  STOP_CHARGING_STATION = 'stopChargingStation',
   START_TRANSACTION = 'startTransaction',
   STOP_TRANSACTION = 'stopTransaction',
+  START_SIMULATOR = 'startSimulator',
+  STOP_SIMULATOR = 'stopSimulator',
+  OPEN_CONNECTION = 'openConnection',
+  CLOSE_CONNECTION = 'closeConnection',
 }
 
-export type ProtocolRequest = [ProtocolCommand, JsonType];
+export interface RequestPayload extends JsonObject {
+  hashId?: string;
+  hashIds?: string[];
+}
 
-export type ProtocolRequestHandler = (
-  payload: JsonType
-) => void | Promise<void> | JsonType | Promise<JsonType>;
+export enum ResponseStatus {
+  SUCCESS = 'success',
+  FAILURE = 'failure',
+}
+
+export interface ResponsePayload extends JsonObject {
+  status: ResponseStatus;
+  hashIds?: string[];
+}