build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ConnectorStatus.ts
index 209cd42e42be230f72c12985fed322087b70f162..02ee914e8759557f942cf2e671df737064674be0 100644 (file)
@@ -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;