X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FConnectorStatus.ts;h=02ee914e8759557f942cf2e671df737064674be0;hb=a7bb184512dd064b5da4dc125d652b6b40ceffee;hp=209cd42e42be230f72c12985fed322087b70f162;hpb=83e00df1c1ba02de8b637ca4cb0464eb909ebb18;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ConnectorStatus.ts b/src/types/ConnectorStatus.ts index 209cd42e..02ee914e 100644 --- a/src/types/ConnectorStatus.ts +++ b/src/types/ConnectorStatus.ts @@ -1,13 +1,15 @@ -import type { SampledValueTemplate } from './MeasurandPerPhaseSampledValueTemplates'; -import type { ChargePointStatus } from './ocpp/ChargePointStatus'; -import type { ChargingProfile } from './ocpp/ChargingProfile'; -import type { MeterValue } from './ocpp/MeterValues'; -import type { AvailabilityType } from './ocpp/Requests'; +import type { + AvailabilityType, + ChargingProfile, + ConnectorStatusEnum, + MeterValue, + SampledValueTemplate, +} from './internal'; export type ConnectorStatus = { availability: AvailabilityType; - bootStatus?: ChargePointStatus; - status?: ChargePointStatus; + bootStatus?: ConnectorStatusEnum; + status?: ConnectorStatusEnum; MeterValues: SampledValueTemplate[]; authorizeIdTag?: string; idTagAuthorized?: boolean;