build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / ChargingProfile.ts
index 67e12f970056a011b1671d4085bb3eec6c7e5164..89cf8e4d8545308d0e841f9647dde94beac746ff 100644 (file)
@@ -1,4 +1,4 @@
-import type { JsonObject } from '../../internal';
+import type { JsonObject } from '../../JsonType.js';
 
 export interface OCPP16ChargingProfile extends JsonObject {
   chargingProfileId: number;
@@ -13,8 +13,8 @@ export interface OCPP16ChargingProfile extends JsonObject {
 }
 
 export interface OCPP16ChargingSchedule extends JsonObject {
-  duration?: number;
   startSchedule?: Date;
+  duration?: number;
   chargingRateUnit: OCPP16ChargingRateUnitType;
   chargingSchedulePeriod: OCPP16ChargingSchedulePeriod[];
   minChargeRate?: number;
@@ -46,5 +46,4 @@ export enum OCPP16ChargingProfilePurposeType {
 export enum OCPP16RecurrencyKindType {
   DAILY = 'Daily',
   WEEKLY = 'Weekly',
-  MONTHLY = 'Monthly',
 }