refactor(ui): align text casing
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 2.0 / OCPP20ServiceUtils.ts
index 63e43115dabaf6db2ccdba3c3dee653b91948bb9..38110e6f9873300c7fd3e3fcaa12475adfda6dd0 100644 (file)
@@ -1,5 +1,21 @@
-// Partial Copyright Jerome Benoit. 2021-2023. 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<T extends JsonType>(
+    relativePath: string,
+    moduleName?: string,
+    methodName?: string
+  ): JSONSchemaType<T> {
+    return super.parseJsonSchemaFile<T>(
+      relativePath,
+      OCPPVersion.VERSION_20,
+      moduleName,
+      methodName
+    )
+  }
+}