build(simulator): don't preserve modules
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 1.6 / OCPP16RequestService.ts
index 8ff6bea4b08406cfbcca392d456d3eca5e79b67b..7ff1fdb8d43b27da48147a789a1612c87644d8a4 100644 (file)
@@ -42,7 +42,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.AUTHORIZE,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16AuthorizeRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/Authorize.json',
+          'assets/json-schemas/ocpp/1.6/Authorize.json',
           moduleName,
           'constructor'
         ),
@@ -50,7 +50,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.BOOT_NOTIFICATION,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16BootNotificationRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/BootNotification.json',
+          'assets/json-schemas/ocpp/1.6/BootNotification.json',
           moduleName,
           'constructor'
         ),
@@ -58,7 +58,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.DIAGNOSTICS_STATUS_NOTIFICATION,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16DiagnosticsStatusNotificationRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/DiagnosticsStatusNotification.json',
+          'assets/json-schemas/ocpp/1.6/DiagnosticsStatusNotification.json',
           moduleName,
           'constructor'
         ),
@@ -66,7 +66,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.HEARTBEAT,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16HeartbeatRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/Heartbeat.json',
+          'assets/json-schemas/ocpp/1.6/Heartbeat.json',
           moduleName,
           'constructor'
         ),
@@ -74,7 +74,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.METER_VALUES,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16MeterValuesRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/MeterValues.json',
+          'assets/json-schemas/ocpp/1.6/MeterValues.json',
           moduleName,
           'constructor'
         ),
@@ -82,7 +82,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.STATUS_NOTIFICATION,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16StatusNotificationRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/StatusNotification.json',
+          'assets/json-schemas/ocpp/1.6/StatusNotification.json',
           moduleName,
           'constructor'
         ),
@@ -90,7 +90,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.START_TRANSACTION,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16StartTransactionRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/StartTransaction.json',
+          'assets/json-schemas/ocpp/1.6/StartTransaction.json',
           moduleName,
           'constructor'
         ),
@@ -98,7 +98,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.STOP_TRANSACTION,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16StopTransactionRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/StopTransaction.json',
+          'assets/json-schemas/ocpp/1.6/StopTransaction.json',
           moduleName,
           'constructor'
         ),
@@ -106,7 +106,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.DATA_TRANSFER,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16DataTransferRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/DataTransfer.json',
+          'assets/json-schemas/ocpp/1.6/DataTransfer.json',
           moduleName,
           'constructor'
         ),
@@ -114,7 +114,7 @@ export class OCPP16RequestService extends OCPPRequestService {
       [
         OCPP16RequestCommand.FIRMWARE_STATUS_NOTIFICATION,
         OCPP16ServiceUtils.parseJsonSchemaFile<OCPP16FirmwareStatusNotificationRequest>(
-          '../../../assets/json-schemas/ocpp/1.6/FirmwareStatusNotification.json',
+          'assets/json-schemas/ocpp/1.6/FirmwareStatusNotification.json',
           moduleName,
           'constructor'
         ),