Add charging stations listing to WS server commands
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
CommitLineData
12fc74d6 1import { OCPP16StandardParametersKey, OCPP16SupportedFeatureProfiles, OCPP16VendorDefaultParametersKey } from './1.6/Configuration';
c0560973
JB
2
3export type StandardParametersKey = OCPP16StandardParametersKey;
4
5export const StandardParametersKey = {
6 ...OCPP16StandardParametersKey
7};
f7a1d1a9 8
12fc74d6
JB
9export type VendorDefaultParametersKey = OCPP16VendorDefaultParametersKey;
10
11export const VendorDefaultParametersKey = {
12 ...OCPP16VendorDefaultParametersKey
13};
14
7e1dc878
JB
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
f7a1d1a9
JB
32export interface OCPPConfigurationKey {
33 key: string | StandardParametersKey;
34 readonly: boolean;
35 value?: string;
36}