From: Jérôme Benoit Date: Thu, 24 Nov 2022 21:29:10 +0000 (+0100) Subject: Remove soap from the OCPP protocol enum X-Git-Tag: v1.1.88~17 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=825910b8eb0e01bea4e8bbecb340796273fea67f;p=e-mobility-charging-stations-simulator.git Remove soap from the OCPP protocol enum Signed-off-by: Jérôme Benoit --- diff --git a/src/types/ocpp/OCPPProtocol.ts b/src/types/ocpp/OCPPProtocol.ts index 79291e69..1df59397 100644 --- a/src/types/ocpp/OCPPProtocol.ts +++ b/src/types/ocpp/OCPPProtocol.ts @@ -1,4 +1,3 @@ export enum OCPPProtocol { - SOAP = 'soap', JSON = 'json', } diff --git a/ui/web/src/types/ChargingStationType.ts b/ui/web/src/types/ChargingStationType.ts index 929f40e3..ae049bd0 100644 --- a/ui/web/src/types/ChargingStationType.ts +++ b/ui/web/src/types/ChargingStationType.ts @@ -148,7 +148,6 @@ export enum OCPPVersion { } export enum OCPPProtocol { - SOAP = 'soap', JSON = 'json', }