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=c924b2400187931cfe4406d96ddc18bd72307787;hpb=5edd8ba0f8978cfb3ca9d80f299d9748c6c5970e;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 c924b240..38110e6f 100644 --- a/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts +++ b/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts @@ -1,21 +1,21 @@ -// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. +// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved. -import type { JSONSchemaType } from 'ajv'; +import type { JSONSchemaType } from 'ajv' -import { type JsonType, OCPPVersion } from '../../../types'; -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( relativePath: string, moduleName?: string, - methodName?: string, + methodName?: string ): JSONSchemaType { return super.parseJsonSchemaFile( relativePath, OCPPVersion.VERSION_20, moduleName, - methodName, - ); + methodName + ) } }