X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes%2Findex.ts;h=2b833800b44800d2709eacb005130aa5f6cd1a1c;hb=29bb4dee107ec14629baaf6ffc66d934c4c2dacf;hp=27ffb6d75014fea6a182fc509e713cc4b0c5da54;hpb=69074173770c04bc5e5aa744b655edf9491daa46;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/index.ts b/src/types/index.ts index 27ffb6d7..2b833800 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -108,6 +108,8 @@ export { type ResetRequest, type SetChargingProfileRequest, type UnlockConnectorRequest, + type OCPP16ReserveNowRequest, + type OCPP16CancelReservationRequest, } from './ocpp/1.6/Requests'; export { type ChangeAvailabilityResponse, @@ -127,6 +129,7 @@ export { type OCPP16UpdateFirmwareResponse, type SetChargingProfileResponse, type UnlockConnectorResponse, + type OCPP16ReserveNowResponse, } from './ocpp/1.6/Responses'; export { ChargePointErrorCode } from './ocpp/ChargePointErrorCode'; export { @@ -146,6 +149,7 @@ export { type ChargingStationWorkerMessage, type ChargingStationWorkerMessageData, ChargingStationWorkerMessageEvents, + type EvseStatusWorkerType, } from './ChargingStationWorker'; export type { ChargingStationInfo } from './ChargingStationInfo'; export type { @@ -250,3 +254,5 @@ export { WebSocketCloseEventStatusCode, WebSocketCloseEventStatusString, } from './WebSocket'; +export { ReservationFilterKey, ReservationTerminationReason } from './ocpp/1.6/Reservation'; +export { type Reservation } from './ocpp/Reservation';