refactor: revert internal exports
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
index 643e38dbeba75a255fab03c89913e3a9217990f9..bd67417e40ed8a84bcd33b1d658cdf4c9efef760 100644 (file)
@@ -1,13 +1,25 @@
 import {
   type OCPP16ChargingProfile,
+  OCPP16ChargingProfileKindType,
   OCPP16ChargingRateUnitType,
   type OCPP16ChargingSchedulePeriod,
-} from '../internal';
+  OCPP16RecurrencyKindType,
+} from './1.6/ChargingProfile';
 
 export type ChargingProfile = OCPP16ChargingProfile;
 
 export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod;
 
+export const ChargingProfileKindType = {
+  ...OCPP16ChargingProfileKindType,
+} as const;
+export type ChargingProfileKindType = OCPP16ChargingProfileKindType;
+
+export const RecurrencyKindType = {
+  ...OCPP16RecurrencyKindType,
+} as const;
+export type RecurrencyKindType = OCPP16RecurrencyKindType;
+
 export const ChargingRateUnitType = {
   ...OCPP16ChargingRateUnitType,
 } as const;