X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FConnectorStatus.ts;h=33c72242b5e1983c4df4681295d6933a8cf2180a;hb=6e3d9d04815abfe85d31735fc38bdf0253d85026;hp=02ee914e8759557f942cf2e671df737064674be0;hpb=2896e06dc8d72adf7150b23c941079f622f6f37c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ConnectorStatus.ts b/src/types/ConnectorStatus.ts index 02ee914e..33c72242 100644 --- a/src/types/ConnectorStatus.ts +++ b/src/types/ConnectorStatus.ts @@ -1,10 +1,9 @@ -import type { - AvailabilityType, - ChargingProfile, - ConnectorStatusEnum, - MeterValue, - SampledValueTemplate, -} from './internal'; +import type { SampledValueTemplate } from './MeasurandPerPhaseSampledValueTemplates'; +import type { ChargingProfile } from './ocpp/ChargingProfile'; +import type { ConnectorStatusEnum } from './ocpp/ConnectorStatusEnum'; +import type { MeterValue } from './ocpp/MeterValues'; +import type { AvailabilityType } from './ocpp/Requests'; +import type { Reservation } from './ocpp/Reservation'; export type ConnectorStatus = { availability: AvailabilityType; @@ -24,4 +23,5 @@ export type ConnectorStatus = { transactionEnergyActiveImportRegisterValue?: number; // In Wh transactionBeginMeterValue?: MeterValue; chargingProfiles?: ChargingProfile[]; + reservation?: Reservation; };