X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Findex.ts;h=04608aaba3289fc9910c246b2bfdf1a9d21383a4;hb=2ca0ea909c319b763257cedb8ba421c3f22823fd;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..04608aab 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -17,6 +17,7 @@ export { IdTagDistribution, type Status, } from './AutomaticTransactionGenerator'; +export { type GenericResponse, GenericStatus, RegistrationStatusEnumType } from './ocpp/Common'; export { AvailabilityType, type BootNotificationRequest, @@ -51,11 +52,8 @@ export { type DiagnosticsStatusNotificationResponse, type ErrorResponse, type FirmwareStatusNotificationResponse, - GenericStatus, - type GenericResponse, type HeartbeatResponse, type MeterValuesResponse, - RegistrationStatusEnumType, type Response, type ResponseHandler, type StatusNotificationResponse, @@ -108,6 +106,8 @@ export { type ResetRequest, type SetChargingProfileRequest, type UnlockConnectorRequest, + type OCPP16ReserveNowRequest, + type OCPP16CancelReservationRequest, } from './ocpp/1.6/Requests'; export { type ChangeAvailabilityResponse, @@ -127,6 +127,7 @@ export { type OCPP16UpdateFirmwareResponse, type SetChargingProfileResponse, type UnlockConnectorResponse, + type OCPP16ReserveNowResponse, } from './ocpp/1.6/Responses'; export { ChargePointErrorCode } from './ocpp/ChargePointErrorCode'; export { @@ -146,6 +147,7 @@ export { type ChargingStationWorkerMessage, type ChargingStationWorkerMessageData, ChargingStationWorkerMessageEvents, + type EvseStatusWorkerType, } from './ChargingStationWorker'; export type { ChargingStationInfo } from './ChargingStationInfo'; export type { @@ -163,6 +165,8 @@ export { } from './ChargingStationTemplate'; export { type ConfigurationData, + ConfigurationSection, + type LogConfiguration, type StationTemplateUrl, type StorageConfiguration, SupervisionUrlDistribution, @@ -244,9 +248,14 @@ export { OCPP20OptionalVariableName } from './ocpp/2.0/Variables'; export { OCPPVersion } from './ocpp/OCPPVersion'; export { PerformanceData } from './orm/entities/PerformanceData'; export { PerformanceRecord } from './orm/entities/PerformanceRecord'; -export type { Statistics, TimeSeries } from './Statistics'; +export type { Statistics, TimestampedData } from './Statistics'; export { type WSError, WebSocketCloseEventStatusCode, WebSocketCloseEventStatusString, } from './WebSocket'; +export { + type Reservation, + type ReservationFilterKey, + ReservationTerminationReason, +} from './ocpp/Reservation';