ocpp-ws-io 2.2.0 → 2.2.2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/dist/adapters/redis.d.mts +2 -2
- package/dist/adapters/redis.d.ts +2 -2
- package/dist/adapters/redis.js +1 -1
- package/dist/adapters/redis.mjs +1 -1
- package/dist/browser.js +1 -1
- package/dist/browser.mjs +1 -1
- package/dist/context-Cy7YIKyU.d.mts +21 -0
- package/dist/context-DcTIzhq-.d.ts +21 -0
- package/dist/express.d.mts +70 -0
- package/dist/express.d.ts +70 -0
- package/dist/express.js +2 -0
- package/dist/express.mjs +2 -0
- package/dist/fastify.d.mts +37 -0
- package/dist/fastify.d.ts +37 -0
- package/dist/fastify.js +2 -0
- package/dist/fastify.mjs +2 -0
- package/dist/hono.d.mts +51 -0
- package/dist/hono.d.ts +51 -0
- package/dist/hono.js +2 -0
- package/dist/hono.mjs +2 -0
- package/dist/{index-B98n5Et3.d.mts → index-B9rTwvbn.d.mts} +1 -1
- package/dist/{index-xx7uU8pY.d.ts → index-D5pJ3wS4.d.ts} +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +7 -7
- package/dist/index.mjs +7 -7
- package/dist/nestjs.d.mts +169 -0
- package/dist/nestjs.d.ts +169 -0
- package/dist/nestjs.js +4826 -0
- package/dist/nestjs.mjs +4826 -0
- package/dist/plugins.d.mts +1017 -26
- package/dist/plugins.d.ts +1017 -26
- package/dist/plugins.js +1 -1
- package/dist/plugins.mjs +1 -1
- package/dist/{types-BunMs45p.d.mts → types-xFfIgIuS.d.mts} +108 -3
- package/dist/{types-BunMs45p.d.ts → types-xFfIgIuS.d.ts} +108 -3
- package/package.json +174 -113
- package/dist/browser.d.mts +0 -4971
- package/dist/browser.d.ts +0 -4971
package/dist/browser.d.mts
DELETED
|
@@ -1,4971 +0,0 @@
|
|
|
1
|
-
import { LogEntry } from 'voltlog-io';
|
|
2
|
-
import Ajv from 'ajv';
|
|
3
|
-
|
|
4
|
-
type CertificateSignedStatusEnumType$2 = "Accepted" | "Rejected";
|
|
5
|
-
type HashAlgorithmEnumType$2 = "SHA256" | "SHA384" | "SHA512";
|
|
6
|
-
interface CertificateHashDataType$2 {
|
|
7
|
-
hashAlgorithm: HashAlgorithmEnumType$2;
|
|
8
|
-
issuerNameHash: string;
|
|
9
|
-
issuerKeyHash: string;
|
|
10
|
-
serialNumber: string;
|
|
11
|
-
}
|
|
12
|
-
type DeleteCertificateStatusEnumType$2 = "Accepted" | "Failed" | "NotFound";
|
|
13
|
-
type MessageTriggerEnumType$2 = "BootNotification" | "LogStatusNotification" | "FirmwareStatusNotification" | "Heartbeat" | "MeterValues" | "SignChargePointCertificate" | "StatusNotification";
|
|
14
|
-
type TriggerMessageStatusEnumType$2 = "Accepted" | "Rejected" | "NotImplemented";
|
|
15
|
-
type CertificateUseEnumType = "CentralSystemRootCertificate" | "ManufacturerRootCertificate";
|
|
16
|
-
type GetInstalledCertificateStatusEnumType$2 = "Accepted" | "NotFound";
|
|
17
|
-
type LogEnumType$2 = "DiagnosticsLog" | "SecurityLog";
|
|
18
|
-
interface LogParametersType$2 {
|
|
19
|
-
remoteLocation: string;
|
|
20
|
-
oldestTimestamp?: string;
|
|
21
|
-
latestTimestamp?: string;
|
|
22
|
-
}
|
|
23
|
-
type LogStatusEnumType$2 = "Accepted" | "Rejected" | "AcceptedCanceled";
|
|
24
|
-
type InstallCertificateStatusEnumType$2 = "Accepted" | "Failed" | "Rejected";
|
|
25
|
-
type UploadLogStatusEnumType$2 = "BadMessage" | "Idle" | "NotSupportedOperation" | "PermissionDenied" | "Uploaded" | "UploadFailure" | "Uploading";
|
|
26
|
-
type GenericStatusEnumType$2 = "Accepted" | "Rejected";
|
|
27
|
-
type FirmwareStatusEnumType$2 = "Downloaded" | "DownloadFailed" | "Downloading" | "DownloadScheduled" | "DownloadPaused" | "Idle" | "InstallationFailed" | "Installing" | "Installed" | "InstallRebooting" | "InstallScheduled" | "InstallVerificationFailed" | "InvalidSignature" | "SignatureVerified";
|
|
28
|
-
interface FirmwareType$2 {
|
|
29
|
-
location: string;
|
|
30
|
-
retrieveDateTime: string;
|
|
31
|
-
installDateTime?: string;
|
|
32
|
-
signingCertificate: string;
|
|
33
|
-
signature: string;
|
|
34
|
-
}
|
|
35
|
-
type UpdateFirmwareStatusEnumType$2 = "Accepted" | "Rejected" | "AcceptedCanceled" | "InvalidCertificate" | "RevokedCertificate";
|
|
36
|
-
interface AuthorizeRequest$2 {
|
|
37
|
-
idTag: string;
|
|
38
|
-
}
|
|
39
|
-
interface AuthorizeResponse$2 {
|
|
40
|
-
idTagInfo: {
|
|
41
|
-
expiryDate?: string;
|
|
42
|
-
parentIdTag?: string;
|
|
43
|
-
status: "Accepted" | "Blocked" | "Expired" | "Invalid" | "ConcurrentTx";
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
interface BootNotificationRequest$2 {
|
|
47
|
-
chargePointVendor: string;
|
|
48
|
-
chargePointModel: string;
|
|
49
|
-
chargePointSerialNumber?: string;
|
|
50
|
-
chargeBoxSerialNumber?: string;
|
|
51
|
-
firmwareVersion?: string;
|
|
52
|
-
iccid?: string;
|
|
53
|
-
imsi?: string;
|
|
54
|
-
meterType?: string;
|
|
55
|
-
meterSerialNumber?: string;
|
|
56
|
-
}
|
|
57
|
-
interface BootNotificationResponse$2 {
|
|
58
|
-
status: "Accepted" | "Pending" | "Rejected";
|
|
59
|
-
currentTime: string;
|
|
60
|
-
interval: number;
|
|
61
|
-
}
|
|
62
|
-
interface CancelReservationRequest$2 {
|
|
63
|
-
reservationId: number;
|
|
64
|
-
}
|
|
65
|
-
interface CancelReservationResponse$2 {
|
|
66
|
-
status: "Accepted" | "Rejected";
|
|
67
|
-
}
|
|
68
|
-
interface CertificateSignedRequest$2 {
|
|
69
|
-
certificateChain: string;
|
|
70
|
-
}
|
|
71
|
-
interface CertificateSignedResponse$2 {
|
|
72
|
-
status: CertificateSignedStatusEnumType$2;
|
|
73
|
-
}
|
|
74
|
-
interface ChangeAvailabilityRequest$2 {
|
|
75
|
-
connectorId: number;
|
|
76
|
-
type: "Inoperative" | "Operative";
|
|
77
|
-
}
|
|
78
|
-
interface ChangeAvailabilityResponse$2 {
|
|
79
|
-
status: "Accepted" | "Rejected" | "Scheduled";
|
|
80
|
-
}
|
|
81
|
-
interface ChangeConfigurationRequest {
|
|
82
|
-
key: string;
|
|
83
|
-
value: string;
|
|
84
|
-
}
|
|
85
|
-
interface ChangeConfigurationResponse {
|
|
86
|
-
status: "Accepted" | "Rejected" | "RebootRequired" | "NotSupported";
|
|
87
|
-
}
|
|
88
|
-
interface ClearCacheRequest$2 {
|
|
89
|
-
}
|
|
90
|
-
interface ClearCacheResponse$2 {
|
|
91
|
-
status: "Accepted" | "Rejected";
|
|
92
|
-
}
|
|
93
|
-
interface ClearChargingProfileRequest$2 {
|
|
94
|
-
id?: number;
|
|
95
|
-
connectorId?: number;
|
|
96
|
-
chargingProfilePurpose?: "ChargePointMaxProfile" | "TxDefaultProfile" | "TxProfile";
|
|
97
|
-
stackLevel?: number;
|
|
98
|
-
}
|
|
99
|
-
interface ClearChargingProfileResponse$2 {
|
|
100
|
-
status: "Accepted" | "Unknown";
|
|
101
|
-
}
|
|
102
|
-
interface DataTransferRequest$2 {
|
|
103
|
-
vendorId: string;
|
|
104
|
-
messageId?: string;
|
|
105
|
-
data?: string;
|
|
106
|
-
}
|
|
107
|
-
interface DataTransferResponse$2 {
|
|
108
|
-
status: "Accepted" | "Rejected" | "UnknownMessageId" | "UnknownVendorId";
|
|
109
|
-
data?: string;
|
|
110
|
-
}
|
|
111
|
-
interface DeleteCertificateRequest$2 {
|
|
112
|
-
certificateHashData: CertificateHashDataType$2;
|
|
113
|
-
}
|
|
114
|
-
interface DeleteCertificateResponse$2 {
|
|
115
|
-
status: DeleteCertificateStatusEnumType$2;
|
|
116
|
-
}
|
|
117
|
-
interface DiagnosticsStatusNotificationRequest {
|
|
118
|
-
status: "Idle" | "Uploaded" | "UploadFailed" | "Uploading";
|
|
119
|
-
}
|
|
120
|
-
interface DiagnosticsStatusNotificationResponse {
|
|
121
|
-
}
|
|
122
|
-
interface ExtendedTriggerMessageRequest {
|
|
123
|
-
requestedMessage: MessageTriggerEnumType$2;
|
|
124
|
-
connectorId?: number;
|
|
125
|
-
}
|
|
126
|
-
interface ExtendedTriggerMessageResponse {
|
|
127
|
-
status: TriggerMessageStatusEnumType$2;
|
|
128
|
-
}
|
|
129
|
-
interface FirmwareStatusNotificationRequest$2 {
|
|
130
|
-
status: "Downloaded" | "DownloadFailed" | "Downloading" | "Idle" | "InstallationFailed" | "Installing" | "Installed";
|
|
131
|
-
}
|
|
132
|
-
interface FirmwareStatusNotificationResponse$2 {
|
|
133
|
-
}
|
|
134
|
-
interface GetCompositeScheduleRequest$2 {
|
|
135
|
-
connectorId: number;
|
|
136
|
-
duration: number;
|
|
137
|
-
chargingRateUnit?: "A" | "W";
|
|
138
|
-
}
|
|
139
|
-
interface GetCompositeScheduleResponse$2 {
|
|
140
|
-
status: "Accepted" | "Rejected";
|
|
141
|
-
connectorId?: number;
|
|
142
|
-
scheduleStart?: string;
|
|
143
|
-
chargingSchedule?: {
|
|
144
|
-
duration?: number;
|
|
145
|
-
startSchedule?: string;
|
|
146
|
-
chargingRateUnit: "A" | "W";
|
|
147
|
-
chargingSchedulePeriod: ({
|
|
148
|
-
startPeriod: number;
|
|
149
|
-
limit: number;
|
|
150
|
-
numberPhases?: number;
|
|
151
|
-
})[];
|
|
152
|
-
minChargingRate?: number;
|
|
153
|
-
};
|
|
154
|
-
}
|
|
155
|
-
interface GetConfigurationRequest {
|
|
156
|
-
key?: string[];
|
|
157
|
-
}
|
|
158
|
-
interface GetConfigurationResponse {
|
|
159
|
-
configurationKey?: ({
|
|
160
|
-
key: string;
|
|
161
|
-
readonly: boolean;
|
|
162
|
-
value?: string;
|
|
163
|
-
})[];
|
|
164
|
-
unknownKey?: string[];
|
|
165
|
-
}
|
|
166
|
-
interface GetDiagnosticsRequest {
|
|
167
|
-
location: string;
|
|
168
|
-
retries?: number;
|
|
169
|
-
retryInterval?: number;
|
|
170
|
-
startTime?: string;
|
|
171
|
-
stopTime?: string;
|
|
172
|
-
}
|
|
173
|
-
interface GetDiagnosticsResponse {
|
|
174
|
-
fileName?: string;
|
|
175
|
-
}
|
|
176
|
-
interface GetInstalledCertificateIdsRequest$2 {
|
|
177
|
-
certificateType: CertificateUseEnumType;
|
|
178
|
-
}
|
|
179
|
-
interface GetInstalledCertificateIdsResponse$2 {
|
|
180
|
-
certificateHashData?: CertificateHashDataType$2[];
|
|
181
|
-
status: GetInstalledCertificateStatusEnumType$2;
|
|
182
|
-
}
|
|
183
|
-
interface GetLocalListVersionRequest$2 {
|
|
184
|
-
}
|
|
185
|
-
interface GetLocalListVersionResponse$2 {
|
|
186
|
-
listVersion: number;
|
|
187
|
-
}
|
|
188
|
-
interface GetLogRequest$2 {
|
|
189
|
-
log: LogParametersType$2;
|
|
190
|
-
logType: LogEnumType$2;
|
|
191
|
-
requestId: number;
|
|
192
|
-
retries?: number;
|
|
193
|
-
retryInterval?: number;
|
|
194
|
-
}
|
|
195
|
-
interface GetLogResponse$2 {
|
|
196
|
-
status: LogStatusEnumType$2;
|
|
197
|
-
filename?: string;
|
|
198
|
-
}
|
|
199
|
-
interface HeartbeatRequest$2 {
|
|
200
|
-
}
|
|
201
|
-
interface HeartbeatResponse$2 {
|
|
202
|
-
currentTime: string;
|
|
203
|
-
}
|
|
204
|
-
interface InstallCertificateRequest$2 {
|
|
205
|
-
certificateType: CertificateUseEnumType;
|
|
206
|
-
certificate: string;
|
|
207
|
-
}
|
|
208
|
-
interface InstallCertificateResponse$2 {
|
|
209
|
-
status: InstallCertificateStatusEnumType$2;
|
|
210
|
-
}
|
|
211
|
-
interface LogStatusNotificationRequest$2 {
|
|
212
|
-
status: UploadLogStatusEnumType$2;
|
|
213
|
-
requestId?: number;
|
|
214
|
-
}
|
|
215
|
-
interface LogStatusNotificationResponse$2 {
|
|
216
|
-
}
|
|
217
|
-
interface MeterValuesRequest$2 {
|
|
218
|
-
connectorId: number;
|
|
219
|
-
transactionId?: number;
|
|
220
|
-
meterValue: ({
|
|
221
|
-
timestamp: string;
|
|
222
|
-
sampledValue: ({
|
|
223
|
-
value: string;
|
|
224
|
-
context?: "Interruption.Begin" | "Interruption.End" | "Sample.Clock" | "Sample.Periodic" | "Transaction.Begin" | "Transaction.End" | "Trigger" | "Other";
|
|
225
|
-
format?: "Raw" | "SignedData";
|
|
226
|
-
measurand?: "Energy.Active.Export.Register" | "Energy.Active.Import.Register" | "Energy.Reactive.Export.Register" | "Energy.Reactive.Import.Register" | "Energy.Active.Export.Interval" | "Energy.Active.Import.Interval" | "Energy.Reactive.Export.Interval" | "Energy.Reactive.Import.Interval" | "Power.Active.Export" | "Power.Active.Import" | "Power.Offered" | "Power.Reactive.Export" | "Power.Reactive.Import" | "Power.Factor" | "Current.Import" | "Current.Export" | "Current.Offered" | "Voltage" | "Frequency" | "Temperature" | "SoC" | "RPM";
|
|
227
|
-
phase?: "L1" | "L2" | "L3" | "N" | "L1-N" | "L2-N" | "L3-N" | "L1-L2" | "L2-L3" | "L3-L1";
|
|
228
|
-
location?: "Cable" | "EV" | "Inlet" | "Outlet" | "Body";
|
|
229
|
-
unit?: "Wh" | "kWh" | "varh" | "kvarh" | "W" | "kW" | "VA" | "kVA" | "var" | "kvar" | "A" | "V" | "K" | "Celcius" | "Celsius" | "Fahrenheit" | "Percent";
|
|
230
|
-
})[];
|
|
231
|
-
})[];
|
|
232
|
-
}
|
|
233
|
-
interface MeterValuesResponse$2 {
|
|
234
|
-
}
|
|
235
|
-
interface RemoteStartTransactionRequest {
|
|
236
|
-
connectorId?: number;
|
|
237
|
-
idTag: string;
|
|
238
|
-
chargingProfile?: {
|
|
239
|
-
chargingProfileId: number;
|
|
240
|
-
transactionId?: number;
|
|
241
|
-
stackLevel: number;
|
|
242
|
-
chargingProfilePurpose: "ChargePointMaxProfile" | "TxDefaultProfile" | "TxProfile";
|
|
243
|
-
chargingProfileKind: "Absolute" | "Recurring" | "Relative";
|
|
244
|
-
recurrencyKind?: "Daily" | "Weekly";
|
|
245
|
-
validFrom?: string;
|
|
246
|
-
validTo?: string;
|
|
247
|
-
chargingSchedule: {
|
|
248
|
-
duration?: number;
|
|
249
|
-
startSchedule?: string;
|
|
250
|
-
chargingRateUnit: "A" | "W";
|
|
251
|
-
chargingSchedulePeriod: ({
|
|
252
|
-
startPeriod: number;
|
|
253
|
-
limit: number;
|
|
254
|
-
numberPhases?: number;
|
|
255
|
-
})[];
|
|
256
|
-
minChargingRate?: number;
|
|
257
|
-
};
|
|
258
|
-
};
|
|
259
|
-
}
|
|
260
|
-
interface RemoteStartTransactionResponse {
|
|
261
|
-
status: "Accepted" | "Rejected";
|
|
262
|
-
}
|
|
263
|
-
interface RemoteStopTransactionRequest {
|
|
264
|
-
transactionId: number;
|
|
265
|
-
}
|
|
266
|
-
interface RemoteStopTransactionResponse {
|
|
267
|
-
status: "Accepted" | "Rejected";
|
|
268
|
-
}
|
|
269
|
-
interface ReserveNowRequest$2 {
|
|
270
|
-
connectorId: number;
|
|
271
|
-
expiryDate: string;
|
|
272
|
-
idTag: string;
|
|
273
|
-
parentIdTag?: string;
|
|
274
|
-
reservationId: number;
|
|
275
|
-
}
|
|
276
|
-
interface ReserveNowResponse$2 {
|
|
277
|
-
status: "Accepted" | "Faulted" | "Occupied" | "Rejected" | "Unavailable";
|
|
278
|
-
}
|
|
279
|
-
interface ResetRequest$2 {
|
|
280
|
-
type: "Hard" | "Soft";
|
|
281
|
-
}
|
|
282
|
-
interface ResetResponse$2 {
|
|
283
|
-
status: "Accepted" | "Rejected";
|
|
284
|
-
}
|
|
285
|
-
interface SecurityEventNotificationRequest$2 {
|
|
286
|
-
type: string;
|
|
287
|
-
timestamp: string;
|
|
288
|
-
techInfo?: string;
|
|
289
|
-
}
|
|
290
|
-
interface SecurityEventNotificationResponse$2 {
|
|
291
|
-
}
|
|
292
|
-
interface SendLocalListRequest$2 {
|
|
293
|
-
listVersion: number;
|
|
294
|
-
localAuthorizationList?: ({
|
|
295
|
-
idTag: string;
|
|
296
|
-
idTagInfo?: {
|
|
297
|
-
expiryDate?: string;
|
|
298
|
-
parentIdTag?: string;
|
|
299
|
-
status: "Accepted" | "Blocked" | "Expired" | "Invalid" | "ConcurrentTx";
|
|
300
|
-
};
|
|
301
|
-
})[];
|
|
302
|
-
updateType: "Differential" | "Full";
|
|
303
|
-
}
|
|
304
|
-
interface SendLocalListResponse$2 {
|
|
305
|
-
status: "Accepted" | "Failed" | "NotSupported" | "VersionMismatch";
|
|
306
|
-
}
|
|
307
|
-
interface SetChargingProfileRequest$2 {
|
|
308
|
-
connectorId: number;
|
|
309
|
-
csChargingProfiles: {
|
|
310
|
-
chargingProfileId: number;
|
|
311
|
-
transactionId?: number;
|
|
312
|
-
stackLevel: number;
|
|
313
|
-
chargingProfilePurpose: "ChargePointMaxProfile" | "TxDefaultProfile" | "TxProfile";
|
|
314
|
-
chargingProfileKind: "Absolute" | "Recurring" | "Relative";
|
|
315
|
-
recurrencyKind?: "Daily" | "Weekly";
|
|
316
|
-
validFrom?: string;
|
|
317
|
-
validTo?: string;
|
|
318
|
-
chargingSchedule: {
|
|
319
|
-
duration?: number;
|
|
320
|
-
startSchedule?: string;
|
|
321
|
-
chargingRateUnit: "A" | "W";
|
|
322
|
-
chargingSchedulePeriod: ({
|
|
323
|
-
startPeriod: number;
|
|
324
|
-
limit: number;
|
|
325
|
-
numberPhases?: number;
|
|
326
|
-
})[];
|
|
327
|
-
minChargingRate?: number;
|
|
328
|
-
};
|
|
329
|
-
};
|
|
330
|
-
}
|
|
331
|
-
interface SetChargingProfileResponse$2 {
|
|
332
|
-
status: "Accepted" | "Rejected" | "NotSupported";
|
|
333
|
-
}
|
|
334
|
-
interface SignCertificateRequest$2 {
|
|
335
|
-
csr: string;
|
|
336
|
-
}
|
|
337
|
-
interface SignCertificateResponse$2 {
|
|
338
|
-
status: GenericStatusEnumType$2;
|
|
339
|
-
}
|
|
340
|
-
interface SignedFirmwareStatusNotificationRequest {
|
|
341
|
-
status: FirmwareStatusEnumType$2;
|
|
342
|
-
requestId?: number;
|
|
343
|
-
}
|
|
344
|
-
interface SignedFirmwareStatusNotificationResponse {
|
|
345
|
-
}
|
|
346
|
-
interface SignedUpdateFirmwareRequest {
|
|
347
|
-
retries?: number;
|
|
348
|
-
retryInterval?: number;
|
|
349
|
-
requestId: number;
|
|
350
|
-
firmware: FirmwareType$2;
|
|
351
|
-
}
|
|
352
|
-
interface SignedUpdateFirmwareResponse {
|
|
353
|
-
status: UpdateFirmwareStatusEnumType$2;
|
|
354
|
-
}
|
|
355
|
-
interface StartTransactionRequest {
|
|
356
|
-
connectorId: number;
|
|
357
|
-
idTag: string;
|
|
358
|
-
meterStart: number;
|
|
359
|
-
reservationId?: number;
|
|
360
|
-
timestamp: string;
|
|
361
|
-
}
|
|
362
|
-
interface StartTransactionResponse {
|
|
363
|
-
idTagInfo: {
|
|
364
|
-
expiryDate?: string;
|
|
365
|
-
parentIdTag?: string;
|
|
366
|
-
status: "Accepted" | "Blocked" | "Expired" | "Invalid" | "ConcurrentTx";
|
|
367
|
-
};
|
|
368
|
-
transactionId: number;
|
|
369
|
-
}
|
|
370
|
-
interface StatusNotificationRequest$2 {
|
|
371
|
-
connectorId: number;
|
|
372
|
-
errorCode: "ConnectorLockFailure" | "EVCommunicationError" | "GroundFailure" | "HighTemperature" | "InternalError" | "LocalListConflict" | "NoError" | "OtherError" | "OverCurrentFailure" | "PowerMeterFailure" | "PowerSwitchFailure" | "ReaderFailure" | "ResetFailure" | "UnderVoltage" | "OverVoltage" | "WeakSignal";
|
|
373
|
-
info?: string;
|
|
374
|
-
status: "Available" | "Preparing" | "Charging" | "SuspendedEVSE" | "SuspendedEV" | "Finishing" | "Reserved" | "Unavailable" | "Faulted";
|
|
375
|
-
timestamp?: string;
|
|
376
|
-
vendorId?: string;
|
|
377
|
-
vendorErrorCode?: string;
|
|
378
|
-
}
|
|
379
|
-
interface StatusNotificationResponse$2 {
|
|
380
|
-
}
|
|
381
|
-
interface StopTransactionRequest {
|
|
382
|
-
idTag?: string;
|
|
383
|
-
meterStop: number;
|
|
384
|
-
timestamp: string;
|
|
385
|
-
transactionId: number;
|
|
386
|
-
reason?: "EmergencyStop" | "EVDisconnected" | "HardReset" | "Local" | "Other" | "PowerLoss" | "Reboot" | "Remote" | "SoftReset" | "UnlockCommand" | "DeAuthorized";
|
|
387
|
-
transactionData?: ({
|
|
388
|
-
timestamp: string;
|
|
389
|
-
sampledValue: ({
|
|
390
|
-
value: string;
|
|
391
|
-
context?: "Interruption.Begin" | "Interruption.End" | "Sample.Clock" | "Sample.Periodic" | "Transaction.Begin" | "Transaction.End" | "Trigger" | "Other";
|
|
392
|
-
format?: "Raw" | "SignedData";
|
|
393
|
-
measurand?: "Energy.Active.Export.Register" | "Energy.Active.Import.Register" | "Energy.Reactive.Export.Register" | "Energy.Reactive.Import.Register" | "Energy.Active.Export.Interval" | "Energy.Active.Import.Interval" | "Energy.Reactive.Export.Interval" | "Energy.Reactive.Import.Interval" | "Power.Active.Export" | "Power.Active.Import" | "Power.Offered" | "Power.Reactive.Export" | "Power.Reactive.Import" | "Power.Factor" | "Current.Import" | "Current.Export" | "Current.Offered" | "Voltage" | "Frequency" | "Temperature" | "SoC" | "RPM";
|
|
394
|
-
phase?: "L1" | "L2" | "L3" | "N" | "L1-N" | "L2-N" | "L3-N" | "L1-L2" | "L2-L3" | "L3-L1";
|
|
395
|
-
location?: "Cable" | "EV" | "Inlet" | "Outlet" | "Body";
|
|
396
|
-
unit?: "Wh" | "kWh" | "varh" | "kvarh" | "W" | "kW" | "VA" | "kVA" | "var" | "kvar" | "A" | "V" | "K" | "Celcius" | "Celsius" | "Fahrenheit" | "Percent";
|
|
397
|
-
})[];
|
|
398
|
-
})[];
|
|
399
|
-
}
|
|
400
|
-
interface StopTransactionResponse {
|
|
401
|
-
idTagInfo?: {
|
|
402
|
-
expiryDate?: string;
|
|
403
|
-
parentIdTag?: string;
|
|
404
|
-
status: "Accepted" | "Blocked" | "Expired" | "Invalid" | "ConcurrentTx";
|
|
405
|
-
};
|
|
406
|
-
}
|
|
407
|
-
interface TriggerMessageRequest$2 {
|
|
408
|
-
requestedMessage: "BootNotification" | "DiagnosticsStatusNotification" | "FirmwareStatusNotification" | "Heartbeat" | "MeterValues" | "StatusNotification";
|
|
409
|
-
connectorId?: number;
|
|
410
|
-
}
|
|
411
|
-
interface TriggerMessageResponse$2 {
|
|
412
|
-
status: "Accepted" | "Rejected" | "NotImplemented";
|
|
413
|
-
}
|
|
414
|
-
interface UnlockConnectorRequest$2 {
|
|
415
|
-
connectorId: number;
|
|
416
|
-
}
|
|
417
|
-
interface UnlockConnectorResponse$2 {
|
|
418
|
-
status: "Unlocked" | "UnlockFailed" | "NotSupported";
|
|
419
|
-
}
|
|
420
|
-
interface UpdateFirmwareRequest$2 {
|
|
421
|
-
location: string;
|
|
422
|
-
retries?: number;
|
|
423
|
-
retrieveDate: string;
|
|
424
|
-
retryInterval?: number;
|
|
425
|
-
}
|
|
426
|
-
interface UpdateFirmwareResponse$2 {
|
|
427
|
-
}
|
|
428
|
-
interface OCPP16Methods {
|
|
429
|
-
Authorize: {
|
|
430
|
-
request: AuthorizeRequest$2;
|
|
431
|
-
response: AuthorizeResponse$2;
|
|
432
|
-
};
|
|
433
|
-
BootNotification: {
|
|
434
|
-
request: BootNotificationRequest$2;
|
|
435
|
-
response: BootNotificationResponse$2;
|
|
436
|
-
};
|
|
437
|
-
CancelReservation: {
|
|
438
|
-
request: CancelReservationRequest$2;
|
|
439
|
-
response: CancelReservationResponse$2;
|
|
440
|
-
};
|
|
441
|
-
CertificateSigned: {
|
|
442
|
-
request: CertificateSignedRequest$2;
|
|
443
|
-
response: CertificateSignedResponse$2;
|
|
444
|
-
};
|
|
445
|
-
ChangeAvailability: {
|
|
446
|
-
request: ChangeAvailabilityRequest$2;
|
|
447
|
-
response: ChangeAvailabilityResponse$2;
|
|
448
|
-
};
|
|
449
|
-
ChangeConfiguration: {
|
|
450
|
-
request: ChangeConfigurationRequest;
|
|
451
|
-
response: ChangeConfigurationResponse;
|
|
452
|
-
};
|
|
453
|
-
ClearCache: {
|
|
454
|
-
request: ClearCacheRequest$2;
|
|
455
|
-
response: ClearCacheResponse$2;
|
|
456
|
-
};
|
|
457
|
-
ClearChargingProfile: {
|
|
458
|
-
request: ClearChargingProfileRequest$2;
|
|
459
|
-
response: ClearChargingProfileResponse$2;
|
|
460
|
-
};
|
|
461
|
-
DataTransfer: {
|
|
462
|
-
request: DataTransferRequest$2;
|
|
463
|
-
response: DataTransferResponse$2;
|
|
464
|
-
};
|
|
465
|
-
DeleteCertificate: {
|
|
466
|
-
request: DeleteCertificateRequest$2;
|
|
467
|
-
response: DeleteCertificateResponse$2;
|
|
468
|
-
};
|
|
469
|
-
DiagnosticsStatusNotification: {
|
|
470
|
-
request: DiagnosticsStatusNotificationRequest;
|
|
471
|
-
response: DiagnosticsStatusNotificationResponse;
|
|
472
|
-
};
|
|
473
|
-
ExtendedTriggerMessage: {
|
|
474
|
-
request: ExtendedTriggerMessageRequest;
|
|
475
|
-
response: ExtendedTriggerMessageResponse;
|
|
476
|
-
};
|
|
477
|
-
FirmwareStatusNotification: {
|
|
478
|
-
request: FirmwareStatusNotificationRequest$2;
|
|
479
|
-
response: FirmwareStatusNotificationResponse$2;
|
|
480
|
-
};
|
|
481
|
-
GetCompositeSchedule: {
|
|
482
|
-
request: GetCompositeScheduleRequest$2;
|
|
483
|
-
response: GetCompositeScheduleResponse$2;
|
|
484
|
-
};
|
|
485
|
-
GetConfiguration: {
|
|
486
|
-
request: GetConfigurationRequest;
|
|
487
|
-
response: GetConfigurationResponse;
|
|
488
|
-
};
|
|
489
|
-
GetDiagnostics: {
|
|
490
|
-
request: GetDiagnosticsRequest;
|
|
491
|
-
response: GetDiagnosticsResponse;
|
|
492
|
-
};
|
|
493
|
-
GetInstalledCertificateIds: {
|
|
494
|
-
request: GetInstalledCertificateIdsRequest$2;
|
|
495
|
-
response: GetInstalledCertificateIdsResponse$2;
|
|
496
|
-
};
|
|
497
|
-
GetLocalListVersion: {
|
|
498
|
-
request: GetLocalListVersionRequest$2;
|
|
499
|
-
response: GetLocalListVersionResponse$2;
|
|
500
|
-
};
|
|
501
|
-
GetLog: {
|
|
502
|
-
request: GetLogRequest$2;
|
|
503
|
-
response: GetLogResponse$2;
|
|
504
|
-
};
|
|
505
|
-
Heartbeat: {
|
|
506
|
-
request: HeartbeatRequest$2;
|
|
507
|
-
response: HeartbeatResponse$2;
|
|
508
|
-
};
|
|
509
|
-
InstallCertificate: {
|
|
510
|
-
request: InstallCertificateRequest$2;
|
|
511
|
-
response: InstallCertificateResponse$2;
|
|
512
|
-
};
|
|
513
|
-
LogStatusNotification: {
|
|
514
|
-
request: LogStatusNotificationRequest$2;
|
|
515
|
-
response: LogStatusNotificationResponse$2;
|
|
516
|
-
};
|
|
517
|
-
MeterValues: {
|
|
518
|
-
request: MeterValuesRequest$2;
|
|
519
|
-
response: MeterValuesResponse$2;
|
|
520
|
-
};
|
|
521
|
-
RemoteStartTransaction: {
|
|
522
|
-
request: RemoteStartTransactionRequest;
|
|
523
|
-
response: RemoteStartTransactionResponse;
|
|
524
|
-
};
|
|
525
|
-
RemoteStopTransaction: {
|
|
526
|
-
request: RemoteStopTransactionRequest;
|
|
527
|
-
response: RemoteStopTransactionResponse;
|
|
528
|
-
};
|
|
529
|
-
ReserveNow: {
|
|
530
|
-
request: ReserveNowRequest$2;
|
|
531
|
-
response: ReserveNowResponse$2;
|
|
532
|
-
};
|
|
533
|
-
Reset: {
|
|
534
|
-
request: ResetRequest$2;
|
|
535
|
-
response: ResetResponse$2;
|
|
536
|
-
};
|
|
537
|
-
SecurityEventNotification: {
|
|
538
|
-
request: SecurityEventNotificationRequest$2;
|
|
539
|
-
response: SecurityEventNotificationResponse$2;
|
|
540
|
-
};
|
|
541
|
-
SendLocalList: {
|
|
542
|
-
request: SendLocalListRequest$2;
|
|
543
|
-
response: SendLocalListResponse$2;
|
|
544
|
-
};
|
|
545
|
-
SetChargingProfile: {
|
|
546
|
-
request: SetChargingProfileRequest$2;
|
|
547
|
-
response: SetChargingProfileResponse$2;
|
|
548
|
-
};
|
|
549
|
-
SignCertificate: {
|
|
550
|
-
request: SignCertificateRequest$2;
|
|
551
|
-
response: SignCertificateResponse$2;
|
|
552
|
-
};
|
|
553
|
-
SignedFirmwareStatusNotification: {
|
|
554
|
-
request: SignedFirmwareStatusNotificationRequest;
|
|
555
|
-
response: SignedFirmwareStatusNotificationResponse;
|
|
556
|
-
};
|
|
557
|
-
SignedUpdateFirmware: {
|
|
558
|
-
request: SignedUpdateFirmwareRequest;
|
|
559
|
-
response: SignedUpdateFirmwareResponse;
|
|
560
|
-
};
|
|
561
|
-
StartTransaction: {
|
|
562
|
-
request: StartTransactionRequest;
|
|
563
|
-
response: StartTransactionResponse;
|
|
564
|
-
};
|
|
565
|
-
StatusNotification: {
|
|
566
|
-
request: StatusNotificationRequest$2;
|
|
567
|
-
response: StatusNotificationResponse$2;
|
|
568
|
-
};
|
|
569
|
-
StopTransaction: {
|
|
570
|
-
request: StopTransactionRequest;
|
|
571
|
-
response: StopTransactionResponse;
|
|
572
|
-
};
|
|
573
|
-
TriggerMessage: {
|
|
574
|
-
request: TriggerMessageRequest$2;
|
|
575
|
-
response: TriggerMessageResponse$2;
|
|
576
|
-
};
|
|
577
|
-
UnlockConnector: {
|
|
578
|
-
request: UnlockConnectorRequest$2;
|
|
579
|
-
response: UnlockConnectorResponse$2;
|
|
580
|
-
};
|
|
581
|
-
UpdateFirmware: {
|
|
582
|
-
request: UpdateFirmwareRequest$2;
|
|
583
|
-
response: UpdateFirmwareResponse$2;
|
|
584
|
-
};
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
interface CustomDataType$1 {
|
|
588
|
-
vendorId: string;
|
|
589
|
-
}
|
|
590
|
-
type HashAlgorithmEnumType$1 = "SHA256" | "SHA384" | "SHA512";
|
|
591
|
-
type IdTokenEnumType = "Central" | "eMAID" | "ISO14443" | "ISO15693" | "KeyCode" | "Local" | "MacAddress" | "NoAuthorization";
|
|
592
|
-
interface AdditionalInfoType$1 {
|
|
593
|
-
customData?: CustomDataType$1;
|
|
594
|
-
additionalIdToken: string;
|
|
595
|
-
type: string;
|
|
596
|
-
}
|
|
597
|
-
interface IdTokenType$1 {
|
|
598
|
-
customData?: CustomDataType$1;
|
|
599
|
-
additionalInfo?: AdditionalInfoType$1[];
|
|
600
|
-
idToken: string;
|
|
601
|
-
type: IdTokenEnumType;
|
|
602
|
-
}
|
|
603
|
-
interface OCSPRequestDataType$1 {
|
|
604
|
-
customData?: CustomDataType$1;
|
|
605
|
-
hashAlgorithm: HashAlgorithmEnumType$1;
|
|
606
|
-
issuerNameHash: string;
|
|
607
|
-
issuerKeyHash: string;
|
|
608
|
-
serialNumber: string;
|
|
609
|
-
responderURL: string;
|
|
610
|
-
}
|
|
611
|
-
type AuthorizationStatusEnumType$1 = "Accepted" | "Blocked" | "ConcurrentTx" | "Expired" | "Invalid" | "NoCredit" | "NotAllowedTypeEVSE" | "NotAtThisLocation" | "NotAtThisTime" | "Unknown";
|
|
612
|
-
type AuthorizeCertificateStatusEnumType$1 = "Accepted" | "SignatureError" | "CertificateExpired" | "CertificateRevoked" | "NoCertificateAvailable" | "CertChainError" | "ContractCancelled";
|
|
613
|
-
type MessageFormatEnumType$1 = "ASCII" | "HTML" | "URI" | "UTF8";
|
|
614
|
-
interface IdTokenInfoType$1 {
|
|
615
|
-
customData?: CustomDataType$1;
|
|
616
|
-
status: AuthorizationStatusEnumType$1;
|
|
617
|
-
cacheExpiryDateTime?: string;
|
|
618
|
-
chargingPriority?: number;
|
|
619
|
-
language1?: string;
|
|
620
|
-
evseId?: number[];
|
|
621
|
-
groupIdToken?: IdTokenType$1;
|
|
622
|
-
language2?: string;
|
|
623
|
-
personalMessage?: MessageContentType$1;
|
|
624
|
-
}
|
|
625
|
-
interface MessageContentType$1 {
|
|
626
|
-
customData?: CustomDataType$1;
|
|
627
|
-
format: MessageFormatEnumType$1;
|
|
628
|
-
language?: string;
|
|
629
|
-
content: string;
|
|
630
|
-
}
|
|
631
|
-
type BootReasonEnumType$1 = "ApplicationReset" | "FirmwareUpdate" | "LocalReset" | "PowerUp" | "RemoteReset" | "ScheduledReset" | "Triggered" | "Unknown" | "Watchdog";
|
|
632
|
-
interface ChargingStationType$1 {
|
|
633
|
-
customData?: CustomDataType$1;
|
|
634
|
-
serialNumber?: string;
|
|
635
|
-
model: string;
|
|
636
|
-
modem?: ModemType$1;
|
|
637
|
-
vendorName: string;
|
|
638
|
-
firmwareVersion?: string;
|
|
639
|
-
}
|
|
640
|
-
interface ModemType$1 {
|
|
641
|
-
customData?: CustomDataType$1;
|
|
642
|
-
iccid?: string;
|
|
643
|
-
imsi?: string;
|
|
644
|
-
}
|
|
645
|
-
type RegistrationStatusEnumType$1 = "Accepted" | "Pending" | "Rejected";
|
|
646
|
-
interface StatusInfoType$1 {
|
|
647
|
-
customData?: CustomDataType$1;
|
|
648
|
-
reasonCode: string;
|
|
649
|
-
additionalInfo?: string;
|
|
650
|
-
}
|
|
651
|
-
type CancelReservationStatusEnumType$1 = "Accepted" | "Rejected";
|
|
652
|
-
type CertificateSigningUseEnumType$1 = "ChargingStationCertificate" | "V2GCertificate";
|
|
653
|
-
type CertificateSignedStatusEnumType$1 = "Accepted" | "Rejected";
|
|
654
|
-
type OperationalStatusEnumType$1 = "Inoperative" | "Operative";
|
|
655
|
-
interface EVSEType$1 {
|
|
656
|
-
customData?: CustomDataType$1;
|
|
657
|
-
id: number;
|
|
658
|
-
connectorId?: number;
|
|
659
|
-
}
|
|
660
|
-
type ChangeAvailabilityStatusEnumType$1 = "Accepted" | "Rejected" | "Scheduled";
|
|
661
|
-
type ClearCacheStatusEnumType$1 = "Accepted" | "Rejected";
|
|
662
|
-
type ChargingProfilePurposeEnumType$1 = "ChargingStationExternalConstraints" | "ChargingStationMaxProfile" | "TxDefaultProfile" | "TxProfile";
|
|
663
|
-
interface ClearChargingProfileType$1 {
|
|
664
|
-
customData?: CustomDataType$1;
|
|
665
|
-
evseId?: number;
|
|
666
|
-
chargingProfilePurpose?: ChargingProfilePurposeEnumType$1;
|
|
667
|
-
stackLevel?: number;
|
|
668
|
-
}
|
|
669
|
-
type ClearChargingProfileStatusEnumType$1 = "Accepted" | "Unknown";
|
|
670
|
-
type ClearMessageStatusEnumType$1 = "Accepted" | "Unknown";
|
|
671
|
-
type ChargingLimitSourceEnumType = "EMS" | "Other" | "SO" | "CSO";
|
|
672
|
-
type ClearMonitoringStatusEnumType$1 = "Accepted" | "Rejected" | "NotFound";
|
|
673
|
-
interface ClearMonitoringResultType$1 {
|
|
674
|
-
customData?: CustomDataType$1;
|
|
675
|
-
status: ClearMonitoringStatusEnumType$1;
|
|
676
|
-
id: number;
|
|
677
|
-
statusInfo?: StatusInfoType$1;
|
|
678
|
-
}
|
|
679
|
-
interface CertificateHashDataType$1 {
|
|
680
|
-
customData?: CustomDataType$1;
|
|
681
|
-
hashAlgorithm: HashAlgorithmEnumType$1;
|
|
682
|
-
issuerNameHash: string;
|
|
683
|
-
issuerKeyHash: string;
|
|
684
|
-
serialNumber: string;
|
|
685
|
-
}
|
|
686
|
-
type CustomerInformationStatusEnumType$1 = "Accepted" | "Rejected" | "Invalid";
|
|
687
|
-
type DataTransferStatusEnumType$1 = "Accepted" | "Rejected" | "UnknownMessageId" | "UnknownVendorId";
|
|
688
|
-
type DeleteCertificateStatusEnumType$1 = "Accepted" | "Failed" | "NotFound";
|
|
689
|
-
type FirmwareStatusEnumType$1 = "Downloaded" | "DownloadFailed" | "Downloading" | "DownloadScheduled" | "DownloadPaused" | "Idle" | "InstallationFailed" | "Installing" | "Installed" | "InstallRebooting" | "InstallScheduled" | "InstallVerificationFailed" | "InvalidSignature" | "SignatureVerified";
|
|
690
|
-
type CertificateActionEnumType$1 = "Install" | "Update";
|
|
691
|
-
type Iso15118EVCertificateStatusEnumType$1 = "Accepted" | "Failed";
|
|
692
|
-
type ReportBaseEnumType$1 = "ConfigurationInventory" | "FullInventory" | "SummaryInventory";
|
|
693
|
-
type GenericDeviceModelStatusEnumType$1 = "Accepted" | "Rejected" | "NotSupported" | "EmptyResultSet";
|
|
694
|
-
type GetCertificateStatusEnumType$1 = "Accepted" | "Failed";
|
|
695
|
-
interface ChargingProfileCriterionType$1 {
|
|
696
|
-
customData?: CustomDataType$1;
|
|
697
|
-
chargingProfilePurpose?: ChargingProfilePurposeEnumType$1;
|
|
698
|
-
stackLevel?: number;
|
|
699
|
-
chargingProfileId?: number[];
|
|
700
|
-
chargingLimitSource?: ChargingLimitSourceEnumType[];
|
|
701
|
-
}
|
|
702
|
-
type GetChargingProfileStatusEnumType$1 = "Accepted" | "NoProfiles";
|
|
703
|
-
type ChargingRateUnitEnumType$1 = "W" | "A";
|
|
704
|
-
type GenericStatusEnumType$1 = "Accepted" | "Rejected";
|
|
705
|
-
interface ChargingSchedulePeriodType$1 {
|
|
706
|
-
customData?: CustomDataType$1;
|
|
707
|
-
startPeriod: number;
|
|
708
|
-
limit: number;
|
|
709
|
-
numberPhases?: number;
|
|
710
|
-
phaseToUse?: number;
|
|
711
|
-
}
|
|
712
|
-
interface CompositeScheduleType$1 {
|
|
713
|
-
customData?: CustomDataType$1;
|
|
714
|
-
chargingSchedulePeriod: ChargingSchedulePeriodType$1[];
|
|
715
|
-
evseId: number;
|
|
716
|
-
duration: number;
|
|
717
|
-
scheduleStart: string;
|
|
718
|
-
chargingRateUnit: ChargingRateUnitEnumType$1;
|
|
719
|
-
}
|
|
720
|
-
type MessagePriorityEnumType$1 = "AlwaysFront" | "InFront" | "NormalCycle";
|
|
721
|
-
type MessageStateEnumType$1 = "Charging" | "Faulted" | "Idle" | "Unavailable";
|
|
722
|
-
type GetDisplayMessagesStatusEnumType$1 = "Accepted" | "Unknown";
|
|
723
|
-
type GetCertificateIdUseEnumType$1 = "V2GRootCertificate" | "MORootCertificate" | "CSMSRootCertificate" | "V2GCertificateChain" | "ManufacturerRootCertificate";
|
|
724
|
-
type GetInstalledCertificateStatusEnumType$1 = "Accepted" | "NotFound";
|
|
725
|
-
interface CertificateHashDataChainType$1 {
|
|
726
|
-
customData?: CustomDataType$1;
|
|
727
|
-
certificateHashData: CertificateHashDataType$1;
|
|
728
|
-
certificateType: GetCertificateIdUseEnumType$1;
|
|
729
|
-
childCertificateHashData?: CertificateHashDataType$1[];
|
|
730
|
-
}
|
|
731
|
-
type LogEnumType$1 = "DiagnosticsLog" | "SecurityLog";
|
|
732
|
-
interface LogParametersType$1 {
|
|
733
|
-
customData?: CustomDataType$1;
|
|
734
|
-
remoteLocation: string;
|
|
735
|
-
oldestTimestamp?: string;
|
|
736
|
-
latestTimestamp?: string;
|
|
737
|
-
}
|
|
738
|
-
type LogStatusEnumType$1 = "Accepted" | "Rejected" | "AcceptedCanceled";
|
|
739
|
-
type MonitoringCriterionEnumType$1 = "ThresholdMonitoring" | "DeltaMonitoring" | "PeriodicMonitoring";
|
|
740
|
-
interface ComponentType$1 {
|
|
741
|
-
customData?: CustomDataType$1;
|
|
742
|
-
evse?: EVSEType$1;
|
|
743
|
-
name: string;
|
|
744
|
-
instance?: string;
|
|
745
|
-
}
|
|
746
|
-
interface ComponentVariableType$1 {
|
|
747
|
-
customData?: CustomDataType$1;
|
|
748
|
-
component: ComponentType$1;
|
|
749
|
-
variable?: VariableType$1;
|
|
750
|
-
}
|
|
751
|
-
interface VariableType$1 {
|
|
752
|
-
customData?: CustomDataType$1;
|
|
753
|
-
name: string;
|
|
754
|
-
instance?: string;
|
|
755
|
-
}
|
|
756
|
-
type ComponentCriterionEnumType$1 = "Active" | "Available" | "Enabled" | "Problem";
|
|
757
|
-
type AttributeEnumType$1 = "Actual" | "Target" | "MinSet" | "MaxSet";
|
|
758
|
-
interface GetVariableDataType$1 {
|
|
759
|
-
customData?: CustomDataType$1;
|
|
760
|
-
attributeType?: AttributeEnumType$1;
|
|
761
|
-
component: ComponentType$1;
|
|
762
|
-
variable: VariableType$1;
|
|
763
|
-
}
|
|
764
|
-
type GetVariableStatusEnumType$1 = "Accepted" | "Rejected" | "UnknownComponent" | "UnknownVariable" | "NotSupportedAttributeType";
|
|
765
|
-
interface GetVariableResultType$1 {
|
|
766
|
-
customData?: CustomDataType$1;
|
|
767
|
-
attributeStatusInfo?: StatusInfoType$1;
|
|
768
|
-
attributeStatus: GetVariableStatusEnumType$1;
|
|
769
|
-
attributeType?: AttributeEnumType$1;
|
|
770
|
-
attributeValue?: string;
|
|
771
|
-
component: ComponentType$1;
|
|
772
|
-
variable: VariableType$1;
|
|
773
|
-
}
|
|
774
|
-
type InstallCertificateUseEnumType$1 = "V2GRootCertificate" | "MORootCertificate" | "CSMSRootCertificate" | "ManufacturerRootCertificate";
|
|
775
|
-
type InstallCertificateStatusEnumType$1 = "Accepted" | "Rejected" | "Failed";
|
|
776
|
-
type UploadLogStatusEnumType$1 = "BadMessage" | "Idle" | "NotSupportedOperation" | "PermissionDenied" | "Uploaded" | "UploadFailure" | "Uploading" | "AcceptedCanceled";
|
|
777
|
-
type LocationEnumType$1 = "Body" | "Cable" | "EV" | "Inlet" | "Outlet";
|
|
778
|
-
type MeasurandEnumType$1 = "Current.Export" | "Current.Import" | "Current.Offered" | "Energy.Active.Export.Register" | "Energy.Active.Import.Register" | "Energy.Reactive.Export.Register" | "Energy.Reactive.Import.Register" | "Energy.Active.Export.Interval" | "Energy.Active.Import.Interval" | "Energy.Active.Net" | "Energy.Reactive.Export.Interval" | "Energy.Reactive.Import.Interval" | "Energy.Reactive.Net" | "Energy.Apparent.Net" | "Energy.Apparent.Import" | "Energy.Apparent.Export" | "Frequency" | "Power.Active.Export" | "Power.Active.Import" | "Power.Factor" | "Power.Offered" | "Power.Reactive.Export" | "Power.Reactive.Import" | "SoC" | "Voltage";
|
|
779
|
-
type PhaseEnumType$1 = "L1" | "L2" | "L3" | "N" | "L1-N" | "L2-N" | "L3-N" | "L1-L2" | "L2-L3" | "L3-L1";
|
|
780
|
-
type ReadingContextEnumType$1 = "Interruption.Begin" | "Interruption.End" | "Other" | "Sample.Clock" | "Sample.Periodic" | "Transaction.Begin" | "Transaction.End" | "Trigger";
|
|
781
|
-
interface MeterValueType$1 {
|
|
782
|
-
customData?: CustomDataType$1;
|
|
783
|
-
sampledValue: SampledValueType$1[];
|
|
784
|
-
timestamp: string;
|
|
785
|
-
}
|
|
786
|
-
interface SampledValueType$1 {
|
|
787
|
-
customData?: CustomDataType$1;
|
|
788
|
-
value: number;
|
|
789
|
-
context?: ReadingContextEnumType$1;
|
|
790
|
-
measurand?: MeasurandEnumType$1;
|
|
791
|
-
phase?: PhaseEnumType$1;
|
|
792
|
-
location?: LocationEnumType$1;
|
|
793
|
-
signedMeterValue?: SignedMeterValueType$1;
|
|
794
|
-
unitOfMeasure?: UnitOfMeasureType$1;
|
|
795
|
-
}
|
|
796
|
-
interface SignedMeterValueType$1 {
|
|
797
|
-
customData?: CustomDataType$1;
|
|
798
|
-
signedMeterData: string;
|
|
799
|
-
signingMethod: string;
|
|
800
|
-
encodingMethod: string;
|
|
801
|
-
publicKey: string;
|
|
802
|
-
}
|
|
803
|
-
interface UnitOfMeasureType$1 {
|
|
804
|
-
customData?: CustomDataType$1;
|
|
805
|
-
unit?: string;
|
|
806
|
-
multiplier?: number;
|
|
807
|
-
}
|
|
808
|
-
type CostKindEnumType$1 = "CarbonDioxideEmission" | "RelativePricePercentage" | "RenewableGenerationPercentage";
|
|
809
|
-
interface ChargingLimitType$1 {
|
|
810
|
-
customData?: CustomDataType$1;
|
|
811
|
-
chargingLimitSource: ChargingLimitSourceEnumType;
|
|
812
|
-
isGridCritical?: boolean;
|
|
813
|
-
}
|
|
814
|
-
interface ChargingScheduleType$1 {
|
|
815
|
-
customData?: CustomDataType$1;
|
|
816
|
-
id: number;
|
|
817
|
-
startSchedule?: string;
|
|
818
|
-
duration?: number;
|
|
819
|
-
chargingRateUnit: ChargingRateUnitEnumType$1;
|
|
820
|
-
chargingSchedulePeriod: ChargingSchedulePeriodType$1[];
|
|
821
|
-
minChargingRate?: number;
|
|
822
|
-
salesTariff?: SalesTariffType$1;
|
|
823
|
-
}
|
|
824
|
-
interface ConsumptionCostType$1 {
|
|
825
|
-
customData?: CustomDataType$1;
|
|
826
|
-
startValue: number;
|
|
827
|
-
cost: CostType$1[];
|
|
828
|
-
}
|
|
829
|
-
interface CostType$1 {
|
|
830
|
-
customData?: CustomDataType$1;
|
|
831
|
-
costKind: CostKindEnumType$1;
|
|
832
|
-
amount: number;
|
|
833
|
-
amountMultiplier?: number;
|
|
834
|
-
}
|
|
835
|
-
interface RelativeTimeIntervalType$1 {
|
|
836
|
-
customData?: CustomDataType$1;
|
|
837
|
-
start: number;
|
|
838
|
-
duration?: number;
|
|
839
|
-
}
|
|
840
|
-
interface SalesTariffEntryType$1 {
|
|
841
|
-
customData?: CustomDataType$1;
|
|
842
|
-
relativeTimeInterval: RelativeTimeIntervalType$1;
|
|
843
|
-
ePriceLevel?: number;
|
|
844
|
-
consumptionCost?: ConsumptionCostType$1[];
|
|
845
|
-
}
|
|
846
|
-
interface SalesTariffType$1 {
|
|
847
|
-
customData?: CustomDataType$1;
|
|
848
|
-
id: number;
|
|
849
|
-
salesTariffDescription?: string;
|
|
850
|
-
numEPriceLevels?: number;
|
|
851
|
-
salesTariffEntry: SalesTariffEntryType$1[];
|
|
852
|
-
}
|
|
853
|
-
interface MessageInfoType$1 {
|
|
854
|
-
customData?: CustomDataType$1;
|
|
855
|
-
display?: ComponentType$1;
|
|
856
|
-
id: number;
|
|
857
|
-
priority: MessagePriorityEnumType$1;
|
|
858
|
-
state?: MessageStateEnumType$1;
|
|
859
|
-
startDateTime?: string;
|
|
860
|
-
endDateTime?: string;
|
|
861
|
-
transactionId?: string;
|
|
862
|
-
message: MessageContentType$1;
|
|
863
|
-
}
|
|
864
|
-
type EnergyTransferModeEnumType$1 = "DC" | "AC_single_phase" | "AC_two_phase" | "AC_three_phase";
|
|
865
|
-
interface ACChargingParametersType$1 {
|
|
866
|
-
customData?: CustomDataType$1;
|
|
867
|
-
energyAmount: number;
|
|
868
|
-
evMinCurrent: number;
|
|
869
|
-
evMaxCurrent: number;
|
|
870
|
-
evMaxVoltage: number;
|
|
871
|
-
}
|
|
872
|
-
interface ChargingNeedsType$1 {
|
|
873
|
-
customData?: CustomDataType$1;
|
|
874
|
-
acChargingParameters?: ACChargingParametersType$1;
|
|
875
|
-
dcChargingParameters?: DCChargingParametersType$1;
|
|
876
|
-
requestedEnergyTransfer: EnergyTransferModeEnumType$1;
|
|
877
|
-
departureTime?: string;
|
|
878
|
-
}
|
|
879
|
-
interface DCChargingParametersType$1 {
|
|
880
|
-
customData?: CustomDataType$1;
|
|
881
|
-
evMaxCurrent: number;
|
|
882
|
-
evMaxVoltage: number;
|
|
883
|
-
energyAmount?: number;
|
|
884
|
-
evMaxPower?: number;
|
|
885
|
-
stateOfCharge?: number;
|
|
886
|
-
evEnergyCapacity?: number;
|
|
887
|
-
fullSoC?: number;
|
|
888
|
-
bulkSoC?: number;
|
|
889
|
-
}
|
|
890
|
-
type NotifyEVChargingNeedsStatusEnumType$1 = "Accepted" | "Rejected" | "Processing";
|
|
891
|
-
type EventNotificationEnumType$1 = "HardWiredNotification" | "HardWiredMonitor" | "PreconfiguredMonitor" | "CustomMonitor";
|
|
892
|
-
type EventTriggerEnumType$1 = "Alerting" | "Delta" | "Periodic";
|
|
893
|
-
interface EventDataType$1 {
|
|
894
|
-
customData?: CustomDataType$1;
|
|
895
|
-
eventId: number;
|
|
896
|
-
timestamp: string;
|
|
897
|
-
trigger: EventTriggerEnumType$1;
|
|
898
|
-
cause?: number;
|
|
899
|
-
actualValue: string;
|
|
900
|
-
techCode?: string;
|
|
901
|
-
techInfo?: string;
|
|
902
|
-
cleared?: boolean;
|
|
903
|
-
transactionId?: string;
|
|
904
|
-
component: ComponentType$1;
|
|
905
|
-
variableMonitoringId?: number;
|
|
906
|
-
eventNotificationType: EventNotificationEnumType$1;
|
|
907
|
-
variable: VariableType$1;
|
|
908
|
-
}
|
|
909
|
-
type MonitorEnumType$1 = "UpperThreshold" | "LowerThreshold" | "Delta" | "Periodic" | "PeriodicClockAligned";
|
|
910
|
-
interface MonitoringDataType$1 {
|
|
911
|
-
customData?: CustomDataType$1;
|
|
912
|
-
component: ComponentType$1;
|
|
913
|
-
variable: VariableType$1;
|
|
914
|
-
variableMonitoring: VariableMonitoringType$1[];
|
|
915
|
-
}
|
|
916
|
-
interface VariableMonitoringType$1 {
|
|
917
|
-
customData?: CustomDataType$1;
|
|
918
|
-
id: number;
|
|
919
|
-
transaction: boolean;
|
|
920
|
-
value: number;
|
|
921
|
-
type: MonitorEnumType$1;
|
|
922
|
-
severity: number;
|
|
923
|
-
}
|
|
924
|
-
type DataEnumType$1 = "string" | "decimal" | "integer" | "dateTime" | "boolean" | "OptionList" | "SequenceList" | "MemberList";
|
|
925
|
-
type MutabilityEnumType$1 = "ReadOnly" | "WriteOnly" | "ReadWrite";
|
|
926
|
-
interface ReportDataType$1 {
|
|
927
|
-
customData?: CustomDataType$1;
|
|
928
|
-
component: ComponentType$1;
|
|
929
|
-
variable: VariableType$1;
|
|
930
|
-
variableAttribute: VariableAttributeType$1[];
|
|
931
|
-
variableCharacteristics?: VariableCharacteristicsType$1;
|
|
932
|
-
}
|
|
933
|
-
interface VariableAttributeType$1 {
|
|
934
|
-
customData?: CustomDataType$1;
|
|
935
|
-
type?: AttributeEnumType$1;
|
|
936
|
-
value?: string;
|
|
937
|
-
mutability?: MutabilityEnumType$1;
|
|
938
|
-
persistent?: boolean;
|
|
939
|
-
constant?: boolean;
|
|
940
|
-
}
|
|
941
|
-
interface VariableCharacteristicsType$1 {
|
|
942
|
-
customData?: CustomDataType$1;
|
|
943
|
-
unit?: string;
|
|
944
|
-
dataType: DataEnumType$1;
|
|
945
|
-
minLimit?: number;
|
|
946
|
-
maxLimit?: number;
|
|
947
|
-
valuesList?: string;
|
|
948
|
-
supportsMonitoring: boolean;
|
|
949
|
-
}
|
|
950
|
-
type PublishFirmwareStatusEnumType$1 = "Idle" | "DownloadScheduled" | "Downloading" | "Downloaded" | "Published" | "DownloadFailed" | "DownloadPaused" | "InvalidChecksum" | "ChecksumVerified" | "PublishFailed";
|
|
951
|
-
type ChargingProfileKindEnumType$1 = "Absolute" | "Recurring" | "Relative";
|
|
952
|
-
type RecurrencyKindEnumType$1 = "Daily" | "Weekly";
|
|
953
|
-
interface ChargingProfileType$1 {
|
|
954
|
-
customData?: CustomDataType$1;
|
|
955
|
-
id: number;
|
|
956
|
-
stackLevel: number;
|
|
957
|
-
chargingProfilePurpose: ChargingProfilePurposeEnumType$1;
|
|
958
|
-
chargingProfileKind: ChargingProfileKindEnumType$1;
|
|
959
|
-
recurrencyKind?: RecurrencyKindEnumType$1;
|
|
960
|
-
validFrom?: string;
|
|
961
|
-
validTo?: string;
|
|
962
|
-
chargingSchedule: ChargingScheduleType$1[];
|
|
963
|
-
transactionId?: string;
|
|
964
|
-
}
|
|
965
|
-
type RequestStartStopStatusEnumType$1 = "Accepted" | "Rejected";
|
|
966
|
-
type ReservationUpdateStatusEnumType$1 = "Expired" | "Removed";
|
|
967
|
-
type ConnectorEnumType = "cCCS1" | "cCCS2" | "cG105" | "cTesla" | "cType1" | "cType2" | "s309-1P-16A" | "s309-1P-32A" | "s309-3P-16A" | "s309-3P-32A" | "sBS1361" | "sCEE-7-7" | "sType2" | "sType3" | "Other1PhMax16A" | "Other1PhOver16A" | "Other3Ph" | "Pan" | "wInductive" | "wResonant" | "Undetermined" | "Unknown";
|
|
968
|
-
type ReserveNowStatusEnumType$1 = "Accepted" | "Faulted" | "Occupied" | "Rejected" | "Unavailable";
|
|
969
|
-
type ResetEnumType$1 = "Immediate" | "OnIdle";
|
|
970
|
-
type ResetStatusEnumType$1 = "Accepted" | "Rejected" | "Scheduled";
|
|
971
|
-
type UpdateEnumType$1 = "Differential" | "Full";
|
|
972
|
-
interface AuthorizationData$1 {
|
|
973
|
-
customData?: CustomDataType$1;
|
|
974
|
-
idToken: IdTokenType$1;
|
|
975
|
-
idTokenInfo?: IdTokenInfoType$1;
|
|
976
|
-
}
|
|
977
|
-
type SendLocalListStatusEnumType$1 = "Accepted" | "Failed" | "VersionMismatch";
|
|
978
|
-
type ChargingProfileStatusEnumType$1 = "Accepted" | "Rejected";
|
|
979
|
-
type DisplayMessageStatusEnumType$1 = "Accepted" | "NotSupportedMessageFormat" | "Rejected" | "NotSupportedPriority" | "NotSupportedState" | "UnknownTransaction";
|
|
980
|
-
type MonitoringBaseEnumType$1 = "All" | "FactoryDefault" | "HardWiredOnly";
|
|
981
|
-
type APNAuthenticationEnumType$1 = "CHAP" | "NONE" | "PAP" | "AUTO";
|
|
982
|
-
type OCPPInterfaceEnumType$1 = "Wired0" | "Wired1" | "Wired2" | "Wired3" | "Wireless0" | "Wireless1" | "Wireless2" | "Wireless3";
|
|
983
|
-
type OCPPTransportEnumType$1 = "JSON" | "SOAP";
|
|
984
|
-
type OCPPVersionEnumType$1 = "OCPP12" | "OCPP15" | "OCPP16" | "OCPP20";
|
|
985
|
-
type VPNEnumType$1 = "IKEv2" | "IPSec" | "L2TP" | "PPTP";
|
|
986
|
-
interface APNType$1 {
|
|
987
|
-
customData?: CustomDataType$1;
|
|
988
|
-
apn: string;
|
|
989
|
-
apnUserName?: string;
|
|
990
|
-
apnPassword?: string;
|
|
991
|
-
simPin?: number;
|
|
992
|
-
preferredNetwork?: string;
|
|
993
|
-
useOnlyPreferredNetwork?: boolean;
|
|
994
|
-
apnAuthentication: APNAuthenticationEnumType$1;
|
|
995
|
-
}
|
|
996
|
-
interface NetworkConnectionProfileType$1 {
|
|
997
|
-
customData?: CustomDataType$1;
|
|
998
|
-
apn?: APNType$1;
|
|
999
|
-
ocppVersion: OCPPVersionEnumType$1;
|
|
1000
|
-
ocppTransport: OCPPTransportEnumType$1;
|
|
1001
|
-
ocppCsmsUrl: string;
|
|
1002
|
-
messageTimeout: number;
|
|
1003
|
-
securityProfile: number;
|
|
1004
|
-
ocppInterface: OCPPInterfaceEnumType$1;
|
|
1005
|
-
vpn?: VPNType$1;
|
|
1006
|
-
}
|
|
1007
|
-
interface VPNType$1 {
|
|
1008
|
-
customData?: CustomDataType$1;
|
|
1009
|
-
server: string;
|
|
1010
|
-
user: string;
|
|
1011
|
-
group?: string;
|
|
1012
|
-
password: string;
|
|
1013
|
-
key: string;
|
|
1014
|
-
type: VPNEnumType$1;
|
|
1015
|
-
}
|
|
1016
|
-
type SetNetworkProfileStatusEnumType$1 = "Accepted" | "Rejected" | "Failed";
|
|
1017
|
-
interface SetMonitoringDataType$1 {
|
|
1018
|
-
customData?: CustomDataType$1;
|
|
1019
|
-
id?: number;
|
|
1020
|
-
transaction?: boolean;
|
|
1021
|
-
value: number;
|
|
1022
|
-
type: MonitorEnumType$1;
|
|
1023
|
-
severity: number;
|
|
1024
|
-
component: ComponentType$1;
|
|
1025
|
-
variable: VariableType$1;
|
|
1026
|
-
}
|
|
1027
|
-
type SetMonitoringStatusEnumType$1 = "Accepted" | "UnknownComponent" | "UnknownVariable" | "UnsupportedMonitorType" | "Rejected" | "Duplicate";
|
|
1028
|
-
interface SetMonitoringResultType$1 {
|
|
1029
|
-
customData?: CustomDataType$1;
|
|
1030
|
-
id?: number;
|
|
1031
|
-
statusInfo?: StatusInfoType$1;
|
|
1032
|
-
status: SetMonitoringStatusEnumType$1;
|
|
1033
|
-
type: MonitorEnumType$1;
|
|
1034
|
-
component: ComponentType$1;
|
|
1035
|
-
variable: VariableType$1;
|
|
1036
|
-
severity: number;
|
|
1037
|
-
}
|
|
1038
|
-
interface SetVariableDataType$1 {
|
|
1039
|
-
customData?: CustomDataType$1;
|
|
1040
|
-
attributeType?: AttributeEnumType$1;
|
|
1041
|
-
attributeValue: string;
|
|
1042
|
-
component: ComponentType$1;
|
|
1043
|
-
variable: VariableType$1;
|
|
1044
|
-
}
|
|
1045
|
-
type SetVariableStatusEnumType$1 = "Accepted" | "Rejected" | "UnknownComponent" | "UnknownVariable" | "NotSupportedAttributeType" | "RebootRequired";
|
|
1046
|
-
interface SetVariableResultType$1 {
|
|
1047
|
-
customData?: CustomDataType$1;
|
|
1048
|
-
attributeType?: AttributeEnumType$1;
|
|
1049
|
-
attributeStatus: SetVariableStatusEnumType$1;
|
|
1050
|
-
attributeStatusInfo?: StatusInfoType$1;
|
|
1051
|
-
component: ComponentType$1;
|
|
1052
|
-
variable: VariableType$1;
|
|
1053
|
-
}
|
|
1054
|
-
type ConnectorStatusEnumType$1 = "Available" | "Occupied" | "Reserved" | "Unavailable" | "Faulted";
|
|
1055
|
-
type ChargingStateEnumType$1 = "Charging" | "EVConnected" | "SuspendedEV" | "SuspendedEVSE" | "Idle";
|
|
1056
|
-
type ReasonEnumType$1 = "DeAuthorized" | "EmergencyStop" | "EnergyLimitReached" | "EVDisconnected" | "GroundFault" | "ImmediateReset" | "Local" | "LocalOutOfCredit" | "MasterPass" | "Other" | "OvercurrentFault" | "PowerLoss" | "PowerQuality" | "Reboot" | "Remote" | "SOCLimitReached" | "StoppedByEV" | "TimeLimitReached" | "Timeout";
|
|
1057
|
-
type TransactionEventEnumType$1 = "Ended" | "Started" | "Updated";
|
|
1058
|
-
type TriggerReasonEnumType$1 = "Authorized" | "CablePluggedIn" | "ChargingRateChanged" | "ChargingStateChanged" | "Deauthorized" | "EnergyLimitReached" | "EVCommunicationLost" | "EVConnectTimeout" | "MeterValueClock" | "MeterValuePeriodic" | "TimeLimitReached" | "Trigger" | "UnlockCommand" | "StopAuthorized" | "EVDeparted" | "EVDetected" | "RemoteStop" | "RemoteStart" | "AbnormalCondition" | "SignedDataReceived" | "ResetCommand";
|
|
1059
|
-
interface TransactionType$1 {
|
|
1060
|
-
customData?: CustomDataType$1;
|
|
1061
|
-
transactionId: string;
|
|
1062
|
-
chargingState?: ChargingStateEnumType$1;
|
|
1063
|
-
timeSpentCharging?: number;
|
|
1064
|
-
stoppedReason?: ReasonEnumType$1;
|
|
1065
|
-
remoteStartId?: number;
|
|
1066
|
-
}
|
|
1067
|
-
type MessageTriggerEnumType$1 = "BootNotification" | "LogStatusNotification" | "FirmwareStatusNotification" | "Heartbeat" | "MeterValues" | "SignChargingStationCertificate" | "SignV2GCertificate" | "StatusNotification" | "TransactionEvent" | "SignCombinedCertificate" | "PublishFirmwareStatusNotification";
|
|
1068
|
-
type TriggerMessageStatusEnumType$1 = "Accepted" | "Rejected" | "NotImplemented";
|
|
1069
|
-
type UnlockStatusEnumType$1 = "Unlocked" | "UnlockFailed" | "OngoingAuthorizedTransaction" | "UnknownConnector";
|
|
1070
|
-
type UnpublishFirmwareStatusEnumType$1 = "DownloadOngoing" | "NoFirmware" | "Unpublished";
|
|
1071
|
-
interface FirmwareType$1 {
|
|
1072
|
-
customData?: CustomDataType$1;
|
|
1073
|
-
location: string;
|
|
1074
|
-
retrieveDateTime: string;
|
|
1075
|
-
installDateTime?: string;
|
|
1076
|
-
signingCertificate?: string;
|
|
1077
|
-
signature?: string;
|
|
1078
|
-
}
|
|
1079
|
-
type UpdateFirmwareStatusEnumType$1 = "Accepted" | "Rejected" | "AcceptedCanceled" | "InvalidCertificate" | "RevokedCertificate";
|
|
1080
|
-
interface AuthorizeRequest$1 {
|
|
1081
|
-
customData?: CustomDataType$1;
|
|
1082
|
-
idToken: IdTokenType$1;
|
|
1083
|
-
certificate?: string;
|
|
1084
|
-
iso15118CertificateHashData?: OCSPRequestDataType$1[];
|
|
1085
|
-
}
|
|
1086
|
-
interface AuthorizeResponse$1 {
|
|
1087
|
-
customData?: CustomDataType$1;
|
|
1088
|
-
idTokenInfo: IdTokenInfoType$1;
|
|
1089
|
-
certificateStatus?: AuthorizeCertificateStatusEnumType$1;
|
|
1090
|
-
}
|
|
1091
|
-
interface BootNotificationRequest$1 {
|
|
1092
|
-
customData?: CustomDataType$1;
|
|
1093
|
-
chargingStation: ChargingStationType$1;
|
|
1094
|
-
reason: BootReasonEnumType$1;
|
|
1095
|
-
}
|
|
1096
|
-
interface BootNotificationResponse$1 {
|
|
1097
|
-
customData?: CustomDataType$1;
|
|
1098
|
-
currentTime: string;
|
|
1099
|
-
interval: number;
|
|
1100
|
-
status: RegistrationStatusEnumType$1;
|
|
1101
|
-
statusInfo?: StatusInfoType$1;
|
|
1102
|
-
}
|
|
1103
|
-
interface CancelReservationRequest$1 {
|
|
1104
|
-
customData?: CustomDataType$1;
|
|
1105
|
-
reservationId: number;
|
|
1106
|
-
}
|
|
1107
|
-
interface CancelReservationResponse$1 {
|
|
1108
|
-
customData?: CustomDataType$1;
|
|
1109
|
-
status: CancelReservationStatusEnumType$1;
|
|
1110
|
-
statusInfo?: StatusInfoType$1;
|
|
1111
|
-
}
|
|
1112
|
-
interface CertificateSignedRequest$1 {
|
|
1113
|
-
customData?: CustomDataType$1;
|
|
1114
|
-
certificateChain: string;
|
|
1115
|
-
certificateType?: CertificateSigningUseEnumType$1;
|
|
1116
|
-
}
|
|
1117
|
-
interface CertificateSignedResponse$1 {
|
|
1118
|
-
customData?: CustomDataType$1;
|
|
1119
|
-
status: CertificateSignedStatusEnumType$1;
|
|
1120
|
-
statusInfo?: StatusInfoType$1;
|
|
1121
|
-
}
|
|
1122
|
-
interface ChangeAvailabilityRequest$1 {
|
|
1123
|
-
customData?: CustomDataType$1;
|
|
1124
|
-
evse?: EVSEType$1;
|
|
1125
|
-
operationalStatus: OperationalStatusEnumType$1;
|
|
1126
|
-
}
|
|
1127
|
-
interface ChangeAvailabilityResponse$1 {
|
|
1128
|
-
customData?: CustomDataType$1;
|
|
1129
|
-
status: ChangeAvailabilityStatusEnumType$1;
|
|
1130
|
-
statusInfo?: StatusInfoType$1;
|
|
1131
|
-
}
|
|
1132
|
-
interface ClearCacheRequest$1 {
|
|
1133
|
-
customData?: CustomDataType$1;
|
|
1134
|
-
}
|
|
1135
|
-
interface ClearCacheResponse$1 {
|
|
1136
|
-
customData?: CustomDataType$1;
|
|
1137
|
-
status: ClearCacheStatusEnumType$1;
|
|
1138
|
-
statusInfo?: StatusInfoType$1;
|
|
1139
|
-
}
|
|
1140
|
-
interface ClearChargingProfileRequest$1 {
|
|
1141
|
-
customData?: CustomDataType$1;
|
|
1142
|
-
chargingProfileId?: number;
|
|
1143
|
-
chargingProfileCriteria?: ClearChargingProfileType$1;
|
|
1144
|
-
}
|
|
1145
|
-
interface ClearChargingProfileResponse$1 {
|
|
1146
|
-
customData?: CustomDataType$1;
|
|
1147
|
-
status: ClearChargingProfileStatusEnumType$1;
|
|
1148
|
-
statusInfo?: StatusInfoType$1;
|
|
1149
|
-
}
|
|
1150
|
-
interface ClearDisplayMessageRequest$1 {
|
|
1151
|
-
customData?: CustomDataType$1;
|
|
1152
|
-
id: number;
|
|
1153
|
-
}
|
|
1154
|
-
interface ClearDisplayMessageResponse$1 {
|
|
1155
|
-
customData?: CustomDataType$1;
|
|
1156
|
-
status: ClearMessageStatusEnumType$1;
|
|
1157
|
-
statusInfo?: StatusInfoType$1;
|
|
1158
|
-
}
|
|
1159
|
-
interface ClearedChargingLimitRequest$1 {
|
|
1160
|
-
customData?: CustomDataType$1;
|
|
1161
|
-
chargingLimitSource: ChargingLimitSourceEnumType;
|
|
1162
|
-
evseId?: number;
|
|
1163
|
-
}
|
|
1164
|
-
interface ClearedChargingLimitResponse$1 {
|
|
1165
|
-
customData?: CustomDataType$1;
|
|
1166
|
-
}
|
|
1167
|
-
interface ClearVariableMonitoringRequest$1 {
|
|
1168
|
-
customData?: CustomDataType$1;
|
|
1169
|
-
id: number[];
|
|
1170
|
-
}
|
|
1171
|
-
interface ClearVariableMonitoringResponse$1 {
|
|
1172
|
-
customData?: CustomDataType$1;
|
|
1173
|
-
clearMonitoringResult: ClearMonitoringResultType$1[];
|
|
1174
|
-
}
|
|
1175
|
-
interface CostUpdatedRequest$1 {
|
|
1176
|
-
customData?: CustomDataType$1;
|
|
1177
|
-
totalCost: number;
|
|
1178
|
-
transactionId: string;
|
|
1179
|
-
}
|
|
1180
|
-
interface CostUpdatedResponse$1 {
|
|
1181
|
-
customData?: CustomDataType$1;
|
|
1182
|
-
}
|
|
1183
|
-
interface CustomerInformationRequest$1 {
|
|
1184
|
-
customData?: CustomDataType$1;
|
|
1185
|
-
customerCertificate?: CertificateHashDataType$1;
|
|
1186
|
-
idToken?: IdTokenType$1;
|
|
1187
|
-
requestId: number;
|
|
1188
|
-
report: boolean;
|
|
1189
|
-
clear: boolean;
|
|
1190
|
-
customerIdentifier?: string;
|
|
1191
|
-
}
|
|
1192
|
-
interface CustomerInformationResponse$1 {
|
|
1193
|
-
customData?: CustomDataType$1;
|
|
1194
|
-
status: CustomerInformationStatusEnumType$1;
|
|
1195
|
-
statusInfo?: StatusInfoType$1;
|
|
1196
|
-
}
|
|
1197
|
-
interface DataTransferRequest$1 {
|
|
1198
|
-
customData?: CustomDataType$1;
|
|
1199
|
-
messageId?: string;
|
|
1200
|
-
data?: unknown;
|
|
1201
|
-
vendorId: string;
|
|
1202
|
-
}
|
|
1203
|
-
interface DataTransferResponse$1 {
|
|
1204
|
-
customData?: CustomDataType$1;
|
|
1205
|
-
status: DataTransferStatusEnumType$1;
|
|
1206
|
-
statusInfo?: StatusInfoType$1;
|
|
1207
|
-
data?: unknown;
|
|
1208
|
-
}
|
|
1209
|
-
interface DeleteCertificateRequest$1 {
|
|
1210
|
-
customData?: CustomDataType$1;
|
|
1211
|
-
certificateHashData: CertificateHashDataType$1;
|
|
1212
|
-
}
|
|
1213
|
-
interface DeleteCertificateResponse$1 {
|
|
1214
|
-
customData?: CustomDataType$1;
|
|
1215
|
-
status: DeleteCertificateStatusEnumType$1;
|
|
1216
|
-
statusInfo?: StatusInfoType$1;
|
|
1217
|
-
}
|
|
1218
|
-
interface FirmwareStatusNotificationRequest$1 {
|
|
1219
|
-
customData?: CustomDataType$1;
|
|
1220
|
-
status: FirmwareStatusEnumType$1;
|
|
1221
|
-
requestId?: number;
|
|
1222
|
-
}
|
|
1223
|
-
interface FirmwareStatusNotificationResponse$1 {
|
|
1224
|
-
customData?: CustomDataType$1;
|
|
1225
|
-
}
|
|
1226
|
-
interface Get15118EVCertificateRequest$1 {
|
|
1227
|
-
customData?: CustomDataType$1;
|
|
1228
|
-
iso15118SchemaVersion: string;
|
|
1229
|
-
action: CertificateActionEnumType$1;
|
|
1230
|
-
exiRequest: string;
|
|
1231
|
-
}
|
|
1232
|
-
interface Get15118EVCertificateResponse$1 {
|
|
1233
|
-
customData?: CustomDataType$1;
|
|
1234
|
-
status: Iso15118EVCertificateStatusEnumType$1;
|
|
1235
|
-
statusInfo?: StatusInfoType$1;
|
|
1236
|
-
exiResponse: string;
|
|
1237
|
-
}
|
|
1238
|
-
interface GetBaseReportRequest$1 {
|
|
1239
|
-
customData?: CustomDataType$1;
|
|
1240
|
-
requestId: number;
|
|
1241
|
-
reportBase: ReportBaseEnumType$1;
|
|
1242
|
-
}
|
|
1243
|
-
interface GetBaseReportResponse$1 {
|
|
1244
|
-
customData?: CustomDataType$1;
|
|
1245
|
-
status: GenericDeviceModelStatusEnumType$1;
|
|
1246
|
-
statusInfo?: StatusInfoType$1;
|
|
1247
|
-
}
|
|
1248
|
-
interface GetCertificateStatusRequest$1 {
|
|
1249
|
-
customData?: CustomDataType$1;
|
|
1250
|
-
ocspRequestData: OCSPRequestDataType$1;
|
|
1251
|
-
}
|
|
1252
|
-
interface GetCertificateStatusResponse$1 {
|
|
1253
|
-
customData?: CustomDataType$1;
|
|
1254
|
-
status: GetCertificateStatusEnumType$1;
|
|
1255
|
-
statusInfo?: StatusInfoType$1;
|
|
1256
|
-
ocspResult?: string;
|
|
1257
|
-
}
|
|
1258
|
-
interface GetChargingProfilesRequest$1 {
|
|
1259
|
-
customData?: CustomDataType$1;
|
|
1260
|
-
requestId: number;
|
|
1261
|
-
evseId?: number;
|
|
1262
|
-
chargingProfile: ChargingProfileCriterionType$1;
|
|
1263
|
-
}
|
|
1264
|
-
interface GetChargingProfilesResponse$1 {
|
|
1265
|
-
customData?: CustomDataType$1;
|
|
1266
|
-
status: GetChargingProfileStatusEnumType$1;
|
|
1267
|
-
statusInfo?: StatusInfoType$1;
|
|
1268
|
-
}
|
|
1269
|
-
interface GetCompositeScheduleRequest$1 {
|
|
1270
|
-
customData?: CustomDataType$1;
|
|
1271
|
-
duration: number;
|
|
1272
|
-
chargingRateUnit?: ChargingRateUnitEnumType$1;
|
|
1273
|
-
evseId: number;
|
|
1274
|
-
}
|
|
1275
|
-
interface GetCompositeScheduleResponse$1 {
|
|
1276
|
-
customData?: CustomDataType$1;
|
|
1277
|
-
status: GenericStatusEnumType$1;
|
|
1278
|
-
statusInfo?: StatusInfoType$1;
|
|
1279
|
-
schedule?: CompositeScheduleType$1;
|
|
1280
|
-
}
|
|
1281
|
-
interface GetDisplayMessagesRequest$1 {
|
|
1282
|
-
customData?: CustomDataType$1;
|
|
1283
|
-
id?: number[];
|
|
1284
|
-
requestId: number;
|
|
1285
|
-
priority?: MessagePriorityEnumType$1;
|
|
1286
|
-
state?: MessageStateEnumType$1;
|
|
1287
|
-
}
|
|
1288
|
-
interface GetDisplayMessagesResponse$1 {
|
|
1289
|
-
customData?: CustomDataType$1;
|
|
1290
|
-
status: GetDisplayMessagesStatusEnumType$1;
|
|
1291
|
-
statusInfo?: StatusInfoType$1;
|
|
1292
|
-
}
|
|
1293
|
-
interface GetInstalledCertificateIdsRequest$1 {
|
|
1294
|
-
customData?: CustomDataType$1;
|
|
1295
|
-
certificateType?: GetCertificateIdUseEnumType$1[];
|
|
1296
|
-
}
|
|
1297
|
-
interface GetInstalledCertificateIdsResponse$1 {
|
|
1298
|
-
customData?: CustomDataType$1;
|
|
1299
|
-
status: GetInstalledCertificateStatusEnumType$1;
|
|
1300
|
-
statusInfo?: StatusInfoType$1;
|
|
1301
|
-
certificateHashDataChain?: CertificateHashDataChainType$1[];
|
|
1302
|
-
}
|
|
1303
|
-
interface GetLocalListVersionRequest$1 {
|
|
1304
|
-
customData?: CustomDataType$1;
|
|
1305
|
-
}
|
|
1306
|
-
interface GetLocalListVersionResponse$1 {
|
|
1307
|
-
customData?: CustomDataType$1;
|
|
1308
|
-
versionNumber: number;
|
|
1309
|
-
}
|
|
1310
|
-
interface GetLogRequest$1 {
|
|
1311
|
-
customData?: CustomDataType$1;
|
|
1312
|
-
log: LogParametersType$1;
|
|
1313
|
-
logType: LogEnumType$1;
|
|
1314
|
-
requestId: number;
|
|
1315
|
-
retries?: number;
|
|
1316
|
-
retryInterval?: number;
|
|
1317
|
-
}
|
|
1318
|
-
interface GetLogResponse$1 {
|
|
1319
|
-
customData?: CustomDataType$1;
|
|
1320
|
-
status: LogStatusEnumType$1;
|
|
1321
|
-
statusInfo?: StatusInfoType$1;
|
|
1322
|
-
filename?: string;
|
|
1323
|
-
}
|
|
1324
|
-
interface GetMonitoringReportRequest$1 {
|
|
1325
|
-
customData?: CustomDataType$1;
|
|
1326
|
-
componentVariable?: ComponentVariableType$1[];
|
|
1327
|
-
requestId: number;
|
|
1328
|
-
monitoringCriteria?: MonitoringCriterionEnumType$1[];
|
|
1329
|
-
}
|
|
1330
|
-
interface GetMonitoringReportResponse$1 {
|
|
1331
|
-
customData?: CustomDataType$1;
|
|
1332
|
-
status: GenericDeviceModelStatusEnumType$1;
|
|
1333
|
-
statusInfo?: StatusInfoType$1;
|
|
1334
|
-
}
|
|
1335
|
-
interface GetReportRequest$1 {
|
|
1336
|
-
customData?: CustomDataType$1;
|
|
1337
|
-
componentVariable?: ComponentVariableType$1[];
|
|
1338
|
-
requestId: number;
|
|
1339
|
-
componentCriteria?: ComponentCriterionEnumType$1[];
|
|
1340
|
-
}
|
|
1341
|
-
interface GetReportResponse$1 {
|
|
1342
|
-
customData?: CustomDataType$1;
|
|
1343
|
-
status: GenericDeviceModelStatusEnumType$1;
|
|
1344
|
-
statusInfo?: StatusInfoType$1;
|
|
1345
|
-
}
|
|
1346
|
-
interface GetTransactionStatusRequest$1 {
|
|
1347
|
-
customData?: CustomDataType$1;
|
|
1348
|
-
transactionId?: string;
|
|
1349
|
-
}
|
|
1350
|
-
interface GetTransactionStatusResponse$1 {
|
|
1351
|
-
customData?: CustomDataType$1;
|
|
1352
|
-
ongoingIndicator?: boolean;
|
|
1353
|
-
messagesInQueue: boolean;
|
|
1354
|
-
}
|
|
1355
|
-
interface GetVariablesRequest$1 {
|
|
1356
|
-
customData?: CustomDataType$1;
|
|
1357
|
-
getVariableData: GetVariableDataType$1[];
|
|
1358
|
-
}
|
|
1359
|
-
interface GetVariablesResponse$1 {
|
|
1360
|
-
customData?: CustomDataType$1;
|
|
1361
|
-
getVariableResult: GetVariableResultType$1[];
|
|
1362
|
-
}
|
|
1363
|
-
interface HeartbeatRequest$1 {
|
|
1364
|
-
customData?: CustomDataType$1;
|
|
1365
|
-
}
|
|
1366
|
-
interface HeartbeatResponse$1 {
|
|
1367
|
-
customData?: CustomDataType$1;
|
|
1368
|
-
currentTime: string;
|
|
1369
|
-
}
|
|
1370
|
-
interface InstallCertificateRequest$1 {
|
|
1371
|
-
customData?: CustomDataType$1;
|
|
1372
|
-
certificateType: InstallCertificateUseEnumType$1;
|
|
1373
|
-
certificate: string;
|
|
1374
|
-
}
|
|
1375
|
-
interface InstallCertificateResponse$1 {
|
|
1376
|
-
customData?: CustomDataType$1;
|
|
1377
|
-
status: InstallCertificateStatusEnumType$1;
|
|
1378
|
-
statusInfo?: StatusInfoType$1;
|
|
1379
|
-
}
|
|
1380
|
-
interface LogStatusNotificationRequest$1 {
|
|
1381
|
-
customData?: CustomDataType$1;
|
|
1382
|
-
status: UploadLogStatusEnumType$1;
|
|
1383
|
-
requestId?: number;
|
|
1384
|
-
}
|
|
1385
|
-
interface LogStatusNotificationResponse$1 {
|
|
1386
|
-
customData?: CustomDataType$1;
|
|
1387
|
-
}
|
|
1388
|
-
interface MeterValuesRequest$1 {
|
|
1389
|
-
customData?: CustomDataType$1;
|
|
1390
|
-
evseId: number;
|
|
1391
|
-
meterValue: MeterValueType$1[];
|
|
1392
|
-
}
|
|
1393
|
-
interface MeterValuesResponse$1 {
|
|
1394
|
-
customData?: CustomDataType$1;
|
|
1395
|
-
}
|
|
1396
|
-
interface NotifyChargingLimitRequest$1 {
|
|
1397
|
-
customData?: CustomDataType$1;
|
|
1398
|
-
chargingSchedule?: ChargingScheduleType$1[];
|
|
1399
|
-
evseId?: number;
|
|
1400
|
-
chargingLimit: ChargingLimitType$1;
|
|
1401
|
-
}
|
|
1402
|
-
interface NotifyChargingLimitResponse$1 {
|
|
1403
|
-
customData?: CustomDataType$1;
|
|
1404
|
-
}
|
|
1405
|
-
interface NotifyCustomerInformationRequest$1 {
|
|
1406
|
-
customData?: CustomDataType$1;
|
|
1407
|
-
data: string;
|
|
1408
|
-
tbc?: boolean;
|
|
1409
|
-
seqNo: number;
|
|
1410
|
-
generatedAt: string;
|
|
1411
|
-
requestId: number;
|
|
1412
|
-
}
|
|
1413
|
-
interface NotifyCustomerInformationResponse$1 {
|
|
1414
|
-
customData?: CustomDataType$1;
|
|
1415
|
-
}
|
|
1416
|
-
interface NotifyDisplayMessagesRequest$1 {
|
|
1417
|
-
customData?: CustomDataType$1;
|
|
1418
|
-
messageInfo?: MessageInfoType$1[];
|
|
1419
|
-
requestId: number;
|
|
1420
|
-
tbc?: boolean;
|
|
1421
|
-
}
|
|
1422
|
-
interface NotifyDisplayMessagesResponse$1 {
|
|
1423
|
-
customData?: CustomDataType$1;
|
|
1424
|
-
}
|
|
1425
|
-
interface NotifyEVChargingNeedsRequest$1 {
|
|
1426
|
-
customData?: CustomDataType$1;
|
|
1427
|
-
maxScheduleTuples?: number;
|
|
1428
|
-
chargingNeeds: ChargingNeedsType$1;
|
|
1429
|
-
evseId: number;
|
|
1430
|
-
}
|
|
1431
|
-
interface NotifyEVChargingNeedsResponse$1 {
|
|
1432
|
-
customData?: CustomDataType$1;
|
|
1433
|
-
status: NotifyEVChargingNeedsStatusEnumType$1;
|
|
1434
|
-
statusInfo?: StatusInfoType$1;
|
|
1435
|
-
}
|
|
1436
|
-
interface NotifyEVChargingScheduleRequest$1 {
|
|
1437
|
-
customData?: CustomDataType$1;
|
|
1438
|
-
timeBase: string;
|
|
1439
|
-
chargingSchedule: ChargingScheduleType$1;
|
|
1440
|
-
evseId: number;
|
|
1441
|
-
}
|
|
1442
|
-
interface NotifyEVChargingScheduleResponse$1 {
|
|
1443
|
-
customData?: CustomDataType$1;
|
|
1444
|
-
status: GenericStatusEnumType$1;
|
|
1445
|
-
statusInfo?: StatusInfoType$1;
|
|
1446
|
-
}
|
|
1447
|
-
interface NotifyEventRequest$1 {
|
|
1448
|
-
customData?: CustomDataType$1;
|
|
1449
|
-
generatedAt: string;
|
|
1450
|
-
tbc?: boolean;
|
|
1451
|
-
seqNo: number;
|
|
1452
|
-
eventData: EventDataType$1[];
|
|
1453
|
-
}
|
|
1454
|
-
interface NotifyEventResponse$1 {
|
|
1455
|
-
customData?: CustomDataType$1;
|
|
1456
|
-
}
|
|
1457
|
-
interface NotifyMonitoringReportRequest$1 {
|
|
1458
|
-
customData?: CustomDataType$1;
|
|
1459
|
-
monitor?: MonitoringDataType$1[];
|
|
1460
|
-
requestId: number;
|
|
1461
|
-
tbc?: boolean;
|
|
1462
|
-
seqNo: number;
|
|
1463
|
-
generatedAt: string;
|
|
1464
|
-
}
|
|
1465
|
-
interface NotifyMonitoringReportResponse$1 {
|
|
1466
|
-
customData?: CustomDataType$1;
|
|
1467
|
-
}
|
|
1468
|
-
interface NotifyReportRequest$1 {
|
|
1469
|
-
customData?: CustomDataType$1;
|
|
1470
|
-
requestId: number;
|
|
1471
|
-
generatedAt: string;
|
|
1472
|
-
reportData?: ReportDataType$1[];
|
|
1473
|
-
tbc?: boolean;
|
|
1474
|
-
seqNo: number;
|
|
1475
|
-
}
|
|
1476
|
-
interface NotifyReportResponse$1 {
|
|
1477
|
-
customData?: CustomDataType$1;
|
|
1478
|
-
}
|
|
1479
|
-
interface PublishFirmwareRequest$1 {
|
|
1480
|
-
customData?: CustomDataType$1;
|
|
1481
|
-
location: string;
|
|
1482
|
-
retries?: number;
|
|
1483
|
-
checksum: string;
|
|
1484
|
-
requestId: number;
|
|
1485
|
-
retryInterval?: number;
|
|
1486
|
-
}
|
|
1487
|
-
interface PublishFirmwareResponse$1 {
|
|
1488
|
-
customData?: CustomDataType$1;
|
|
1489
|
-
status: GenericStatusEnumType$1;
|
|
1490
|
-
statusInfo?: StatusInfoType$1;
|
|
1491
|
-
}
|
|
1492
|
-
interface PublishFirmwareStatusNotificationRequest$1 {
|
|
1493
|
-
customData?: CustomDataType$1;
|
|
1494
|
-
status: PublishFirmwareStatusEnumType$1;
|
|
1495
|
-
location?: string[];
|
|
1496
|
-
requestId?: number;
|
|
1497
|
-
}
|
|
1498
|
-
interface PublishFirmwareStatusNotificationResponse$1 {
|
|
1499
|
-
customData?: CustomDataType$1;
|
|
1500
|
-
}
|
|
1501
|
-
interface ReportChargingProfilesRequest$1 {
|
|
1502
|
-
customData?: CustomDataType$1;
|
|
1503
|
-
requestId: number;
|
|
1504
|
-
chargingLimitSource: ChargingLimitSourceEnumType;
|
|
1505
|
-
chargingProfile: ChargingProfileType$1[];
|
|
1506
|
-
tbc?: boolean;
|
|
1507
|
-
evseId: number;
|
|
1508
|
-
}
|
|
1509
|
-
interface ReportChargingProfilesResponse$1 {
|
|
1510
|
-
customData?: CustomDataType$1;
|
|
1511
|
-
}
|
|
1512
|
-
interface RequestStartTransactionRequest$1 {
|
|
1513
|
-
customData?: CustomDataType$1;
|
|
1514
|
-
evseId?: number;
|
|
1515
|
-
groupIdToken?: IdTokenType$1;
|
|
1516
|
-
idToken: IdTokenType$1;
|
|
1517
|
-
remoteStartId: number;
|
|
1518
|
-
chargingProfile?: ChargingProfileType$1;
|
|
1519
|
-
}
|
|
1520
|
-
interface RequestStartTransactionResponse$1 {
|
|
1521
|
-
customData?: CustomDataType$1;
|
|
1522
|
-
status: RequestStartStopStatusEnumType$1;
|
|
1523
|
-
statusInfo?: StatusInfoType$1;
|
|
1524
|
-
transactionId?: string;
|
|
1525
|
-
}
|
|
1526
|
-
interface RequestStopTransactionRequest$1 {
|
|
1527
|
-
customData?: CustomDataType$1;
|
|
1528
|
-
transactionId: string;
|
|
1529
|
-
}
|
|
1530
|
-
interface RequestStopTransactionResponse$1 {
|
|
1531
|
-
customData?: CustomDataType$1;
|
|
1532
|
-
status: RequestStartStopStatusEnumType$1;
|
|
1533
|
-
statusInfo?: StatusInfoType$1;
|
|
1534
|
-
}
|
|
1535
|
-
interface ReservationStatusUpdateRequest$1 {
|
|
1536
|
-
customData?: CustomDataType$1;
|
|
1537
|
-
reservationId: number;
|
|
1538
|
-
reservationUpdateStatus: ReservationUpdateStatusEnumType$1;
|
|
1539
|
-
}
|
|
1540
|
-
interface ReservationStatusUpdateResponse$1 {
|
|
1541
|
-
customData?: CustomDataType$1;
|
|
1542
|
-
}
|
|
1543
|
-
interface ReserveNowRequest$1 {
|
|
1544
|
-
customData?: CustomDataType$1;
|
|
1545
|
-
id: number;
|
|
1546
|
-
expiryDateTime: string;
|
|
1547
|
-
connectorType?: ConnectorEnumType;
|
|
1548
|
-
idToken: IdTokenType$1;
|
|
1549
|
-
evseId?: number;
|
|
1550
|
-
groupIdToken?: IdTokenType$1;
|
|
1551
|
-
}
|
|
1552
|
-
interface ReserveNowResponse$1 {
|
|
1553
|
-
customData?: CustomDataType$1;
|
|
1554
|
-
status: ReserveNowStatusEnumType$1;
|
|
1555
|
-
statusInfo?: StatusInfoType$1;
|
|
1556
|
-
}
|
|
1557
|
-
interface ResetRequest$1 {
|
|
1558
|
-
customData?: CustomDataType$1;
|
|
1559
|
-
type: ResetEnumType$1;
|
|
1560
|
-
evseId?: number;
|
|
1561
|
-
}
|
|
1562
|
-
interface ResetResponse$1 {
|
|
1563
|
-
customData?: CustomDataType$1;
|
|
1564
|
-
status: ResetStatusEnumType$1;
|
|
1565
|
-
statusInfo?: StatusInfoType$1;
|
|
1566
|
-
}
|
|
1567
|
-
interface SecurityEventNotificationRequest$1 {
|
|
1568
|
-
customData?: CustomDataType$1;
|
|
1569
|
-
type: string;
|
|
1570
|
-
timestamp: string;
|
|
1571
|
-
techInfo?: string;
|
|
1572
|
-
}
|
|
1573
|
-
interface SecurityEventNotificationResponse$1 {
|
|
1574
|
-
customData?: CustomDataType$1;
|
|
1575
|
-
}
|
|
1576
|
-
interface SendLocalListRequest$1 {
|
|
1577
|
-
customData?: CustomDataType$1;
|
|
1578
|
-
localAuthorizationList?: AuthorizationData$1[];
|
|
1579
|
-
versionNumber: number;
|
|
1580
|
-
updateType: UpdateEnumType$1;
|
|
1581
|
-
}
|
|
1582
|
-
interface SendLocalListResponse$1 {
|
|
1583
|
-
customData?: CustomDataType$1;
|
|
1584
|
-
status: SendLocalListStatusEnumType$1;
|
|
1585
|
-
statusInfo?: StatusInfoType$1;
|
|
1586
|
-
}
|
|
1587
|
-
interface SetChargingProfileRequest$1 {
|
|
1588
|
-
customData?: CustomDataType$1;
|
|
1589
|
-
evseId: number;
|
|
1590
|
-
chargingProfile: ChargingProfileType$1;
|
|
1591
|
-
}
|
|
1592
|
-
interface SetChargingProfileResponse$1 {
|
|
1593
|
-
customData?: CustomDataType$1;
|
|
1594
|
-
status: ChargingProfileStatusEnumType$1;
|
|
1595
|
-
statusInfo?: StatusInfoType$1;
|
|
1596
|
-
}
|
|
1597
|
-
interface SetDisplayMessageRequest$1 {
|
|
1598
|
-
customData?: CustomDataType$1;
|
|
1599
|
-
message: MessageInfoType$1;
|
|
1600
|
-
}
|
|
1601
|
-
interface SetDisplayMessageResponse$1 {
|
|
1602
|
-
customData?: CustomDataType$1;
|
|
1603
|
-
status: DisplayMessageStatusEnumType$1;
|
|
1604
|
-
statusInfo?: StatusInfoType$1;
|
|
1605
|
-
}
|
|
1606
|
-
interface SetMonitoringBaseRequest$1 {
|
|
1607
|
-
customData?: CustomDataType$1;
|
|
1608
|
-
monitoringBase: MonitoringBaseEnumType$1;
|
|
1609
|
-
}
|
|
1610
|
-
interface SetMonitoringBaseResponse$1 {
|
|
1611
|
-
customData?: CustomDataType$1;
|
|
1612
|
-
status: GenericDeviceModelStatusEnumType$1;
|
|
1613
|
-
statusInfo?: StatusInfoType$1;
|
|
1614
|
-
}
|
|
1615
|
-
interface SetMonitoringLevelRequest$1 {
|
|
1616
|
-
customData?: CustomDataType$1;
|
|
1617
|
-
severity: number;
|
|
1618
|
-
}
|
|
1619
|
-
interface SetMonitoringLevelResponse$1 {
|
|
1620
|
-
customData?: CustomDataType$1;
|
|
1621
|
-
status: GenericStatusEnumType$1;
|
|
1622
|
-
statusInfo?: StatusInfoType$1;
|
|
1623
|
-
}
|
|
1624
|
-
interface SetNetworkProfileRequest$1 {
|
|
1625
|
-
customData?: CustomDataType$1;
|
|
1626
|
-
configurationSlot: number;
|
|
1627
|
-
connectionData: NetworkConnectionProfileType$1;
|
|
1628
|
-
}
|
|
1629
|
-
interface SetNetworkProfileResponse$1 {
|
|
1630
|
-
customData?: CustomDataType$1;
|
|
1631
|
-
status: SetNetworkProfileStatusEnumType$1;
|
|
1632
|
-
statusInfo?: StatusInfoType$1;
|
|
1633
|
-
}
|
|
1634
|
-
interface SetVariableMonitoringRequest$1 {
|
|
1635
|
-
customData?: CustomDataType$1;
|
|
1636
|
-
setMonitoringData: SetMonitoringDataType$1[];
|
|
1637
|
-
}
|
|
1638
|
-
interface SetVariableMonitoringResponse$1 {
|
|
1639
|
-
customData?: CustomDataType$1;
|
|
1640
|
-
setMonitoringResult: SetMonitoringResultType$1[];
|
|
1641
|
-
}
|
|
1642
|
-
interface SetVariablesRequest$1 {
|
|
1643
|
-
customData?: CustomDataType$1;
|
|
1644
|
-
setVariableData: SetVariableDataType$1[];
|
|
1645
|
-
}
|
|
1646
|
-
interface SetVariablesResponse$1 {
|
|
1647
|
-
customData?: CustomDataType$1;
|
|
1648
|
-
setVariableResult: SetVariableResultType$1[];
|
|
1649
|
-
}
|
|
1650
|
-
interface SignCertificateRequest$1 {
|
|
1651
|
-
customData?: CustomDataType$1;
|
|
1652
|
-
csr: string;
|
|
1653
|
-
certificateType?: CertificateSigningUseEnumType$1;
|
|
1654
|
-
}
|
|
1655
|
-
interface SignCertificateResponse$1 {
|
|
1656
|
-
customData?: CustomDataType$1;
|
|
1657
|
-
status: GenericStatusEnumType$1;
|
|
1658
|
-
statusInfo?: StatusInfoType$1;
|
|
1659
|
-
}
|
|
1660
|
-
interface StatusNotificationRequest$1 {
|
|
1661
|
-
customData?: CustomDataType$1;
|
|
1662
|
-
timestamp: string;
|
|
1663
|
-
connectorStatus: ConnectorStatusEnumType$1;
|
|
1664
|
-
evseId: number;
|
|
1665
|
-
connectorId: number;
|
|
1666
|
-
}
|
|
1667
|
-
interface StatusNotificationResponse$1 {
|
|
1668
|
-
customData?: CustomDataType$1;
|
|
1669
|
-
}
|
|
1670
|
-
interface TransactionEventRequest$1 {
|
|
1671
|
-
customData?: CustomDataType$1;
|
|
1672
|
-
eventType: TransactionEventEnumType$1;
|
|
1673
|
-
meterValue?: MeterValueType$1[];
|
|
1674
|
-
timestamp: string;
|
|
1675
|
-
triggerReason: TriggerReasonEnumType$1;
|
|
1676
|
-
seqNo: number;
|
|
1677
|
-
offline?: boolean;
|
|
1678
|
-
numberOfPhasesUsed?: number;
|
|
1679
|
-
cableMaxCurrent?: number;
|
|
1680
|
-
reservationId?: number;
|
|
1681
|
-
transactionInfo: TransactionType$1;
|
|
1682
|
-
evse?: EVSEType$1;
|
|
1683
|
-
idToken?: IdTokenType$1;
|
|
1684
|
-
}
|
|
1685
|
-
interface TransactionEventResponse$1 {
|
|
1686
|
-
customData?: CustomDataType$1;
|
|
1687
|
-
totalCost?: number;
|
|
1688
|
-
chargingPriority?: number;
|
|
1689
|
-
idTokenInfo?: IdTokenInfoType$1;
|
|
1690
|
-
updatedPersonalMessage?: MessageContentType$1;
|
|
1691
|
-
}
|
|
1692
|
-
interface TriggerMessageRequest$1 {
|
|
1693
|
-
customData?: CustomDataType$1;
|
|
1694
|
-
evse?: EVSEType$1;
|
|
1695
|
-
requestedMessage: MessageTriggerEnumType$1;
|
|
1696
|
-
}
|
|
1697
|
-
interface TriggerMessageResponse$1 {
|
|
1698
|
-
customData?: CustomDataType$1;
|
|
1699
|
-
status: TriggerMessageStatusEnumType$1;
|
|
1700
|
-
statusInfo?: StatusInfoType$1;
|
|
1701
|
-
}
|
|
1702
|
-
interface UnlockConnectorRequest$1 {
|
|
1703
|
-
customData?: CustomDataType$1;
|
|
1704
|
-
evseId: number;
|
|
1705
|
-
connectorId: number;
|
|
1706
|
-
}
|
|
1707
|
-
interface UnlockConnectorResponse$1 {
|
|
1708
|
-
customData?: CustomDataType$1;
|
|
1709
|
-
status: UnlockStatusEnumType$1;
|
|
1710
|
-
statusInfo?: StatusInfoType$1;
|
|
1711
|
-
}
|
|
1712
|
-
interface UnpublishFirmwareRequest$1 {
|
|
1713
|
-
customData?: CustomDataType$1;
|
|
1714
|
-
checksum: string;
|
|
1715
|
-
}
|
|
1716
|
-
interface UnpublishFirmwareResponse$1 {
|
|
1717
|
-
customData?: CustomDataType$1;
|
|
1718
|
-
status: UnpublishFirmwareStatusEnumType$1;
|
|
1719
|
-
}
|
|
1720
|
-
interface UpdateFirmwareRequest$1 {
|
|
1721
|
-
customData?: CustomDataType$1;
|
|
1722
|
-
retries?: number;
|
|
1723
|
-
retryInterval?: number;
|
|
1724
|
-
requestId: number;
|
|
1725
|
-
firmware: FirmwareType$1;
|
|
1726
|
-
}
|
|
1727
|
-
interface UpdateFirmwareResponse$1 {
|
|
1728
|
-
customData?: CustomDataType$1;
|
|
1729
|
-
status: UpdateFirmwareStatusEnumType$1;
|
|
1730
|
-
statusInfo?: StatusInfoType$1;
|
|
1731
|
-
}
|
|
1732
|
-
interface OCPP201Methods {
|
|
1733
|
-
Authorize: {
|
|
1734
|
-
request: AuthorizeRequest$1;
|
|
1735
|
-
response: AuthorizeResponse$1;
|
|
1736
|
-
};
|
|
1737
|
-
BootNotification: {
|
|
1738
|
-
request: BootNotificationRequest$1;
|
|
1739
|
-
response: BootNotificationResponse$1;
|
|
1740
|
-
};
|
|
1741
|
-
CancelReservation: {
|
|
1742
|
-
request: CancelReservationRequest$1;
|
|
1743
|
-
response: CancelReservationResponse$1;
|
|
1744
|
-
};
|
|
1745
|
-
CertificateSigned: {
|
|
1746
|
-
request: CertificateSignedRequest$1;
|
|
1747
|
-
response: CertificateSignedResponse$1;
|
|
1748
|
-
};
|
|
1749
|
-
ChangeAvailability: {
|
|
1750
|
-
request: ChangeAvailabilityRequest$1;
|
|
1751
|
-
response: ChangeAvailabilityResponse$1;
|
|
1752
|
-
};
|
|
1753
|
-
ClearCache: {
|
|
1754
|
-
request: ClearCacheRequest$1;
|
|
1755
|
-
response: ClearCacheResponse$1;
|
|
1756
|
-
};
|
|
1757
|
-
ClearChargingProfile: {
|
|
1758
|
-
request: ClearChargingProfileRequest$1;
|
|
1759
|
-
response: ClearChargingProfileResponse$1;
|
|
1760
|
-
};
|
|
1761
|
-
ClearDisplayMessage: {
|
|
1762
|
-
request: ClearDisplayMessageRequest$1;
|
|
1763
|
-
response: ClearDisplayMessageResponse$1;
|
|
1764
|
-
};
|
|
1765
|
-
ClearedChargingLimit: {
|
|
1766
|
-
request: ClearedChargingLimitRequest$1;
|
|
1767
|
-
response: ClearedChargingLimitResponse$1;
|
|
1768
|
-
};
|
|
1769
|
-
ClearVariableMonitoring: {
|
|
1770
|
-
request: ClearVariableMonitoringRequest$1;
|
|
1771
|
-
response: ClearVariableMonitoringResponse$1;
|
|
1772
|
-
};
|
|
1773
|
-
CostUpdated: {
|
|
1774
|
-
request: CostUpdatedRequest$1;
|
|
1775
|
-
response: CostUpdatedResponse$1;
|
|
1776
|
-
};
|
|
1777
|
-
CustomerInformation: {
|
|
1778
|
-
request: CustomerInformationRequest$1;
|
|
1779
|
-
response: CustomerInformationResponse$1;
|
|
1780
|
-
};
|
|
1781
|
-
DataTransfer: {
|
|
1782
|
-
request: DataTransferRequest$1;
|
|
1783
|
-
response: DataTransferResponse$1;
|
|
1784
|
-
};
|
|
1785
|
-
DeleteCertificate: {
|
|
1786
|
-
request: DeleteCertificateRequest$1;
|
|
1787
|
-
response: DeleteCertificateResponse$1;
|
|
1788
|
-
};
|
|
1789
|
-
FirmwareStatusNotification: {
|
|
1790
|
-
request: FirmwareStatusNotificationRequest$1;
|
|
1791
|
-
response: FirmwareStatusNotificationResponse$1;
|
|
1792
|
-
};
|
|
1793
|
-
Get15118EVCertificate: {
|
|
1794
|
-
request: Get15118EVCertificateRequest$1;
|
|
1795
|
-
response: Get15118EVCertificateResponse$1;
|
|
1796
|
-
};
|
|
1797
|
-
GetBaseReport: {
|
|
1798
|
-
request: GetBaseReportRequest$1;
|
|
1799
|
-
response: GetBaseReportResponse$1;
|
|
1800
|
-
};
|
|
1801
|
-
GetCertificateStatus: {
|
|
1802
|
-
request: GetCertificateStatusRequest$1;
|
|
1803
|
-
response: GetCertificateStatusResponse$1;
|
|
1804
|
-
};
|
|
1805
|
-
GetChargingProfiles: {
|
|
1806
|
-
request: GetChargingProfilesRequest$1;
|
|
1807
|
-
response: GetChargingProfilesResponse$1;
|
|
1808
|
-
};
|
|
1809
|
-
GetCompositeSchedule: {
|
|
1810
|
-
request: GetCompositeScheduleRequest$1;
|
|
1811
|
-
response: GetCompositeScheduleResponse$1;
|
|
1812
|
-
};
|
|
1813
|
-
GetDisplayMessages: {
|
|
1814
|
-
request: GetDisplayMessagesRequest$1;
|
|
1815
|
-
response: GetDisplayMessagesResponse$1;
|
|
1816
|
-
};
|
|
1817
|
-
GetInstalledCertificateIds: {
|
|
1818
|
-
request: GetInstalledCertificateIdsRequest$1;
|
|
1819
|
-
response: GetInstalledCertificateIdsResponse$1;
|
|
1820
|
-
};
|
|
1821
|
-
GetLocalListVersion: {
|
|
1822
|
-
request: GetLocalListVersionRequest$1;
|
|
1823
|
-
response: GetLocalListVersionResponse$1;
|
|
1824
|
-
};
|
|
1825
|
-
GetLog: {
|
|
1826
|
-
request: GetLogRequest$1;
|
|
1827
|
-
response: GetLogResponse$1;
|
|
1828
|
-
};
|
|
1829
|
-
GetMonitoringReport: {
|
|
1830
|
-
request: GetMonitoringReportRequest$1;
|
|
1831
|
-
response: GetMonitoringReportResponse$1;
|
|
1832
|
-
};
|
|
1833
|
-
GetReport: {
|
|
1834
|
-
request: GetReportRequest$1;
|
|
1835
|
-
response: GetReportResponse$1;
|
|
1836
|
-
};
|
|
1837
|
-
GetTransactionStatus: {
|
|
1838
|
-
request: GetTransactionStatusRequest$1;
|
|
1839
|
-
response: GetTransactionStatusResponse$1;
|
|
1840
|
-
};
|
|
1841
|
-
GetVariables: {
|
|
1842
|
-
request: GetVariablesRequest$1;
|
|
1843
|
-
response: GetVariablesResponse$1;
|
|
1844
|
-
};
|
|
1845
|
-
Heartbeat: {
|
|
1846
|
-
request: HeartbeatRequest$1;
|
|
1847
|
-
response: HeartbeatResponse$1;
|
|
1848
|
-
};
|
|
1849
|
-
InstallCertificate: {
|
|
1850
|
-
request: InstallCertificateRequest$1;
|
|
1851
|
-
response: InstallCertificateResponse$1;
|
|
1852
|
-
};
|
|
1853
|
-
LogStatusNotification: {
|
|
1854
|
-
request: LogStatusNotificationRequest$1;
|
|
1855
|
-
response: LogStatusNotificationResponse$1;
|
|
1856
|
-
};
|
|
1857
|
-
MeterValues: {
|
|
1858
|
-
request: MeterValuesRequest$1;
|
|
1859
|
-
response: MeterValuesResponse$1;
|
|
1860
|
-
};
|
|
1861
|
-
NotifyChargingLimit: {
|
|
1862
|
-
request: NotifyChargingLimitRequest$1;
|
|
1863
|
-
response: NotifyChargingLimitResponse$1;
|
|
1864
|
-
};
|
|
1865
|
-
NotifyCustomerInformation: {
|
|
1866
|
-
request: NotifyCustomerInformationRequest$1;
|
|
1867
|
-
response: NotifyCustomerInformationResponse$1;
|
|
1868
|
-
};
|
|
1869
|
-
NotifyDisplayMessages: {
|
|
1870
|
-
request: NotifyDisplayMessagesRequest$1;
|
|
1871
|
-
response: NotifyDisplayMessagesResponse$1;
|
|
1872
|
-
};
|
|
1873
|
-
NotifyEVChargingNeeds: {
|
|
1874
|
-
request: NotifyEVChargingNeedsRequest$1;
|
|
1875
|
-
response: NotifyEVChargingNeedsResponse$1;
|
|
1876
|
-
};
|
|
1877
|
-
NotifyEVChargingSchedule: {
|
|
1878
|
-
request: NotifyEVChargingScheduleRequest$1;
|
|
1879
|
-
response: NotifyEVChargingScheduleResponse$1;
|
|
1880
|
-
};
|
|
1881
|
-
NotifyEvent: {
|
|
1882
|
-
request: NotifyEventRequest$1;
|
|
1883
|
-
response: NotifyEventResponse$1;
|
|
1884
|
-
};
|
|
1885
|
-
NotifyMonitoringReport: {
|
|
1886
|
-
request: NotifyMonitoringReportRequest$1;
|
|
1887
|
-
response: NotifyMonitoringReportResponse$1;
|
|
1888
|
-
};
|
|
1889
|
-
NotifyReport: {
|
|
1890
|
-
request: NotifyReportRequest$1;
|
|
1891
|
-
response: NotifyReportResponse$1;
|
|
1892
|
-
};
|
|
1893
|
-
PublishFirmware: {
|
|
1894
|
-
request: PublishFirmwareRequest$1;
|
|
1895
|
-
response: PublishFirmwareResponse$1;
|
|
1896
|
-
};
|
|
1897
|
-
PublishFirmwareStatusNotification: {
|
|
1898
|
-
request: PublishFirmwareStatusNotificationRequest$1;
|
|
1899
|
-
response: PublishFirmwareStatusNotificationResponse$1;
|
|
1900
|
-
};
|
|
1901
|
-
ReportChargingProfiles: {
|
|
1902
|
-
request: ReportChargingProfilesRequest$1;
|
|
1903
|
-
response: ReportChargingProfilesResponse$1;
|
|
1904
|
-
};
|
|
1905
|
-
RequestStartTransaction: {
|
|
1906
|
-
request: RequestStartTransactionRequest$1;
|
|
1907
|
-
response: RequestStartTransactionResponse$1;
|
|
1908
|
-
};
|
|
1909
|
-
RequestStopTransaction: {
|
|
1910
|
-
request: RequestStopTransactionRequest$1;
|
|
1911
|
-
response: RequestStopTransactionResponse$1;
|
|
1912
|
-
};
|
|
1913
|
-
ReservationStatusUpdate: {
|
|
1914
|
-
request: ReservationStatusUpdateRequest$1;
|
|
1915
|
-
response: ReservationStatusUpdateResponse$1;
|
|
1916
|
-
};
|
|
1917
|
-
ReserveNow: {
|
|
1918
|
-
request: ReserveNowRequest$1;
|
|
1919
|
-
response: ReserveNowResponse$1;
|
|
1920
|
-
};
|
|
1921
|
-
Reset: {
|
|
1922
|
-
request: ResetRequest$1;
|
|
1923
|
-
response: ResetResponse$1;
|
|
1924
|
-
};
|
|
1925
|
-
SecurityEventNotification: {
|
|
1926
|
-
request: SecurityEventNotificationRequest$1;
|
|
1927
|
-
response: SecurityEventNotificationResponse$1;
|
|
1928
|
-
};
|
|
1929
|
-
SendLocalList: {
|
|
1930
|
-
request: SendLocalListRequest$1;
|
|
1931
|
-
response: SendLocalListResponse$1;
|
|
1932
|
-
};
|
|
1933
|
-
SetChargingProfile: {
|
|
1934
|
-
request: SetChargingProfileRequest$1;
|
|
1935
|
-
response: SetChargingProfileResponse$1;
|
|
1936
|
-
};
|
|
1937
|
-
SetDisplayMessage: {
|
|
1938
|
-
request: SetDisplayMessageRequest$1;
|
|
1939
|
-
response: SetDisplayMessageResponse$1;
|
|
1940
|
-
};
|
|
1941
|
-
SetMonitoringBase: {
|
|
1942
|
-
request: SetMonitoringBaseRequest$1;
|
|
1943
|
-
response: SetMonitoringBaseResponse$1;
|
|
1944
|
-
};
|
|
1945
|
-
SetMonitoringLevel: {
|
|
1946
|
-
request: SetMonitoringLevelRequest$1;
|
|
1947
|
-
response: SetMonitoringLevelResponse$1;
|
|
1948
|
-
};
|
|
1949
|
-
SetNetworkProfile: {
|
|
1950
|
-
request: SetNetworkProfileRequest$1;
|
|
1951
|
-
response: SetNetworkProfileResponse$1;
|
|
1952
|
-
};
|
|
1953
|
-
SetVariableMonitoring: {
|
|
1954
|
-
request: SetVariableMonitoringRequest$1;
|
|
1955
|
-
response: SetVariableMonitoringResponse$1;
|
|
1956
|
-
};
|
|
1957
|
-
SetVariables: {
|
|
1958
|
-
request: SetVariablesRequest$1;
|
|
1959
|
-
response: SetVariablesResponse$1;
|
|
1960
|
-
};
|
|
1961
|
-
SignCertificate: {
|
|
1962
|
-
request: SignCertificateRequest$1;
|
|
1963
|
-
response: SignCertificateResponse$1;
|
|
1964
|
-
};
|
|
1965
|
-
StatusNotification: {
|
|
1966
|
-
request: StatusNotificationRequest$1;
|
|
1967
|
-
response: StatusNotificationResponse$1;
|
|
1968
|
-
};
|
|
1969
|
-
TransactionEvent: {
|
|
1970
|
-
request: TransactionEventRequest$1;
|
|
1971
|
-
response: TransactionEventResponse$1;
|
|
1972
|
-
};
|
|
1973
|
-
TriggerMessage: {
|
|
1974
|
-
request: TriggerMessageRequest$1;
|
|
1975
|
-
response: TriggerMessageResponse$1;
|
|
1976
|
-
};
|
|
1977
|
-
UnlockConnector: {
|
|
1978
|
-
request: UnlockConnectorRequest$1;
|
|
1979
|
-
response: UnlockConnectorResponse$1;
|
|
1980
|
-
};
|
|
1981
|
-
UnpublishFirmware: {
|
|
1982
|
-
request: UnpublishFirmwareRequest$1;
|
|
1983
|
-
response: UnpublishFirmwareResponse$1;
|
|
1984
|
-
};
|
|
1985
|
-
UpdateFirmware: {
|
|
1986
|
-
request: UpdateFirmwareRequest$1;
|
|
1987
|
-
response: UpdateFirmwareResponse$1;
|
|
1988
|
-
};
|
|
1989
|
-
}
|
|
1990
|
-
|
|
1991
|
-
interface PeriodicEventStreamParamsType {
|
|
1992
|
-
interval?: number;
|
|
1993
|
-
values?: number;
|
|
1994
|
-
customData?: CustomDataType;
|
|
1995
|
-
}
|
|
1996
|
-
interface CustomDataType {
|
|
1997
|
-
vendorId: string;
|
|
1998
|
-
}
|
|
1999
|
-
type GenericStatusEnumType = "Accepted" | "Rejected";
|
|
2000
|
-
interface StatusInfoType {
|
|
2001
|
-
reasonCode: string;
|
|
2002
|
-
additionalInfo?: string;
|
|
2003
|
-
customData?: CustomDataType;
|
|
2004
|
-
}
|
|
2005
|
-
type HashAlgorithmEnumType = "SHA256" | "SHA384" | "SHA512";
|
|
2006
|
-
interface AdditionalInfoType {
|
|
2007
|
-
additionalIdToken: string;
|
|
2008
|
-
type: string;
|
|
2009
|
-
customData?: CustomDataType;
|
|
2010
|
-
}
|
|
2011
|
-
interface IdTokenType {
|
|
2012
|
-
additionalInfo?: AdditionalInfoType[];
|
|
2013
|
-
idToken: string;
|
|
2014
|
-
type: string;
|
|
2015
|
-
customData?: CustomDataType;
|
|
2016
|
-
}
|
|
2017
|
-
interface OCSPRequestDataType {
|
|
2018
|
-
hashAlgorithm: HashAlgorithmEnumType;
|
|
2019
|
-
issuerNameHash: string;
|
|
2020
|
-
issuerKeyHash: string;
|
|
2021
|
-
serialNumber: string;
|
|
2022
|
-
responderURL: string;
|
|
2023
|
-
customData?: CustomDataType;
|
|
2024
|
-
}
|
|
2025
|
-
type AuthorizationStatusEnumType = "Accepted" | "Blocked" | "ConcurrentTx" | "Expired" | "Invalid" | "NoCredit" | "NotAllowedTypeEVSE" | "NotAtThisLocation" | "NotAtThisTime" | "Unknown";
|
|
2026
|
-
type AuthorizeCertificateStatusEnumType = "Accepted" | "SignatureError" | "CertificateExpired" | "CertificateRevoked" | "NoCertificateAvailable" | "CertChainError" | "ContractCancelled";
|
|
2027
|
-
type DayOfWeekEnumType = "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday";
|
|
2028
|
-
type EnergyTransferModeEnumType = "AC_single_phase" | "AC_two_phase" | "AC_three_phase" | "DC" | "AC_BPT" | "AC_BPT_DER" | "AC_DER" | "DC_BPT" | "DC_ACDP" | "DC_ACDP_BPT" | "WPT";
|
|
2029
|
-
type EvseKindEnumType = "AC" | "DC";
|
|
2030
|
-
type MessageFormatEnumType = "ASCII" | "HTML" | "URI" | "UTF8" | "QRCODE";
|
|
2031
|
-
interface IdTokenInfoType {
|
|
2032
|
-
status: AuthorizationStatusEnumType;
|
|
2033
|
-
cacheExpiryDateTime?: string;
|
|
2034
|
-
chargingPriority?: number;
|
|
2035
|
-
groupIdToken?: IdTokenType;
|
|
2036
|
-
language1?: string;
|
|
2037
|
-
language2?: string;
|
|
2038
|
-
evseId?: number[];
|
|
2039
|
-
personalMessage?: MessageContentType;
|
|
2040
|
-
customData?: CustomDataType;
|
|
2041
|
-
}
|
|
2042
|
-
interface MessageContentType {
|
|
2043
|
-
format: MessageFormatEnumType;
|
|
2044
|
-
language?: string;
|
|
2045
|
-
content: string;
|
|
2046
|
-
customData?: CustomDataType;
|
|
2047
|
-
}
|
|
2048
|
-
interface PriceType {
|
|
2049
|
-
exclTax?: number;
|
|
2050
|
-
inclTax?: number;
|
|
2051
|
-
taxRates?: TaxRateType[];
|
|
2052
|
-
customData?: CustomDataType;
|
|
2053
|
-
}
|
|
2054
|
-
interface TariffConditionsFixedType {
|
|
2055
|
-
startTimeOfDay?: string;
|
|
2056
|
-
endTimeOfDay?: string;
|
|
2057
|
-
dayOfWeek?: DayOfWeekEnumType[];
|
|
2058
|
-
validFromDate?: string;
|
|
2059
|
-
validToDate?: string;
|
|
2060
|
-
evseKind?: EvseKindEnumType;
|
|
2061
|
-
paymentBrand?: string;
|
|
2062
|
-
paymentRecognition?: string;
|
|
2063
|
-
customData?: CustomDataType;
|
|
2064
|
-
}
|
|
2065
|
-
interface TariffConditionsType {
|
|
2066
|
-
startTimeOfDay?: string;
|
|
2067
|
-
endTimeOfDay?: string;
|
|
2068
|
-
dayOfWeek?: DayOfWeekEnumType[];
|
|
2069
|
-
validFromDate?: string;
|
|
2070
|
-
validToDate?: string;
|
|
2071
|
-
evseKind?: EvseKindEnumType;
|
|
2072
|
-
minEnergy?: number;
|
|
2073
|
-
maxEnergy?: number;
|
|
2074
|
-
minCurrent?: number;
|
|
2075
|
-
maxCurrent?: number;
|
|
2076
|
-
minPower?: number;
|
|
2077
|
-
maxPower?: number;
|
|
2078
|
-
minTime?: number;
|
|
2079
|
-
maxTime?: number;
|
|
2080
|
-
minChargingTime?: number;
|
|
2081
|
-
maxChargingTime?: number;
|
|
2082
|
-
minIdleTime?: number;
|
|
2083
|
-
maxIdleTime?: number;
|
|
2084
|
-
customData?: CustomDataType;
|
|
2085
|
-
}
|
|
2086
|
-
interface TariffEnergyPriceType {
|
|
2087
|
-
priceKwh: number;
|
|
2088
|
-
conditions?: TariffConditionsType;
|
|
2089
|
-
customData?: CustomDataType;
|
|
2090
|
-
}
|
|
2091
|
-
interface TariffEnergyType {
|
|
2092
|
-
prices: TariffEnergyPriceType[];
|
|
2093
|
-
taxRates?: TaxRateType[];
|
|
2094
|
-
customData?: CustomDataType;
|
|
2095
|
-
}
|
|
2096
|
-
interface TariffFixedPriceType {
|
|
2097
|
-
conditions?: TariffConditionsFixedType;
|
|
2098
|
-
priceFixed: number;
|
|
2099
|
-
customData?: CustomDataType;
|
|
2100
|
-
}
|
|
2101
|
-
interface TariffFixedType {
|
|
2102
|
-
prices: TariffFixedPriceType[];
|
|
2103
|
-
taxRates?: TaxRateType[];
|
|
2104
|
-
customData?: CustomDataType;
|
|
2105
|
-
}
|
|
2106
|
-
interface TariffTimePriceType {
|
|
2107
|
-
priceMinute: number;
|
|
2108
|
-
conditions?: TariffConditionsType;
|
|
2109
|
-
customData?: CustomDataType;
|
|
2110
|
-
}
|
|
2111
|
-
interface TariffTimeType {
|
|
2112
|
-
prices: TariffTimePriceType[];
|
|
2113
|
-
taxRates?: TaxRateType[];
|
|
2114
|
-
customData?: CustomDataType;
|
|
2115
|
-
}
|
|
2116
|
-
interface TariffType {
|
|
2117
|
-
tariffId: string;
|
|
2118
|
-
description?: MessageContentType[];
|
|
2119
|
-
currency: string;
|
|
2120
|
-
energy?: TariffEnergyType;
|
|
2121
|
-
validFrom?: string;
|
|
2122
|
-
chargingTime?: TariffTimeType;
|
|
2123
|
-
idleTime?: TariffTimeType;
|
|
2124
|
-
fixedFee?: TariffFixedType;
|
|
2125
|
-
reservationTime?: TariffTimeType;
|
|
2126
|
-
reservationFixed?: TariffFixedType;
|
|
2127
|
-
minCost?: PriceType;
|
|
2128
|
-
maxCost?: PriceType;
|
|
2129
|
-
customData?: CustomDataType;
|
|
2130
|
-
}
|
|
2131
|
-
interface TaxRateType {
|
|
2132
|
-
type: string;
|
|
2133
|
-
tax: number;
|
|
2134
|
-
stack?: number;
|
|
2135
|
-
customData?: CustomDataType;
|
|
2136
|
-
}
|
|
2137
|
-
type BatterySwapEventEnumType = "BatteryIn" | "BatteryOut" | "BatteryOutTimeout";
|
|
2138
|
-
interface BatteryDataType {
|
|
2139
|
-
evseId: number;
|
|
2140
|
-
serialNumber: string;
|
|
2141
|
-
soC: number;
|
|
2142
|
-
soH: number;
|
|
2143
|
-
productionDate?: string;
|
|
2144
|
-
vendorInfo?: string;
|
|
2145
|
-
customData?: CustomDataType;
|
|
2146
|
-
}
|
|
2147
|
-
type BootReasonEnumType = "ApplicationReset" | "FirmwareUpdate" | "LocalReset" | "PowerUp" | "RemoteReset" | "ScheduledReset" | "Triggered" | "Unknown" | "Watchdog";
|
|
2148
|
-
interface ChargingStationType {
|
|
2149
|
-
serialNumber?: string;
|
|
2150
|
-
model: string;
|
|
2151
|
-
modem?: ModemType;
|
|
2152
|
-
vendorName: string;
|
|
2153
|
-
firmwareVersion?: string;
|
|
2154
|
-
customData?: CustomDataType;
|
|
2155
|
-
}
|
|
2156
|
-
interface ModemType {
|
|
2157
|
-
iccid?: string;
|
|
2158
|
-
imsi?: string;
|
|
2159
|
-
customData?: CustomDataType;
|
|
2160
|
-
}
|
|
2161
|
-
type RegistrationStatusEnumType = "Accepted" | "Pending" | "Rejected";
|
|
2162
|
-
type CancelReservationStatusEnumType = "Accepted" | "Rejected";
|
|
2163
|
-
type CertificateSigningUseEnumType = "ChargingStationCertificate" | "V2GCertificate" | "V2G20Certificate";
|
|
2164
|
-
type CertificateSignedStatusEnumType = "Accepted" | "Rejected";
|
|
2165
|
-
type OperationalStatusEnumType = "Inoperative" | "Operative";
|
|
2166
|
-
interface EVSEType {
|
|
2167
|
-
id: number;
|
|
2168
|
-
connectorId?: number;
|
|
2169
|
-
customData?: CustomDataType;
|
|
2170
|
-
}
|
|
2171
|
-
type ChangeAvailabilityStatusEnumType = "Accepted" | "Rejected" | "Scheduled";
|
|
2172
|
-
type TariffChangeStatusEnumType = "Accepted" | "Rejected" | "TooManyElements" | "ConditionNotSupported" | "TxNotFound" | "NoCurrencyChange";
|
|
2173
|
-
type ClearCacheStatusEnumType = "Accepted" | "Rejected";
|
|
2174
|
-
type ChargingProfilePurposeEnumType = "ChargingStationExternalConstraints" | "ChargingStationMaxProfile" | "TxDefaultProfile" | "TxProfile" | "PriorityCharging" | "LocalGeneration";
|
|
2175
|
-
interface ClearChargingProfileType {
|
|
2176
|
-
evseId?: number;
|
|
2177
|
-
chargingProfilePurpose?: ChargingProfilePurposeEnumType;
|
|
2178
|
-
stackLevel?: number;
|
|
2179
|
-
customData?: CustomDataType;
|
|
2180
|
-
}
|
|
2181
|
-
type ClearChargingProfileStatusEnumType = "Accepted" | "Unknown";
|
|
2182
|
-
type DERControlEnumType = "EnterService" | "FreqDroop" | "FreqWatt" | "FixedPFAbsorb" | "FixedPFInject" | "FixedVar" | "Gradients" | "HFMustTrip" | "HFMayTrip" | "HVMustTrip" | "HVMomCess" | "HVMayTrip" | "LimitMaxDischarge" | "LFMustTrip" | "LVMustTrip" | "LVMomCess" | "LVMayTrip" | "PowerMonitoringMustTrip" | "VoltVar" | "VoltWatt" | "WattPF" | "WattVar";
|
|
2183
|
-
type DERControlStatusEnumType = "Accepted" | "Rejected" | "NotSupported" | "NotFound";
|
|
2184
|
-
type ClearMessageStatusEnumType = "Accepted" | "Unknown" | "Rejected";
|
|
2185
|
-
type TariffClearStatusEnumType = "Accepted" | "Rejected" | "NoTariff";
|
|
2186
|
-
interface ClearTariffsResultType {
|
|
2187
|
-
statusInfo?: StatusInfoType;
|
|
2188
|
-
tariffId?: string;
|
|
2189
|
-
status: TariffClearStatusEnumType;
|
|
2190
|
-
customData?: CustomDataType;
|
|
2191
|
-
}
|
|
2192
|
-
type ClearMonitoringStatusEnumType = "Accepted" | "Rejected" | "NotFound";
|
|
2193
|
-
interface ClearMonitoringResultType {
|
|
2194
|
-
status: ClearMonitoringStatusEnumType;
|
|
2195
|
-
id: number;
|
|
2196
|
-
statusInfo?: StatusInfoType;
|
|
2197
|
-
customData?: CustomDataType;
|
|
2198
|
-
}
|
|
2199
|
-
interface CertificateHashDataType {
|
|
2200
|
-
hashAlgorithm: HashAlgorithmEnumType;
|
|
2201
|
-
issuerNameHash: string;
|
|
2202
|
-
issuerKeyHash: string;
|
|
2203
|
-
serialNumber: string;
|
|
2204
|
-
customData?: CustomDataType;
|
|
2205
|
-
}
|
|
2206
|
-
type CustomerInformationStatusEnumType = "Accepted" | "Rejected" | "Invalid";
|
|
2207
|
-
type DataTransferStatusEnumType = "Accepted" | "Rejected" | "UnknownMessageId" | "UnknownVendorId";
|
|
2208
|
-
type DeleteCertificateStatusEnumType = "Accepted" | "Failed" | "NotFound";
|
|
2209
|
-
type FirmwareStatusEnumType = "Downloaded" | "DownloadFailed" | "Downloading" | "DownloadScheduled" | "DownloadPaused" | "Idle" | "InstallationFailed" | "Installing" | "Installed" | "InstallRebooting" | "InstallScheduled" | "InstallVerificationFailed" | "InvalidSignature" | "SignatureVerified";
|
|
2210
|
-
type CertificateActionEnumType = "Install" | "Update";
|
|
2211
|
-
type Iso15118EVCertificateStatusEnumType = "Accepted" | "Failed";
|
|
2212
|
-
type ReportBaseEnumType = "ConfigurationInventory" | "FullInventory" | "SummaryInventory";
|
|
2213
|
-
type GenericDeviceModelStatusEnumType = "Accepted" | "Rejected" | "NotSupported" | "EmptyResultSet";
|
|
2214
|
-
type CertificateStatusSourceEnumType = "CRL" | "OCSP";
|
|
2215
|
-
interface CertificateStatusRequestInfoType {
|
|
2216
|
-
certificateHashData: CertificateHashDataType;
|
|
2217
|
-
source: CertificateStatusSourceEnumType;
|
|
2218
|
-
urls: string[];
|
|
2219
|
-
customData?: CustomDataType;
|
|
2220
|
-
}
|
|
2221
|
-
type CertificateStatusEnumType = "Good" | "Revoked" | "Unknown" | "Failed";
|
|
2222
|
-
interface CertificateStatusType {
|
|
2223
|
-
certificateHashData: CertificateHashDataType;
|
|
2224
|
-
source: CertificateStatusSourceEnumType;
|
|
2225
|
-
status: CertificateStatusEnumType;
|
|
2226
|
-
nextUpdate: string;
|
|
2227
|
-
customData?: CustomDataType;
|
|
2228
|
-
}
|
|
2229
|
-
type GetCertificateStatusEnumType = "Accepted" | "Failed";
|
|
2230
|
-
interface ChargingProfileCriterionType {
|
|
2231
|
-
chargingProfilePurpose?: ChargingProfilePurposeEnumType;
|
|
2232
|
-
stackLevel?: number;
|
|
2233
|
-
chargingProfileId?: number[];
|
|
2234
|
-
chargingLimitSource?: string[];
|
|
2235
|
-
customData?: CustomDataType;
|
|
2236
|
-
}
|
|
2237
|
-
type GetChargingProfileStatusEnumType = "Accepted" | "NoProfiles";
|
|
2238
|
-
type ChargingRateUnitEnumType = "W" | "A";
|
|
2239
|
-
type OperationModeEnumType = "Idle" | "ChargingOnly" | "CentralSetpoint" | "ExternalSetpoint" | "ExternalLimits" | "CentralFrequency" | "LocalFrequency" | "LocalLoadBalancing";
|
|
2240
|
-
interface ChargingSchedulePeriodType {
|
|
2241
|
-
startPeriod: number;
|
|
2242
|
-
limit?: number;
|
|
2243
|
-
limit_L2?: number;
|
|
2244
|
-
limit_L3?: number;
|
|
2245
|
-
numberPhases?: number;
|
|
2246
|
-
phaseToUse?: number;
|
|
2247
|
-
dischargeLimit?: number;
|
|
2248
|
-
dischargeLimit_L2?: number;
|
|
2249
|
-
dischargeLimit_L3?: number;
|
|
2250
|
-
setpoint?: number;
|
|
2251
|
-
setpoint_L2?: number;
|
|
2252
|
-
setpoint_L3?: number;
|
|
2253
|
-
setpointReactive?: number;
|
|
2254
|
-
setpointReactive_L2?: number;
|
|
2255
|
-
setpointReactive_L3?: number;
|
|
2256
|
-
preconditioningRequest?: boolean;
|
|
2257
|
-
evseSleep?: boolean;
|
|
2258
|
-
v2xBaseline?: number;
|
|
2259
|
-
operationMode?: OperationModeEnumType;
|
|
2260
|
-
v2xFreqWattCurve?: V2XFreqWattPointType[];
|
|
2261
|
-
v2xSignalWattCurve?: V2XSignalWattPointType[];
|
|
2262
|
-
customData?: CustomDataType;
|
|
2263
|
-
}
|
|
2264
|
-
interface CompositeScheduleType {
|
|
2265
|
-
evseId: number;
|
|
2266
|
-
duration: number;
|
|
2267
|
-
scheduleStart: string;
|
|
2268
|
-
chargingRateUnit: ChargingRateUnitEnumType;
|
|
2269
|
-
chargingSchedulePeriod: ChargingSchedulePeriodType[];
|
|
2270
|
-
customData?: CustomDataType;
|
|
2271
|
-
}
|
|
2272
|
-
interface V2XFreqWattPointType {
|
|
2273
|
-
frequency: number;
|
|
2274
|
-
power: number;
|
|
2275
|
-
customData?: CustomDataType;
|
|
2276
|
-
}
|
|
2277
|
-
interface V2XSignalWattPointType {
|
|
2278
|
-
signal: number;
|
|
2279
|
-
power: number;
|
|
2280
|
-
customData?: CustomDataType;
|
|
2281
|
-
}
|
|
2282
|
-
type MessagePriorityEnumType = "AlwaysFront" | "InFront" | "NormalCycle";
|
|
2283
|
-
type MessageStateEnumType = "Charging" | "Faulted" | "Idle" | "Unavailable" | "Suspended" | "Discharging";
|
|
2284
|
-
type GetDisplayMessagesStatusEnumType = "Accepted" | "Unknown";
|
|
2285
|
-
type GetCertificateIdUseEnumType = "V2GRootCertificate" | "MORootCertificate" | "CSMSRootCertificate" | "V2GCertificateChain" | "ManufacturerRootCertificate" | "OEMRootCertificate";
|
|
2286
|
-
type GetInstalledCertificateStatusEnumType = "Accepted" | "NotFound";
|
|
2287
|
-
interface CertificateHashDataChainType {
|
|
2288
|
-
certificateHashData: CertificateHashDataType;
|
|
2289
|
-
certificateType: GetCertificateIdUseEnumType;
|
|
2290
|
-
childCertificateHashData?: CertificateHashDataType[];
|
|
2291
|
-
customData?: CustomDataType;
|
|
2292
|
-
}
|
|
2293
|
-
type LogEnumType = "DiagnosticsLog" | "SecurityLog" | "DataCollectorLog";
|
|
2294
|
-
interface LogParametersType {
|
|
2295
|
-
remoteLocation: string;
|
|
2296
|
-
oldestTimestamp?: string;
|
|
2297
|
-
latestTimestamp?: string;
|
|
2298
|
-
customData?: CustomDataType;
|
|
2299
|
-
}
|
|
2300
|
-
type LogStatusEnumType = "Accepted" | "Rejected" | "AcceptedCanceled";
|
|
2301
|
-
type MonitoringCriterionEnumType = "ThresholdMonitoring" | "DeltaMonitoring" | "PeriodicMonitoring";
|
|
2302
|
-
interface ComponentType {
|
|
2303
|
-
evse?: EVSEType;
|
|
2304
|
-
name: string;
|
|
2305
|
-
instance?: string;
|
|
2306
|
-
customData?: CustomDataType;
|
|
2307
|
-
}
|
|
2308
|
-
interface ComponentVariableType {
|
|
2309
|
-
component: ComponentType;
|
|
2310
|
-
variable?: VariableType;
|
|
2311
|
-
customData?: CustomDataType;
|
|
2312
|
-
}
|
|
2313
|
-
interface VariableType {
|
|
2314
|
-
name: string;
|
|
2315
|
-
instance?: string;
|
|
2316
|
-
customData?: CustomDataType;
|
|
2317
|
-
}
|
|
2318
|
-
interface ConstantStreamDataType {
|
|
2319
|
-
id: number;
|
|
2320
|
-
params: PeriodicEventStreamParamsType;
|
|
2321
|
-
variableMonitoringId: number;
|
|
2322
|
-
customData?: CustomDataType;
|
|
2323
|
-
}
|
|
2324
|
-
type ComponentCriterionEnumType = "Active" | "Available" | "Enabled" | "Problem";
|
|
2325
|
-
type TariffGetStatusEnumType = "Accepted" | "Rejected" | "NoTariff";
|
|
2326
|
-
type TariffKindEnumType = "DefaultTariff" | "DriverTariff";
|
|
2327
|
-
interface TariffAssignmentType {
|
|
2328
|
-
tariffId: string;
|
|
2329
|
-
tariffKind: TariffKindEnumType;
|
|
2330
|
-
validFrom?: string;
|
|
2331
|
-
evseIds?: number[];
|
|
2332
|
-
idTokens?: string[];
|
|
2333
|
-
customData?: CustomDataType;
|
|
2334
|
-
}
|
|
2335
|
-
type AttributeEnumType = "Actual" | "Target" | "MinSet" | "MaxSet";
|
|
2336
|
-
interface GetVariableDataType {
|
|
2337
|
-
attributeType?: AttributeEnumType;
|
|
2338
|
-
component: ComponentType;
|
|
2339
|
-
variable: VariableType;
|
|
2340
|
-
customData?: CustomDataType;
|
|
2341
|
-
}
|
|
2342
|
-
type GetVariableStatusEnumType = "Accepted" | "Rejected" | "UnknownComponent" | "UnknownVariable" | "NotSupportedAttributeType";
|
|
2343
|
-
interface GetVariableResultType {
|
|
2344
|
-
attributeStatus: GetVariableStatusEnumType;
|
|
2345
|
-
attributeStatusInfo?: StatusInfoType;
|
|
2346
|
-
attributeType?: AttributeEnumType;
|
|
2347
|
-
attributeValue?: string;
|
|
2348
|
-
component: ComponentType;
|
|
2349
|
-
variable: VariableType;
|
|
2350
|
-
customData?: CustomDataType;
|
|
2351
|
-
}
|
|
2352
|
-
type InstallCertificateUseEnumType = "V2GRootCertificate" | "MORootCertificate" | "ManufacturerRootCertificate" | "CSMSRootCertificate" | "OEMRootCertificate";
|
|
2353
|
-
type InstallCertificateStatusEnumType = "Accepted" | "Rejected" | "Failed";
|
|
2354
|
-
type UploadLogStatusEnumType = "BadMessage" | "Idle" | "NotSupportedOperation" | "PermissionDenied" | "Uploaded" | "UploadFailure" | "Uploading" | "AcceptedCanceled";
|
|
2355
|
-
type LocationEnumType = "Body" | "Cable" | "EV" | "Inlet" | "Outlet" | "Upstream";
|
|
2356
|
-
type MeasurandEnumType = "Current.Export" | "Current.Export.Offered" | "Current.Export.Minimum" | "Current.Import" | "Current.Import.Offered" | "Current.Import.Minimum" | "Current.Offered" | "Display.PresentSOC" | "Display.MinimumSOC" | "Display.TargetSOC" | "Display.MaximumSOC" | "Display.RemainingTimeToMinimumSOC" | "Display.RemainingTimeToTargetSOC" | "Display.RemainingTimeToMaximumSOC" | "Display.ChargingComplete" | "Display.BatteryEnergyCapacity" | "Display.InletHot" | "Energy.Active.Export.Interval" | "Energy.Active.Export.Register" | "Energy.Active.Import.Interval" | "Energy.Active.Import.Register" | "Energy.Active.Import.CableLoss" | "Energy.Active.Import.LocalGeneration.Register" | "Energy.Active.Net" | "Energy.Active.Setpoint.Interval" | "Energy.Apparent.Export" | "Energy.Apparent.Import" | "Energy.Apparent.Net" | "Energy.Reactive.Export.Interval" | "Energy.Reactive.Export.Register" | "Energy.Reactive.Import.Interval" | "Energy.Reactive.Import.Register" | "Energy.Reactive.Net" | "EnergyRequest.Target" | "EnergyRequest.Minimum" | "EnergyRequest.Maximum" | "EnergyRequest.Minimum.V2X" | "EnergyRequest.Maximum.V2X" | "EnergyRequest.Bulk" | "Frequency" | "Power.Active.Export" | "Power.Active.Import" | "Power.Active.Setpoint" | "Power.Active.Residual" | "Power.Export.Minimum" | "Power.Export.Offered" | "Power.Factor" | "Power.Import.Offered" | "Power.Import.Minimum" | "Power.Offered" | "Power.Reactive.Export" | "Power.Reactive.Import" | "SoC" | "Voltage" | "Voltage.Minimum" | "Voltage.Maximum";
|
|
2357
|
-
type PhaseEnumType = "L1" | "L2" | "L3" | "N" | "L1-N" | "L2-N" | "L3-N" | "L1-L2" | "L2-L3" | "L3-L1";
|
|
2358
|
-
type ReadingContextEnumType = "Interruption.Begin" | "Interruption.End" | "Other" | "Sample.Clock" | "Sample.Periodic" | "Transaction.Begin" | "Transaction.End" | "Trigger";
|
|
2359
|
-
interface MeterValueType {
|
|
2360
|
-
sampledValue: SampledValueType[];
|
|
2361
|
-
timestamp: string;
|
|
2362
|
-
customData?: CustomDataType;
|
|
2363
|
-
}
|
|
2364
|
-
interface SampledValueType {
|
|
2365
|
-
value: number;
|
|
2366
|
-
measurand?: MeasurandEnumType;
|
|
2367
|
-
context?: ReadingContextEnumType;
|
|
2368
|
-
phase?: PhaseEnumType;
|
|
2369
|
-
location?: LocationEnumType;
|
|
2370
|
-
signedMeterValue?: SignedMeterValueType;
|
|
2371
|
-
unitOfMeasure?: UnitOfMeasureType;
|
|
2372
|
-
customData?: CustomDataType;
|
|
2373
|
-
}
|
|
2374
|
-
interface SignedMeterValueType {
|
|
2375
|
-
signedMeterData: string;
|
|
2376
|
-
signingMethod?: string;
|
|
2377
|
-
encodingMethod: string;
|
|
2378
|
-
publicKey?: string;
|
|
2379
|
-
customData?: CustomDataType;
|
|
2380
|
-
}
|
|
2381
|
-
interface UnitOfMeasureType {
|
|
2382
|
-
unit?: string;
|
|
2383
|
-
multiplier?: number;
|
|
2384
|
-
customData?: CustomDataType;
|
|
2385
|
-
}
|
|
2386
|
-
type NotifyAllowedEnergyTransferStatusEnumType = "Accepted" | "Rejected";
|
|
2387
|
-
type CostKindEnumType = "CarbonDioxideEmission" | "RelativePricePercentage" | "RenewableGenerationPercentage";
|
|
2388
|
-
interface AbsolutePriceScheduleType {
|
|
2389
|
-
timeAnchor: string;
|
|
2390
|
-
priceScheduleID: number;
|
|
2391
|
-
priceScheduleDescription?: string;
|
|
2392
|
-
currency: string;
|
|
2393
|
-
language: string;
|
|
2394
|
-
priceAlgorithm: string;
|
|
2395
|
-
minimumCost?: RationalNumberType;
|
|
2396
|
-
maximumCost?: RationalNumberType;
|
|
2397
|
-
priceRuleStacks: PriceRuleStackType[];
|
|
2398
|
-
taxRules?: TaxRuleType[];
|
|
2399
|
-
overstayRuleList?: OverstayRuleListType;
|
|
2400
|
-
additionalSelectedServices?: AdditionalSelectedServicesType[];
|
|
2401
|
-
customData?: CustomDataType;
|
|
2402
|
-
}
|
|
2403
|
-
interface AdditionalSelectedServicesType {
|
|
2404
|
-
serviceFee: RationalNumberType;
|
|
2405
|
-
serviceName: string;
|
|
2406
|
-
customData?: CustomDataType;
|
|
2407
|
-
}
|
|
2408
|
-
interface ChargingLimitType {
|
|
2409
|
-
chargingLimitSource: string;
|
|
2410
|
-
isLocalGeneration?: boolean;
|
|
2411
|
-
isGridCritical?: boolean;
|
|
2412
|
-
customData?: CustomDataType;
|
|
2413
|
-
}
|
|
2414
|
-
interface ChargingScheduleType {
|
|
2415
|
-
id: number;
|
|
2416
|
-
limitAtSoC?: LimitAtSoCType;
|
|
2417
|
-
startSchedule?: string;
|
|
2418
|
-
duration?: number;
|
|
2419
|
-
chargingRateUnit: ChargingRateUnitEnumType;
|
|
2420
|
-
minChargingRate?: number;
|
|
2421
|
-
powerTolerance?: number;
|
|
2422
|
-
signatureId?: number;
|
|
2423
|
-
digestValue?: string;
|
|
2424
|
-
useLocalTime?: boolean;
|
|
2425
|
-
chargingSchedulePeriod: ChargingSchedulePeriodType[];
|
|
2426
|
-
randomizedDelay?: number;
|
|
2427
|
-
salesTariff?: SalesTariffType;
|
|
2428
|
-
absolutePriceSchedule?: AbsolutePriceScheduleType;
|
|
2429
|
-
priceLevelSchedule?: PriceLevelScheduleType;
|
|
2430
|
-
customData?: CustomDataType;
|
|
2431
|
-
}
|
|
2432
|
-
interface ConsumptionCostType {
|
|
2433
|
-
startValue: number;
|
|
2434
|
-
cost: CostType[];
|
|
2435
|
-
customData?: CustomDataType;
|
|
2436
|
-
}
|
|
2437
|
-
interface CostType {
|
|
2438
|
-
costKind: CostKindEnumType;
|
|
2439
|
-
amount: number;
|
|
2440
|
-
amountMultiplier?: number;
|
|
2441
|
-
customData?: CustomDataType;
|
|
2442
|
-
}
|
|
2443
|
-
interface LimitAtSoCType {
|
|
2444
|
-
soc: number;
|
|
2445
|
-
limit: number;
|
|
2446
|
-
customData?: CustomDataType;
|
|
2447
|
-
}
|
|
2448
|
-
interface OverstayRuleListType {
|
|
2449
|
-
overstayPowerThreshold?: RationalNumberType;
|
|
2450
|
-
overstayRule: OverstayRuleType[];
|
|
2451
|
-
overstayTimeThreshold?: number;
|
|
2452
|
-
customData?: CustomDataType;
|
|
2453
|
-
}
|
|
2454
|
-
interface OverstayRuleType {
|
|
2455
|
-
overstayFee: RationalNumberType;
|
|
2456
|
-
overstayRuleDescription?: string;
|
|
2457
|
-
startTime: number;
|
|
2458
|
-
overstayFeePeriod: number;
|
|
2459
|
-
customData?: CustomDataType;
|
|
2460
|
-
}
|
|
2461
|
-
interface PriceLevelScheduleEntryType {
|
|
2462
|
-
duration: number;
|
|
2463
|
-
priceLevel: number;
|
|
2464
|
-
customData?: CustomDataType;
|
|
2465
|
-
}
|
|
2466
|
-
interface PriceLevelScheduleType {
|
|
2467
|
-
priceLevelScheduleEntries: PriceLevelScheduleEntryType[];
|
|
2468
|
-
timeAnchor: string;
|
|
2469
|
-
priceScheduleId: number;
|
|
2470
|
-
priceScheduleDescription?: string;
|
|
2471
|
-
numberOfPriceLevels: number;
|
|
2472
|
-
customData?: CustomDataType;
|
|
2473
|
-
}
|
|
2474
|
-
interface PriceRuleStackType {
|
|
2475
|
-
duration: number;
|
|
2476
|
-
priceRule: PriceRuleType[];
|
|
2477
|
-
customData?: CustomDataType;
|
|
2478
|
-
}
|
|
2479
|
-
interface PriceRuleType {
|
|
2480
|
-
parkingFeePeriod?: number;
|
|
2481
|
-
carbonDioxideEmission?: number;
|
|
2482
|
-
renewableGenerationPercentage?: number;
|
|
2483
|
-
energyFee: RationalNumberType;
|
|
2484
|
-
parkingFee?: RationalNumberType;
|
|
2485
|
-
powerRangeStart: RationalNumberType;
|
|
2486
|
-
customData?: CustomDataType;
|
|
2487
|
-
}
|
|
2488
|
-
interface RationalNumberType {
|
|
2489
|
-
exponent: number;
|
|
2490
|
-
value: number;
|
|
2491
|
-
customData?: CustomDataType;
|
|
2492
|
-
}
|
|
2493
|
-
interface RelativeTimeIntervalType {
|
|
2494
|
-
start: number;
|
|
2495
|
-
duration?: number;
|
|
2496
|
-
customData?: CustomDataType;
|
|
2497
|
-
}
|
|
2498
|
-
interface SalesTariffEntryType {
|
|
2499
|
-
relativeTimeInterval: RelativeTimeIntervalType;
|
|
2500
|
-
ePriceLevel?: number;
|
|
2501
|
-
consumptionCost?: ConsumptionCostType[];
|
|
2502
|
-
customData?: CustomDataType;
|
|
2503
|
-
}
|
|
2504
|
-
interface SalesTariffType {
|
|
2505
|
-
id: number;
|
|
2506
|
-
salesTariffDescription?: string;
|
|
2507
|
-
numEPriceLevels?: number;
|
|
2508
|
-
salesTariffEntry: SalesTariffEntryType[];
|
|
2509
|
-
customData?: CustomDataType;
|
|
2510
|
-
}
|
|
2511
|
-
interface TaxRuleType {
|
|
2512
|
-
taxRuleID: number;
|
|
2513
|
-
taxRuleName?: string;
|
|
2514
|
-
taxIncludedInPrice?: boolean;
|
|
2515
|
-
appliesToEnergyFee: boolean;
|
|
2516
|
-
appliesToParkingFee: boolean;
|
|
2517
|
-
appliesToOverstayFee: boolean;
|
|
2518
|
-
appliesToMinimumMaximumCost: boolean;
|
|
2519
|
-
taxRate: RationalNumberType;
|
|
2520
|
-
customData?: CustomDataType;
|
|
2521
|
-
}
|
|
2522
|
-
type GridEventFaultEnumType = "CurrentImbalance" | "LocalEmergency" | "LowInputPower" | "OverCurrent" | "OverFrequency" | "OverVoltage" | "PhaseRotation" | "RemoteEmergency" | "UnderFrequency" | "UnderVoltage" | "VoltageImbalance";
|
|
2523
|
-
interface MessageInfoType {
|
|
2524
|
-
display?: ComponentType;
|
|
2525
|
-
id: number;
|
|
2526
|
-
priority: MessagePriorityEnumType;
|
|
2527
|
-
state?: MessageStateEnumType;
|
|
2528
|
-
startDateTime?: string;
|
|
2529
|
-
endDateTime?: string;
|
|
2530
|
-
transactionId?: string;
|
|
2531
|
-
message: MessageContentType;
|
|
2532
|
-
messageExtra?: MessageContentType[];
|
|
2533
|
-
customData?: CustomDataType;
|
|
2534
|
-
}
|
|
2535
|
-
type ControlModeEnumType = "ScheduledControl" | "DynamicControl";
|
|
2536
|
-
type IslandingDetectionEnumType = "NoAntiIslandingSupport" | "RoCoF" | "UVP_OVP" | "UFP_OFP" | "VoltageVectorShift" | "ZeroCrossingDetection" | "OtherPassive" | "ImpedanceMeasurement" | "ImpedanceAtFrequency" | "SlipModeFrequencyShift" | "SandiaFrequencyShift" | "SandiaVoltageShift" | "FrequencyJump" | "RCLQFactor" | "OtherActive";
|
|
2537
|
-
type MobilityNeedsModeEnumType = "EVCC" | "EVCC_SECC";
|
|
2538
|
-
interface ACChargingParametersType {
|
|
2539
|
-
energyAmount: number;
|
|
2540
|
-
evMinCurrent: number;
|
|
2541
|
-
evMaxCurrent: number;
|
|
2542
|
-
evMaxVoltage: number;
|
|
2543
|
-
customData?: CustomDataType;
|
|
2544
|
-
}
|
|
2545
|
-
interface ChargingNeedsType {
|
|
2546
|
-
acChargingParameters?: ACChargingParametersType;
|
|
2547
|
-
derChargingParameters?: DERChargingParametersType;
|
|
2548
|
-
evEnergyOffer?: EVEnergyOfferType;
|
|
2549
|
-
requestedEnergyTransfer: EnergyTransferModeEnumType;
|
|
2550
|
-
dcChargingParameters?: DCChargingParametersType;
|
|
2551
|
-
v2xChargingParameters?: V2XChargingParametersType;
|
|
2552
|
-
availableEnergyTransfer?: EnergyTransferModeEnumType[];
|
|
2553
|
-
controlMode?: ControlModeEnumType;
|
|
2554
|
-
mobilityNeedsMode?: MobilityNeedsModeEnumType;
|
|
2555
|
-
departureTime?: string;
|
|
2556
|
-
customData?: CustomDataType;
|
|
2557
|
-
}
|
|
2558
|
-
interface DCChargingParametersType {
|
|
2559
|
-
evMaxCurrent: number;
|
|
2560
|
-
evMaxVoltage: number;
|
|
2561
|
-
evMaxPower?: number;
|
|
2562
|
-
evEnergyCapacity?: number;
|
|
2563
|
-
energyAmount?: number;
|
|
2564
|
-
stateOfCharge?: number;
|
|
2565
|
-
fullSoC?: number;
|
|
2566
|
-
bulkSoC?: number;
|
|
2567
|
-
customData?: CustomDataType;
|
|
2568
|
-
}
|
|
2569
|
-
interface DERChargingParametersType {
|
|
2570
|
-
evSupportedDERControl?: DERControlEnumType[];
|
|
2571
|
-
evOverExcitedMaxDischargePower?: number;
|
|
2572
|
-
evOverExcitedPowerFactor?: number;
|
|
2573
|
-
evUnderExcitedMaxDischargePower?: number;
|
|
2574
|
-
evUnderExcitedPowerFactor?: number;
|
|
2575
|
-
maxApparentPower?: number;
|
|
2576
|
-
maxChargeApparentPower?: number;
|
|
2577
|
-
maxChargeApparentPower_L2?: number;
|
|
2578
|
-
maxChargeApparentPower_L3?: number;
|
|
2579
|
-
maxDischargeApparentPower?: number;
|
|
2580
|
-
maxDischargeApparentPower_L2?: number;
|
|
2581
|
-
maxDischargeApparentPower_L3?: number;
|
|
2582
|
-
maxChargeReactivePower?: number;
|
|
2583
|
-
maxChargeReactivePower_L2?: number;
|
|
2584
|
-
maxChargeReactivePower_L3?: number;
|
|
2585
|
-
minChargeReactivePower?: number;
|
|
2586
|
-
minChargeReactivePower_L2?: number;
|
|
2587
|
-
minChargeReactivePower_L3?: number;
|
|
2588
|
-
maxDischargeReactivePower?: number;
|
|
2589
|
-
maxDischargeReactivePower_L2?: number;
|
|
2590
|
-
maxDischargeReactivePower_L3?: number;
|
|
2591
|
-
minDischargeReactivePower?: number;
|
|
2592
|
-
minDischargeReactivePower_L2?: number;
|
|
2593
|
-
minDischargeReactivePower_L3?: number;
|
|
2594
|
-
nominalVoltage?: number;
|
|
2595
|
-
nominalVoltageOffset?: number;
|
|
2596
|
-
maxNominalVoltage?: number;
|
|
2597
|
-
minNominalVoltage?: number;
|
|
2598
|
-
evInverterManufacturer?: string;
|
|
2599
|
-
evInverterModel?: string;
|
|
2600
|
-
evInverterSerialNumber?: string;
|
|
2601
|
-
evInverterSwVersion?: string;
|
|
2602
|
-
evInverterHwVersion?: string;
|
|
2603
|
-
evIslandingDetectionMethod?: IslandingDetectionEnumType[];
|
|
2604
|
-
evIslandingTripTime?: number;
|
|
2605
|
-
evMaximumLevel1DCInjection?: number;
|
|
2606
|
-
evDurationLevel1DCInjection?: number;
|
|
2607
|
-
evMaximumLevel2DCInjection?: number;
|
|
2608
|
-
evDurationLevel2DCInjection?: number;
|
|
2609
|
-
evReactiveSusceptance?: number;
|
|
2610
|
-
evSessionTotalDischargeEnergyAvailable?: number;
|
|
2611
|
-
customData?: CustomDataType;
|
|
2612
|
-
}
|
|
2613
|
-
interface EVAbsolutePriceScheduleEntryType {
|
|
2614
|
-
duration: number;
|
|
2615
|
-
evPriceRule: EVPriceRuleType[];
|
|
2616
|
-
customData?: CustomDataType;
|
|
2617
|
-
}
|
|
2618
|
-
interface EVAbsolutePriceScheduleType {
|
|
2619
|
-
timeAnchor: string;
|
|
2620
|
-
currency: string;
|
|
2621
|
-
evAbsolutePriceScheduleEntries: EVAbsolutePriceScheduleEntryType[];
|
|
2622
|
-
priceAlgorithm: string;
|
|
2623
|
-
customData?: CustomDataType;
|
|
2624
|
-
}
|
|
2625
|
-
interface EVEnergyOfferType {
|
|
2626
|
-
evAbsolutePriceSchedule?: EVAbsolutePriceScheduleType;
|
|
2627
|
-
evPowerSchedule: EVPowerScheduleType;
|
|
2628
|
-
customData?: CustomDataType;
|
|
2629
|
-
}
|
|
2630
|
-
interface EVPowerScheduleEntryType {
|
|
2631
|
-
duration: number;
|
|
2632
|
-
power: number;
|
|
2633
|
-
customData?: CustomDataType;
|
|
2634
|
-
}
|
|
2635
|
-
interface EVPowerScheduleType {
|
|
2636
|
-
evPowerScheduleEntries: EVPowerScheduleEntryType[];
|
|
2637
|
-
timeAnchor: string;
|
|
2638
|
-
customData?: CustomDataType;
|
|
2639
|
-
}
|
|
2640
|
-
interface EVPriceRuleType {
|
|
2641
|
-
energyFee: number;
|
|
2642
|
-
powerRangeStart: number;
|
|
2643
|
-
customData?: CustomDataType;
|
|
2644
|
-
}
|
|
2645
|
-
interface V2XChargingParametersType {
|
|
2646
|
-
minChargePower?: number;
|
|
2647
|
-
minChargePower_L2?: number;
|
|
2648
|
-
minChargePower_L3?: number;
|
|
2649
|
-
maxChargePower?: number;
|
|
2650
|
-
maxChargePower_L2?: number;
|
|
2651
|
-
maxChargePower_L3?: number;
|
|
2652
|
-
minDischargePower?: number;
|
|
2653
|
-
minDischargePower_L2?: number;
|
|
2654
|
-
minDischargePower_L3?: number;
|
|
2655
|
-
maxDischargePower?: number;
|
|
2656
|
-
maxDischargePower_L2?: number;
|
|
2657
|
-
maxDischargePower_L3?: number;
|
|
2658
|
-
minChargeCurrent?: number;
|
|
2659
|
-
maxChargeCurrent?: number;
|
|
2660
|
-
minDischargeCurrent?: number;
|
|
2661
|
-
maxDischargeCurrent?: number;
|
|
2662
|
-
minVoltage?: number;
|
|
2663
|
-
maxVoltage?: number;
|
|
2664
|
-
evTargetEnergyRequest?: number;
|
|
2665
|
-
evMinEnergyRequest?: number;
|
|
2666
|
-
evMaxEnergyRequest?: number;
|
|
2667
|
-
evMinV2XEnergyRequest?: number;
|
|
2668
|
-
evMaxV2XEnergyRequest?: number;
|
|
2669
|
-
targetSoC?: number;
|
|
2670
|
-
customData?: CustomDataType;
|
|
2671
|
-
}
|
|
2672
|
-
type NotifyEVChargingNeedsStatusEnumType = "Accepted" | "Rejected" | "Processing" | "NoChargingProfile";
|
|
2673
|
-
type EventNotificationEnumType = "HardWiredNotification" | "HardWiredMonitor" | "PreconfiguredMonitor" | "CustomMonitor";
|
|
2674
|
-
type EventTriggerEnumType = "Alerting" | "Delta" | "Periodic";
|
|
2675
|
-
interface EventDataType {
|
|
2676
|
-
eventId: number;
|
|
2677
|
-
timestamp: string;
|
|
2678
|
-
trigger: EventTriggerEnumType;
|
|
2679
|
-
cause?: number;
|
|
2680
|
-
actualValue: string;
|
|
2681
|
-
techCode?: string;
|
|
2682
|
-
techInfo?: string;
|
|
2683
|
-
cleared?: boolean;
|
|
2684
|
-
transactionId?: string;
|
|
2685
|
-
component: ComponentType;
|
|
2686
|
-
variableMonitoringId?: number;
|
|
2687
|
-
eventNotificationType: EventNotificationEnumType;
|
|
2688
|
-
variable: VariableType;
|
|
2689
|
-
severity?: number;
|
|
2690
|
-
customData?: CustomDataType;
|
|
2691
|
-
}
|
|
2692
|
-
type MonitorEnumType = "UpperThreshold" | "LowerThreshold" | "Delta" | "Periodic" | "PeriodicClockAligned" | "TargetDelta" | "TargetDeltaRelative";
|
|
2693
|
-
interface MonitoringDataType {
|
|
2694
|
-
component: ComponentType;
|
|
2695
|
-
variable: VariableType;
|
|
2696
|
-
variableMonitoring: VariableMonitoringType[];
|
|
2697
|
-
customData?: CustomDataType;
|
|
2698
|
-
}
|
|
2699
|
-
interface VariableMonitoringType {
|
|
2700
|
-
id: number;
|
|
2701
|
-
transaction: boolean;
|
|
2702
|
-
value: number;
|
|
2703
|
-
type: MonitorEnumType;
|
|
2704
|
-
severity: number;
|
|
2705
|
-
eventNotificationType: EventNotificationEnumType;
|
|
2706
|
-
customData?: CustomDataType;
|
|
2707
|
-
}
|
|
2708
|
-
type DataEnumType = "string" | "decimal" | "integer" | "dateTime" | "boolean" | "OptionList" | "SequenceList" | "MemberList";
|
|
2709
|
-
type MutabilityEnumType = "ReadOnly" | "WriteOnly" | "ReadWrite";
|
|
2710
|
-
interface ReportDataType {
|
|
2711
|
-
component: ComponentType;
|
|
2712
|
-
variable: VariableType;
|
|
2713
|
-
variableAttribute: VariableAttributeType[];
|
|
2714
|
-
variableCharacteristics?: VariableCharacteristicsType;
|
|
2715
|
-
customData?: CustomDataType;
|
|
2716
|
-
}
|
|
2717
|
-
interface VariableAttributeType {
|
|
2718
|
-
type?: AttributeEnumType;
|
|
2719
|
-
value?: string;
|
|
2720
|
-
mutability?: MutabilityEnumType;
|
|
2721
|
-
persistent?: boolean;
|
|
2722
|
-
constant?: boolean;
|
|
2723
|
-
customData?: CustomDataType;
|
|
2724
|
-
}
|
|
2725
|
-
interface VariableCharacteristicsType {
|
|
2726
|
-
unit?: string;
|
|
2727
|
-
dataType: DataEnumType;
|
|
2728
|
-
minLimit?: number;
|
|
2729
|
-
maxLimit?: number;
|
|
2730
|
-
maxElements?: number;
|
|
2731
|
-
valuesList?: string;
|
|
2732
|
-
supportsMonitoring: boolean;
|
|
2733
|
-
customData?: CustomDataType;
|
|
2734
|
-
}
|
|
2735
|
-
type PaymentStatusEnumType = "Settled" | "Canceled" | "Rejected" | "Failed";
|
|
2736
|
-
interface AddressType {
|
|
2737
|
-
name: string;
|
|
2738
|
-
address1: string;
|
|
2739
|
-
address2?: string;
|
|
2740
|
-
city: string;
|
|
2741
|
-
postalCode?: string;
|
|
2742
|
-
country: string;
|
|
2743
|
-
customData?: CustomDataType;
|
|
2744
|
-
}
|
|
2745
|
-
type PublishFirmwareStatusEnumType = "Idle" | "DownloadScheduled" | "Downloading" | "Downloaded" | "Published" | "DownloadFailed" | "DownloadPaused" | "InvalidChecksum" | "ChecksumVerified" | "PublishFailed";
|
|
2746
|
-
type ChargingProfileStatusEnumType = "Accepted" | "Rejected";
|
|
2747
|
-
interface ChargingScheduleUpdateType {
|
|
2748
|
-
limit?: number;
|
|
2749
|
-
limit_L2?: number;
|
|
2750
|
-
limit_L3?: number;
|
|
2751
|
-
dischargeLimit?: number;
|
|
2752
|
-
dischargeLimit_L2?: number;
|
|
2753
|
-
dischargeLimit_L3?: number;
|
|
2754
|
-
setpoint?: number;
|
|
2755
|
-
setpoint_L2?: number;
|
|
2756
|
-
setpoint_L3?: number;
|
|
2757
|
-
setpointReactive?: number;
|
|
2758
|
-
setpointReactive_L2?: number;
|
|
2759
|
-
setpointReactive_L3?: number;
|
|
2760
|
-
customData?: CustomDataType;
|
|
2761
|
-
}
|
|
2762
|
-
type ChargingProfileKindEnumType = "Absolute" | "Recurring" | "Relative" | "Dynamic";
|
|
2763
|
-
type RecurrencyKindEnumType = "Daily" | "Weekly";
|
|
2764
|
-
interface ChargingProfileType {
|
|
2765
|
-
id: number;
|
|
2766
|
-
stackLevel: number;
|
|
2767
|
-
chargingProfilePurpose: ChargingProfilePurposeEnumType;
|
|
2768
|
-
chargingProfileKind: ChargingProfileKindEnumType;
|
|
2769
|
-
recurrencyKind?: RecurrencyKindEnumType;
|
|
2770
|
-
validFrom?: string;
|
|
2771
|
-
validTo?: string;
|
|
2772
|
-
transactionId?: string;
|
|
2773
|
-
maxOfflineDuration?: number;
|
|
2774
|
-
chargingSchedule: ChargingScheduleType[];
|
|
2775
|
-
invalidAfterOfflineDuration?: boolean;
|
|
2776
|
-
dynUpdateInterval?: number;
|
|
2777
|
-
dynUpdateTime?: string;
|
|
2778
|
-
priceScheduleSignature?: string;
|
|
2779
|
-
customData?: CustomDataType;
|
|
2780
|
-
}
|
|
2781
|
-
type DERUnitEnumType = "Not_Applicable" | "PctMaxW" | "PctMaxVar" | "PctWAvail" | "PctVarAvail" | "PctEffectiveV";
|
|
2782
|
-
type PowerDuringCessationEnumType = "Active" | "Reactive";
|
|
2783
|
-
interface DERCurveGetType {
|
|
2784
|
-
curve: DERCurveType;
|
|
2785
|
-
id: string;
|
|
2786
|
-
curveType: DERControlEnumType;
|
|
2787
|
-
isDefault: boolean;
|
|
2788
|
-
isSuperseded: boolean;
|
|
2789
|
-
customData?: CustomDataType;
|
|
2790
|
-
}
|
|
2791
|
-
interface DERCurvePointsType {
|
|
2792
|
-
x: number;
|
|
2793
|
-
y: number;
|
|
2794
|
-
customData?: CustomDataType;
|
|
2795
|
-
}
|
|
2796
|
-
interface DERCurveType {
|
|
2797
|
-
curveData: DERCurvePointsType[];
|
|
2798
|
-
hysteresis?: HysteresisType;
|
|
2799
|
-
priority: number;
|
|
2800
|
-
reactivePowerParams?: ReactivePowerParamsType;
|
|
2801
|
-
voltageParams?: VoltageParamsType;
|
|
2802
|
-
yUnit: DERUnitEnumType;
|
|
2803
|
-
responseTime?: number;
|
|
2804
|
-
startTime?: string;
|
|
2805
|
-
duration?: number;
|
|
2806
|
-
customData?: CustomDataType;
|
|
2807
|
-
}
|
|
2808
|
-
interface EnterServiceGetType {
|
|
2809
|
-
enterService: EnterServiceType;
|
|
2810
|
-
id: string;
|
|
2811
|
-
customData?: CustomDataType;
|
|
2812
|
-
}
|
|
2813
|
-
interface EnterServiceType {
|
|
2814
|
-
priority: number;
|
|
2815
|
-
highVoltage: number;
|
|
2816
|
-
lowVoltage: number;
|
|
2817
|
-
highFreq: number;
|
|
2818
|
-
lowFreq: number;
|
|
2819
|
-
delay?: number;
|
|
2820
|
-
randomDelay?: number;
|
|
2821
|
-
rampRate?: number;
|
|
2822
|
-
customData?: CustomDataType;
|
|
2823
|
-
}
|
|
2824
|
-
interface FixedPFGetType {
|
|
2825
|
-
fixedPF: FixedPFType;
|
|
2826
|
-
id: string;
|
|
2827
|
-
isDefault: boolean;
|
|
2828
|
-
isSuperseded: boolean;
|
|
2829
|
-
customData?: CustomDataType;
|
|
2830
|
-
}
|
|
2831
|
-
interface FixedPFType {
|
|
2832
|
-
priority: number;
|
|
2833
|
-
displacement: number;
|
|
2834
|
-
excitation: boolean;
|
|
2835
|
-
startTime?: string;
|
|
2836
|
-
duration?: number;
|
|
2837
|
-
customData?: CustomDataType;
|
|
2838
|
-
}
|
|
2839
|
-
interface FixedVarGetType {
|
|
2840
|
-
fixedVar: FixedVarType;
|
|
2841
|
-
id: string;
|
|
2842
|
-
isDefault: boolean;
|
|
2843
|
-
isSuperseded: boolean;
|
|
2844
|
-
customData?: CustomDataType;
|
|
2845
|
-
}
|
|
2846
|
-
interface FixedVarType {
|
|
2847
|
-
priority: number;
|
|
2848
|
-
setpoint: number;
|
|
2849
|
-
unit: DERUnitEnumType;
|
|
2850
|
-
startTime?: string;
|
|
2851
|
-
duration?: number;
|
|
2852
|
-
customData?: CustomDataType;
|
|
2853
|
-
}
|
|
2854
|
-
interface FreqDroopGetType {
|
|
2855
|
-
freqDroop: FreqDroopType;
|
|
2856
|
-
id: string;
|
|
2857
|
-
isDefault: boolean;
|
|
2858
|
-
isSuperseded: boolean;
|
|
2859
|
-
customData?: CustomDataType;
|
|
2860
|
-
}
|
|
2861
|
-
interface FreqDroopType {
|
|
2862
|
-
priority: number;
|
|
2863
|
-
overFreq: number;
|
|
2864
|
-
underFreq: number;
|
|
2865
|
-
overDroop: number;
|
|
2866
|
-
underDroop: number;
|
|
2867
|
-
responseTime: number;
|
|
2868
|
-
startTime?: string;
|
|
2869
|
-
duration?: number;
|
|
2870
|
-
customData?: CustomDataType;
|
|
2871
|
-
}
|
|
2872
|
-
interface GradientGetType {
|
|
2873
|
-
gradient: GradientType;
|
|
2874
|
-
id: string;
|
|
2875
|
-
customData?: CustomDataType;
|
|
2876
|
-
}
|
|
2877
|
-
interface GradientType {
|
|
2878
|
-
priority: number;
|
|
2879
|
-
gradient: number;
|
|
2880
|
-
softGradient: number;
|
|
2881
|
-
customData?: CustomDataType;
|
|
2882
|
-
}
|
|
2883
|
-
interface HysteresisType {
|
|
2884
|
-
hysteresisHigh?: number;
|
|
2885
|
-
hysteresisLow?: number;
|
|
2886
|
-
hysteresisDelay?: number;
|
|
2887
|
-
hysteresisGradient?: number;
|
|
2888
|
-
customData?: CustomDataType;
|
|
2889
|
-
}
|
|
2890
|
-
interface LimitMaxDischargeGetType {
|
|
2891
|
-
id: string;
|
|
2892
|
-
isDefault: boolean;
|
|
2893
|
-
isSuperseded: boolean;
|
|
2894
|
-
limitMaxDischarge: LimitMaxDischargeType;
|
|
2895
|
-
customData?: CustomDataType;
|
|
2896
|
-
}
|
|
2897
|
-
interface LimitMaxDischargeType {
|
|
2898
|
-
priority: number;
|
|
2899
|
-
pctMaxDischargePower?: number;
|
|
2900
|
-
powerMonitoringMustTrip?: DERCurveType;
|
|
2901
|
-
startTime?: string;
|
|
2902
|
-
duration?: number;
|
|
2903
|
-
customData?: CustomDataType;
|
|
2904
|
-
}
|
|
2905
|
-
interface ReactivePowerParamsType {
|
|
2906
|
-
vRef?: number;
|
|
2907
|
-
autonomousVRefEnable?: boolean;
|
|
2908
|
-
autonomousVRefTimeConstant?: number;
|
|
2909
|
-
customData?: CustomDataType;
|
|
2910
|
-
}
|
|
2911
|
-
interface VoltageParamsType {
|
|
2912
|
-
hv10MinMeanValue?: number;
|
|
2913
|
-
hv10MinMeanTripDelay?: number;
|
|
2914
|
-
powerDuringCessation?: PowerDuringCessationEnumType;
|
|
2915
|
-
customData?: CustomDataType;
|
|
2916
|
-
}
|
|
2917
|
-
type RequestStartStopStatusEnumType = "Accepted" | "Rejected";
|
|
2918
|
-
type ReservationUpdateStatusEnumType = "Expired" | "Removed" | "NoTransaction";
|
|
2919
|
-
type ReserveNowStatusEnumType = "Accepted" | "Faulted" | "Occupied" | "Rejected" | "Unavailable";
|
|
2920
|
-
type ResetEnumType = "Immediate" | "OnIdle" | "ImmediateAndResume";
|
|
2921
|
-
type ResetStatusEnumType = "Accepted" | "Rejected" | "Scheduled";
|
|
2922
|
-
type UpdateEnumType = "Differential" | "Full";
|
|
2923
|
-
interface AuthorizationData {
|
|
2924
|
-
idToken: IdTokenType;
|
|
2925
|
-
idTokenInfo?: IdTokenInfoType;
|
|
2926
|
-
customData?: CustomDataType;
|
|
2927
|
-
}
|
|
2928
|
-
type SendLocalListStatusEnumType = "Accepted" | "Failed" | "VersionMismatch";
|
|
2929
|
-
type TariffSetStatusEnumType = "Accepted" | "Rejected" | "TooManyElements" | "ConditionNotSupported" | "DuplicateTariffId";
|
|
2930
|
-
type DisplayMessageStatusEnumType = "Accepted" | "NotSupportedMessageFormat" | "Rejected" | "NotSupportedPriority" | "NotSupportedState" | "UnknownTransaction" | "LanguageNotSupported";
|
|
2931
|
-
type MonitoringBaseEnumType = "All" | "FactoryDefault" | "HardWiredOnly";
|
|
2932
|
-
type APNAuthenticationEnumType = "PAP" | "CHAP" | "NONE" | "AUTO";
|
|
2933
|
-
type OCPPInterfaceEnumType = "Wired0" | "Wired1" | "Wired2" | "Wired3" | "Wireless0" | "Wireless1" | "Wireless2" | "Wireless3" | "Any";
|
|
2934
|
-
type OCPPTransportEnumType = "SOAP" | "JSON";
|
|
2935
|
-
type OCPPVersionEnumType = "OCPP12" | "OCPP15" | "OCPP16" | "OCPP20" | "OCPP201" | "OCPP21";
|
|
2936
|
-
type VPNEnumType = "IKEv2" | "IPSec" | "L2TP" | "PPTP";
|
|
2937
|
-
interface APNType {
|
|
2938
|
-
apn: string;
|
|
2939
|
-
apnUserName?: string;
|
|
2940
|
-
apnPassword?: string;
|
|
2941
|
-
simPin?: number;
|
|
2942
|
-
preferredNetwork?: string;
|
|
2943
|
-
useOnlyPreferredNetwork?: boolean;
|
|
2944
|
-
apnAuthentication: APNAuthenticationEnumType;
|
|
2945
|
-
customData?: CustomDataType;
|
|
2946
|
-
}
|
|
2947
|
-
interface NetworkConnectionProfileType {
|
|
2948
|
-
apn?: APNType;
|
|
2949
|
-
ocppVersion?: OCPPVersionEnumType;
|
|
2950
|
-
ocppInterface: OCPPInterfaceEnumType;
|
|
2951
|
-
ocppTransport: OCPPTransportEnumType;
|
|
2952
|
-
messageTimeout: number;
|
|
2953
|
-
ocppCsmsUrl: string;
|
|
2954
|
-
securityProfile: number;
|
|
2955
|
-
identity?: string;
|
|
2956
|
-
basicAuthPassword?: string;
|
|
2957
|
-
vpn?: VPNType;
|
|
2958
|
-
customData?: CustomDataType;
|
|
2959
|
-
}
|
|
2960
|
-
interface VPNType {
|
|
2961
|
-
server: string;
|
|
2962
|
-
user: string;
|
|
2963
|
-
group?: string;
|
|
2964
|
-
password: string;
|
|
2965
|
-
key: string;
|
|
2966
|
-
type: VPNEnumType;
|
|
2967
|
-
customData?: CustomDataType;
|
|
2968
|
-
}
|
|
2969
|
-
type SetNetworkProfileStatusEnumType = "Accepted" | "Rejected" | "Failed";
|
|
2970
|
-
interface SetMonitoringDataType {
|
|
2971
|
-
id?: number;
|
|
2972
|
-
periodicEventStream?: PeriodicEventStreamParamsType;
|
|
2973
|
-
transaction?: boolean;
|
|
2974
|
-
value: number;
|
|
2975
|
-
type: MonitorEnumType;
|
|
2976
|
-
severity: number;
|
|
2977
|
-
component: ComponentType;
|
|
2978
|
-
variable: VariableType;
|
|
2979
|
-
customData?: CustomDataType;
|
|
2980
|
-
}
|
|
2981
|
-
type SetMonitoringStatusEnumType = "Accepted" | "UnknownComponent" | "UnknownVariable" | "UnsupportedMonitorType" | "Rejected" | "Duplicate";
|
|
2982
|
-
interface SetMonitoringResultType {
|
|
2983
|
-
id?: number;
|
|
2984
|
-
statusInfo?: StatusInfoType;
|
|
2985
|
-
status: SetMonitoringStatusEnumType;
|
|
2986
|
-
type: MonitorEnumType;
|
|
2987
|
-
component: ComponentType;
|
|
2988
|
-
variable: VariableType;
|
|
2989
|
-
severity: number;
|
|
2990
|
-
customData?: CustomDataType;
|
|
2991
|
-
}
|
|
2992
|
-
interface SetVariableDataType {
|
|
2993
|
-
attributeType?: AttributeEnumType;
|
|
2994
|
-
attributeValue: string;
|
|
2995
|
-
component: ComponentType;
|
|
2996
|
-
variable: VariableType;
|
|
2997
|
-
customData?: CustomDataType;
|
|
2998
|
-
}
|
|
2999
|
-
type SetVariableStatusEnumType = "Accepted" | "Rejected" | "UnknownComponent" | "UnknownVariable" | "NotSupportedAttributeType" | "RebootRequired";
|
|
3000
|
-
interface SetVariableResultType {
|
|
3001
|
-
attributeType?: AttributeEnumType;
|
|
3002
|
-
attributeStatus: SetVariableStatusEnumType;
|
|
3003
|
-
attributeStatusInfo?: StatusInfoType;
|
|
3004
|
-
component: ComponentType;
|
|
3005
|
-
variable: VariableType;
|
|
3006
|
-
customData?: CustomDataType;
|
|
3007
|
-
}
|
|
3008
|
-
type ConnectorStatusEnumType = "Available" | "Occupied" | "Reserved" | "Unavailable" | "Faulted";
|
|
3009
|
-
type ChargingStateEnumType = "EVConnected" | "Charging" | "SuspendedEV" | "SuspendedEVSE" | "Idle";
|
|
3010
|
-
type CostDimensionEnumType = "Energy" | "MaxCurrent" | "MinCurrent" | "MaxPower" | "MinPower" | "IdleTIme" | "ChargingTime";
|
|
3011
|
-
type PreconditioningStatusEnumType = "Unknown" | "Ready" | "NotReady" | "Preconditioning";
|
|
3012
|
-
type ReasonEnumType = "DeAuthorized" | "EmergencyStop" | "EnergyLimitReached" | "EVDisconnected" | "GroundFault" | "ImmediateReset" | "MasterPass" | "Local" | "LocalOutOfCredit" | "Other" | "OvercurrentFault" | "PowerLoss" | "PowerQuality" | "Reboot" | "Remote" | "SOCLimitReached" | "StoppedByEV" | "TimeLimitReached" | "Timeout" | "ReqEnergyTransferRejected";
|
|
3013
|
-
type TariffCostEnumType = "NormalCost" | "MinCost" | "MaxCost";
|
|
3014
|
-
type TransactionEventEnumType = "Ended" | "Started" | "Updated";
|
|
3015
|
-
type TriggerReasonEnumType = "AbnormalCondition" | "Authorized" | "CablePluggedIn" | "ChargingRateChanged" | "ChargingStateChanged" | "CostLimitReached" | "Deauthorized" | "EnergyLimitReached" | "EVCommunicationLost" | "EVConnectTimeout" | "EVDeparted" | "EVDetected" | "LimitSet" | "MeterValueClock" | "MeterValuePeriodic" | "OperationModeChanged" | "RemoteStart" | "RemoteStop" | "ResetCommand" | "RunningCost" | "SignedDataReceived" | "SoCLimitReached" | "StopAuthorized" | "TariffChanged" | "TariffNotAccepted" | "TimeLimitReached" | "Trigger" | "TxResumed" | "UnlockCommand";
|
|
3016
|
-
interface ChargingPeriodType {
|
|
3017
|
-
dimensions?: CostDimensionType[];
|
|
3018
|
-
tariffId?: string;
|
|
3019
|
-
startPeriod: string;
|
|
3020
|
-
customData?: CustomDataType;
|
|
3021
|
-
}
|
|
3022
|
-
interface CostDetailsType {
|
|
3023
|
-
chargingPeriods?: ChargingPeriodType[];
|
|
3024
|
-
totalCost: TotalCostType;
|
|
3025
|
-
totalUsage: TotalUsageType;
|
|
3026
|
-
failureToCalculate?: boolean;
|
|
3027
|
-
failureReason?: string;
|
|
3028
|
-
customData?: CustomDataType;
|
|
3029
|
-
}
|
|
3030
|
-
interface CostDimensionType {
|
|
3031
|
-
type: CostDimensionEnumType;
|
|
3032
|
-
volume: number;
|
|
3033
|
-
customData?: CustomDataType;
|
|
3034
|
-
}
|
|
3035
|
-
interface TotalCostType {
|
|
3036
|
-
currency: string;
|
|
3037
|
-
typeOfCost: TariffCostEnumType;
|
|
3038
|
-
fixed?: PriceType;
|
|
3039
|
-
energy?: PriceType;
|
|
3040
|
-
chargingTime?: PriceType;
|
|
3041
|
-
idleTime?: PriceType;
|
|
3042
|
-
reservationTime?: PriceType;
|
|
3043
|
-
reservationFixed?: PriceType;
|
|
3044
|
-
total: TotalPriceType;
|
|
3045
|
-
customData?: CustomDataType;
|
|
3046
|
-
}
|
|
3047
|
-
interface TotalPriceType {
|
|
3048
|
-
exclTax?: number;
|
|
3049
|
-
inclTax?: number;
|
|
3050
|
-
customData?: CustomDataType;
|
|
3051
|
-
}
|
|
3052
|
-
interface TotalUsageType {
|
|
3053
|
-
energy: number;
|
|
3054
|
-
chargingTime: number;
|
|
3055
|
-
idleTime: number;
|
|
3056
|
-
reservationTime?: number;
|
|
3057
|
-
customData?: CustomDataType;
|
|
3058
|
-
}
|
|
3059
|
-
interface TransactionLimitType {
|
|
3060
|
-
maxCost?: number;
|
|
3061
|
-
maxEnergy?: number;
|
|
3062
|
-
maxTime?: number;
|
|
3063
|
-
maxSoC?: number;
|
|
3064
|
-
customData?: CustomDataType;
|
|
3065
|
-
}
|
|
3066
|
-
interface TransactionType {
|
|
3067
|
-
transactionId: string;
|
|
3068
|
-
chargingState?: ChargingStateEnumType;
|
|
3069
|
-
timeSpentCharging?: number;
|
|
3070
|
-
stoppedReason?: ReasonEnumType;
|
|
3071
|
-
remoteStartId?: number;
|
|
3072
|
-
operationMode?: OperationModeEnumType;
|
|
3073
|
-
tariffId?: string;
|
|
3074
|
-
transactionLimit?: TransactionLimitType;
|
|
3075
|
-
customData?: CustomDataType;
|
|
3076
|
-
}
|
|
3077
|
-
type MessageTriggerEnumType = "BootNotification" | "LogStatusNotification" | "FirmwareStatusNotification" | "Heartbeat" | "MeterValues" | "SignChargingStationCertificate" | "SignV2GCertificate" | "SignV2G20Certificate" | "StatusNotification" | "TransactionEvent" | "SignCombinedCertificate" | "PublishFirmwareStatusNotification" | "CustomTrigger";
|
|
3078
|
-
type TriggerMessageStatusEnumType = "Accepted" | "Rejected" | "NotImplemented";
|
|
3079
|
-
type UnlockStatusEnumType = "Unlocked" | "UnlockFailed" | "OngoingAuthorizedTransaction" | "UnknownConnector";
|
|
3080
|
-
type UnpublishFirmwareStatusEnumType = "DownloadOngoing" | "NoFirmware" | "Unpublished";
|
|
3081
|
-
interface FirmwareType {
|
|
3082
|
-
location: string;
|
|
3083
|
-
retrieveDateTime: string;
|
|
3084
|
-
installDateTime?: string;
|
|
3085
|
-
signingCertificate?: string;
|
|
3086
|
-
signature?: string;
|
|
3087
|
-
customData?: CustomDataType;
|
|
3088
|
-
}
|
|
3089
|
-
type UpdateFirmwareStatusEnumType = "Accepted" | "Rejected" | "AcceptedCanceled" | "InvalidCertificate" | "RevokedCertificate";
|
|
3090
|
-
type PriorityChargingStatusEnumType = "Accepted" | "Rejected" | "NoProfile";
|
|
3091
|
-
interface AdjustPeriodicEventStreamRequest {
|
|
3092
|
-
id: number;
|
|
3093
|
-
params: PeriodicEventStreamParamsType;
|
|
3094
|
-
customData?: CustomDataType;
|
|
3095
|
-
}
|
|
3096
|
-
interface AdjustPeriodicEventStreamResponse {
|
|
3097
|
-
status: GenericStatusEnumType;
|
|
3098
|
-
statusInfo?: StatusInfoType;
|
|
3099
|
-
customData?: CustomDataType;
|
|
3100
|
-
}
|
|
3101
|
-
interface AFRRSignalRequest {
|
|
3102
|
-
timestamp: string;
|
|
3103
|
-
signal: number;
|
|
3104
|
-
customData?: CustomDataType;
|
|
3105
|
-
}
|
|
3106
|
-
interface AFRRSignalResponse {
|
|
3107
|
-
status: GenericStatusEnumType;
|
|
3108
|
-
statusInfo?: StatusInfoType;
|
|
3109
|
-
customData?: CustomDataType;
|
|
3110
|
-
}
|
|
3111
|
-
interface AuthorizeRequest {
|
|
3112
|
-
idToken: IdTokenType;
|
|
3113
|
-
certificate?: string;
|
|
3114
|
-
iso15118CertificateHashData?: OCSPRequestDataType[];
|
|
3115
|
-
customData?: CustomDataType;
|
|
3116
|
-
}
|
|
3117
|
-
interface AuthorizeResponse {
|
|
3118
|
-
idTokenInfo: IdTokenInfoType;
|
|
3119
|
-
certificateStatus?: AuthorizeCertificateStatusEnumType;
|
|
3120
|
-
allowedEnergyTransfer?: EnergyTransferModeEnumType[];
|
|
3121
|
-
tariff?: TariffType;
|
|
3122
|
-
customData?: CustomDataType;
|
|
3123
|
-
}
|
|
3124
|
-
interface BatterySwapRequest {
|
|
3125
|
-
batteryData: BatteryDataType[];
|
|
3126
|
-
eventType: BatterySwapEventEnumType;
|
|
3127
|
-
idToken: IdTokenType;
|
|
3128
|
-
requestId: number;
|
|
3129
|
-
customData?: CustomDataType;
|
|
3130
|
-
}
|
|
3131
|
-
interface BatterySwapResponse {
|
|
3132
|
-
customData?: CustomDataType;
|
|
3133
|
-
}
|
|
3134
|
-
interface BootNotificationRequest {
|
|
3135
|
-
chargingStation: ChargingStationType;
|
|
3136
|
-
reason: BootReasonEnumType;
|
|
3137
|
-
customData?: CustomDataType;
|
|
3138
|
-
}
|
|
3139
|
-
interface BootNotificationResponse {
|
|
3140
|
-
currentTime: string;
|
|
3141
|
-
interval: number;
|
|
3142
|
-
status: RegistrationStatusEnumType;
|
|
3143
|
-
statusInfo?: StatusInfoType;
|
|
3144
|
-
customData?: CustomDataType;
|
|
3145
|
-
}
|
|
3146
|
-
interface CancelReservationRequest {
|
|
3147
|
-
reservationId: number;
|
|
3148
|
-
customData?: CustomDataType;
|
|
3149
|
-
}
|
|
3150
|
-
interface CancelReservationResponse {
|
|
3151
|
-
status: CancelReservationStatusEnumType;
|
|
3152
|
-
statusInfo?: StatusInfoType;
|
|
3153
|
-
customData?: CustomDataType;
|
|
3154
|
-
}
|
|
3155
|
-
interface CertificateSignedRequest {
|
|
3156
|
-
certificateChain: string;
|
|
3157
|
-
certificateType?: CertificateSigningUseEnumType;
|
|
3158
|
-
requestId?: number;
|
|
3159
|
-
customData?: CustomDataType;
|
|
3160
|
-
}
|
|
3161
|
-
interface CertificateSignedResponse {
|
|
3162
|
-
status: CertificateSignedStatusEnumType;
|
|
3163
|
-
statusInfo?: StatusInfoType;
|
|
3164
|
-
customData?: CustomDataType;
|
|
3165
|
-
}
|
|
3166
|
-
interface ChangeAvailabilityRequest {
|
|
3167
|
-
evse?: EVSEType;
|
|
3168
|
-
operationalStatus: OperationalStatusEnumType;
|
|
3169
|
-
customData?: CustomDataType;
|
|
3170
|
-
}
|
|
3171
|
-
interface ChangeAvailabilityResponse {
|
|
3172
|
-
status: ChangeAvailabilityStatusEnumType;
|
|
3173
|
-
statusInfo?: StatusInfoType;
|
|
3174
|
-
customData?: CustomDataType;
|
|
3175
|
-
}
|
|
3176
|
-
interface ChangeTransactionTariffRequest {
|
|
3177
|
-
tariff: TariffType;
|
|
3178
|
-
transactionId: string;
|
|
3179
|
-
customData?: CustomDataType;
|
|
3180
|
-
}
|
|
3181
|
-
interface ChangeTransactionTariffResponse {
|
|
3182
|
-
status: TariffChangeStatusEnumType;
|
|
3183
|
-
statusInfo?: StatusInfoType;
|
|
3184
|
-
customData?: CustomDataType;
|
|
3185
|
-
}
|
|
3186
|
-
interface ClearCacheRequest {
|
|
3187
|
-
customData?: CustomDataType;
|
|
3188
|
-
}
|
|
3189
|
-
interface ClearCacheResponse {
|
|
3190
|
-
status: ClearCacheStatusEnumType;
|
|
3191
|
-
statusInfo?: StatusInfoType;
|
|
3192
|
-
customData?: CustomDataType;
|
|
3193
|
-
}
|
|
3194
|
-
interface ClearChargingProfileRequest {
|
|
3195
|
-
chargingProfileId?: number;
|
|
3196
|
-
chargingProfileCriteria?: ClearChargingProfileType;
|
|
3197
|
-
customData?: CustomDataType;
|
|
3198
|
-
}
|
|
3199
|
-
interface ClearChargingProfileResponse {
|
|
3200
|
-
status: ClearChargingProfileStatusEnumType;
|
|
3201
|
-
statusInfo?: StatusInfoType;
|
|
3202
|
-
customData?: CustomDataType;
|
|
3203
|
-
}
|
|
3204
|
-
interface ClearDERControlRequest {
|
|
3205
|
-
isDefault: boolean;
|
|
3206
|
-
controlType?: DERControlEnumType;
|
|
3207
|
-
controlId?: string;
|
|
3208
|
-
customData?: CustomDataType;
|
|
3209
|
-
}
|
|
3210
|
-
interface ClearDERControlResponse {
|
|
3211
|
-
status: DERControlStatusEnumType;
|
|
3212
|
-
statusInfo?: StatusInfoType;
|
|
3213
|
-
customData?: CustomDataType;
|
|
3214
|
-
}
|
|
3215
|
-
interface ClearDisplayMessageRequest {
|
|
3216
|
-
id: number;
|
|
3217
|
-
customData?: CustomDataType;
|
|
3218
|
-
}
|
|
3219
|
-
interface ClearDisplayMessageResponse {
|
|
3220
|
-
status: ClearMessageStatusEnumType;
|
|
3221
|
-
statusInfo?: StatusInfoType;
|
|
3222
|
-
customData?: CustomDataType;
|
|
3223
|
-
}
|
|
3224
|
-
interface ClearedChargingLimitRequest {
|
|
3225
|
-
chargingLimitSource: string;
|
|
3226
|
-
evseId?: number;
|
|
3227
|
-
customData?: CustomDataType;
|
|
3228
|
-
}
|
|
3229
|
-
interface ClearedChargingLimitResponse {
|
|
3230
|
-
customData?: CustomDataType;
|
|
3231
|
-
}
|
|
3232
|
-
interface ClearTariffsRequest {
|
|
3233
|
-
tariffIds?: string[];
|
|
3234
|
-
evseId?: number;
|
|
3235
|
-
customData?: CustomDataType;
|
|
3236
|
-
}
|
|
3237
|
-
interface ClearTariffsResponse {
|
|
3238
|
-
clearTariffsResult: ClearTariffsResultType[];
|
|
3239
|
-
customData?: CustomDataType;
|
|
3240
|
-
}
|
|
3241
|
-
interface ClearVariableMonitoringRequest {
|
|
3242
|
-
id: number[];
|
|
3243
|
-
customData?: CustomDataType;
|
|
3244
|
-
}
|
|
3245
|
-
interface ClearVariableMonitoringResponse {
|
|
3246
|
-
clearMonitoringResult: ClearMonitoringResultType[];
|
|
3247
|
-
customData?: CustomDataType;
|
|
3248
|
-
}
|
|
3249
|
-
interface ClosePeriodicEventStreamRequest {
|
|
3250
|
-
id: number;
|
|
3251
|
-
customData?: CustomDataType;
|
|
3252
|
-
}
|
|
3253
|
-
interface ClosePeriodicEventStreamResponse {
|
|
3254
|
-
customData?: CustomDataType;
|
|
3255
|
-
}
|
|
3256
|
-
interface CostUpdatedRequest {
|
|
3257
|
-
totalCost: number;
|
|
3258
|
-
transactionId: string;
|
|
3259
|
-
customData?: CustomDataType;
|
|
3260
|
-
}
|
|
3261
|
-
interface CostUpdatedResponse {
|
|
3262
|
-
customData?: CustomDataType;
|
|
3263
|
-
}
|
|
3264
|
-
interface CustomerInformationRequest {
|
|
3265
|
-
customerCertificate?: CertificateHashDataType;
|
|
3266
|
-
idToken?: IdTokenType;
|
|
3267
|
-
requestId: number;
|
|
3268
|
-
report: boolean;
|
|
3269
|
-
clear: boolean;
|
|
3270
|
-
customerIdentifier?: string;
|
|
3271
|
-
customData?: CustomDataType;
|
|
3272
|
-
}
|
|
3273
|
-
interface CustomerInformationResponse {
|
|
3274
|
-
status: CustomerInformationStatusEnumType;
|
|
3275
|
-
statusInfo?: StatusInfoType;
|
|
3276
|
-
customData?: CustomDataType;
|
|
3277
|
-
}
|
|
3278
|
-
interface DataTransferRequest {
|
|
3279
|
-
messageId?: string;
|
|
3280
|
-
data?: unknown;
|
|
3281
|
-
vendorId: string;
|
|
3282
|
-
customData?: CustomDataType;
|
|
3283
|
-
}
|
|
3284
|
-
interface DataTransferResponse {
|
|
3285
|
-
status: DataTransferStatusEnumType;
|
|
3286
|
-
statusInfo?: StatusInfoType;
|
|
3287
|
-
data?: unknown;
|
|
3288
|
-
customData?: CustomDataType;
|
|
3289
|
-
}
|
|
3290
|
-
interface DeleteCertificateRequest {
|
|
3291
|
-
certificateHashData: CertificateHashDataType;
|
|
3292
|
-
customData?: CustomDataType;
|
|
3293
|
-
}
|
|
3294
|
-
interface DeleteCertificateResponse {
|
|
3295
|
-
status: DeleteCertificateStatusEnumType;
|
|
3296
|
-
statusInfo?: StatusInfoType;
|
|
3297
|
-
customData?: CustomDataType;
|
|
3298
|
-
}
|
|
3299
|
-
interface FirmwareStatusNotificationRequest {
|
|
3300
|
-
status: FirmwareStatusEnumType;
|
|
3301
|
-
requestId?: number;
|
|
3302
|
-
statusInfo?: StatusInfoType;
|
|
3303
|
-
customData?: CustomDataType;
|
|
3304
|
-
}
|
|
3305
|
-
interface FirmwareStatusNotificationResponse {
|
|
3306
|
-
customData?: CustomDataType;
|
|
3307
|
-
}
|
|
3308
|
-
interface Get15118EVCertificateRequest {
|
|
3309
|
-
iso15118SchemaVersion: string;
|
|
3310
|
-
action: CertificateActionEnumType;
|
|
3311
|
-
exiRequest: string;
|
|
3312
|
-
maximumContractCertificateChains?: number;
|
|
3313
|
-
prioritizedEMAIDs?: string[];
|
|
3314
|
-
customData?: CustomDataType;
|
|
3315
|
-
}
|
|
3316
|
-
interface Get15118EVCertificateResponse {
|
|
3317
|
-
status: Iso15118EVCertificateStatusEnumType;
|
|
3318
|
-
statusInfo?: StatusInfoType;
|
|
3319
|
-
exiResponse: string;
|
|
3320
|
-
remainingContracts?: number;
|
|
3321
|
-
customData?: CustomDataType;
|
|
3322
|
-
}
|
|
3323
|
-
interface GetBaseReportRequest {
|
|
3324
|
-
requestId: number;
|
|
3325
|
-
reportBase: ReportBaseEnumType;
|
|
3326
|
-
customData?: CustomDataType;
|
|
3327
|
-
}
|
|
3328
|
-
interface GetBaseReportResponse {
|
|
3329
|
-
status: GenericDeviceModelStatusEnumType;
|
|
3330
|
-
statusInfo?: StatusInfoType;
|
|
3331
|
-
customData?: CustomDataType;
|
|
3332
|
-
}
|
|
3333
|
-
interface GetCertificateChainStatusRequest {
|
|
3334
|
-
certificateStatusRequests: CertificateStatusRequestInfoType[];
|
|
3335
|
-
customData?: CustomDataType;
|
|
3336
|
-
}
|
|
3337
|
-
interface GetCertificateChainStatusResponse {
|
|
3338
|
-
certificateStatus: CertificateStatusType[];
|
|
3339
|
-
customData?: CustomDataType;
|
|
3340
|
-
}
|
|
3341
|
-
interface GetCertificateStatusRequest {
|
|
3342
|
-
ocspRequestData: OCSPRequestDataType;
|
|
3343
|
-
customData?: CustomDataType;
|
|
3344
|
-
}
|
|
3345
|
-
interface GetCertificateStatusResponse {
|
|
3346
|
-
status: GetCertificateStatusEnumType;
|
|
3347
|
-
statusInfo?: StatusInfoType;
|
|
3348
|
-
ocspResult?: string;
|
|
3349
|
-
customData?: CustomDataType;
|
|
3350
|
-
}
|
|
3351
|
-
interface GetChargingProfilesRequest {
|
|
3352
|
-
requestId: number;
|
|
3353
|
-
evseId?: number;
|
|
3354
|
-
chargingProfile: ChargingProfileCriterionType;
|
|
3355
|
-
customData?: CustomDataType;
|
|
3356
|
-
}
|
|
3357
|
-
interface GetChargingProfilesResponse {
|
|
3358
|
-
status: GetChargingProfileStatusEnumType;
|
|
3359
|
-
statusInfo?: StatusInfoType;
|
|
3360
|
-
customData?: CustomDataType;
|
|
3361
|
-
}
|
|
3362
|
-
interface GetCompositeScheduleRequest {
|
|
3363
|
-
duration: number;
|
|
3364
|
-
chargingRateUnit?: ChargingRateUnitEnumType;
|
|
3365
|
-
evseId: number;
|
|
3366
|
-
customData?: CustomDataType;
|
|
3367
|
-
}
|
|
3368
|
-
interface GetCompositeScheduleResponse {
|
|
3369
|
-
status: GenericStatusEnumType;
|
|
3370
|
-
statusInfo?: StatusInfoType;
|
|
3371
|
-
schedule?: CompositeScheduleType;
|
|
3372
|
-
customData?: CustomDataType;
|
|
3373
|
-
}
|
|
3374
|
-
interface GetDERControlRequest {
|
|
3375
|
-
requestId: number;
|
|
3376
|
-
isDefault?: boolean;
|
|
3377
|
-
controlType?: DERControlEnumType;
|
|
3378
|
-
controlId?: string;
|
|
3379
|
-
customData?: CustomDataType;
|
|
3380
|
-
}
|
|
3381
|
-
interface GetDERControlResponse {
|
|
3382
|
-
status: DERControlStatusEnumType;
|
|
3383
|
-
statusInfo?: StatusInfoType;
|
|
3384
|
-
customData?: CustomDataType;
|
|
3385
|
-
}
|
|
3386
|
-
interface GetDisplayMessagesRequest {
|
|
3387
|
-
id?: number[];
|
|
3388
|
-
requestId: number;
|
|
3389
|
-
priority?: MessagePriorityEnumType;
|
|
3390
|
-
state?: MessageStateEnumType;
|
|
3391
|
-
customData?: CustomDataType;
|
|
3392
|
-
}
|
|
3393
|
-
interface GetDisplayMessagesResponse {
|
|
3394
|
-
status: GetDisplayMessagesStatusEnumType;
|
|
3395
|
-
statusInfo?: StatusInfoType;
|
|
3396
|
-
customData?: CustomDataType;
|
|
3397
|
-
}
|
|
3398
|
-
interface GetInstalledCertificateIdsRequest {
|
|
3399
|
-
certificateType?: GetCertificateIdUseEnumType[];
|
|
3400
|
-
customData?: CustomDataType;
|
|
3401
|
-
}
|
|
3402
|
-
interface GetInstalledCertificateIdsResponse {
|
|
3403
|
-
status: GetInstalledCertificateStatusEnumType;
|
|
3404
|
-
statusInfo?: StatusInfoType;
|
|
3405
|
-
certificateHashDataChain?: CertificateHashDataChainType[];
|
|
3406
|
-
customData?: CustomDataType;
|
|
3407
|
-
}
|
|
3408
|
-
interface GetLocalListVersionRequest {
|
|
3409
|
-
customData?: CustomDataType;
|
|
3410
|
-
}
|
|
3411
|
-
interface GetLocalListVersionResponse {
|
|
3412
|
-
versionNumber: number;
|
|
3413
|
-
customData?: CustomDataType;
|
|
3414
|
-
}
|
|
3415
|
-
interface GetLogRequest {
|
|
3416
|
-
log: LogParametersType;
|
|
3417
|
-
logType: LogEnumType;
|
|
3418
|
-
requestId: number;
|
|
3419
|
-
retries?: number;
|
|
3420
|
-
retryInterval?: number;
|
|
3421
|
-
customData?: CustomDataType;
|
|
3422
|
-
}
|
|
3423
|
-
interface GetLogResponse {
|
|
3424
|
-
status: LogStatusEnumType;
|
|
3425
|
-
statusInfo?: StatusInfoType;
|
|
3426
|
-
filename?: string;
|
|
3427
|
-
customData?: CustomDataType;
|
|
3428
|
-
}
|
|
3429
|
-
interface GetMonitoringReportRequest {
|
|
3430
|
-
componentVariable?: ComponentVariableType[];
|
|
3431
|
-
requestId: number;
|
|
3432
|
-
monitoringCriteria?: MonitoringCriterionEnumType[];
|
|
3433
|
-
customData?: CustomDataType;
|
|
3434
|
-
}
|
|
3435
|
-
interface GetMonitoringReportResponse {
|
|
3436
|
-
status: GenericDeviceModelStatusEnumType;
|
|
3437
|
-
statusInfo?: StatusInfoType;
|
|
3438
|
-
customData?: CustomDataType;
|
|
3439
|
-
}
|
|
3440
|
-
interface GetPeriodicEventStreamRequest {
|
|
3441
|
-
customData?: CustomDataType;
|
|
3442
|
-
}
|
|
3443
|
-
interface GetPeriodicEventStreamResponse {
|
|
3444
|
-
constantStreamData?: ConstantStreamDataType[];
|
|
3445
|
-
customData?: CustomDataType;
|
|
3446
|
-
}
|
|
3447
|
-
interface GetReportRequest {
|
|
3448
|
-
componentVariable?: ComponentVariableType[];
|
|
3449
|
-
requestId: number;
|
|
3450
|
-
componentCriteria?: ComponentCriterionEnumType[];
|
|
3451
|
-
customData?: CustomDataType;
|
|
3452
|
-
}
|
|
3453
|
-
interface GetReportResponse {
|
|
3454
|
-
status: GenericDeviceModelStatusEnumType;
|
|
3455
|
-
statusInfo?: StatusInfoType;
|
|
3456
|
-
customData?: CustomDataType;
|
|
3457
|
-
}
|
|
3458
|
-
interface GetTariffsRequest {
|
|
3459
|
-
evseId: number;
|
|
3460
|
-
customData?: CustomDataType;
|
|
3461
|
-
}
|
|
3462
|
-
interface GetTariffsResponse {
|
|
3463
|
-
status: TariffGetStatusEnumType;
|
|
3464
|
-
statusInfo?: StatusInfoType;
|
|
3465
|
-
tariffAssignments?: TariffAssignmentType[];
|
|
3466
|
-
customData?: CustomDataType;
|
|
3467
|
-
}
|
|
3468
|
-
interface GetTransactionStatusRequest {
|
|
3469
|
-
transactionId?: string;
|
|
3470
|
-
customData?: CustomDataType;
|
|
3471
|
-
}
|
|
3472
|
-
interface GetTransactionStatusResponse {
|
|
3473
|
-
ongoingIndicator?: boolean;
|
|
3474
|
-
messagesInQueue: boolean;
|
|
3475
|
-
customData?: CustomDataType;
|
|
3476
|
-
}
|
|
3477
|
-
interface GetVariablesRequest {
|
|
3478
|
-
getVariableData: GetVariableDataType[];
|
|
3479
|
-
customData?: CustomDataType;
|
|
3480
|
-
}
|
|
3481
|
-
interface GetVariablesResponse {
|
|
3482
|
-
getVariableResult: GetVariableResultType[];
|
|
3483
|
-
customData?: CustomDataType;
|
|
3484
|
-
}
|
|
3485
|
-
interface HeartbeatRequest {
|
|
3486
|
-
customData?: CustomDataType;
|
|
3487
|
-
}
|
|
3488
|
-
interface HeartbeatResponse {
|
|
3489
|
-
currentTime: string;
|
|
3490
|
-
customData?: CustomDataType;
|
|
3491
|
-
}
|
|
3492
|
-
interface InstallCertificateRequest {
|
|
3493
|
-
certificateType: InstallCertificateUseEnumType;
|
|
3494
|
-
certificate: string;
|
|
3495
|
-
customData?: CustomDataType;
|
|
3496
|
-
}
|
|
3497
|
-
interface InstallCertificateResponse {
|
|
3498
|
-
status: InstallCertificateStatusEnumType;
|
|
3499
|
-
statusInfo?: StatusInfoType;
|
|
3500
|
-
customData?: CustomDataType;
|
|
3501
|
-
}
|
|
3502
|
-
interface LogStatusNotificationRequest {
|
|
3503
|
-
status: UploadLogStatusEnumType;
|
|
3504
|
-
requestId?: number;
|
|
3505
|
-
statusInfo?: StatusInfoType;
|
|
3506
|
-
customData?: CustomDataType;
|
|
3507
|
-
}
|
|
3508
|
-
interface LogStatusNotificationResponse {
|
|
3509
|
-
customData?: CustomDataType;
|
|
3510
|
-
}
|
|
3511
|
-
interface MeterValuesRequest {
|
|
3512
|
-
evseId: number;
|
|
3513
|
-
meterValue: MeterValueType[];
|
|
3514
|
-
customData?: CustomDataType;
|
|
3515
|
-
}
|
|
3516
|
-
interface MeterValuesResponse {
|
|
3517
|
-
customData?: CustomDataType;
|
|
3518
|
-
}
|
|
3519
|
-
interface NotifyAllowedEnergyTransferRequest {
|
|
3520
|
-
transactionId: string;
|
|
3521
|
-
allowedEnergyTransfer: EnergyTransferModeEnumType[];
|
|
3522
|
-
customData?: CustomDataType;
|
|
3523
|
-
}
|
|
3524
|
-
interface NotifyAllowedEnergyTransferResponse {
|
|
3525
|
-
status: NotifyAllowedEnergyTransferStatusEnumType;
|
|
3526
|
-
statusInfo?: StatusInfoType;
|
|
3527
|
-
customData?: CustomDataType;
|
|
3528
|
-
}
|
|
3529
|
-
interface NotifyChargingLimitRequest {
|
|
3530
|
-
chargingSchedule?: ChargingScheduleType[];
|
|
3531
|
-
evseId?: number;
|
|
3532
|
-
chargingLimit: ChargingLimitType;
|
|
3533
|
-
customData?: CustomDataType;
|
|
3534
|
-
}
|
|
3535
|
-
interface NotifyChargingLimitResponse {
|
|
3536
|
-
customData?: CustomDataType;
|
|
3537
|
-
}
|
|
3538
|
-
interface NotifyCustomerInformationRequest {
|
|
3539
|
-
data: string;
|
|
3540
|
-
tbc?: boolean;
|
|
3541
|
-
seqNo: number;
|
|
3542
|
-
generatedAt: string;
|
|
3543
|
-
requestId: number;
|
|
3544
|
-
customData?: CustomDataType;
|
|
3545
|
-
}
|
|
3546
|
-
interface NotifyCustomerInformationResponse {
|
|
3547
|
-
customData?: CustomDataType;
|
|
3548
|
-
}
|
|
3549
|
-
interface NotifyDERAlarmRequest {
|
|
3550
|
-
controlType: DERControlEnumType;
|
|
3551
|
-
gridEventFault?: GridEventFaultEnumType;
|
|
3552
|
-
alarmEnded?: boolean;
|
|
3553
|
-
timestamp: string;
|
|
3554
|
-
extraInfo?: string;
|
|
3555
|
-
customData?: CustomDataType;
|
|
3556
|
-
}
|
|
3557
|
-
interface NotifyDERAlarmResponse {
|
|
3558
|
-
customData?: CustomDataType;
|
|
3559
|
-
}
|
|
3560
|
-
interface NotifyDERStartStopRequest {
|
|
3561
|
-
controlId: string;
|
|
3562
|
-
started: boolean;
|
|
3563
|
-
timestamp: string;
|
|
3564
|
-
supersededIds?: string[];
|
|
3565
|
-
customData?: CustomDataType;
|
|
3566
|
-
}
|
|
3567
|
-
interface NotifyDERStartStopResponse {
|
|
3568
|
-
customData?: CustomDataType;
|
|
3569
|
-
}
|
|
3570
|
-
interface NotifyDisplayMessagesRequest {
|
|
3571
|
-
messageInfo?: MessageInfoType[];
|
|
3572
|
-
requestId: number;
|
|
3573
|
-
tbc?: boolean;
|
|
3574
|
-
customData?: CustomDataType;
|
|
3575
|
-
}
|
|
3576
|
-
interface NotifyDisplayMessagesResponse {
|
|
3577
|
-
customData?: CustomDataType;
|
|
3578
|
-
}
|
|
3579
|
-
interface NotifyEVChargingNeedsRequest {
|
|
3580
|
-
evseId: number;
|
|
3581
|
-
maxScheduleTuples?: number;
|
|
3582
|
-
chargingNeeds: ChargingNeedsType;
|
|
3583
|
-
timestamp?: string;
|
|
3584
|
-
customData?: CustomDataType;
|
|
3585
|
-
}
|
|
3586
|
-
interface NotifyEVChargingNeedsResponse {
|
|
3587
|
-
status: NotifyEVChargingNeedsStatusEnumType;
|
|
3588
|
-
statusInfo?: StatusInfoType;
|
|
3589
|
-
customData?: CustomDataType;
|
|
3590
|
-
}
|
|
3591
|
-
interface NotifyEVChargingScheduleRequest {
|
|
3592
|
-
timeBase: string;
|
|
3593
|
-
chargingSchedule: ChargingScheduleType;
|
|
3594
|
-
evseId: number;
|
|
3595
|
-
selectedChargingScheduleId?: number;
|
|
3596
|
-
powerToleranceAcceptance?: boolean;
|
|
3597
|
-
customData?: CustomDataType;
|
|
3598
|
-
}
|
|
3599
|
-
interface NotifyEVChargingScheduleResponse {
|
|
3600
|
-
status: GenericStatusEnumType;
|
|
3601
|
-
statusInfo?: StatusInfoType;
|
|
3602
|
-
customData?: CustomDataType;
|
|
3603
|
-
}
|
|
3604
|
-
interface NotifyEventRequest {
|
|
3605
|
-
generatedAt: string;
|
|
3606
|
-
tbc?: boolean;
|
|
3607
|
-
seqNo: number;
|
|
3608
|
-
eventData: EventDataType[];
|
|
3609
|
-
customData?: CustomDataType;
|
|
3610
|
-
}
|
|
3611
|
-
interface NotifyEventResponse {
|
|
3612
|
-
customData?: CustomDataType;
|
|
3613
|
-
}
|
|
3614
|
-
interface NotifyMonitoringReportRequest {
|
|
3615
|
-
monitor?: MonitoringDataType[];
|
|
3616
|
-
requestId: number;
|
|
3617
|
-
tbc?: boolean;
|
|
3618
|
-
seqNo: number;
|
|
3619
|
-
generatedAt: string;
|
|
3620
|
-
customData?: CustomDataType;
|
|
3621
|
-
}
|
|
3622
|
-
interface NotifyMonitoringReportResponse {
|
|
3623
|
-
customData?: CustomDataType;
|
|
3624
|
-
}
|
|
3625
|
-
interface NotifyPriorityChargingRequest {
|
|
3626
|
-
transactionId: string;
|
|
3627
|
-
activated: boolean;
|
|
3628
|
-
customData?: CustomDataType;
|
|
3629
|
-
}
|
|
3630
|
-
interface NotifyPriorityChargingResponse {
|
|
3631
|
-
customData?: CustomDataType;
|
|
3632
|
-
}
|
|
3633
|
-
interface NotifyReportRequest {
|
|
3634
|
-
requestId: number;
|
|
3635
|
-
generatedAt: string;
|
|
3636
|
-
reportData?: ReportDataType[];
|
|
3637
|
-
tbc?: boolean;
|
|
3638
|
-
seqNo: number;
|
|
3639
|
-
customData?: CustomDataType;
|
|
3640
|
-
}
|
|
3641
|
-
interface NotifyReportResponse {
|
|
3642
|
-
customData?: CustomDataType;
|
|
3643
|
-
}
|
|
3644
|
-
interface NotifySettlementRequest {
|
|
3645
|
-
transactionId?: string;
|
|
3646
|
-
pspRef: string;
|
|
3647
|
-
status: PaymentStatusEnumType;
|
|
3648
|
-
statusInfo?: string;
|
|
3649
|
-
settlementAmount: number;
|
|
3650
|
-
settlementTime: string;
|
|
3651
|
-
receiptId?: string;
|
|
3652
|
-
receiptUrl?: string;
|
|
3653
|
-
vatCompany?: AddressType;
|
|
3654
|
-
vatNumber?: string;
|
|
3655
|
-
customData?: CustomDataType;
|
|
3656
|
-
}
|
|
3657
|
-
interface NotifySettlementResponse {
|
|
3658
|
-
receiptUrl?: string;
|
|
3659
|
-
receiptId?: string;
|
|
3660
|
-
customData?: CustomDataType;
|
|
3661
|
-
}
|
|
3662
|
-
interface NotifyWebPaymentStartedRequest {
|
|
3663
|
-
evseId: number;
|
|
3664
|
-
timeout: number;
|
|
3665
|
-
customData?: CustomDataType;
|
|
3666
|
-
}
|
|
3667
|
-
interface NotifyWebPaymentStartedResponse {
|
|
3668
|
-
customData?: CustomDataType;
|
|
3669
|
-
}
|
|
3670
|
-
interface OpenPeriodicEventStreamRequest {
|
|
3671
|
-
constantStreamData: ConstantStreamDataType;
|
|
3672
|
-
customData?: CustomDataType;
|
|
3673
|
-
}
|
|
3674
|
-
interface OpenPeriodicEventStreamResponse {
|
|
3675
|
-
status: GenericStatusEnumType;
|
|
3676
|
-
statusInfo?: StatusInfoType;
|
|
3677
|
-
customData?: CustomDataType;
|
|
3678
|
-
}
|
|
3679
|
-
interface PublishFirmwareRequest {
|
|
3680
|
-
location: string;
|
|
3681
|
-
retries?: number;
|
|
3682
|
-
checksum: string;
|
|
3683
|
-
requestId: number;
|
|
3684
|
-
retryInterval?: number;
|
|
3685
|
-
customData?: CustomDataType;
|
|
3686
|
-
}
|
|
3687
|
-
interface PublishFirmwareResponse {
|
|
3688
|
-
status: GenericStatusEnumType;
|
|
3689
|
-
statusInfo?: StatusInfoType;
|
|
3690
|
-
customData?: CustomDataType;
|
|
3691
|
-
}
|
|
3692
|
-
interface PublishFirmwareStatusNotificationRequest {
|
|
3693
|
-
status: PublishFirmwareStatusEnumType;
|
|
3694
|
-
location?: string[];
|
|
3695
|
-
requestId?: number;
|
|
3696
|
-
statusInfo?: StatusInfoType;
|
|
3697
|
-
customData?: CustomDataType;
|
|
3698
|
-
}
|
|
3699
|
-
interface PublishFirmwareStatusNotificationResponse {
|
|
3700
|
-
customData?: CustomDataType;
|
|
3701
|
-
}
|
|
3702
|
-
interface PullDynamicScheduleUpdateRequest {
|
|
3703
|
-
chargingProfileId: number;
|
|
3704
|
-
customData?: CustomDataType;
|
|
3705
|
-
}
|
|
3706
|
-
interface PullDynamicScheduleUpdateResponse {
|
|
3707
|
-
scheduleUpdate?: ChargingScheduleUpdateType;
|
|
3708
|
-
status: ChargingProfileStatusEnumType;
|
|
3709
|
-
statusInfo?: StatusInfoType;
|
|
3710
|
-
customData?: CustomDataType;
|
|
3711
|
-
}
|
|
3712
|
-
interface ReportChargingProfilesRequest {
|
|
3713
|
-
requestId: number;
|
|
3714
|
-
chargingLimitSource: string;
|
|
3715
|
-
chargingProfile: ChargingProfileType[];
|
|
3716
|
-
tbc?: boolean;
|
|
3717
|
-
evseId: number;
|
|
3718
|
-
customData?: CustomDataType;
|
|
3719
|
-
}
|
|
3720
|
-
interface ReportChargingProfilesResponse {
|
|
3721
|
-
customData?: CustomDataType;
|
|
3722
|
-
}
|
|
3723
|
-
interface ReportDERControlRequest {
|
|
3724
|
-
curve?: DERCurveGetType[];
|
|
3725
|
-
enterService?: EnterServiceGetType[];
|
|
3726
|
-
fixedPFAbsorb?: FixedPFGetType[];
|
|
3727
|
-
fixedPFInject?: FixedPFGetType[];
|
|
3728
|
-
fixedVar?: FixedVarGetType[];
|
|
3729
|
-
freqDroop?: FreqDroopGetType[];
|
|
3730
|
-
gradient?: GradientGetType[];
|
|
3731
|
-
limitMaxDischarge?: LimitMaxDischargeGetType[];
|
|
3732
|
-
requestId: number;
|
|
3733
|
-
tbc?: boolean;
|
|
3734
|
-
customData?: CustomDataType;
|
|
3735
|
-
}
|
|
3736
|
-
interface ReportDERControlResponse {
|
|
3737
|
-
customData?: CustomDataType;
|
|
3738
|
-
}
|
|
3739
|
-
interface RequestBatterySwapRequest {
|
|
3740
|
-
idToken: IdTokenType;
|
|
3741
|
-
requestId: number;
|
|
3742
|
-
customData?: CustomDataType;
|
|
3743
|
-
}
|
|
3744
|
-
interface RequestBatterySwapResponse {
|
|
3745
|
-
status: GenericStatusEnumType;
|
|
3746
|
-
statusInfo?: StatusInfoType;
|
|
3747
|
-
customData?: CustomDataType;
|
|
3748
|
-
}
|
|
3749
|
-
interface RequestStartTransactionRequest {
|
|
3750
|
-
evseId?: number;
|
|
3751
|
-
groupIdToken?: IdTokenType;
|
|
3752
|
-
idToken: IdTokenType;
|
|
3753
|
-
remoteStartId: number;
|
|
3754
|
-
chargingProfile?: ChargingProfileType;
|
|
3755
|
-
customData?: CustomDataType;
|
|
3756
|
-
}
|
|
3757
|
-
interface RequestStartTransactionResponse {
|
|
3758
|
-
status: RequestStartStopStatusEnumType;
|
|
3759
|
-
statusInfo?: StatusInfoType;
|
|
3760
|
-
transactionId?: string;
|
|
3761
|
-
customData?: CustomDataType;
|
|
3762
|
-
}
|
|
3763
|
-
interface RequestStopTransactionRequest {
|
|
3764
|
-
transactionId: string;
|
|
3765
|
-
customData?: CustomDataType;
|
|
3766
|
-
}
|
|
3767
|
-
interface RequestStopTransactionResponse {
|
|
3768
|
-
status: RequestStartStopStatusEnumType;
|
|
3769
|
-
statusInfo?: StatusInfoType;
|
|
3770
|
-
customData?: CustomDataType;
|
|
3771
|
-
}
|
|
3772
|
-
interface ReservationStatusUpdateRequest {
|
|
3773
|
-
reservationId: number;
|
|
3774
|
-
reservationUpdateStatus: ReservationUpdateStatusEnumType;
|
|
3775
|
-
customData?: CustomDataType;
|
|
3776
|
-
}
|
|
3777
|
-
interface ReservationStatusUpdateResponse {
|
|
3778
|
-
customData?: CustomDataType;
|
|
3779
|
-
}
|
|
3780
|
-
interface ReserveNowRequest {
|
|
3781
|
-
id: number;
|
|
3782
|
-
expiryDateTime: string;
|
|
3783
|
-
connectorType?: string;
|
|
3784
|
-
idToken: IdTokenType;
|
|
3785
|
-
evseId?: number;
|
|
3786
|
-
groupIdToken?: IdTokenType;
|
|
3787
|
-
customData?: CustomDataType;
|
|
3788
|
-
}
|
|
3789
|
-
interface ReserveNowResponse {
|
|
3790
|
-
status: ReserveNowStatusEnumType;
|
|
3791
|
-
statusInfo?: StatusInfoType;
|
|
3792
|
-
customData?: CustomDataType;
|
|
3793
|
-
}
|
|
3794
|
-
interface ResetRequest {
|
|
3795
|
-
type: ResetEnumType;
|
|
3796
|
-
evseId?: number;
|
|
3797
|
-
customData?: CustomDataType;
|
|
3798
|
-
}
|
|
3799
|
-
interface ResetResponse {
|
|
3800
|
-
status: ResetStatusEnumType;
|
|
3801
|
-
statusInfo?: StatusInfoType;
|
|
3802
|
-
customData?: CustomDataType;
|
|
3803
|
-
}
|
|
3804
|
-
interface SecurityEventNotificationRequest {
|
|
3805
|
-
type: string;
|
|
3806
|
-
timestamp: string;
|
|
3807
|
-
techInfo?: string;
|
|
3808
|
-
customData?: CustomDataType;
|
|
3809
|
-
}
|
|
3810
|
-
interface SecurityEventNotificationResponse {
|
|
3811
|
-
customData?: CustomDataType;
|
|
3812
|
-
}
|
|
3813
|
-
interface SendLocalListRequest {
|
|
3814
|
-
localAuthorizationList?: AuthorizationData[];
|
|
3815
|
-
versionNumber: number;
|
|
3816
|
-
updateType: UpdateEnumType;
|
|
3817
|
-
customData?: CustomDataType;
|
|
3818
|
-
}
|
|
3819
|
-
interface SendLocalListResponse {
|
|
3820
|
-
status: SendLocalListStatusEnumType;
|
|
3821
|
-
statusInfo?: StatusInfoType;
|
|
3822
|
-
customData?: CustomDataType;
|
|
3823
|
-
}
|
|
3824
|
-
interface SetChargingProfileRequest {
|
|
3825
|
-
evseId: number;
|
|
3826
|
-
chargingProfile: ChargingProfileType;
|
|
3827
|
-
customData?: CustomDataType;
|
|
3828
|
-
}
|
|
3829
|
-
interface SetChargingProfileResponse {
|
|
3830
|
-
status: ChargingProfileStatusEnumType;
|
|
3831
|
-
statusInfo?: StatusInfoType;
|
|
3832
|
-
customData?: CustomDataType;
|
|
3833
|
-
}
|
|
3834
|
-
interface SetDefaultTariffRequest {
|
|
3835
|
-
evseId: number;
|
|
3836
|
-
tariff: TariffType;
|
|
3837
|
-
customData?: CustomDataType;
|
|
3838
|
-
}
|
|
3839
|
-
interface SetDefaultTariffResponse {
|
|
3840
|
-
status: TariffSetStatusEnumType;
|
|
3841
|
-
statusInfo?: StatusInfoType;
|
|
3842
|
-
customData?: CustomDataType;
|
|
3843
|
-
}
|
|
3844
|
-
interface SetDERControlRequest {
|
|
3845
|
-
isDefault: boolean;
|
|
3846
|
-
controlId: string;
|
|
3847
|
-
controlType: DERControlEnumType;
|
|
3848
|
-
curve?: DERCurveType;
|
|
3849
|
-
enterService?: EnterServiceType;
|
|
3850
|
-
fixedPFAbsorb?: FixedPFType;
|
|
3851
|
-
fixedPFInject?: FixedPFType;
|
|
3852
|
-
fixedVar?: FixedVarType;
|
|
3853
|
-
freqDroop?: FreqDroopType;
|
|
3854
|
-
gradient?: GradientType;
|
|
3855
|
-
limitMaxDischarge?: LimitMaxDischargeType;
|
|
3856
|
-
customData?: CustomDataType;
|
|
3857
|
-
}
|
|
3858
|
-
interface SetDERControlResponse {
|
|
3859
|
-
status: DERControlStatusEnumType;
|
|
3860
|
-
statusInfo?: StatusInfoType;
|
|
3861
|
-
supersededIds?: string[];
|
|
3862
|
-
customData?: CustomDataType;
|
|
3863
|
-
}
|
|
3864
|
-
interface SetDisplayMessageRequest {
|
|
3865
|
-
message: MessageInfoType;
|
|
3866
|
-
customData?: CustomDataType;
|
|
3867
|
-
}
|
|
3868
|
-
interface SetDisplayMessageResponse {
|
|
3869
|
-
status: DisplayMessageStatusEnumType;
|
|
3870
|
-
statusInfo?: StatusInfoType;
|
|
3871
|
-
customData?: CustomDataType;
|
|
3872
|
-
}
|
|
3873
|
-
interface SetMonitoringBaseRequest {
|
|
3874
|
-
monitoringBase: MonitoringBaseEnumType;
|
|
3875
|
-
customData?: CustomDataType;
|
|
3876
|
-
}
|
|
3877
|
-
interface SetMonitoringBaseResponse {
|
|
3878
|
-
status: GenericDeviceModelStatusEnumType;
|
|
3879
|
-
statusInfo?: StatusInfoType;
|
|
3880
|
-
customData?: CustomDataType;
|
|
3881
|
-
}
|
|
3882
|
-
interface SetMonitoringLevelRequest {
|
|
3883
|
-
severity: number;
|
|
3884
|
-
customData?: CustomDataType;
|
|
3885
|
-
}
|
|
3886
|
-
interface SetMonitoringLevelResponse {
|
|
3887
|
-
status: GenericStatusEnumType;
|
|
3888
|
-
statusInfo?: StatusInfoType;
|
|
3889
|
-
customData?: CustomDataType;
|
|
3890
|
-
}
|
|
3891
|
-
interface SetNetworkProfileRequest {
|
|
3892
|
-
configurationSlot: number;
|
|
3893
|
-
connectionData: NetworkConnectionProfileType;
|
|
3894
|
-
customData?: CustomDataType;
|
|
3895
|
-
}
|
|
3896
|
-
interface SetNetworkProfileResponse {
|
|
3897
|
-
status: SetNetworkProfileStatusEnumType;
|
|
3898
|
-
statusInfo?: StatusInfoType;
|
|
3899
|
-
customData?: CustomDataType;
|
|
3900
|
-
}
|
|
3901
|
-
interface SetVariableMonitoringRequest {
|
|
3902
|
-
setMonitoringData: SetMonitoringDataType[];
|
|
3903
|
-
customData?: CustomDataType;
|
|
3904
|
-
}
|
|
3905
|
-
interface SetVariableMonitoringResponse {
|
|
3906
|
-
setMonitoringResult: SetMonitoringResultType[];
|
|
3907
|
-
customData?: CustomDataType;
|
|
3908
|
-
}
|
|
3909
|
-
interface SetVariablesRequest {
|
|
3910
|
-
setVariableData: SetVariableDataType[];
|
|
3911
|
-
customData?: CustomDataType;
|
|
3912
|
-
}
|
|
3913
|
-
interface SetVariablesResponse {
|
|
3914
|
-
setVariableResult: SetVariableResultType[];
|
|
3915
|
-
customData?: CustomDataType;
|
|
3916
|
-
}
|
|
3917
|
-
interface SignCertificateRequest {
|
|
3918
|
-
csr: string;
|
|
3919
|
-
certificateType?: CertificateSigningUseEnumType;
|
|
3920
|
-
hashRootCertificate?: CertificateHashDataType;
|
|
3921
|
-
requestId?: number;
|
|
3922
|
-
customData?: CustomDataType;
|
|
3923
|
-
}
|
|
3924
|
-
interface SignCertificateResponse {
|
|
3925
|
-
status: GenericStatusEnumType;
|
|
3926
|
-
statusInfo?: StatusInfoType;
|
|
3927
|
-
customData?: CustomDataType;
|
|
3928
|
-
}
|
|
3929
|
-
interface StatusNotificationRequest {
|
|
3930
|
-
timestamp: string;
|
|
3931
|
-
connectorStatus: ConnectorStatusEnumType;
|
|
3932
|
-
evseId: number;
|
|
3933
|
-
connectorId: number;
|
|
3934
|
-
customData?: CustomDataType;
|
|
3935
|
-
}
|
|
3936
|
-
interface StatusNotificationResponse {
|
|
3937
|
-
customData?: CustomDataType;
|
|
3938
|
-
}
|
|
3939
|
-
interface TransactionEventRequest {
|
|
3940
|
-
costDetails?: CostDetailsType;
|
|
3941
|
-
eventType: TransactionEventEnumType;
|
|
3942
|
-
meterValue?: MeterValueType[];
|
|
3943
|
-
timestamp: string;
|
|
3944
|
-
triggerReason: TriggerReasonEnumType;
|
|
3945
|
-
seqNo: number;
|
|
3946
|
-
offline?: boolean;
|
|
3947
|
-
numberOfPhasesUsed?: number;
|
|
3948
|
-
cableMaxCurrent?: number;
|
|
3949
|
-
reservationId?: number;
|
|
3950
|
-
preconditioningStatus?: PreconditioningStatusEnumType;
|
|
3951
|
-
evseSleep?: boolean;
|
|
3952
|
-
transactionInfo: TransactionType;
|
|
3953
|
-
evse?: EVSEType;
|
|
3954
|
-
idToken?: IdTokenType;
|
|
3955
|
-
customData?: CustomDataType;
|
|
3956
|
-
}
|
|
3957
|
-
interface TransactionEventResponse {
|
|
3958
|
-
totalCost?: number;
|
|
3959
|
-
chargingPriority?: number;
|
|
3960
|
-
idTokenInfo?: IdTokenInfoType;
|
|
3961
|
-
transactionLimit?: TransactionLimitType;
|
|
3962
|
-
updatedPersonalMessage?: MessageContentType;
|
|
3963
|
-
updatedPersonalMessageExtra?: MessageContentType[];
|
|
3964
|
-
customData?: CustomDataType;
|
|
3965
|
-
}
|
|
3966
|
-
interface TriggerMessageRequest {
|
|
3967
|
-
evse?: EVSEType;
|
|
3968
|
-
requestedMessage: MessageTriggerEnumType;
|
|
3969
|
-
customTrigger?: string;
|
|
3970
|
-
customData?: CustomDataType;
|
|
3971
|
-
}
|
|
3972
|
-
interface TriggerMessageResponse {
|
|
3973
|
-
status: TriggerMessageStatusEnumType;
|
|
3974
|
-
statusInfo?: StatusInfoType;
|
|
3975
|
-
customData?: CustomDataType;
|
|
3976
|
-
}
|
|
3977
|
-
interface UnlockConnectorRequest {
|
|
3978
|
-
evseId: number;
|
|
3979
|
-
connectorId: number;
|
|
3980
|
-
customData?: CustomDataType;
|
|
3981
|
-
}
|
|
3982
|
-
interface UnlockConnectorResponse {
|
|
3983
|
-
status: UnlockStatusEnumType;
|
|
3984
|
-
statusInfo?: StatusInfoType;
|
|
3985
|
-
customData?: CustomDataType;
|
|
3986
|
-
}
|
|
3987
|
-
interface UnpublishFirmwareRequest {
|
|
3988
|
-
checksum: string;
|
|
3989
|
-
customData?: CustomDataType;
|
|
3990
|
-
}
|
|
3991
|
-
interface UnpublishFirmwareResponse {
|
|
3992
|
-
status: UnpublishFirmwareStatusEnumType;
|
|
3993
|
-
customData?: CustomDataType;
|
|
3994
|
-
}
|
|
3995
|
-
interface UpdateDynamicScheduleRequest {
|
|
3996
|
-
chargingProfileId: number;
|
|
3997
|
-
scheduleUpdate: ChargingScheduleUpdateType;
|
|
3998
|
-
customData?: CustomDataType;
|
|
3999
|
-
}
|
|
4000
|
-
interface UpdateDynamicScheduleResponse {
|
|
4001
|
-
status: ChargingProfileStatusEnumType;
|
|
4002
|
-
statusInfo?: StatusInfoType;
|
|
4003
|
-
customData?: CustomDataType;
|
|
4004
|
-
}
|
|
4005
|
-
interface UpdateFirmwareRequest {
|
|
4006
|
-
retries?: number;
|
|
4007
|
-
retryInterval?: number;
|
|
4008
|
-
requestId: number;
|
|
4009
|
-
firmware: FirmwareType;
|
|
4010
|
-
customData?: CustomDataType;
|
|
4011
|
-
}
|
|
4012
|
-
interface UpdateFirmwareResponse {
|
|
4013
|
-
status: UpdateFirmwareStatusEnumType;
|
|
4014
|
-
statusInfo?: StatusInfoType;
|
|
4015
|
-
customData?: CustomDataType;
|
|
4016
|
-
}
|
|
4017
|
-
interface UsePriorityChargingRequest {
|
|
4018
|
-
transactionId: string;
|
|
4019
|
-
activate: boolean;
|
|
4020
|
-
customData?: CustomDataType;
|
|
4021
|
-
}
|
|
4022
|
-
interface UsePriorityChargingResponse {
|
|
4023
|
-
status: PriorityChargingStatusEnumType;
|
|
4024
|
-
statusInfo?: StatusInfoType;
|
|
4025
|
-
customData?: CustomDataType;
|
|
4026
|
-
}
|
|
4027
|
-
interface VatNumberValidationRequest {
|
|
4028
|
-
vatNumber: string;
|
|
4029
|
-
evseId?: number;
|
|
4030
|
-
customData?: CustomDataType;
|
|
4031
|
-
}
|
|
4032
|
-
interface VatNumberValidationResponse {
|
|
4033
|
-
company?: AddressType;
|
|
4034
|
-
statusInfo?: StatusInfoType;
|
|
4035
|
-
vatNumber: string;
|
|
4036
|
-
evseId?: number;
|
|
4037
|
-
status: GenericStatusEnumType;
|
|
4038
|
-
customData?: CustomDataType;
|
|
4039
|
-
}
|
|
4040
|
-
interface OCPP21Methods {
|
|
4041
|
-
AdjustPeriodicEventStream: {
|
|
4042
|
-
request: AdjustPeriodicEventStreamRequest;
|
|
4043
|
-
response: AdjustPeriodicEventStreamResponse;
|
|
4044
|
-
};
|
|
4045
|
-
AFRRSignal: {
|
|
4046
|
-
request: AFRRSignalRequest;
|
|
4047
|
-
response: AFRRSignalResponse;
|
|
4048
|
-
};
|
|
4049
|
-
Authorize: {
|
|
4050
|
-
request: AuthorizeRequest;
|
|
4051
|
-
response: AuthorizeResponse;
|
|
4052
|
-
};
|
|
4053
|
-
BatterySwap: {
|
|
4054
|
-
request: BatterySwapRequest;
|
|
4055
|
-
response: BatterySwapResponse;
|
|
4056
|
-
};
|
|
4057
|
-
BootNotification: {
|
|
4058
|
-
request: BootNotificationRequest;
|
|
4059
|
-
response: BootNotificationResponse;
|
|
4060
|
-
};
|
|
4061
|
-
CancelReservation: {
|
|
4062
|
-
request: CancelReservationRequest;
|
|
4063
|
-
response: CancelReservationResponse;
|
|
4064
|
-
};
|
|
4065
|
-
CertificateSigned: {
|
|
4066
|
-
request: CertificateSignedRequest;
|
|
4067
|
-
response: CertificateSignedResponse;
|
|
4068
|
-
};
|
|
4069
|
-
ChangeAvailability: {
|
|
4070
|
-
request: ChangeAvailabilityRequest;
|
|
4071
|
-
response: ChangeAvailabilityResponse;
|
|
4072
|
-
};
|
|
4073
|
-
ChangeTransactionTariff: {
|
|
4074
|
-
request: ChangeTransactionTariffRequest;
|
|
4075
|
-
response: ChangeTransactionTariffResponse;
|
|
4076
|
-
};
|
|
4077
|
-
ClearCache: {
|
|
4078
|
-
request: ClearCacheRequest;
|
|
4079
|
-
response: ClearCacheResponse;
|
|
4080
|
-
};
|
|
4081
|
-
ClearChargingProfile: {
|
|
4082
|
-
request: ClearChargingProfileRequest;
|
|
4083
|
-
response: ClearChargingProfileResponse;
|
|
4084
|
-
};
|
|
4085
|
-
ClearDERControl: {
|
|
4086
|
-
request: ClearDERControlRequest;
|
|
4087
|
-
response: ClearDERControlResponse;
|
|
4088
|
-
};
|
|
4089
|
-
ClearDisplayMessage: {
|
|
4090
|
-
request: ClearDisplayMessageRequest;
|
|
4091
|
-
response: ClearDisplayMessageResponse;
|
|
4092
|
-
};
|
|
4093
|
-
ClearedChargingLimit: {
|
|
4094
|
-
request: ClearedChargingLimitRequest;
|
|
4095
|
-
response: ClearedChargingLimitResponse;
|
|
4096
|
-
};
|
|
4097
|
-
ClearTariffs: {
|
|
4098
|
-
request: ClearTariffsRequest;
|
|
4099
|
-
response: ClearTariffsResponse;
|
|
4100
|
-
};
|
|
4101
|
-
ClearVariableMonitoring: {
|
|
4102
|
-
request: ClearVariableMonitoringRequest;
|
|
4103
|
-
response: ClearVariableMonitoringResponse;
|
|
4104
|
-
};
|
|
4105
|
-
ClosePeriodicEventStream: {
|
|
4106
|
-
request: ClosePeriodicEventStreamRequest;
|
|
4107
|
-
response: ClosePeriodicEventStreamResponse;
|
|
4108
|
-
};
|
|
4109
|
-
CostUpdated: {
|
|
4110
|
-
request: CostUpdatedRequest;
|
|
4111
|
-
response: CostUpdatedResponse;
|
|
4112
|
-
};
|
|
4113
|
-
CustomerInformation: {
|
|
4114
|
-
request: CustomerInformationRequest;
|
|
4115
|
-
response: CustomerInformationResponse;
|
|
4116
|
-
};
|
|
4117
|
-
DataTransfer: {
|
|
4118
|
-
request: DataTransferRequest;
|
|
4119
|
-
response: DataTransferResponse;
|
|
4120
|
-
};
|
|
4121
|
-
DeleteCertificate: {
|
|
4122
|
-
request: DeleteCertificateRequest;
|
|
4123
|
-
response: DeleteCertificateResponse;
|
|
4124
|
-
};
|
|
4125
|
-
FirmwareStatusNotification: {
|
|
4126
|
-
request: FirmwareStatusNotificationRequest;
|
|
4127
|
-
response: FirmwareStatusNotificationResponse;
|
|
4128
|
-
};
|
|
4129
|
-
Get15118EVCertificate: {
|
|
4130
|
-
request: Get15118EVCertificateRequest;
|
|
4131
|
-
response: Get15118EVCertificateResponse;
|
|
4132
|
-
};
|
|
4133
|
-
GetBaseReport: {
|
|
4134
|
-
request: GetBaseReportRequest;
|
|
4135
|
-
response: GetBaseReportResponse;
|
|
4136
|
-
};
|
|
4137
|
-
GetCertificateChainStatus: {
|
|
4138
|
-
request: GetCertificateChainStatusRequest;
|
|
4139
|
-
response: GetCertificateChainStatusResponse;
|
|
4140
|
-
};
|
|
4141
|
-
GetCertificateStatus: {
|
|
4142
|
-
request: GetCertificateStatusRequest;
|
|
4143
|
-
response: GetCertificateStatusResponse;
|
|
4144
|
-
};
|
|
4145
|
-
GetChargingProfiles: {
|
|
4146
|
-
request: GetChargingProfilesRequest;
|
|
4147
|
-
response: GetChargingProfilesResponse;
|
|
4148
|
-
};
|
|
4149
|
-
GetCompositeSchedule: {
|
|
4150
|
-
request: GetCompositeScheduleRequest;
|
|
4151
|
-
response: GetCompositeScheduleResponse;
|
|
4152
|
-
};
|
|
4153
|
-
GetDERControl: {
|
|
4154
|
-
request: GetDERControlRequest;
|
|
4155
|
-
response: GetDERControlResponse;
|
|
4156
|
-
};
|
|
4157
|
-
GetDisplayMessages: {
|
|
4158
|
-
request: GetDisplayMessagesRequest;
|
|
4159
|
-
response: GetDisplayMessagesResponse;
|
|
4160
|
-
};
|
|
4161
|
-
GetInstalledCertificateIds: {
|
|
4162
|
-
request: GetInstalledCertificateIdsRequest;
|
|
4163
|
-
response: GetInstalledCertificateIdsResponse;
|
|
4164
|
-
};
|
|
4165
|
-
GetLocalListVersion: {
|
|
4166
|
-
request: GetLocalListVersionRequest;
|
|
4167
|
-
response: GetLocalListVersionResponse;
|
|
4168
|
-
};
|
|
4169
|
-
GetLog: {
|
|
4170
|
-
request: GetLogRequest;
|
|
4171
|
-
response: GetLogResponse;
|
|
4172
|
-
};
|
|
4173
|
-
GetMonitoringReport: {
|
|
4174
|
-
request: GetMonitoringReportRequest;
|
|
4175
|
-
response: GetMonitoringReportResponse;
|
|
4176
|
-
};
|
|
4177
|
-
GetPeriodicEventStream: {
|
|
4178
|
-
request: GetPeriodicEventStreamRequest;
|
|
4179
|
-
response: GetPeriodicEventStreamResponse;
|
|
4180
|
-
};
|
|
4181
|
-
GetReport: {
|
|
4182
|
-
request: GetReportRequest;
|
|
4183
|
-
response: GetReportResponse;
|
|
4184
|
-
};
|
|
4185
|
-
GetTariffs: {
|
|
4186
|
-
request: GetTariffsRequest;
|
|
4187
|
-
response: GetTariffsResponse;
|
|
4188
|
-
};
|
|
4189
|
-
GetTransactionStatus: {
|
|
4190
|
-
request: GetTransactionStatusRequest;
|
|
4191
|
-
response: GetTransactionStatusResponse;
|
|
4192
|
-
};
|
|
4193
|
-
GetVariables: {
|
|
4194
|
-
request: GetVariablesRequest;
|
|
4195
|
-
response: GetVariablesResponse;
|
|
4196
|
-
};
|
|
4197
|
-
Heartbeat: {
|
|
4198
|
-
request: HeartbeatRequest;
|
|
4199
|
-
response: HeartbeatResponse;
|
|
4200
|
-
};
|
|
4201
|
-
InstallCertificate: {
|
|
4202
|
-
request: InstallCertificateRequest;
|
|
4203
|
-
response: InstallCertificateResponse;
|
|
4204
|
-
};
|
|
4205
|
-
LogStatusNotification: {
|
|
4206
|
-
request: LogStatusNotificationRequest;
|
|
4207
|
-
response: LogStatusNotificationResponse;
|
|
4208
|
-
};
|
|
4209
|
-
MeterValues: {
|
|
4210
|
-
request: MeterValuesRequest;
|
|
4211
|
-
response: MeterValuesResponse;
|
|
4212
|
-
};
|
|
4213
|
-
NotifyAllowedEnergyTransfer: {
|
|
4214
|
-
request: NotifyAllowedEnergyTransferRequest;
|
|
4215
|
-
response: NotifyAllowedEnergyTransferResponse;
|
|
4216
|
-
};
|
|
4217
|
-
NotifyChargingLimit: {
|
|
4218
|
-
request: NotifyChargingLimitRequest;
|
|
4219
|
-
response: NotifyChargingLimitResponse;
|
|
4220
|
-
};
|
|
4221
|
-
NotifyCustomerInformation: {
|
|
4222
|
-
request: NotifyCustomerInformationRequest;
|
|
4223
|
-
response: NotifyCustomerInformationResponse;
|
|
4224
|
-
};
|
|
4225
|
-
NotifyDERAlarm: {
|
|
4226
|
-
request: NotifyDERAlarmRequest;
|
|
4227
|
-
response: NotifyDERAlarmResponse;
|
|
4228
|
-
};
|
|
4229
|
-
NotifyDERStartStop: {
|
|
4230
|
-
request: NotifyDERStartStopRequest;
|
|
4231
|
-
response: NotifyDERStartStopResponse;
|
|
4232
|
-
};
|
|
4233
|
-
NotifyDisplayMessages: {
|
|
4234
|
-
request: NotifyDisplayMessagesRequest;
|
|
4235
|
-
response: NotifyDisplayMessagesResponse;
|
|
4236
|
-
};
|
|
4237
|
-
NotifyEVChargingNeeds: {
|
|
4238
|
-
request: NotifyEVChargingNeedsRequest;
|
|
4239
|
-
response: NotifyEVChargingNeedsResponse;
|
|
4240
|
-
};
|
|
4241
|
-
NotifyEVChargingSchedule: {
|
|
4242
|
-
request: NotifyEVChargingScheduleRequest;
|
|
4243
|
-
response: NotifyEVChargingScheduleResponse;
|
|
4244
|
-
};
|
|
4245
|
-
NotifyEvent: {
|
|
4246
|
-
request: NotifyEventRequest;
|
|
4247
|
-
response: NotifyEventResponse;
|
|
4248
|
-
};
|
|
4249
|
-
NotifyMonitoringReport: {
|
|
4250
|
-
request: NotifyMonitoringReportRequest;
|
|
4251
|
-
response: NotifyMonitoringReportResponse;
|
|
4252
|
-
};
|
|
4253
|
-
NotifyPriorityCharging: {
|
|
4254
|
-
request: NotifyPriorityChargingRequest;
|
|
4255
|
-
response: NotifyPriorityChargingResponse;
|
|
4256
|
-
};
|
|
4257
|
-
NotifyReport: {
|
|
4258
|
-
request: NotifyReportRequest;
|
|
4259
|
-
response: NotifyReportResponse;
|
|
4260
|
-
};
|
|
4261
|
-
NotifySettlement: {
|
|
4262
|
-
request: NotifySettlementRequest;
|
|
4263
|
-
response: NotifySettlementResponse;
|
|
4264
|
-
};
|
|
4265
|
-
NotifyWebPaymentStarted: {
|
|
4266
|
-
request: NotifyWebPaymentStartedRequest;
|
|
4267
|
-
response: NotifyWebPaymentStartedResponse;
|
|
4268
|
-
};
|
|
4269
|
-
OpenPeriodicEventStream: {
|
|
4270
|
-
request: OpenPeriodicEventStreamRequest;
|
|
4271
|
-
response: OpenPeriodicEventStreamResponse;
|
|
4272
|
-
};
|
|
4273
|
-
PublishFirmware: {
|
|
4274
|
-
request: PublishFirmwareRequest;
|
|
4275
|
-
response: PublishFirmwareResponse;
|
|
4276
|
-
};
|
|
4277
|
-
PublishFirmwareStatusNotification: {
|
|
4278
|
-
request: PublishFirmwareStatusNotificationRequest;
|
|
4279
|
-
response: PublishFirmwareStatusNotificationResponse;
|
|
4280
|
-
};
|
|
4281
|
-
PullDynamicScheduleUpdate: {
|
|
4282
|
-
request: PullDynamicScheduleUpdateRequest;
|
|
4283
|
-
response: PullDynamicScheduleUpdateResponse;
|
|
4284
|
-
};
|
|
4285
|
-
ReportChargingProfiles: {
|
|
4286
|
-
request: ReportChargingProfilesRequest;
|
|
4287
|
-
response: ReportChargingProfilesResponse;
|
|
4288
|
-
};
|
|
4289
|
-
ReportDERControl: {
|
|
4290
|
-
request: ReportDERControlRequest;
|
|
4291
|
-
response: ReportDERControlResponse;
|
|
4292
|
-
};
|
|
4293
|
-
RequestBatterySwap: {
|
|
4294
|
-
request: RequestBatterySwapRequest;
|
|
4295
|
-
response: RequestBatterySwapResponse;
|
|
4296
|
-
};
|
|
4297
|
-
RequestStartTransaction: {
|
|
4298
|
-
request: RequestStartTransactionRequest;
|
|
4299
|
-
response: RequestStartTransactionResponse;
|
|
4300
|
-
};
|
|
4301
|
-
RequestStopTransaction: {
|
|
4302
|
-
request: RequestStopTransactionRequest;
|
|
4303
|
-
response: RequestStopTransactionResponse;
|
|
4304
|
-
};
|
|
4305
|
-
ReservationStatusUpdate: {
|
|
4306
|
-
request: ReservationStatusUpdateRequest;
|
|
4307
|
-
response: ReservationStatusUpdateResponse;
|
|
4308
|
-
};
|
|
4309
|
-
ReserveNow: {
|
|
4310
|
-
request: ReserveNowRequest;
|
|
4311
|
-
response: ReserveNowResponse;
|
|
4312
|
-
};
|
|
4313
|
-
Reset: {
|
|
4314
|
-
request: ResetRequest;
|
|
4315
|
-
response: ResetResponse;
|
|
4316
|
-
};
|
|
4317
|
-
SecurityEventNotification: {
|
|
4318
|
-
request: SecurityEventNotificationRequest;
|
|
4319
|
-
response: SecurityEventNotificationResponse;
|
|
4320
|
-
};
|
|
4321
|
-
SendLocalList: {
|
|
4322
|
-
request: SendLocalListRequest;
|
|
4323
|
-
response: SendLocalListResponse;
|
|
4324
|
-
};
|
|
4325
|
-
SetChargingProfile: {
|
|
4326
|
-
request: SetChargingProfileRequest;
|
|
4327
|
-
response: SetChargingProfileResponse;
|
|
4328
|
-
};
|
|
4329
|
-
SetDefaultTariff: {
|
|
4330
|
-
request: SetDefaultTariffRequest;
|
|
4331
|
-
response: SetDefaultTariffResponse;
|
|
4332
|
-
};
|
|
4333
|
-
SetDERControl: {
|
|
4334
|
-
request: SetDERControlRequest;
|
|
4335
|
-
response: SetDERControlResponse;
|
|
4336
|
-
};
|
|
4337
|
-
SetDisplayMessage: {
|
|
4338
|
-
request: SetDisplayMessageRequest;
|
|
4339
|
-
response: SetDisplayMessageResponse;
|
|
4340
|
-
};
|
|
4341
|
-
SetMonitoringBase: {
|
|
4342
|
-
request: SetMonitoringBaseRequest;
|
|
4343
|
-
response: SetMonitoringBaseResponse;
|
|
4344
|
-
};
|
|
4345
|
-
SetMonitoringLevel: {
|
|
4346
|
-
request: SetMonitoringLevelRequest;
|
|
4347
|
-
response: SetMonitoringLevelResponse;
|
|
4348
|
-
};
|
|
4349
|
-
SetNetworkProfile: {
|
|
4350
|
-
request: SetNetworkProfileRequest;
|
|
4351
|
-
response: SetNetworkProfileResponse;
|
|
4352
|
-
};
|
|
4353
|
-
SetVariableMonitoring: {
|
|
4354
|
-
request: SetVariableMonitoringRequest;
|
|
4355
|
-
response: SetVariableMonitoringResponse;
|
|
4356
|
-
};
|
|
4357
|
-
SetVariables: {
|
|
4358
|
-
request: SetVariablesRequest;
|
|
4359
|
-
response: SetVariablesResponse;
|
|
4360
|
-
};
|
|
4361
|
-
SignCertificate: {
|
|
4362
|
-
request: SignCertificateRequest;
|
|
4363
|
-
response: SignCertificateResponse;
|
|
4364
|
-
};
|
|
4365
|
-
StatusNotification: {
|
|
4366
|
-
request: StatusNotificationRequest;
|
|
4367
|
-
response: StatusNotificationResponse;
|
|
4368
|
-
};
|
|
4369
|
-
TransactionEvent: {
|
|
4370
|
-
request: TransactionEventRequest;
|
|
4371
|
-
response: TransactionEventResponse;
|
|
4372
|
-
};
|
|
4373
|
-
TriggerMessage: {
|
|
4374
|
-
request: TriggerMessageRequest;
|
|
4375
|
-
response: TriggerMessageResponse;
|
|
4376
|
-
};
|
|
4377
|
-
UnlockConnector: {
|
|
4378
|
-
request: UnlockConnectorRequest;
|
|
4379
|
-
response: UnlockConnectorResponse;
|
|
4380
|
-
};
|
|
4381
|
-
UnpublishFirmware: {
|
|
4382
|
-
request: UnpublishFirmwareRequest;
|
|
4383
|
-
response: UnpublishFirmwareResponse;
|
|
4384
|
-
};
|
|
4385
|
-
UpdateDynamicSchedule: {
|
|
4386
|
-
request: UpdateDynamicScheduleRequest;
|
|
4387
|
-
response: UpdateDynamicScheduleResponse;
|
|
4388
|
-
};
|
|
4389
|
-
UpdateFirmware: {
|
|
4390
|
-
request: UpdateFirmwareRequest;
|
|
4391
|
-
response: UpdateFirmwareResponse;
|
|
4392
|
-
};
|
|
4393
|
-
UsePriorityCharging: {
|
|
4394
|
-
request: UsePriorityChargingRequest;
|
|
4395
|
-
response: UsePriorityChargingResponse;
|
|
4396
|
-
};
|
|
4397
|
-
VatNumberValidation: {
|
|
4398
|
-
request: VatNumberValidationRequest;
|
|
4399
|
-
response: VatNumberValidationResponse;
|
|
4400
|
-
};
|
|
4401
|
-
}
|
|
4402
|
-
|
|
4403
|
-
/**
|
|
4404
|
-
* Maps OCPP protocol strings to their method type maps.
|
|
4405
|
-
* Used by OCPPClient<P> and OCPPServer to provide auto-typed
|
|
4406
|
-
* handle(), call(), and event listener signatures.
|
|
4407
|
-
*/
|
|
4408
|
-
interface OCPPMethodMap {
|
|
4409
|
-
"ocpp1.6": OCPP16Methods;
|
|
4410
|
-
"ocpp2.0.1": OCPP201Methods;
|
|
4411
|
-
"ocpp2.1": OCPP21Methods;
|
|
4412
|
-
}
|
|
4413
|
-
/** All valid OCPP protocol strings (auto-generated, extensible via module augmentation). */
|
|
4414
|
-
type OCPPProtocolKey = keyof OCPPMethodMap;
|
|
4415
|
-
/** Distributes over union protocols to get all method names. */
|
|
4416
|
-
type AllMethodNames$1<P extends keyof OCPPMethodMap> = P extends keyof OCPPMethodMap ? keyof OCPPMethodMap[P] & string : never;
|
|
4417
|
-
/** Request type for a given protocol + method. */
|
|
4418
|
-
type OCPPRequestType$1<P extends keyof OCPPMethodMap, M extends string> = P extends keyof OCPPMethodMap ? M extends keyof OCPPMethodMap[P] ? OCPPMethodMap[P][M] extends {
|
|
4419
|
-
request: infer R;
|
|
4420
|
-
} ? R : never : never : never;
|
|
4421
|
-
/** Response type for a given protocol + method. */
|
|
4422
|
-
type OCPPResponseType$1<P extends keyof OCPPMethodMap, M extends string> = P extends keyof OCPPMethodMap ? M extends keyof OCPPMethodMap[P] ? OCPPMethodMap[P][M] extends {
|
|
4423
|
-
response: infer R;
|
|
4424
|
-
} ? R : never : never : never;
|
|
4425
|
-
|
|
4426
|
-
/**
|
|
4427
|
-
* Middleware handling for intercepting and modifying OCPP operations.
|
|
4428
|
-
*
|
|
4429
|
-
* Implements an onion-model middleware stack (similar to Koa/Axios)
|
|
4430
|
-
* allowing cross-cutting concerns like logging, authentication, and validation.
|
|
4431
|
-
*/
|
|
4432
|
-
type MiddlewareNext<TReturn = unknown> = () => Promise<TReturn>;
|
|
4433
|
-
type MiddlewareFunction<TContext, TReturn = unknown> = (context: TContext, next: MiddlewareNext<TReturn>) => Promise<TReturn> | TReturn;
|
|
4434
|
-
declare class MiddlewareStack<TContext> {
|
|
4435
|
-
private _stack;
|
|
4436
|
-
/**
|
|
4437
|
-
* Add a middleware function to the stack.
|
|
4438
|
-
*/
|
|
4439
|
-
use<TReturn = any>(middleware: MiddlewareFunction<TContext, TReturn>): void;
|
|
4440
|
-
/**
|
|
4441
|
-
* Execute the middleware stack composed with a runner function.
|
|
4442
|
-
*
|
|
4443
|
-
* @param context The context object to pass through middleware
|
|
4444
|
-
* @param runner The final function to execute (the "core" logic)
|
|
4445
|
-
*/
|
|
4446
|
-
execute<TReturn = unknown>(context: TContext, runner: (context: TContext) => Promise<TReturn> | TReturn): Promise<TReturn>;
|
|
4447
|
-
}
|
|
4448
|
-
|
|
4449
|
-
interface ValidatorSchema {
|
|
4450
|
-
$schema?: string;
|
|
4451
|
-
$id?: string;
|
|
4452
|
-
[key: string]: unknown;
|
|
4453
|
-
}
|
|
4454
|
-
/**
|
|
4455
|
-
* Schema validator using AJV for OCPP message validation.
|
|
4456
|
-
* Each validator is bound to a specific subprotocol version.
|
|
4457
|
-
*
|
|
4458
|
-
* E2: Schemas are registered at construction time but compiled lazily
|
|
4459
|
-
* on first use, reducing startup time from ~400ms to ~5ms.
|
|
4460
|
-
*/
|
|
4461
|
-
declare class Validator {
|
|
4462
|
-
readonly subprotocol: string;
|
|
4463
|
-
/** @internal */
|
|
4464
|
-
_ajv: Ajv;
|
|
4465
|
-
constructor(subprotocol: string, schemas: ValidatorSchema[]);
|
|
4466
|
-
/**
|
|
4467
|
-
* Normalize a schema ID from OCPP URN format to internal path format.
|
|
4468
|
-
*/
|
|
4469
|
-
private _normalizeSchemaId;
|
|
4470
|
-
/**
|
|
4471
|
-
* Validate a payload against a schema identified by its $id.
|
|
4472
|
-
* Throws a typed RPCError if validation fails.
|
|
4473
|
-
*
|
|
4474
|
-
* E2: Schema is compiled on first call to this method (lazy).
|
|
4475
|
-
*/
|
|
4476
|
-
validate(schemaId: string, params: unknown): void;
|
|
4477
|
-
/**
|
|
4478
|
-
* Check if a schema exists for the given $id.
|
|
4479
|
-
*/
|
|
4480
|
-
hasSchema(schemaId: string): boolean;
|
|
4481
|
-
}
|
|
4482
|
-
|
|
4483
|
-
type OCPPProtocol$1 = OCPPProtocolKey;
|
|
4484
|
-
type AnyOCPPProtocol$1 = OCPPProtocol$1 | (string & {});
|
|
4485
|
-
declare const ConnectionState: {
|
|
4486
|
-
readonly CONNECTING: 0;
|
|
4487
|
-
readonly OPEN: 1;
|
|
4488
|
-
readonly CLOSING: 2;
|
|
4489
|
-
readonly CLOSED: 3;
|
|
4490
|
-
};
|
|
4491
|
-
type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionState];
|
|
4492
|
-
declare const MessageType: {
|
|
4493
|
-
readonly CALL: 2;
|
|
4494
|
-
readonly CALLRESULT: 3;
|
|
4495
|
-
readonly CALLERROR: 4;
|
|
4496
|
-
};
|
|
4497
|
-
type MessageType = (typeof MessageType)[keyof typeof MessageType];
|
|
4498
|
-
type OCPPCall$1<T = unknown> = [2, string, string, T];
|
|
4499
|
-
type OCPPCallResult$1<T = unknown> = [3, string, T];
|
|
4500
|
-
type OCPPCallError$1 = [
|
|
4501
|
-
4,
|
|
4502
|
-
string,
|
|
4503
|
-
string,
|
|
4504
|
-
string,
|
|
4505
|
-
Record<string, unknown>
|
|
4506
|
-
];
|
|
4507
|
-
type OCPPMessage$1<T = unknown> = OCPPCall$1<T> | OCPPCallResult$1<T> | OCPPCallError$1;
|
|
4508
|
-
interface HandlerContext$1<T = unknown> {
|
|
4509
|
-
/** Unique message ID */
|
|
4510
|
-
messageId: string;
|
|
4511
|
-
/** OCPP method name (e.g. "BootNotification") */
|
|
4512
|
-
method: string;
|
|
4513
|
-
/** Active OCPP protocol version (e.g. "ocpp1.6") */
|
|
4514
|
-
protocol: string | undefined;
|
|
4515
|
-
/** Request parameters */
|
|
4516
|
-
params: T;
|
|
4517
|
-
/** Abort signal */
|
|
4518
|
-
signal: AbortSignal;
|
|
4519
|
-
}
|
|
4520
|
-
type CallHandler$1<TParams = unknown, TResult = unknown> = (context: HandlerContext$1<TParams>) => TResult | Promise<TResult>;
|
|
4521
|
-
type WildcardHandler$1 = (method: string, context: HandlerContext$1) => unknown | Promise<unknown>;
|
|
4522
|
-
interface CallOptions$1 {
|
|
4523
|
-
/** Timeout in milliseconds for this specific call */
|
|
4524
|
-
timeoutMs?: number;
|
|
4525
|
-
/** Abort signal */
|
|
4526
|
-
signal?: AbortSignal;
|
|
4527
|
-
/**
|
|
4528
|
-
* Max retry attempts on TimeoutError (default: 0 = no retry).
|
|
4529
|
-
* Uses Full Jitter exponential backoff between retries.
|
|
4530
|
-
*/
|
|
4531
|
-
retries?: number;
|
|
4532
|
-
/** Base delay in ms for exponential backoff between retries (default: 1000) */
|
|
4533
|
-
retryDelayMs?: number;
|
|
4534
|
-
/** Max delay cap in ms to prevent unbounded backoff (default: 30000) */
|
|
4535
|
-
retryMaxDelayMs?: number;
|
|
4536
|
-
/**
|
|
4537
|
-
* Idempotency key for deduplication. If provided, this value is used
|
|
4538
|
-
* as the OCPP messageId instead of generating a new random one.
|
|
4539
|
-
* Consumers can use the same key to guarantee exactly-once semantics
|
|
4540
|
-
* when retrying calls across reconnections.
|
|
4541
|
-
*/
|
|
4542
|
-
idempotencyKey?: string;
|
|
4543
|
-
}
|
|
4544
|
-
interface CloseOptions$1 {
|
|
4545
|
-
/** WebSocket close code (default: 1000) */
|
|
4546
|
-
code?: number;
|
|
4547
|
-
/** Close reason string */
|
|
4548
|
-
reason?: string;
|
|
4549
|
-
/** Wait for pending calls to complete before closing */
|
|
4550
|
-
awaitPending?: boolean;
|
|
4551
|
-
/** Force-close without waiting */
|
|
4552
|
-
force?: boolean;
|
|
4553
|
-
}
|
|
4554
|
-
/**
|
|
4555
|
-
* Minimal logger contract — compatible with `console`, `pino`, `voltlog-io`,
|
|
4556
|
-
* or any custom object with these methods.
|
|
4557
|
-
*
|
|
4558
|
-
* All methods are optional so `console` works as-is.
|
|
4559
|
-
*/
|
|
4560
|
-
interface LoggerLike$1 {
|
|
4561
|
-
debug?(message: string, meta?: Record<string, unknown>): void;
|
|
4562
|
-
info?(message: string, meta?: Record<string, unknown>): void;
|
|
4563
|
-
warn?(message: string, meta?: Record<string, unknown>): void;
|
|
4564
|
-
error?(message: string, meta?: Record<string, unknown>): void;
|
|
4565
|
-
child?(context: Record<string, unknown>): LoggerLike$1;
|
|
4566
|
-
}
|
|
4567
|
-
/**
|
|
4568
|
-
* Minimal logger contract — compatible with `console`, `pino`, `voltlog-io`,
|
|
4569
|
-
* or any custom object with these methods.
|
|
4570
|
-
*
|
|
4571
|
-
* All methods are optional so `console` works as-is.
|
|
4572
|
-
* this is only not optional for the logger used by the library
|
|
4573
|
-
*/
|
|
4574
|
-
interface LoggerLikeNotOptional$1 {
|
|
4575
|
-
debug(message: string, meta?: Record<string, unknown>): void;
|
|
4576
|
-
info(message: string, meta?: Record<string, unknown>): void;
|
|
4577
|
-
warn(message: string, meta?: Record<string, unknown>): void;
|
|
4578
|
-
error(message: string, meta?: Record<string, unknown>): void;
|
|
4579
|
-
child(context: Record<string, unknown>): LoggerLike$1;
|
|
4580
|
-
}
|
|
4581
|
-
/**
|
|
4582
|
-
* Logging configuration for OCPPClient and OCPPServer.
|
|
4583
|
-
*
|
|
4584
|
-
* @example Default (auto console logging)
|
|
4585
|
-
* ```ts
|
|
4586
|
-
* const client = new OCPPClient({ identity: 'CP-101', endpoint: '...' });
|
|
4587
|
-
* // → Logs to console via voltlog-io by default
|
|
4588
|
-
* ```
|
|
4589
|
-
*
|
|
4590
|
-
* @example Disable logging
|
|
4591
|
-
* ```ts
|
|
4592
|
-
* new OCPPClient({ identity: 'CP-101', endpoint: '...', logging: false });
|
|
4593
|
-
* ```
|
|
4594
|
-
*
|
|
4595
|
-
* @example Custom logger
|
|
4596
|
-
* ```ts
|
|
4597
|
-
* new OCPPClient({ identity: 'CP-101', endpoint: '...', logging: { handler: pino() } });
|
|
4598
|
-
* ```
|
|
4599
|
-
*/
|
|
4600
|
-
interface LoggingConfig$1 {
|
|
4601
|
-
/** Enable/disable logging (default: true) */
|
|
4602
|
-
enabled?: boolean;
|
|
4603
|
-
/**
|
|
4604
|
-
* Enable OCPP exchange logging (default: false).
|
|
4605
|
-
* Adds `direction: 'IN' | 'OUT'` to OCPP message logs.
|
|
4606
|
-
* When combined with `prettify`, renders styled exchange lines:
|
|
4607
|
-
* `⚡ CP-101 → BootNotification [IN]`
|
|
4608
|
-
*/
|
|
4609
|
-
exchangeLog?: boolean;
|
|
4610
|
-
/**
|
|
4611
|
-
* Enable pretty-printed colored output (default: false).
|
|
4612
|
-
* Uses voltlog-io's prettyTransport with icons, colors, and timestamps.
|
|
4613
|
-
* Without this, logs are structured JSON.
|
|
4614
|
-
*/
|
|
4615
|
-
prettify?: boolean;
|
|
4616
|
-
/** Log level for the default voltlog-io logger (default: 'INFO') */
|
|
4617
|
-
level?: string;
|
|
4618
|
-
/** Custom logger — replaces the default voltlog-io entirely */
|
|
4619
|
-
logger?: LoggerLike$1;
|
|
4620
|
-
/** Custom VoltLog transport function — receives formatted logs */
|
|
4621
|
-
handler?: (entry: LogEntry) => void | Promise<void>;
|
|
4622
|
-
/**
|
|
4623
|
-
* Show trailing metadata object in log output (default: true).
|
|
4624
|
-
* `INFO Server listening {"port":5000,"host":"0.0.0.0"}`
|
|
4625
|
-
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ← hidden when false
|
|
4626
|
-
*/
|
|
4627
|
-
showMetadata?: boolean;
|
|
4628
|
-
/**
|
|
4629
|
-
* Show source context object in log output (default: true).
|
|
4630
|
-
* `INFO Server listening {"component":"OCPPServer"} {"port":5000}`
|
|
4631
|
-
* ^^^^^^^^^^^^^^^^^^^^^^^^ ← hidden when false
|
|
4632
|
-
*/
|
|
4633
|
-
showSourceMeta?: boolean;
|
|
4634
|
-
/**
|
|
4635
|
-
* Prettify source context into a compact tag (default: false).
|
|
4636
|
-
* `{"component":"OCPPServer","identity":"CP-1"}` → `[OCPPServer/CP-1]`
|
|
4637
|
-
*/
|
|
4638
|
-
prettifySource?: boolean;
|
|
4639
|
-
/**
|
|
4640
|
-
* Prettify trailing metadata into readable key=value pairs (default: false).
|
|
4641
|
-
* `{"port":5000,"host":"0.0.0.0"}` → `port=5000 host=0.0.0.0`
|
|
4642
|
-
*/
|
|
4643
|
-
prettifyMetadata?: boolean;
|
|
4644
|
-
}
|
|
4645
|
-
declare const NOREPLY: unique symbol;
|
|
4646
|
-
type MiddlewareContext = {
|
|
4647
|
-
type: "incoming_call";
|
|
4648
|
-
messageId: string;
|
|
4649
|
-
method: string;
|
|
4650
|
-
params: unknown;
|
|
4651
|
-
protocol?: string;
|
|
4652
|
-
} | {
|
|
4653
|
-
type: "outgoing_call";
|
|
4654
|
-
messageId: string;
|
|
4655
|
-
method: string;
|
|
4656
|
-
params: unknown;
|
|
4657
|
-
options: CallOptions$1;
|
|
4658
|
-
} | {
|
|
4659
|
-
type: "incoming_result";
|
|
4660
|
-
messageId: string;
|
|
4661
|
-
payload: unknown;
|
|
4662
|
-
method: string;
|
|
4663
|
-
} | {
|
|
4664
|
-
type: "incoming_error";
|
|
4665
|
-
messageId: string;
|
|
4666
|
-
error: OCPPCallError$1;
|
|
4667
|
-
method: string;
|
|
4668
|
-
};
|
|
4669
|
-
|
|
4670
|
-
/**
|
|
4671
|
-
* Utility to define and strongly-type an RPC Middleware function.
|
|
4672
|
-
* This provides immediate IDE autocomplete for the `MiddlewareContext`
|
|
4673
|
-
* used when passing middleware to `client.use()`.
|
|
4674
|
-
*/
|
|
4675
|
-
declare function defineRpcMiddleware<TContext = MiddlewareContext>(mw: MiddlewareFunction<TContext>): MiddlewareFunction<TContext>;
|
|
4676
|
-
/**
|
|
4677
|
-
* Creates a middleware that logs all RPC exchanges using the provided logger.
|
|
4678
|
-
* Logs start/end of calls and results with duration.
|
|
4679
|
-
*/
|
|
4680
|
-
declare function createLoggingMiddleware(logger: LoggerLike$1, identity: string, config?: LoggingConfig$1 | boolean): MiddlewareFunction<MiddlewareContext, any>;
|
|
4681
|
-
|
|
4682
|
-
/**
|
|
4683
|
-
* Tiny browser-compatible typed EventEmitter.
|
|
4684
|
-
* Drop-in replacement for Node.js EventEmitter in browser contexts.
|
|
4685
|
-
*/
|
|
4686
|
-
type Listener = (...args: any[]) => void;
|
|
4687
|
-
declare class EventEmitter {
|
|
4688
|
-
private _listeners;
|
|
4689
|
-
on(event: string, listener: Listener): this;
|
|
4690
|
-
once(event: string, listener: Listener): this;
|
|
4691
|
-
off(event: string, listener: Listener): this;
|
|
4692
|
-
emit(event: string, ...args: unknown[]): boolean;
|
|
4693
|
-
addListener(event: string, listener: Listener): this;
|
|
4694
|
-
removeListener(event: string, listener: Listener): this;
|
|
4695
|
-
removeAllListeners(event?: string): this;
|
|
4696
|
-
listenerCount(event: string): number;
|
|
4697
|
-
}
|
|
4698
|
-
|
|
4699
|
-
type OCPPProtocol = OCPPProtocol$1;
|
|
4700
|
-
type AnyOCPPProtocol = AnyOCPPProtocol$1;
|
|
4701
|
-
type OCPPCall<T = unknown> = OCPPCall$1<T>;
|
|
4702
|
-
type OCPPCallResult<T = unknown> = OCPPCallResult$1<T>;
|
|
4703
|
-
type OCPPCallError = OCPPCallError$1;
|
|
4704
|
-
type OCPPMessage<T = unknown> = OCPPMessage$1<T>;
|
|
4705
|
-
type HandlerContext<T = unknown> = HandlerContext$1<T>;
|
|
4706
|
-
type CallHandler<TParams = unknown, TResult = unknown> = CallHandler$1<TParams, TResult>;
|
|
4707
|
-
type WildcardHandler = WildcardHandler$1;
|
|
4708
|
-
type CallOptions = CallOptions$1;
|
|
4709
|
-
type CloseOptions = CloseOptions$1;
|
|
4710
|
-
type LoggerLike = LoggerLike$1;
|
|
4711
|
-
type LoggerLikeNotOptional = LoggerLikeNotOptional$1;
|
|
4712
|
-
type LoggingConfig = LoggingConfig$1;
|
|
4713
|
-
type AllMethodNames<V extends OCPPProtocol> = AllMethodNames$1<V>;
|
|
4714
|
-
type OCPPRequestType<V extends OCPPProtocol, M extends AllMethodNames<V>> = OCPPRequestType$1<V, M>;
|
|
4715
|
-
type OCPPResponseType<V extends OCPPProtocol, M extends AllMethodNames<V>> = OCPPResponseType$1<V, M>;
|
|
4716
|
-
|
|
4717
|
-
interface BrowserClientOptions {
|
|
4718
|
-
/** Unique identity for this client (charging station ID) */
|
|
4719
|
-
identity: string;
|
|
4720
|
-
/** WebSocket endpoint URL (ws:// or wss://) */
|
|
4721
|
-
endpoint: string;
|
|
4722
|
-
/** OCPP subprotocols to negotiate */
|
|
4723
|
-
protocols?: string[];
|
|
4724
|
-
/** Additional query parameters */
|
|
4725
|
-
query?: Record<string, string>;
|
|
4726
|
-
/** Enable automatic reconnection (default: true) */
|
|
4727
|
-
reconnect?: boolean;
|
|
4728
|
-
/** Maximum reconnection attempts (default: Infinity) */
|
|
4729
|
-
maxReconnects?: number;
|
|
4730
|
-
/** Back-off base delay in ms (default: 1000) */
|
|
4731
|
-
backoffMin?: number;
|
|
4732
|
-
/** Back-off max delay in ms (default: 30000) */
|
|
4733
|
-
backoffMax?: number;
|
|
4734
|
-
/** Call timeout in ms (default: 30000) */
|
|
4735
|
-
callTimeoutMs?: number;
|
|
4736
|
-
/** Maximum concurrent outbound calls (default: 1) */
|
|
4737
|
-
callConcurrency?: number;
|
|
4738
|
-
/** Max number of bad messages before closing (default: Infinity) */
|
|
4739
|
-
maxBadMessages?: number;
|
|
4740
|
-
/** Include error details in responses (default: false) */
|
|
4741
|
-
respondWithDetailedErrors?: boolean;
|
|
4742
|
-
/**
|
|
4743
|
-
* Logging configuration.
|
|
4744
|
-
* - `undefined` / not set → uses `console` as default logger
|
|
4745
|
-
* - `false` → logging disabled entirely
|
|
4746
|
-
* - `LoggingConfig` → custom configuration (use `handler` for custom logger)
|
|
4747
|
-
*/
|
|
4748
|
-
logging?: LoggingConfig | false;
|
|
4749
|
-
}
|
|
4750
|
-
interface BrowserClientEvents {
|
|
4751
|
-
open: [Event];
|
|
4752
|
-
close: [{
|
|
4753
|
-
code: number;
|
|
4754
|
-
reason: string;
|
|
4755
|
-
}];
|
|
4756
|
-
disconnect: [{
|
|
4757
|
-
code: number;
|
|
4758
|
-
reason: string;
|
|
4759
|
-
}];
|
|
4760
|
-
error: [Event | Error];
|
|
4761
|
-
connecting: [{
|
|
4762
|
-
url: string;
|
|
4763
|
-
}];
|
|
4764
|
-
reconnect: [{
|
|
4765
|
-
attempt: number;
|
|
4766
|
-
delay: number;
|
|
4767
|
-
}];
|
|
4768
|
-
message: [OCPPMessage];
|
|
4769
|
-
call: [OCPPCall];
|
|
4770
|
-
callResult: [OCPPCallResult];
|
|
4771
|
-
callError: [OCPPCallError];
|
|
4772
|
-
badMessage: [{
|
|
4773
|
-
message: string;
|
|
4774
|
-
error: Error;
|
|
4775
|
-
}];
|
|
4776
|
-
[key: string]: unknown[];
|
|
4777
|
-
}
|
|
4778
|
-
|
|
4779
|
-
/**
|
|
4780
|
-
* BrowserOCPPClient — A typed WebSocket RPC client for OCPP in browser environments.
|
|
4781
|
-
*
|
|
4782
|
-
* API-compatible with `OCPPClient` from `ocpp-ws-io`, adapted for the browser
|
|
4783
|
-
* WebSocket API (no Node.js dependencies).
|
|
4784
|
-
*
|
|
4785
|
-
* @example
|
|
4786
|
-
* ```ts
|
|
4787
|
-
* import { BrowserOCPPClient } from "ocpp-ws-io/browser";
|
|
4788
|
-
*
|
|
4789
|
-
* const client = new BrowserOCPPClient({
|
|
4790
|
-
* identity: "CP001",
|
|
4791
|
-
* endpoint: "wss://central.example.com/ocpp",
|
|
4792
|
-
* protocols: ["ocpp1.6"],
|
|
4793
|
-
* });
|
|
4794
|
-
*
|
|
4795
|
-
* client.on("open", () => console.log("Connected!"));
|
|
4796
|
-
* await client.connect();
|
|
4797
|
-
* ```
|
|
4798
|
-
*/
|
|
4799
|
-
declare class BrowserOCPPClient<P extends OCPPProtocol = OCPPProtocol> extends EventEmitter {
|
|
4800
|
-
static readonly CONNECTING: 0;
|
|
4801
|
-
static readonly OPEN: 1;
|
|
4802
|
-
static readonly CLOSING: 2;
|
|
4803
|
-
static readonly CLOSED: 3;
|
|
4804
|
-
private _options;
|
|
4805
|
-
private _state;
|
|
4806
|
-
private _ws;
|
|
4807
|
-
private _protocol;
|
|
4808
|
-
private _identity;
|
|
4809
|
-
private _handlers;
|
|
4810
|
-
private _wildcardHandler;
|
|
4811
|
-
private _pendingCalls;
|
|
4812
|
-
private _pendingResponses;
|
|
4813
|
-
private _callQueue;
|
|
4814
|
-
private _closePromise;
|
|
4815
|
-
private _reconnectAttempt;
|
|
4816
|
-
private _reconnectTimer;
|
|
4817
|
-
private _badMessageCount;
|
|
4818
|
-
private _outboundBuffer;
|
|
4819
|
-
private _logger;
|
|
4820
|
-
private _middleware;
|
|
4821
|
-
constructor(options: BrowserClientOptions);
|
|
4822
|
-
get log(): LoggerLikeNotOptional;
|
|
4823
|
-
get identity(): string;
|
|
4824
|
-
get protocol(): string | undefined;
|
|
4825
|
-
get state(): (typeof ConnectionState)[keyof typeof ConnectionState];
|
|
4826
|
-
connect(): Promise<void>;
|
|
4827
|
-
private _connectInternal;
|
|
4828
|
-
close(options?: CloseOptions): Promise<{
|
|
4829
|
-
code: number;
|
|
4830
|
-
reason: string;
|
|
4831
|
-
}>;
|
|
4832
|
-
private _closeInternal;
|
|
4833
|
-
/**
|
|
4834
|
-
* Register a version-specific handler — `handle("ocpp1.6", "BootNotification", handler)`.
|
|
4835
|
-
* This handler is only invoked when the active protocol matches the given version.
|
|
4836
|
-
*/
|
|
4837
|
-
handle<V extends OCPPProtocol, M extends AllMethodNames<V>>(version: V, method: M, handler: (context: HandlerContext<OCPPRequestType<V, M>>) => OCPPResponseType<V, M> | Promise<OCPPResponseType<V, M>>): void;
|
|
4838
|
-
/**
|
|
4839
|
-
* Register a handler for the client's default protocol — `handle("BootNotification", handler)`.
|
|
4840
|
-
* Uses the default protocol type parameter `P`.
|
|
4841
|
-
*/
|
|
4842
|
-
handle<M extends AllMethodNames<P>>(method: M, handler: (context: HandlerContext<OCPPRequestType<P, M>>) => OCPPResponseType<P, M> | Promise<OCPPResponseType<P, M>>): void;
|
|
4843
|
-
/** Register a handler for a custom/extension method not in the typed OCPP method maps. */
|
|
4844
|
-
handle(method: string, handler: (context: HandlerContext<Record<string, any>>) => any): void;
|
|
4845
|
-
/** Register a wildcard handler for all unhandled methods. */
|
|
4846
|
-
handle(handler: WildcardHandler): void;
|
|
4847
|
-
removeHandler(method?: string): void;
|
|
4848
|
-
removeHandler(version: OCPPProtocol, method: string): void;
|
|
4849
|
-
removeAllHandlers(): void;
|
|
4850
|
-
/**
|
|
4851
|
-
* Register a middleware function to intercept calls and results.
|
|
4852
|
-
* Middleware executes in the order registered.
|
|
4853
|
-
*/
|
|
4854
|
-
use(middleware: MiddlewareFunction<MiddlewareContext>): void;
|
|
4855
|
-
/**
|
|
4856
|
-
* Call a version-specific typed method — `call("ocpp1.6", "BootNotification", {...})`.
|
|
4857
|
-
* Provides full type inference for params and response based on the OCPP version.
|
|
4858
|
-
*/
|
|
4859
|
-
call<V extends OCPPProtocol, M extends AllMethodNames<V>>(version: V, method: M, params: OCPPRequestType<V, M>, options?: CallOptions): Promise<OCPPResponseType<V, M>>;
|
|
4860
|
-
/** Call a known typed method using the client's default protocol. */
|
|
4861
|
-
call<M extends AllMethodNames<P>>(method: M, params: OCPPRequestType<P, M>, options?: CallOptions): Promise<OCPPResponseType<P, M>>;
|
|
4862
|
-
/** Call a known typed method with explicit response type. */
|
|
4863
|
-
call<TResult = unknown>(method: string, params?: Record<string, unknown>, options?: CallOptions): Promise<TResult>;
|
|
4864
|
-
private _sendCall;
|
|
4865
|
-
/**
|
|
4866
|
-
* Send a raw string message over the WebSocket (use with caution).
|
|
4867
|
-
* Messages sent while CONNECTING are buffered and flushed on open.
|
|
4868
|
-
*/
|
|
4869
|
-
sendRaw(message: string): void;
|
|
4870
|
-
reconfigure(options: Partial<BrowserClientOptions>): void;
|
|
4871
|
-
private _attachWebsocket;
|
|
4872
|
-
private _onMessage;
|
|
4873
|
-
private _handleIncomingCall;
|
|
4874
|
-
private _handleCallResult;
|
|
4875
|
-
private _handleCallError;
|
|
4876
|
-
private _onBadMessage;
|
|
4877
|
-
/**
|
|
4878
|
-
* Reject all in-flight calls and clear pending state.
|
|
4879
|
-
*/
|
|
4880
|
-
private _rejectPendingCalls;
|
|
4881
|
-
private _onClose;
|
|
4882
|
-
/** Errors that should stop reconnection immediately */
|
|
4883
|
-
private static readonly _INTOLERABLE_ERRORS;
|
|
4884
|
-
private _scheduleReconnect;
|
|
4885
|
-
private _buildEndpoint;
|
|
4886
|
-
private _cleanup;
|
|
4887
|
-
private _generateMessageId;
|
|
4888
|
-
}
|
|
4889
|
-
|
|
4890
|
-
declare class TimeoutError extends Error {
|
|
4891
|
-
constructor(message?: string);
|
|
4892
|
-
}
|
|
4893
|
-
interface RPCError extends Error {
|
|
4894
|
-
readonly rpcErrorCode: string;
|
|
4895
|
-
readonly rpcErrorMessage: string;
|
|
4896
|
-
readonly details: Record<string, unknown>;
|
|
4897
|
-
}
|
|
4898
|
-
declare class RPCGenericError extends Error implements RPCError {
|
|
4899
|
-
readonly rpcErrorCode: string;
|
|
4900
|
-
readonly rpcErrorMessage: string;
|
|
4901
|
-
readonly details: Record<string, unknown>;
|
|
4902
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4903
|
-
}
|
|
4904
|
-
declare class RPCNotImplementedError extends RPCGenericError {
|
|
4905
|
-
readonly rpcErrorCode = "NotImplemented";
|
|
4906
|
-
readonly rpcErrorMessage = "Requested method is not known";
|
|
4907
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4908
|
-
}
|
|
4909
|
-
declare class RPCNotSupportedError extends RPCGenericError {
|
|
4910
|
-
readonly rpcErrorCode = "NotSupported";
|
|
4911
|
-
readonly rpcErrorMessage = "Requested method is recognised but not supported";
|
|
4912
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4913
|
-
}
|
|
4914
|
-
declare class RPCInternalError extends RPCGenericError {
|
|
4915
|
-
readonly rpcErrorCode = "InternalError";
|
|
4916
|
-
readonly rpcErrorMessage = "An internal error occurred and the receiver was not able to process the requested action successfully";
|
|
4917
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4918
|
-
}
|
|
4919
|
-
declare class RPCProtocolError extends RPCGenericError {
|
|
4920
|
-
readonly rpcErrorCode = "ProtocolError";
|
|
4921
|
-
readonly rpcErrorMessage = "Payload for action is incomplete";
|
|
4922
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4923
|
-
}
|
|
4924
|
-
declare class RPCSecurityError extends RPCGenericError {
|
|
4925
|
-
readonly rpcErrorCode = "SecurityError";
|
|
4926
|
-
readonly rpcErrorMessage = "During the processing of action a security issue occurred preventing receiver from completing the action successfully";
|
|
4927
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4928
|
-
}
|
|
4929
|
-
declare class RPCFormationViolationError extends RPCGenericError {
|
|
4930
|
-
readonly rpcErrorCode = "FormationViolation";
|
|
4931
|
-
readonly rpcErrorMessage = "Payload for action is syntactically incorrect or not conform the PDU structure for action";
|
|
4932
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4933
|
-
}
|
|
4934
|
-
declare class RPCFormatViolationError extends RPCGenericError {
|
|
4935
|
-
readonly rpcErrorCode = "FormatViolation";
|
|
4936
|
-
readonly rpcErrorMessage = "Payload is syntactically correct but at least one field contains an invalid value";
|
|
4937
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4938
|
-
}
|
|
4939
|
-
declare class RPCPropertyConstraintViolationError extends RPCGenericError {
|
|
4940
|
-
readonly rpcErrorCode = "PropertyConstraintViolation";
|
|
4941
|
-
readonly rpcErrorMessage = "Payload is syntactically correct but at least one of the fields violates data type constraints";
|
|
4942
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4943
|
-
}
|
|
4944
|
-
declare class RPCOccurrenceConstraintViolationError extends RPCGenericError {
|
|
4945
|
-
readonly rpcErrorCode = "OccurrenceConstraintViolation";
|
|
4946
|
-
readonly rpcErrorMessage = "Payload for action is syntactically correct but at least one of the fields violates occurrence constraints";
|
|
4947
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4948
|
-
}
|
|
4949
|
-
declare class RPCTypeConstraintViolationError extends RPCGenericError {
|
|
4950
|
-
readonly rpcErrorCode = "TypeConstraintViolation";
|
|
4951
|
-
readonly rpcErrorMessage = "Payload for action is syntactically correct but at least one of the fields violates type constraints";
|
|
4952
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4953
|
-
}
|
|
4954
|
-
declare class RPCMessageTypeNotSupportedError extends RPCGenericError {
|
|
4955
|
-
readonly rpcErrorCode = "MessageTypeNotSupported";
|
|
4956
|
-
readonly rpcErrorMessage = "A message with a Message Type Number received that is not supported by this implementation";
|
|
4957
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4958
|
-
}
|
|
4959
|
-
declare class RPCFrameworkError extends RPCGenericError {
|
|
4960
|
-
readonly rpcErrorCode = "RpcFrameworkError";
|
|
4961
|
-
readonly rpcErrorMessage = "Content of the call is not a valid RPC request";
|
|
4962
|
-
constructor(message?: string, details?: Record<string, unknown>);
|
|
4963
|
-
}
|
|
4964
|
-
|
|
4965
|
-
declare function createRPCError(code: string, message?: string, details?: Record<string, unknown>): RPCError;
|
|
4966
|
-
/**
|
|
4967
|
-
* Convert an Error into a plain, JSON-safe object.
|
|
4968
|
-
*/
|
|
4969
|
-
declare function getErrorPlainObject(err: Error): Record<string, unknown>;
|
|
4970
|
-
|
|
4971
|
-
export { type AllMethodNames, type AnyOCPPProtocol, type BrowserClientEvents, type BrowserClientOptions, BrowserOCPPClient, type CallHandler, type CallOptions, type CloseOptions, ConnectionState, type HandlerContext, type LoggerLike, type LoggingConfig, MessageType, type MiddlewareFunction, type MiddlewareNext, MiddlewareStack, NOREPLY, type OCPPCall, type OCPPCallError, type OCPPCallResult, type OCPPMessage, type OCPPProtocol, type OCPPRequestType, type OCPPResponseType, type RPCError, RPCFormatViolationError, RPCFormationViolationError, RPCFrameworkError, RPCGenericError, RPCInternalError, RPCMessageTypeNotSupportedError, RPCNotImplementedError, RPCNotSupportedError, RPCOccurrenceConstraintViolationError, RPCPropertyConstraintViolationError, RPCProtocolError, RPCSecurityError, RPCTypeConstraintViolationError, TimeoutError, Validator, type ValidatorSchema, type WildcardHandler, createLoggingMiddleware, createRPCError, defineRpcMiddleware, getErrorPlainObject };
|