Enhance log message on supervision url distribution
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
... / ...
CommitLineData
1import { OCPP16StandardParametersKey, OCPP16SupportedFeatureProfiles, OCPP16VendorDefaultParametersKey } from './1.6/Configuration';
2
3export type StandardParametersKey = OCPP16StandardParametersKey;
4
5export const StandardParametersKey = {
6 ...OCPP16StandardParametersKey
7};
8
9export type VendorDefaultParametersKey = OCPP16VendorDefaultParametersKey;
10
11export const VendorDefaultParametersKey = {
12 ...OCPP16VendorDefaultParametersKey
13};
14
15export type SupportedFeatureProfiles = OCPP16SupportedFeatureProfiles;
16
17export const SupportedFeatureProfiles = {
18 ...OCPP16SupportedFeatureProfiles
19};
20
21export enum ConnectorPhaseRotation {
22 NotApplicable = 'NotApplicable',
23 Unknown = 'Unknown',
24 RST = 'RST',
25 RTS = 'RTS',
26 SRT = 'SRT',
27 STR = 'STR',
28 TRS = 'TRS',
29 TSR = 'TSR'
30}
31
32export interface OCPPConfigurationKey {
33 key: string | StandardParametersKey;
34 readonly: boolean;
35 value?: string;
36}