Add supervision connection URL support setup through OCPP parameter
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
1 import { OCPP16StandardParametersKey, OCPP16SupportedFeatureProfiles, OCPP16VendorDefaultParametersKey } from './1.6/Configuration';
2
3 export type StandardParametersKey = OCPP16StandardParametersKey;
4
5 export const StandardParametersKey = {
6 ...OCPP16StandardParametersKey
7 };
8
9 export type VendorDefaultParametersKey = OCPP16VendorDefaultParametersKey;
10
11 export const VendorDefaultParametersKey = {
12 ...OCPP16VendorDefaultParametersKey
13 };
14
15 export type SupportedFeatureProfiles = OCPP16SupportedFeatureProfiles;
16
17 export const SupportedFeatureProfiles = {
18 ...OCPP16SupportedFeatureProfiles
19 };
20
21 export 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
32 export interface OCPPConfigurationKey {
33 key: string | StandardParametersKey;
34 readonly: boolean;
35 value?: string;
36 }