X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FUIProtocol.ts;h=6e120337197d3ea39b65a48517b6e9f554e9eaa2;hb=d64ea57bcb4fd9151a43b16ff4d4b5ed059ad1d7;hp=13da330efc3094f2c117d067e9e787cc02fd9c6e;hpb=42e341c40076aa8c5fc37e10512ec41c9ab60825;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/UIProtocol.ts b/src/types/UIProtocol.ts index 13da330e..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 { @@ -32,6 +33,9 @@ export enum ProcedureName { 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',