feat: add initial support for evse definition in template
[e-mobility-charging-stations-simulator.git] / src / types / internal.ts
CommitLineData
b0ba2bfc
JB
1export { OCPP16ChargePointErrorCode } from './ocpp/1.6/ChargePointErrorCode';
2export { OCPP16ChargePointStatus } from './ocpp/1.6/ChargePointStatus';
2896e06d
JB
3export * from './ocpp/1.6/ChargingProfile';
4export * from './ocpp/1.6/Configuration';
b0ba2bfc 5export { OCPP16DiagnosticsStatus } from './ocpp/1.6/DiagnosticsStatus';
2896e06d
JB
6export * from './ocpp/1.6/MeterValues';
7export * from './ocpp/1.6/Requests';
8export * from './ocpp/1.6/Responses';
9export * from './ocpp/1.6/Transaction';
28f1c574 10export * from './ocpp/2.0/Common';
2896e06d
JB
11export * from './ocpp/2.0/Requests';
12export * from './ocpp/2.0/Responses';
13export * from './ocpp/2.0/Variables';
14export * from './ocpp/ChargePointErrorCode';
15export * from './ocpp/ChargingProfile';
16export * from './ocpp/Configuration';
17export * from './ocpp/ConnectorStatusEnum';
c8aafe0d 18export { ErrorType } from './ocpp/ErrorType';
b0ba2bfc 19export { MessageType } from './ocpp/MessageType';
2896e06d 20export * from './ocpp/MeterValues';
c8aafe0d
JB
21export { OCPPProtocol } from './ocpp/OCPPProtocol';
22export { OCPPVersion } from './ocpp/OCPPVersion';
2896e06d
JB
23export * from './ocpp/Requests';
24export * from './ocpp/Responses';
25export * from './ocpp/Transaction';
26export * from './orm/entities/PerformanceData';
27export * from './orm/entities/PerformanceRecord';
b0ba2bfc
JB
28export {
29 type AutomaticTransactionGeneratorConfiguration,
30 type ChargingStationAutomaticTransactionGeneratorConfiguration,
31 IdTagDistribution,
32 type Status,
33} from './AutomaticTransactionGenerator';
2896e06d 34export * from './ChargingStationConfiguration';
c8aafe0d 35export type { ChargingStationInfo, ChargingStationInfoConfiguration } from './ChargingStationInfo';
2896e06d
JB
36export * from './ChargingStationOcppConfiguration';
37export * from './ChargingStationTemplate';
38export * from './ChargingStationWorker';
39export * from './ConfigurationData';
2585c6e9 40export type { EvseStatus } from './EvseStatus';
c8aafe0d
JB
41export type { ConnectorStatus } from './ConnectorStatus';
42export type { EmptyObject } from './EmptyObject';
43export type { HandleErrorParams } from './Error';
44export { FileType } from './FileType';
b0ba2bfc 45export type { JsonObject, JsonType } from './JsonType';
2896e06d 46export * from './MeasurandPerPhaseSampledValueTemplates';
c8aafe0d 47export type { MeasurandValues } from './MeasurandValues';
2896e06d
JB
48export * from './Statistics';
49export * from './Storage';
50export * from './UIProtocol';
b0ba2bfc
JB
51export {
52 type WSError,
53 WebSocketCloseEventStatusCode,
54 WebSocketCloseEventStatusString,
55} from './WebSocket';
2896e06d 56export * from './WorkerBroadcastChannel';