X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2F2.0%2FOCPP20ServiceUtils.ts;h=38110e6f9873300c7fd3e3fcaa12475adfda6dd0;hb=55ae7b758f478a2beb4557bbc96363fb913dcc73;hp=b155f462d2615a65e83f1580435709bb081d59f7;hpb=1b271a549cfd1b8e678a56918f113ebc7c17f592;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 b155f462..38110e6f 100644 --- a/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts +++ b/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts @@ -1,13 +1,9 @@ -// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. +// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved. -import path from 'node:path'; -import { fileURLToPath } from 'node:url'; +import type { JSONSchemaType } from 'ajv' -import type { JSONSchemaType } from 'ajv'; - -import type { JsonType } from '../../../types/JsonType'; -import { OCPPVersion } from '../../../types/ocpp/OCPPVersion'; -import { OCPPServiceUtils } from '../OCPPServiceUtils'; +import { type JsonType, OCPPVersion } from '../../../types/index.js' +import { OCPPServiceUtils } from '../OCPPServiceUtils.js' export class OCPP20ServiceUtils extends OCPPServiceUtils { public static parseJsonSchemaFile( @@ -16,10 +12,10 @@ export class OCPP20ServiceUtils extends OCPPServiceUtils { methodName?: string ): JSONSchemaType { return super.parseJsonSchemaFile( - path.resolve(path.dirname(fileURLToPath(import.meta.url)), relativePath), + relativePath, OCPPVersion.VERSION_20, moduleName, methodName - ); + ) } }