refactor: cleanup app message handling code
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 2.0 / OCPP20ServiceUtils.ts
index 8d6ccdf5b3ff9bd2b54d100beb7e3144fab65b26..75d61731e8c72c00db49e075d7f1af6e311207d6 100644 (file)
@@ -1,9 +1,9 @@
-// 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<T extends JsonType>(
@@ -13,9 +13,9 @@ export class OCPP20ServiceUtils extends OCPPServiceUtils {
   ): JSONSchemaType<T> {
     return super.parseJsonSchemaFile<T>(
       relativePath,
-      OCPPVersion.VERSION_20,
+      OCPPVersion.VERSION_201,
       moduleName,
       methodName
-    );
+    )
   }
 }