From: Jérôme Benoit Date: Sun, 28 Jan 2024 13:03:32 +0000 (+0100) Subject: refactor: remove unneeded export X-Git-Tag: v1.2.33~17 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=dd21af153ed64c6220b6b14a5165c11443032f4f;p=e-mobility-charging-stations-simulator.git refactor: remove unneeded export Signed-off-by: Jérôme Benoit --- diff --git a/src/charging-station/ocpp/OCPPServiceUtils.ts b/src/charging-station/ocpp/OCPPServiceUtils.ts index 3e375b82..ddbec5f9 100644 --- a/src/charging-station/ocpp/OCPPServiceUtils.ts +++ b/src/charging-station/ocpp/OCPPServiceUtils.ts @@ -80,7 +80,7 @@ export const getMessageTypeString = (messageType: MessageType): string => { } } -export const buildStatusNotificationRequest = ( +const buildStatusNotificationRequest = ( chargingStation: ChargingStation, connectorId: number, status: ConnectorStatusEnum, diff --git a/src/charging-station/ocpp/index.ts b/src/charging-station/ocpp/index.ts index 61e092d8..e4e565c3 100644 --- a/src/charging-station/ocpp/index.ts +++ b/src/charging-station/ocpp/index.ts @@ -8,7 +8,6 @@ export { OCPPIncomingRequestService } from './OCPPIncomingRequestService.js' export { OCPPRequestService } from './OCPPRequestService.js' export { buildMeterValue, - buildStatusNotificationRequest, buildTransactionEndMeterValue, getMessageTypeString, isIdTagAuthorized,