X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2F2.0%2FOCPP20ServiceUtils.ts;h=c924b2400187931cfe4406d96ddc18bd72307787;hb=f23be6aad227f8942bb140d286585423fe84f60b;hp=e6f5c7adf7243e43f2ae52ddd8b6516831aae4e9;hpb=7164966d863b4539243b473c5e2e9d22fb9b5fd1;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 e6f5c7ad..c924b240 100644 --- a/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts +++ b/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts @@ -1,19 +1,21 @@ // Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -import path from 'node:path'; -import { fileURLToPath } from 'node:url'; - import type { JSONSchemaType } from 'ajv'; -import type { JsonType } from '../../../types/JsonType'; -import { OCPPVersion } from '../../../types/ocpp/OCPPVersion'; +import { type JsonType, OCPPVersion } from '../../../types'; import { OCPPServiceUtils } from '../OCPPServiceUtils'; export class OCPP20ServiceUtils extends OCPPServiceUtils { - public static parseJsonSchemaFile(relativePath: string): JSONSchemaType { + public static parseJsonSchemaFile( + relativePath: string, + moduleName?: string, + methodName?: string, + ): JSONSchemaType { return super.parseJsonSchemaFile( - path.resolve(path.dirname(fileURLToPath(import.meta.url)), relativePath), - OCPPVersion.VERSION_20 + relativePath, + OCPPVersion.VERSION_20, + moduleName, + methodName, ); } }