From f26233c0fd267bc2ef00636ca7531a0877bb5dbe Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 11 Jul 2023 22:56:02 +0200 Subject: [PATCH] fix: properly deprecate payloadSchemaValidation template configuration key MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/charging-station/ChargingStationUtils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/charging-station/ChargingStationUtils.ts b/src/charging-station/ChargingStationUtils.ts index 3e6e578b..868d0adb 100644 --- a/src/charging-station/ChargingStationUtils.ts +++ b/src/charging-station/ChargingStationUtils.ts @@ -357,6 +357,7 @@ export const warnTemplateKeysDeprecation = ( const templateKeys: { key: string; deprecatedKey: string }[] = [ { key: 'supervisionUrls', deprecatedKey: 'supervisionUrl' }, { key: 'idTagsFile', deprecatedKey: 'authorizationFile' }, + { key: 'ocppStrictCompliance', deprecatedKey: 'payloadSchemaValidation' }, ]; for (const templateKey of templateKeys) { warnDeprecatedTemplateKey( -- 2.34.1