refactor: more coding style fixes
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationTemplate.ts
CommitLineData
66a7748d 1import type { ClientRequestArgs } from 'node:http'
8114d10e 2
66a7748d 3import type { ClientOptions } from 'ws'
8114d10e 4
66a7748d
JB
5import type { AutomaticTransactionGeneratorConfiguration } from './AutomaticTransactionGenerator.js'
6import type { ChargingStationOcppConfiguration } from './ChargingStationOcppConfiguration.js'
7import type { ConnectorStatus } from './ConnectorStatus.js'
8import type { EvseTemplate } from './Evse.js'
9import type { OCPPProtocol } from './ocpp/OCPPProtocol.js'
10import type { OCPPVersion } from './ocpp/OCPPVersion.js'
d4c84337
JB
11import type {
12 FirmwareStatus,
13 IncomingRequestCommand,
14 MessageTrigger,
66a7748d
JB
15 RequestCommand
16} from './ocpp/Requests.js'
9ac86a7e 17
4c2b4904 18export enum CurrentType {
9ac86a7e 19 AC = 'AC',
a807045b 20 DC = 'DC',
9ac86a7e
JB
21}
22
a02da55f 23export enum PowerUnits {
9ac86a7e 24 WATT = 'W',
a807045b 25 KILO_WATT = 'kW',
9ac86a7e
JB
26}
27
cc6e8ab5
JB
28export enum AmpereUnits {
29 MILLI_AMPERE = 'mA',
30 CENTI_AMPERE = 'cA',
31 DECI_AMPERE = 'dA',
a807045b 32 AMPERE = 'A',
cc6e8ab5
JB
33}
34
4c2b4904 35export enum Voltage {
84d4e562
JB
36 VOLTAGE_110 = 110,
37 VOLTAGE_230 = 230,
fd0c36fa 38 VOLTAGE_400 = 400,
a807045b 39 VOLTAGE_800 = 800,
84d4e562
JB
40}
41
66a7748d 42export type WsOptions = ClientOptions & ClientRequestArgs
2484ac1e 43
e1d9a0f4 44export interface FirmwareUpgrade {
15748260 45 versionUpgrade?: {
66a7748d
JB
46 patternGroup?: number
47 step?: number
48 }
49 reset?: boolean
50 failureStatus?: FirmwareStatus
e1d9a0f4 51}
b25b8684 52
e1d9a0f4 53interface CommandsSupport {
66a7748d
JB
54 incomingCommands: Record<IncomingRequestCommand, boolean>
55 outgoingCommands?: Record<RequestCommand, boolean>
e1d9a0f4 56}
65554cc3 57
d4d65733
JB
58enum x509CertificateType {
59 V2GRootCertificate = 'V2GRootCertificate',
60 MORootCertificate = 'MORootCertificate',
61 CSMSRootCertificate = 'CSMSRootCertificate',
62 ManufacturerRootCertificate = 'ManufacturerRootCertificate',
63 ChargingStationCertificate = 'ChargingStationCertificate',
a807045b 64 V2GCertificate = 'V2GCertificate',
d4d65733
JB
65}
66
e1d9a0f4 67export interface ChargingStationTemplate {
66a7748d
JB
68 templateHash?: string
69 supervisionUrls?: string | string[]
70 supervisionUrlOcppConfiguration?: boolean
71 supervisionUrlOcppKey?: string
72 supervisionUser?: string
73 supervisionPassword?: string
74 ocppVersion?: OCPPVersion
75 ocppProtocol?: OCPPProtocol
76 ocppStrictCompliance?: boolean
77 ocppPersistentConfiguration?: boolean
78 stationInfoPersistentConfiguration?: boolean
79 automaticTransactionGeneratorPersistentConfiguration?: boolean
80 wsOptions?: WsOptions
81 idTagsFile?: string
82 baseName: string
83 nameSuffix?: string
84 fixedName?: boolean
85 chargePointModel: string
86 chargePointVendor: string
87 chargePointSerialNumberPrefix?: string
88 chargeBoxSerialNumberPrefix?: string
89 firmwareVersionPattern?: string
90 firmwareVersion?: string
91 firmwareUpgrade?: FirmwareUpgrade
92 iccid?: string
93 imsi?: string
94 meterSerialNumberPrefix?: string
95 meterType?: string
96 power?: number | number[]
97 powerUnit?: PowerUnits
98 powerSharedByConnectors?: boolean
99 currentOutType?: CurrentType
100 voltageOut?: Voltage
101 numberOfPhases?: number
102 numberOfConnectors?: number | number[]
103 useConnectorId0?: boolean
104 randomConnectors?: boolean
105 resetTime?: number
106 autoRegister?: boolean
107 autoReconnectMaxRetries?: number
108 reconnectExponentialDelay?: boolean
109 registrationMaxRetries?: number
110 enableStatistics?: boolean
111 remoteAuthorization?: boolean
cfdf901d 112 /** @deprecated Replaced by remoteAuthorization */
66a7748d 113 mustAuthorizeAtRemoteStart?: boolean
0282b7c0 114 /** @deprecated Replaced by ocppStrictCompliance */
66a7748d
JB
115 payloadSchemaValidation?: boolean
116 amperageLimitationOcppKey?: string
117 amperageLimitationUnit?: AmpereUnits
118 beginEndMeterValues?: boolean
119 outOfOrderEndMeterValues?: boolean
120 meteringPerTransaction?: boolean
121 transactionDataMeterValues?: boolean
122 stopTransactionsOnStopped?: boolean
123 mainVoltageMeterValues?: boolean
124 phaseLineToLineVoltageMeterValues?: boolean
125 customValueLimitationMeterValues?: boolean
126 commandsSupport?: CommandsSupport
127 messageTriggerSupport?: Record<MessageTrigger, boolean>
128 Configuration?: ChargingStationOcppConfiguration
129 AutomaticTransactionGenerator?: AutomaticTransactionGeneratorConfiguration
130 Evses?: Record<string, EvseTemplate>
131 Connectors?: Record<string, ConnectorStatus>
132 x509Certificates?: Record<x509CertificateType, string>
e1d9a0f4 133}