X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Findex.ts;h=11f1138ce69a895aafe5a77d42dc6e384a005d2c;hb=6e2f954cbb505ad26c61d950e29685d5d49d5f00;hp=fee7eab631dc797b16b1156d6cbaa5f8605f9bf1;hpb=09989bb8458670784c7bf68854f60567f2214dd2;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/index.ts b/src/types/index.ts index fee7eab6..11f1138c 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 { @@ -163,7 +164,10 @@ export { type WsOptions, } from './ChargingStationTemplate'; export { + ApplicationProtocolVersion, type ConfigurationData, + ConfigurationSection, + type LogConfiguration, type StationTemplateUrl, type StorageConfiguration, SupervisionUrlDistribution, @@ -245,9 +249,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';