From efa43e52e5a9b466c32ab0040bc4877c0f2fc621 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 2 Feb 2021 08:48:01 +0100 Subject: [PATCH] Rename types definition files for the sake of namespace consitency. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/charging-station/ChargingStation.ts | 2 +- src/charging-station/ocpp/1.6/OCCP16IncomingRequestService.ts | 2 +- src/charging-station/ocpp/1.6/OCPP16RequestService.ts | 2 +- src/charging-station/ocpp/1.6/OCPP16ResponseService.ts | 2 +- src/charging-station/ocpp/OCPPRequestService.ts | 2 +- src/types/ocpp/1.6/{RequestResponses.ts => Responses.ts} | 0 src/types/ocpp/{RequestResponses.ts => Responses.ts} | 2 +- src/utils/Constants.ts | 2 +- 8 files changed, 7 insertions(+), 7 deletions(-) rename src/types/ocpp/1.6/{RequestResponses.ts => Responses.ts} (100%) rename src/types/ocpp/{RequestResponses.ts => Responses.ts} (88%) diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index a7081aa9..efedd101 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -1,4 +1,4 @@ -import { BootNotificationResponse, RegistrationStatus } from '../types/ocpp/RequestResponses'; +import { BootNotificationResponse, RegistrationStatus } from '../types/ocpp/Responses'; import ChargingStationConfiguration, { ConfigurationKey } from '../types/ChargingStationConfiguration'; import ChargingStationTemplate, { PowerOutType, VoltageOut } from '../types/ChargingStationTemplate'; import Connectors, { Connector } from '../types/Connectors'; diff --git a/src/charging-station/ocpp/1.6/OCCP16IncomingRequestService.ts b/src/charging-station/ocpp/1.6/OCCP16IncomingRequestService.ts index 38bd3c06..0f7e4dab 100644 --- a/src/charging-station/ocpp/1.6/OCCP16IncomingRequestService.ts +++ b/src/charging-station/ocpp/1.6/OCCP16IncomingRequestService.ts @@ -1,5 +1,5 @@ import { ChangeAvailabilityRequest, ChangeConfigurationRequest, ClearChargingProfileRequest, GetConfigurationRequest, OCPP16AvailabilityType, OCPP16IncomingRequestCommand, RemoteStartTransactionRequest, RemoteStopTransactionRequest, ResetRequest, SetChargingProfileRequest, UnlockConnectorRequest } from '../../../types/ocpp/1.6/Requests'; -import { ChangeAvailabilityResponse, ChangeConfigurationResponse, ClearChargingProfileResponse, DefaultResponse, GetConfigurationResponse, SetChargingProfileResponse, UnlockConnectorResponse } from '../../../types/ocpp/1.6/RequestResponses'; +import { ChangeAvailabilityResponse, ChangeConfigurationResponse, ClearChargingProfileResponse, DefaultResponse, GetConfigurationResponse, SetChargingProfileResponse, UnlockConnectorResponse } from '../../../types/ocpp/1.6/Responses'; import { ChargingProfilePurposeType, OCPP16ChargingProfile } from '../../../types/ocpp/1.6/ChargingProfile'; import { OCPP16AuthorizationStatus, OCPP16StopTransactionReason } from '../../../types/ocpp/1.6/Transaction'; diff --git a/src/charging-station/ocpp/1.6/OCPP16RequestService.ts b/src/charging-station/ocpp/1.6/OCPP16RequestService.ts index a437e0b3..7470b342 100644 --- a/src/charging-station/ocpp/1.6/OCPP16RequestService.ts +++ b/src/charging-station/ocpp/1.6/OCPP16RequestService.ts @@ -6,7 +6,7 @@ import Constants from '../../../utils/Constants'; import ElectricUtils from '../../../utils/ElectricUtils'; import MeasurandValues from '../../../types/MeasurandValues'; import { MessageType } from '../../../types/ocpp/MessageType'; -import { OCPP16BootNotificationResponse } from '../../../types/ocpp/1.6/RequestResponses'; +import { OCPP16BootNotificationResponse } from '../../../types/ocpp/1.6/Responses'; import { OCPP16ChargePointErrorCode } from '../../../types/ocpp/1.6/ChargePointErrorCode'; import { OCPP16ChargePointStatus } from '../../../types/ocpp/1.6/ChargePointStatus'; import { OCPP16StandardParametersKey } from '../../../types/ocpp/1.6/Configuration'; diff --git a/src/charging-station/ocpp/1.6/OCPP16ResponseService.ts b/src/charging-station/ocpp/1.6/OCPP16ResponseService.ts index 31802460..0a848692 100644 --- a/src/charging-station/ocpp/1.6/OCPP16ResponseService.ts +++ b/src/charging-station/ocpp/1.6/OCPP16ResponseService.ts @@ -1,6 +1,6 @@ import { AuthorizeRequest, OCPP16AuthorizationStatus, OCPP16AuthorizeResponse, OCPP16StartTransactionResponse, OCPP16StopTransactionResponse, StartTransactionRequest, StopTransactionRequest } from '../../../types/ocpp/1.6/Transaction'; import { HeartbeatRequest, OCPP16BootNotificationRequest, OCPP16RequestCommand, StatusNotificationRequest } from '../../../types/ocpp/1.6/Requests'; -import { HeartbeatResponse, OCPP16BootNotificationResponse, OCPP16RegistrationStatus, StatusNotificationResponse } from '../../../types/ocpp/1.6/RequestResponses'; +import { HeartbeatResponse, OCPP16BootNotificationResponse, OCPP16RegistrationStatus, StatusNotificationResponse } from '../../../types/ocpp/1.6/Responses'; import { MeterValuesRequest, MeterValuesResponse } from '../../../types/ocpp/1.6/MeterValues'; import { OCPP16ChargePointStatus } from '../../../types/ocpp/1.6/ChargePointStatus'; diff --git a/src/charging-station/ocpp/OCPPRequestService.ts b/src/charging-station/ocpp/OCPPRequestService.ts index e09e15e8..89248822 100644 --- a/src/charging-station/ocpp/OCPPRequestService.ts +++ b/src/charging-station/ocpp/OCPPRequestService.ts @@ -1,7 +1,7 @@ import { AuthorizeResponse, StartTransactionResponse, StopTransactionReason, StopTransactionResponse } from '../../types/ocpp/Transaction'; import { IncomingRequestCommand, Request, RequestCommand } from '../../types/ocpp/Requests'; -import { BootNotificationResponse } from '../../types/ocpp/RequestResponses'; +import { BootNotificationResponse } from '../../types/ocpp/Responses'; import { ChargePointErrorCode } from '../../types/ocpp/ChargePointErrorCode'; import { ChargePointStatus } from '../../types/ocpp/ChargePointStatus'; import ChargingStation from '../ChargingStation'; diff --git a/src/types/ocpp/1.6/RequestResponses.ts b/src/types/ocpp/1.6/Responses.ts similarity index 100% rename from src/types/ocpp/1.6/RequestResponses.ts rename to src/types/ocpp/1.6/Responses.ts diff --git a/src/types/ocpp/RequestResponses.ts b/src/types/ocpp/Responses.ts similarity index 88% rename from src/types/ocpp/RequestResponses.ts rename to src/types/ocpp/Responses.ts index 08b1080d..d134f545 100644 --- a/src/types/ocpp/RequestResponses.ts +++ b/src/types/ocpp/Responses.ts @@ -1,4 +1,4 @@ -import { OCPP16BootNotificationResponse, OCPP16RegistrationStatus } from './1.6/RequestResponses'; +import { OCPP16BootNotificationResponse, OCPP16RegistrationStatus } from './1.6/Responses'; export type BootNotificationResponse = OCPP16BootNotificationResponse; diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index 31a67328..1959ed93 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -1,4 +1,4 @@ -import { AvailabilityStatus, ChargingProfileStatus, ClearChargingProfileStatus, ConfigurationStatus, DefaultStatus, UnlockStatus } from '../types/ocpp/1.6/RequestResponses'; +import { AvailabilityStatus, ChargingProfileStatus, ClearChargingProfileStatus, ConfigurationStatus, DefaultStatus, UnlockStatus } from '../types/ocpp/1.6/Responses'; export default class Constants { static readonly ENTITY_CHARGING_STATION = 'ChargingStation'; -- 2.34.1