X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2F2.0%2FOCPP20ServiceUtils.ts;h=38110e6f9873300c7fd3e3fcaa12475adfda6dd0;hb=d61c71931ec8c16df695b1f2db2ae85540de0745;hp=63e43115dabaf6db2ccdba3c3dee653b91948bb9;hpb=edd134392e237a3242dc2093341df70244c51472;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts b/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts index 63e43115..38110e6f 100644 --- a/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts +++ b/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts @@ -1,5 +1,21 @@ -// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. +// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved. -import { OCPPServiceUtils } from '../OCPPServiceUtils'; +import type { JSONSchemaType } from 'ajv' -export class OCPP20ServiceUtils extends OCPPServiceUtils {} +import { type JsonType, OCPPVersion } from '../../../types/index.js' +import { OCPPServiceUtils } from '../OCPPServiceUtils.js' + +export class OCPP20ServiceUtils extends OCPPServiceUtils { + public static parseJsonSchemaFile( + relativePath: string, + moduleName?: string, + methodName?: string + ): JSONSchemaType { + return super.parseJsonSchemaFile( + relativePath, + OCPPVersion.VERSION_20, + moduleName, + methodName + ) + } +}