test(simulator): add cloneObject() helper tests
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
index a8b73a24175ffab4a824c585062210d4db189be3..0b21f1096990918b4f787fd8f18407a4d61f5eb4 100644 (file)
@@ -1,13 +1,25 @@
 import {
-  OCPP16ChargingProfile,
+  type OCPP16ChargingProfile,
+  OCPP16ChargingProfileKindType,
   OCPP16ChargingRateUnitType,
-  OCPP16ChargingSchedulePeriod,
-} from './1.6/ChargingProfile';
+  type OCPP16ChargingSchedulePeriod,
+  OCPP16RecurrencyKindType,
+} from '../internal';
 
 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;