X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F1.6%2FConfiguration.ts;h=55528099e6496b424f56d1ab6eb097d16321455e;hb=96a52d088b4927e7bc51ea9282f502c2a6b67707;hp=941a854784f7c7757d0558f9939996c4da51996c;hpb=6a64534b96acd18aa0aa7a73c0a2ee479834d4c0;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 941a8547..55528099 100644 --- a/src/types/ocpp/1.6/Configuration.ts +++ b/src/types/ocpp/1.6/Configuration.ts @@ -1,4 +1,13 @@ -export enum StandardParametersKey { +export enum OCPP16SupportedFeatureProfiles { + Core = 'Core', + FirmwareManagement = 'FirmwareManagement', + LocalAuthListManagement = 'LocalAuthListManagement', + Reservation = 'Reservation', + SmartCharging = 'SmartCharging', + RemoteTrigger = 'RemoteTrigger', +} + +export enum OCPP16StandardParametersKey { AllowOfflineTxForUnknownId = 'AllowOfflineTxForUnknownId', AuthorizationCacheEnabled = 'AuthorizationCacheEnabled', AuthorizeRemoteTxRequests = 'AuthorizeRemoteTxRequests', @@ -6,8 +15,8 @@ export enum StandardParametersKey { ClockAlignedDataInterval = 'ClockAlignedDataInterval', ConnectionTimeOut = 'ConnectionTimeOut', GetConfigurationMaxKeys = 'GetConfigurationMaxKeys', - HeartBeatInterval = 'HeartBeatInterval', HeartbeatInterval = 'HeartbeatInterval', + HeartBeatInterval = 'HeartBeatInterval', LightIntensity = 'LightIntensity', LocalAuthorizeOffline = 'LocalAuthorizeOffline', LocalPreAuthorize = 'LocalPreAuthorize', @@ -42,5 +51,9 @@ export enum StandardParametersKey { ChargingScheduleAllowedChargingRateUnit = 'ChargingScheduleAllowedChargingRateUnit', ChargingScheduleMaxPeriods = 'ChargingScheduleMaxPeriods', ConnectorSwitch3to1PhaseSupported = 'ConnectorSwitch3to1PhaseSupported', - MaxChargingProfilesInstalled = 'MaxChargingProfilesInstalled' + MaxChargingProfilesInstalled = 'MaxChargingProfilesInstalled', +} + +export enum OCPP16VendorDefaultParametersKey { + ConnectionUrl = 'ConnectionUrl', }