build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
... / ...
CommitLineData
1import {
2 type OCPP16ChargingProfile,
3 OCPP16ChargingProfileKindType,
4 OCPP16ChargingRateUnitType,
5 type OCPP16ChargingSchedulePeriod,
6 OCPP16RecurrencyKindType,
7} from './1.6/ChargingProfile';
8
9export type ChargingProfile = OCPP16ChargingProfile;
10
11export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod;
12
13export const ChargingProfileKindType = {
14 ...OCPP16ChargingProfileKindType,
15} as const;
16export type ChargingProfileKindType = OCPP16ChargingProfileKindType;
17
18export const RecurrencyKindType = {
19 ...OCPP16RecurrencyKindType,
20} as const;
21export type RecurrencyKindType = OCPP16RecurrencyKindType;
22
23export const ChargingRateUnitType = {
24 ...OCPP16ChargingRateUnitType,
25} as const;
26export type ChargingRateUnitType = OCPP16ChargingRateUnitType;