X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F1.6%2FConfiguration.ts;h=55528099e6496b424f56d1ab6eb097d16321455e;hb=96a52d088b4927e7bc51ea9282f502c2a6b67707;hp=ae0c352d4a8d20ca690fcba53424010b45191dfa;hpb=1af50fac1ab71fed19f11864d1644261046698a3;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/1.6/Configuration.ts b/src/types/ocpp/1.6/Configuration.ts index ae0c352d..55528099 100644 --- a/src/types/ocpp/1.6/Configuration.ts +++ b/src/types/ocpp/1.6/Configuration.ts @@ -1,3 +1,12 @@ +export enum OCPP16SupportedFeatureProfiles { + Core = 'Core', + FirmwareManagement = 'FirmwareManagement', + LocalAuthListManagement = 'LocalAuthListManagement', + Reservation = 'Reservation', + SmartCharging = 'SmartCharging', + RemoteTrigger = 'RemoteTrigger', +} + export enum OCPP16StandardParametersKey { AllowOfflineTxForUnknownId = 'AllowOfflineTxForUnknownId', AuthorizationCacheEnabled = 'AuthorizationCacheEnabled', @@ -6,8 +15,8 @@ export enum OCPP16StandardParametersKey { ClockAlignedDataInterval = 'ClockAlignedDataInterval', ConnectionTimeOut = 'ConnectionTimeOut', GetConfigurationMaxKeys = 'GetConfigurationMaxKeys', - HeartBeatInterval = 'HeartBeatInterval', HeartbeatInterval = 'HeartbeatInterval', + HeartBeatInterval = 'HeartBeatInterval', LightIntensity = 'LightIntensity', LocalAuthorizeOffline = 'LocalAuthorizeOffline', LocalPreAuthorize = 'LocalPreAuthorize', @@ -42,5 +51,9 @@ export enum OCPP16StandardParametersKey { ChargingScheduleAllowedChargingRateUnit = 'ChargingScheduleAllowedChargingRateUnit', ChargingScheduleMaxPeriods = 'ChargingScheduleMaxPeriods', ConnectorSwitch3to1PhaseSupported = 'ConnectorSwitch3to1PhaseSupported', - MaxChargingProfilesInstalled = 'MaxChargingProfilesInstalled' + MaxChargingProfilesInstalled = 'MaxChargingProfilesInstalled', +} + +export enum OCPP16VendorDefaultParametersKey { + ConnectionUrl = 'ConnectionUrl', }