X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FUIProtocol.ts;h=6e120337197d3ea39b65a48517b6e9f554e9eaa2;hb=c317ae3edbd335e6dc52616df7d702c0d8419fd4;hp=f44475d86f680982c87fa376427f8481dc1a9410;hpb=a223d9be48ad8828e6aef060dd3c45d4f99ea9a9;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/UIProtocol.ts b/src/types/UIProtocol.ts index f44475d8..6e120337 100644 --- a/src/types/UIProtocol.ts +++ b/src/types/UIProtocol.ts @@ -11,7 +11,8 @@ export enum ApplicationProtocol { } export enum AuthenticationType { - BASIC_AUTH = 'basic-auth' + BASIC_AUTH = 'basic-auth', + PROTOCOL_BASIC_AUTH = 'protocol-basic-auth' } export enum ProtocolVersion { @@ -30,7 +31,11 @@ export type ProtocolRequestHandler = ( export enum ProcedureName { START_SIMULATOR = 'startSimulator', STOP_SIMULATOR = 'stopSimulator', + LIST_TEMPLATES = 'listTemplates', LIST_CHARGING_STATIONS = 'listChargingStations', + ADD_CHARGING_STATIONS = 'addChargingStations', + DELETE_CHARGING_STATIONS = 'deleteChargingStations', + PERFORMANCE_STATISTICS = 'performanceStatistics', START_CHARGING_STATION = 'startChargingStation', STOP_CHARGING_STATION = 'stopChargingStation', OPEN_CONNECTION = 'openConnection',