X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2F2.0%2FOCPP20ServiceUtils.ts;h=75d61731e8c72c00db49e075d7f1af6e311207d6;hb=9e9194c977f2100a92a4549e6562750499607706;hp=7ff58444e0f8142332ab4f1be240b2577f260404;hpb=953d6b028e82d6997897802afefbb4ce0d225dee;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 7ff58444..75d61731 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. 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_201, + moduleName, + methodName + ) + } +}