X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftypes%2Finternal.ts;h=86151c8f27dd8c25c13d957860d3de7b45fabf19;hb=4c3c0d59f56be4d58e906e938c00390b41e0ca7f;hp=3d9fa5cbbfe3be4b1df314560def4e9018a578d2;hpb=c8aafe0d6d0ccc1c9bbce5db003e3bb27be9044f;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/internal.ts b/src/types/internal.ts index 3d9fa5cb..86151c8f 100644 --- a/src/types/internal.ts +++ b/src/types/internal.ts @@ -1,8 +1,8 @@ -export * from './ocpp/1.6/ChargePointErrorCode'; -export * from './ocpp/1.6/ChargePointStatus'; +export { OCPP16ChargePointErrorCode } from './ocpp/1.6/ChargePointErrorCode'; +export { OCPP16ChargePointStatus } from './ocpp/1.6/ChargePointStatus'; export * from './ocpp/1.6/ChargingProfile'; export * from './ocpp/1.6/Configuration'; -export * from './ocpp/1.6/DiagnosticsStatus'; +export { OCPP16DiagnosticsStatus } from './ocpp/1.6/DiagnosticsStatus'; export * from './ocpp/1.6/MeterValues'; export * from './ocpp/1.6/Requests'; export * from './ocpp/1.6/Responses'; @@ -16,7 +16,7 @@ export * from './ocpp/ChargingProfile'; export * from './ocpp/Configuration'; export * from './ocpp/ConnectorStatusEnum'; export { ErrorType } from './ocpp/ErrorType'; -export * from './ocpp/MessageType'; +export { MessageType } from './ocpp/MessageType'; export * from './ocpp/MeterValues'; export { OCPPProtocol } from './ocpp/OCPPProtocol'; export { OCPPVersion } from './ocpp/OCPPVersion'; @@ -25,22 +25,32 @@ export * from './ocpp/Responses'; export * from './ocpp/Transaction'; export * from './orm/entities/PerformanceData'; export * from './orm/entities/PerformanceRecord'; -export * from './AutomaticTransactionGenerator'; +export { + type AutomaticTransactionGeneratorConfiguration, + type ChargingStationAutomaticTransactionGeneratorConfiguration, + IdTagDistribution, + type Status, +} from './AutomaticTransactionGenerator'; export * from './ChargingStationConfiguration'; export type { ChargingStationInfo, ChargingStationInfoConfiguration } from './ChargingStationInfo'; export * from './ChargingStationOcppConfiguration'; export * from './ChargingStationTemplate'; export * from './ChargingStationWorker'; export * from './ConfigurationData'; +export type { EvseTemplate, EvseStatus } from './Evse'; export type { ConnectorStatus } from './ConnectorStatus'; export type { EmptyObject } from './EmptyObject'; export type { HandleErrorParams } from './Error'; export { FileType } from './FileType'; -export type { JsonType, JsonObject } from './JsonType'; +export type { JsonObject, JsonType } from './JsonType'; export * from './MeasurandPerPhaseSampledValueTemplates'; export type { MeasurandValues } from './MeasurandValues'; export * from './Statistics'; export * from './Storage'; export * from './UIProtocol'; -export * from './WebSocket'; +export { + type WSError, + WebSocketCloseEventStatusCode, + WebSocketCloseEventStatusString, +} from './WebSocket'; export * from './WorkerBroadcastChannel';