@chargetrip/types 1.19.0 → 1.24.0
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/CHANGELOG.md +29 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +348 -4
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +348 -4
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +524 -31
- package/graphql.schema.json +2692 -136
- package/package.json +4 -3
- package/src/graphql.ts +573 -64
package/dist/node/index.js
CHANGED
|
@@ -18,6 +18,7 @@ exports.BatteryInputType = void 0;
|
|
|
18
18
|
BatteryInputType["KWH"] = "kwh";
|
|
19
19
|
BatteryInputType["KM"] = "km";
|
|
20
20
|
BatteryInputType["MILES"] = "miles";
|
|
21
|
+
BatteryInputType["PERCENTAGE"] = "percentage";
|
|
21
22
|
})(exports.BatteryInputType || (exports.BatteryInputType = {}));
|
|
22
23
|
|
|
23
24
|
/** Battery field estimated */
|
|
@@ -112,15 +113,302 @@ exports.ChargerStatus = void 0;
|
|
|
112
113
|
ChargerStatus["ERROR"] = "error";
|
|
113
114
|
})(exports.ChargerStatus || (exports.ChargerStatus = {}));
|
|
114
115
|
|
|
116
|
+
/** The socket or plug standard of the charging point. */
|
|
117
|
+
exports.ConnectorType = void 0;
|
|
118
|
+
/** The complete contact information */
|
|
119
|
+
|
|
120
|
+
(function (ConnectorType) {
|
|
121
|
+
ConnectorType["CHADEMO"] = "CHADEMO";
|
|
122
|
+
ConnectorType["DOMESTIC_A"] = "DOMESTIC_A";
|
|
123
|
+
ConnectorType["DOMESTIC_B"] = "DOMESTIC_B";
|
|
124
|
+
ConnectorType["DOMESTIC_C"] = "DOMESTIC_C";
|
|
125
|
+
ConnectorType["DOMESTIC_D"] = "DOMESTIC_D";
|
|
126
|
+
ConnectorType["DOMESTIC_E"] = "DOMESTIC_E";
|
|
127
|
+
ConnectorType["DOMESTIC_F"] = "DOMESTIC_F";
|
|
128
|
+
ConnectorType["DOMESTIC_G"] = "DOMESTIC_G";
|
|
129
|
+
ConnectorType["DOMESTIC_H"] = "DOMESTIC_H";
|
|
130
|
+
ConnectorType["DOMESTIC_I"] = "DOMESTIC_I";
|
|
131
|
+
ConnectorType["DOMESTIC_J"] = "DOMESTIC_J";
|
|
132
|
+
ConnectorType["DOMESTIC_K"] = "DOMESTIC_K";
|
|
133
|
+
ConnectorType["DOMESTIC_L"] = "DOMESTIC_L";
|
|
134
|
+
ConnectorType["DOMESTIC_M"] = "DOMESTIC_M";
|
|
135
|
+
ConnectorType["DOMESTIC_N"] = "DOMESTIC_N";
|
|
136
|
+
ConnectorType["DOMESTIC_O"] = "DOMESTIC_O";
|
|
137
|
+
ConnectorType["IEC_60309_2_SINGLE_16"] = "IEC_60309_2_single_16";
|
|
138
|
+
ConnectorType["IEC_60309_2_THREE_16"] = "IEC_60309_2_three_16";
|
|
139
|
+
ConnectorType["IEC_60309_2_THREE_32"] = "IEC_60309_2_three_32";
|
|
140
|
+
ConnectorType["IEC_60309_2_THREE_64"] = "IEC_60309_2_three_64";
|
|
141
|
+
ConnectorType["IEC_62196_T1"] = "IEC_62196_T1";
|
|
142
|
+
ConnectorType["IEC_62196_T1_COMBO"] = "IEC_62196_T1_COMBO";
|
|
143
|
+
ConnectorType["IEC_62196_T2"] = "IEC_62196_T2";
|
|
144
|
+
ConnectorType["IEC_62196_T2_COMBO"] = "IEC_62196_T2_COMBO";
|
|
145
|
+
ConnectorType["IEC_62196_T3A"] = "IEC_62196_T3A";
|
|
146
|
+
ConnectorType["IEC_62196_T3C"] = "IEC_62196_T3C";
|
|
147
|
+
ConnectorType["PANTOGRAPH_BOTTOM_UP"] = "PANTOGRAPH_BOTTOM_UP";
|
|
148
|
+
ConnectorType["PANTOGRAPH_TOP_DOWN"] = "PANTOGRAPH_TOP_DOWN";
|
|
149
|
+
ConnectorType["TESLA_R"] = "TESLA_R";
|
|
150
|
+
ConnectorType["TESLA_S"] = "TESLA_S";
|
|
151
|
+
ConnectorType["GB_T"] = "GB_T";
|
|
152
|
+
ConnectorType["CHAOJI"] = "CHAOJI";
|
|
153
|
+
ConnectorType["NEMA_5_20"] = "NEMA_5_20";
|
|
154
|
+
ConnectorType["NEMA_6_30"] = "NEMA_6_30";
|
|
155
|
+
ConnectorType["NEMA_6_50"] = "NEMA_6_50";
|
|
156
|
+
ConnectorType["NEMA_10_30"] = "NEMA_10_30";
|
|
157
|
+
ConnectorType["NEMA_10_50"] = "NEMA_10_50";
|
|
158
|
+
ConnectorType["NEMA_14_30"] = "NEMA_14_30";
|
|
159
|
+
ConnectorType["NEMA_14_50"] = "NEMA_14_50";
|
|
160
|
+
})(exports.ConnectorType || (exports.ConnectorType = {}));
|
|
161
|
+
|
|
162
|
+
/** ISO-3166 alpha-2 country codes */
|
|
163
|
+
exports.CountryCodeAlpha2 = void 0;
|
|
164
|
+
/** EVSE data which extends OCPI EVSE */
|
|
165
|
+
|
|
166
|
+
(function (CountryCodeAlpha2) {
|
|
167
|
+
CountryCodeAlpha2["AD"] = "AD";
|
|
168
|
+
CountryCodeAlpha2["AE"] = "AE";
|
|
169
|
+
CountryCodeAlpha2["AF"] = "AF";
|
|
170
|
+
CountryCodeAlpha2["AG"] = "AG";
|
|
171
|
+
CountryCodeAlpha2["AI"] = "AI";
|
|
172
|
+
CountryCodeAlpha2["AL"] = "AL";
|
|
173
|
+
CountryCodeAlpha2["AM"] = "AM";
|
|
174
|
+
CountryCodeAlpha2["AN"] = "AN";
|
|
175
|
+
CountryCodeAlpha2["AO"] = "AO";
|
|
176
|
+
CountryCodeAlpha2["AQ"] = "AQ";
|
|
177
|
+
CountryCodeAlpha2["AR"] = "AR";
|
|
178
|
+
CountryCodeAlpha2["AS"] = "AS";
|
|
179
|
+
CountryCodeAlpha2["AT"] = "AT";
|
|
180
|
+
CountryCodeAlpha2["AU"] = "AU";
|
|
181
|
+
CountryCodeAlpha2["AW"] = "AW";
|
|
182
|
+
CountryCodeAlpha2["AX"] = "AX";
|
|
183
|
+
CountryCodeAlpha2["AZ"] = "AZ";
|
|
184
|
+
CountryCodeAlpha2["BA"] = "BA";
|
|
185
|
+
CountryCodeAlpha2["BB"] = "BB";
|
|
186
|
+
CountryCodeAlpha2["BD"] = "BD";
|
|
187
|
+
CountryCodeAlpha2["BE"] = "BE";
|
|
188
|
+
CountryCodeAlpha2["BF"] = "BF";
|
|
189
|
+
CountryCodeAlpha2["BG"] = "BG";
|
|
190
|
+
CountryCodeAlpha2["BH"] = "BH";
|
|
191
|
+
CountryCodeAlpha2["BI"] = "BI";
|
|
192
|
+
CountryCodeAlpha2["BJ"] = "BJ";
|
|
193
|
+
CountryCodeAlpha2["BM"] = "BM";
|
|
194
|
+
CountryCodeAlpha2["BN"] = "BN";
|
|
195
|
+
CountryCodeAlpha2["BO"] = "BO";
|
|
196
|
+
CountryCodeAlpha2["BR"] = "BR";
|
|
197
|
+
CountryCodeAlpha2["BS"] = "BS";
|
|
198
|
+
CountryCodeAlpha2["BT"] = "BT";
|
|
199
|
+
CountryCodeAlpha2["BV"] = "BV";
|
|
200
|
+
CountryCodeAlpha2["BW"] = "BW";
|
|
201
|
+
CountryCodeAlpha2["BY"] = "BY";
|
|
202
|
+
CountryCodeAlpha2["BZ"] = "BZ";
|
|
203
|
+
CountryCodeAlpha2["CA"] = "CA";
|
|
204
|
+
CountryCodeAlpha2["CC"] = "CC";
|
|
205
|
+
CountryCodeAlpha2["CD"] = "CD";
|
|
206
|
+
CountryCodeAlpha2["CF"] = "CF";
|
|
207
|
+
CountryCodeAlpha2["CG"] = "CG";
|
|
208
|
+
CountryCodeAlpha2["CH"] = "CH";
|
|
209
|
+
CountryCodeAlpha2["CI"] = "CI";
|
|
210
|
+
CountryCodeAlpha2["CK"] = "CK";
|
|
211
|
+
CountryCodeAlpha2["CL"] = "CL";
|
|
212
|
+
CountryCodeAlpha2["CM"] = "CM";
|
|
213
|
+
CountryCodeAlpha2["CN"] = "CN";
|
|
214
|
+
CountryCodeAlpha2["CO"] = "CO";
|
|
215
|
+
CountryCodeAlpha2["CR"] = "CR";
|
|
216
|
+
CountryCodeAlpha2["CS"] = "CS";
|
|
217
|
+
CountryCodeAlpha2["CU"] = "CU";
|
|
218
|
+
CountryCodeAlpha2["CV"] = "CV";
|
|
219
|
+
CountryCodeAlpha2["CX"] = "CX";
|
|
220
|
+
CountryCodeAlpha2["CY"] = "CY";
|
|
221
|
+
CountryCodeAlpha2["CZ"] = "CZ";
|
|
222
|
+
CountryCodeAlpha2["DE"] = "DE";
|
|
223
|
+
CountryCodeAlpha2["DJ"] = "DJ";
|
|
224
|
+
CountryCodeAlpha2["DK"] = "DK";
|
|
225
|
+
CountryCodeAlpha2["DM"] = "DM";
|
|
226
|
+
CountryCodeAlpha2["DO"] = "DO";
|
|
227
|
+
CountryCodeAlpha2["DZ"] = "DZ";
|
|
228
|
+
CountryCodeAlpha2["EC"] = "EC";
|
|
229
|
+
CountryCodeAlpha2["EE"] = "EE";
|
|
230
|
+
CountryCodeAlpha2["EG"] = "EG";
|
|
231
|
+
CountryCodeAlpha2["EH"] = "EH";
|
|
232
|
+
CountryCodeAlpha2["ER"] = "ER";
|
|
233
|
+
CountryCodeAlpha2["ES"] = "ES";
|
|
234
|
+
CountryCodeAlpha2["ET"] = "ET";
|
|
235
|
+
CountryCodeAlpha2["FI"] = "FI";
|
|
236
|
+
CountryCodeAlpha2["FJ"] = "FJ";
|
|
237
|
+
CountryCodeAlpha2["FK"] = "FK";
|
|
238
|
+
CountryCodeAlpha2["FM"] = "FM";
|
|
239
|
+
CountryCodeAlpha2["FO"] = "FO";
|
|
240
|
+
CountryCodeAlpha2["FR"] = "FR";
|
|
241
|
+
CountryCodeAlpha2["GA"] = "GA";
|
|
242
|
+
CountryCodeAlpha2["GB"] = "GB";
|
|
243
|
+
CountryCodeAlpha2["GD"] = "GD";
|
|
244
|
+
CountryCodeAlpha2["GE"] = "GE";
|
|
245
|
+
CountryCodeAlpha2["GF"] = "GF";
|
|
246
|
+
CountryCodeAlpha2["GH"] = "GH";
|
|
247
|
+
CountryCodeAlpha2["GI"] = "GI";
|
|
248
|
+
CountryCodeAlpha2["GL"] = "GL";
|
|
249
|
+
CountryCodeAlpha2["GM"] = "GM";
|
|
250
|
+
CountryCodeAlpha2["GN"] = "GN";
|
|
251
|
+
CountryCodeAlpha2["GP"] = "GP";
|
|
252
|
+
CountryCodeAlpha2["GQ"] = "GQ";
|
|
253
|
+
CountryCodeAlpha2["GR"] = "GR";
|
|
254
|
+
CountryCodeAlpha2["GS"] = "GS";
|
|
255
|
+
CountryCodeAlpha2["GT"] = "GT";
|
|
256
|
+
CountryCodeAlpha2["GU"] = "GU";
|
|
257
|
+
CountryCodeAlpha2["GW"] = "GW";
|
|
258
|
+
CountryCodeAlpha2["GY"] = "GY";
|
|
259
|
+
CountryCodeAlpha2["HK"] = "HK";
|
|
260
|
+
CountryCodeAlpha2["HM"] = "HM";
|
|
261
|
+
CountryCodeAlpha2["HN"] = "HN";
|
|
262
|
+
CountryCodeAlpha2["HR"] = "HR";
|
|
263
|
+
CountryCodeAlpha2["HT"] = "HT";
|
|
264
|
+
CountryCodeAlpha2["HU"] = "HU";
|
|
265
|
+
CountryCodeAlpha2["ID"] = "ID";
|
|
266
|
+
CountryCodeAlpha2["IE"] = "IE";
|
|
267
|
+
CountryCodeAlpha2["IL"] = "IL";
|
|
268
|
+
CountryCodeAlpha2["IN"] = "IN";
|
|
269
|
+
CountryCodeAlpha2["IO"] = "IO";
|
|
270
|
+
CountryCodeAlpha2["IQ"] = "IQ";
|
|
271
|
+
CountryCodeAlpha2["IR"] = "IR";
|
|
272
|
+
CountryCodeAlpha2["IS"] = "IS";
|
|
273
|
+
CountryCodeAlpha2["IT"] = "IT";
|
|
274
|
+
CountryCodeAlpha2["JM"] = "JM";
|
|
275
|
+
CountryCodeAlpha2["JO"] = "JO";
|
|
276
|
+
CountryCodeAlpha2["JP"] = "JP";
|
|
277
|
+
CountryCodeAlpha2["KE"] = "KE";
|
|
278
|
+
CountryCodeAlpha2["KG"] = "KG";
|
|
279
|
+
CountryCodeAlpha2["KH"] = "KH";
|
|
280
|
+
CountryCodeAlpha2["KI"] = "KI";
|
|
281
|
+
CountryCodeAlpha2["KM"] = "KM";
|
|
282
|
+
CountryCodeAlpha2["KN"] = "KN";
|
|
283
|
+
CountryCodeAlpha2["KP"] = "KP";
|
|
284
|
+
CountryCodeAlpha2["KR"] = "KR";
|
|
285
|
+
CountryCodeAlpha2["KW"] = "KW";
|
|
286
|
+
CountryCodeAlpha2["KY"] = "KY";
|
|
287
|
+
CountryCodeAlpha2["KZ"] = "KZ";
|
|
288
|
+
CountryCodeAlpha2["LA"] = "LA";
|
|
289
|
+
CountryCodeAlpha2["LB"] = "LB";
|
|
290
|
+
CountryCodeAlpha2["LC"] = "LC";
|
|
291
|
+
CountryCodeAlpha2["LI"] = "LI";
|
|
292
|
+
CountryCodeAlpha2["LK"] = "LK";
|
|
293
|
+
CountryCodeAlpha2["LR"] = "LR";
|
|
294
|
+
CountryCodeAlpha2["LS"] = "LS";
|
|
295
|
+
CountryCodeAlpha2["LT"] = "LT";
|
|
296
|
+
CountryCodeAlpha2["LU"] = "LU";
|
|
297
|
+
CountryCodeAlpha2["LV"] = "LV";
|
|
298
|
+
CountryCodeAlpha2["LY"] = "LY";
|
|
299
|
+
CountryCodeAlpha2["MA"] = "MA";
|
|
300
|
+
CountryCodeAlpha2["MC"] = "MC";
|
|
301
|
+
CountryCodeAlpha2["MD"] = "MD";
|
|
302
|
+
CountryCodeAlpha2["ME"] = "ME";
|
|
303
|
+
CountryCodeAlpha2["MF"] = "MF";
|
|
304
|
+
CountryCodeAlpha2["MG"] = "MG";
|
|
305
|
+
CountryCodeAlpha2["MH"] = "MH";
|
|
306
|
+
CountryCodeAlpha2["MK"] = "MK";
|
|
307
|
+
CountryCodeAlpha2["ML"] = "ML";
|
|
308
|
+
CountryCodeAlpha2["MM"] = "MM";
|
|
309
|
+
CountryCodeAlpha2["MN"] = "MN";
|
|
310
|
+
CountryCodeAlpha2["MO"] = "MO";
|
|
311
|
+
CountryCodeAlpha2["MP"] = "MP";
|
|
312
|
+
CountryCodeAlpha2["MQ"] = "MQ";
|
|
313
|
+
CountryCodeAlpha2["MR"] = "MR";
|
|
314
|
+
CountryCodeAlpha2["MS"] = "MS";
|
|
315
|
+
CountryCodeAlpha2["MT"] = "MT";
|
|
316
|
+
CountryCodeAlpha2["MU"] = "MU";
|
|
317
|
+
CountryCodeAlpha2["MV"] = "MV";
|
|
318
|
+
CountryCodeAlpha2["MW"] = "MW";
|
|
319
|
+
CountryCodeAlpha2["MX"] = "MX";
|
|
320
|
+
CountryCodeAlpha2["MY"] = "MY";
|
|
321
|
+
CountryCodeAlpha2["MZ"] = "MZ";
|
|
322
|
+
CountryCodeAlpha2["NA"] = "NA";
|
|
323
|
+
CountryCodeAlpha2["NC"] = "NC";
|
|
324
|
+
CountryCodeAlpha2["NE"] = "NE";
|
|
325
|
+
CountryCodeAlpha2["NF"] = "NF";
|
|
326
|
+
CountryCodeAlpha2["NG"] = "NG";
|
|
327
|
+
CountryCodeAlpha2["NI"] = "NI";
|
|
328
|
+
CountryCodeAlpha2["NL"] = "NL";
|
|
329
|
+
CountryCodeAlpha2["NO"] = "NO";
|
|
330
|
+
CountryCodeAlpha2["NP"] = "NP";
|
|
331
|
+
CountryCodeAlpha2["NR"] = "NR";
|
|
332
|
+
CountryCodeAlpha2["NU"] = "NU";
|
|
333
|
+
CountryCodeAlpha2["NZ"] = "NZ";
|
|
334
|
+
CountryCodeAlpha2["OM"] = "OM";
|
|
335
|
+
CountryCodeAlpha2["PA"] = "PA";
|
|
336
|
+
CountryCodeAlpha2["PE"] = "PE";
|
|
337
|
+
CountryCodeAlpha2["PF"] = "PF";
|
|
338
|
+
CountryCodeAlpha2["PG"] = "PG";
|
|
339
|
+
CountryCodeAlpha2["PH"] = "PH";
|
|
340
|
+
CountryCodeAlpha2["PK"] = "PK";
|
|
341
|
+
CountryCodeAlpha2["PL"] = "PL";
|
|
342
|
+
CountryCodeAlpha2["PM"] = "PM";
|
|
343
|
+
CountryCodeAlpha2["PN"] = "PN";
|
|
344
|
+
CountryCodeAlpha2["PR"] = "PR";
|
|
345
|
+
CountryCodeAlpha2["PS"] = "PS";
|
|
346
|
+
CountryCodeAlpha2["PT"] = "PT";
|
|
347
|
+
CountryCodeAlpha2["PW"] = "PW";
|
|
348
|
+
CountryCodeAlpha2["PY"] = "PY";
|
|
349
|
+
CountryCodeAlpha2["QA"] = "QA";
|
|
350
|
+
CountryCodeAlpha2["RE"] = "RE";
|
|
351
|
+
CountryCodeAlpha2["RKS"] = "RKS";
|
|
352
|
+
CountryCodeAlpha2["RO"] = "RO";
|
|
353
|
+
CountryCodeAlpha2["RS"] = "RS";
|
|
354
|
+
CountryCodeAlpha2["RU"] = "RU";
|
|
355
|
+
CountryCodeAlpha2["RW"] = "RW";
|
|
356
|
+
CountryCodeAlpha2["SA"] = "SA";
|
|
357
|
+
CountryCodeAlpha2["SB"] = "SB";
|
|
358
|
+
CountryCodeAlpha2["SC"] = "SC";
|
|
359
|
+
CountryCodeAlpha2["SD"] = "SD";
|
|
360
|
+
CountryCodeAlpha2["SE"] = "SE";
|
|
361
|
+
CountryCodeAlpha2["SG"] = "SG";
|
|
362
|
+
CountryCodeAlpha2["SH"] = "SH";
|
|
363
|
+
CountryCodeAlpha2["SI"] = "SI";
|
|
364
|
+
CountryCodeAlpha2["SJ"] = "SJ";
|
|
365
|
+
CountryCodeAlpha2["SK"] = "SK";
|
|
366
|
+
CountryCodeAlpha2["SL"] = "SL";
|
|
367
|
+
CountryCodeAlpha2["SM"] = "SM";
|
|
368
|
+
CountryCodeAlpha2["SN"] = "SN";
|
|
369
|
+
CountryCodeAlpha2["SO"] = "SO";
|
|
370
|
+
CountryCodeAlpha2["SR"] = "SR";
|
|
371
|
+
CountryCodeAlpha2["ST"] = "ST";
|
|
372
|
+
CountryCodeAlpha2["SV"] = "SV";
|
|
373
|
+
CountryCodeAlpha2["SX"] = "SX";
|
|
374
|
+
CountryCodeAlpha2["SY"] = "SY";
|
|
375
|
+
CountryCodeAlpha2["SZ"] = "SZ";
|
|
376
|
+
CountryCodeAlpha2["TC"] = "TC";
|
|
377
|
+
CountryCodeAlpha2["TD"] = "TD";
|
|
378
|
+
CountryCodeAlpha2["TF"] = "TF";
|
|
379
|
+
CountryCodeAlpha2["TG"] = "TG";
|
|
380
|
+
CountryCodeAlpha2["TH"] = "TH";
|
|
381
|
+
CountryCodeAlpha2["TJ"] = "TJ";
|
|
382
|
+
CountryCodeAlpha2["TK"] = "TK";
|
|
383
|
+
CountryCodeAlpha2["TL"] = "TL";
|
|
384
|
+
CountryCodeAlpha2["TM"] = "TM";
|
|
385
|
+
CountryCodeAlpha2["TN"] = "TN";
|
|
386
|
+
CountryCodeAlpha2["TO"] = "TO";
|
|
387
|
+
CountryCodeAlpha2["TR"] = "TR";
|
|
388
|
+
CountryCodeAlpha2["TT"] = "TT";
|
|
389
|
+
CountryCodeAlpha2["TV"] = "TV";
|
|
390
|
+
CountryCodeAlpha2["TW"] = "TW";
|
|
391
|
+
CountryCodeAlpha2["TZ"] = "TZ";
|
|
392
|
+
CountryCodeAlpha2["UA"] = "UA";
|
|
393
|
+
CountryCodeAlpha2["UG"] = "UG";
|
|
394
|
+
CountryCodeAlpha2["UM"] = "UM";
|
|
395
|
+
CountryCodeAlpha2["US"] = "US";
|
|
396
|
+
CountryCodeAlpha2["UY"] = "UY";
|
|
397
|
+
CountryCodeAlpha2["UZ"] = "UZ";
|
|
398
|
+
CountryCodeAlpha2["VA"] = "VA";
|
|
399
|
+
CountryCodeAlpha2["VC"] = "VC";
|
|
400
|
+
})(exports.CountryCodeAlpha2 || (exports.CountryCodeAlpha2 = {}));
|
|
401
|
+
|
|
115
402
|
/** GeoJSON Feature type */
|
|
116
403
|
exports.FeatureType = void 0;
|
|
117
|
-
/**
|
|
404
|
+
/** Types of a leg */
|
|
118
405
|
|
|
119
406
|
(function (FeatureType) {
|
|
120
407
|
FeatureType["FEATURE"] = "Feature";
|
|
121
408
|
})(exports.FeatureType || (exports.FeatureType = {}));
|
|
122
409
|
|
|
123
410
|
exports.LegType = void 0;
|
|
411
|
+
/** Preferred language for the mapping */
|
|
124
412
|
|
|
125
413
|
(function (LegType) {
|
|
126
414
|
LegType["STATION"] = "station";
|
|
@@ -130,6 +418,19 @@ exports.LegType = void 0;
|
|
|
130
418
|
LegType["STATIONFINAL"] = "stationFinal";
|
|
131
419
|
})(exports.LegType || (exports.LegType = {}));
|
|
132
420
|
|
|
421
|
+
exports.MappingLanguage = void 0;
|
|
422
|
+
/** Navigation service providers available */
|
|
423
|
+
|
|
424
|
+
(function (MappingLanguage) {
|
|
425
|
+
MappingLanguage["EN"] = "en";
|
|
426
|
+
})(exports.MappingLanguage || (exports.MappingLanguage = {}));
|
|
427
|
+
|
|
428
|
+
exports.MappingProvider = void 0;
|
|
429
|
+
|
|
430
|
+
(function (MappingProvider) {
|
|
431
|
+
MappingProvider["MAPBOXV5"] = "MapboxV5";
|
|
432
|
+
})(exports.MappingProvider || (exports.MappingProvider = {}));
|
|
433
|
+
|
|
133
434
|
/** The capabilities of an EVSE. */
|
|
134
435
|
exports.OCPICapability = void 0;
|
|
135
436
|
/** The format of the connector, whether it is a socket or a plug. */
|
|
@@ -147,10 +448,11 @@ exports.OCPICapability = void 0;
|
|
|
147
448
|
OCPICapability["RFID_READER"] = "RFID_READER";
|
|
148
449
|
OCPICapability["TOKEN_GROUP_CAPABLE"] = "TOKEN_GROUP_CAPABLE";
|
|
149
450
|
OCPICapability["UNLOCK_CAPABLE"] = "UNLOCK_CAPABLE";
|
|
451
|
+
OCPICapability["START_SESSION_CONNECTOR_REQUIRED"] = "START_SESSION_CONNECTOR_REQUIRED";
|
|
150
452
|
})(exports.OCPICapability || (exports.OCPICapability = {}));
|
|
151
453
|
|
|
152
454
|
exports.OCPIConnectorFormat = void 0;
|
|
153
|
-
/**
|
|
455
|
+
/** Deprecated: Please use ConnectorType instead */
|
|
154
456
|
|
|
155
457
|
(function (OCPIConnectorFormat) {
|
|
156
458
|
OCPIConnectorFormat["SOCKET"] = "SOCKET";
|
|
@@ -173,6 +475,9 @@ exports.OCPIConnectorType = void 0;
|
|
|
173
475
|
OCPIConnectorType["DOMESTIC_J"] = "DOMESTIC_J";
|
|
174
476
|
OCPIConnectorType["DOMESTIC_K"] = "DOMESTIC_K";
|
|
175
477
|
OCPIConnectorType["DOMESTIC_L"] = "DOMESTIC_L";
|
|
478
|
+
OCPIConnectorType["DOMESTIC_M"] = "DOMESTIC_M";
|
|
479
|
+
OCPIConnectorType["DOMESTIC_N"] = "DOMESTIC_N";
|
|
480
|
+
OCPIConnectorType["DOMESTIC_O"] = "DOMESTIC_O";
|
|
176
481
|
OCPIConnectorType["IEC_60309_2_SINGLE_16"] = "IEC_60309_2_single_16";
|
|
177
482
|
OCPIConnectorType["IEC_60309_2_THREE_16"] = "IEC_60309_2_three_16";
|
|
178
483
|
OCPIConnectorType["IEC_60309_2_THREE_32"] = "IEC_60309_2_three_32";
|
|
@@ -188,6 +493,14 @@ exports.OCPIConnectorType = void 0;
|
|
|
188
493
|
OCPIConnectorType["TESLA_R"] = "TESLA_R";
|
|
189
494
|
OCPIConnectorType["TESLA_S"] = "TESLA_S";
|
|
190
495
|
OCPIConnectorType["GB_T"] = "GB_T";
|
|
496
|
+
OCPIConnectorType["CHAOJI"] = "CHAOJI";
|
|
497
|
+
OCPIConnectorType["NEMA_5_20"] = "NEMA_5_20";
|
|
498
|
+
OCPIConnectorType["NEMA_6_30"] = "NEMA_6_30";
|
|
499
|
+
OCPIConnectorType["NEMA_6_50"] = "NEMA_6_50";
|
|
500
|
+
OCPIConnectorType["NEMA_10_30"] = "NEMA_10_30";
|
|
501
|
+
OCPIConnectorType["NEMA_10_50"] = "NEMA_10_50";
|
|
502
|
+
OCPIConnectorType["NEMA_14_30"] = "NEMA_14_30";
|
|
503
|
+
OCPIConnectorType["NEMA_14_50"] = "NEMA_14_50";
|
|
191
504
|
})(exports.OCPIConnectorType || (exports.OCPIConnectorType = {}));
|
|
192
505
|
|
|
193
506
|
exports.OCPIDayOfWeek = void 0;
|
|
@@ -293,6 +606,8 @@ exports.OCPIPowerType = void 0;
|
|
|
293
606
|
(function (OCPIPowerType) {
|
|
294
607
|
OCPIPowerType["AC_1_PHASE"] = "AC_1_PHASE";
|
|
295
608
|
OCPIPowerType["AC_3_PHASE"] = "AC_3_PHASE";
|
|
609
|
+
OCPIPowerType["AC_2_PHASE"] = "AC_2_PHASE";
|
|
610
|
+
OCPIPowerType["AC_2_PHASE_SPLIT"] = "AC_2_PHASE_SPLIT";
|
|
296
611
|
OCPIPowerType["DC"] = "DC";
|
|
297
612
|
})(exports.OCPIPowerType || (exports.OCPIPowerType = {}));
|
|
298
613
|
|
|
@@ -354,6 +669,15 @@ exports.PointType = void 0;
|
|
|
354
669
|
PointType["POINT"] = "Point";
|
|
355
670
|
})(exports.PointType || (exports.PointType = {}));
|
|
356
671
|
|
|
672
|
+
exports.PricingListElementType = void 0;
|
|
673
|
+
|
|
674
|
+
(function (PricingListElementType) {
|
|
675
|
+
PricingListElementType["ENERGY"] = "ENERGY";
|
|
676
|
+
PricingListElementType["FLAT"] = "FLAT";
|
|
677
|
+
PricingListElementType["TIME"] = "TIME";
|
|
678
|
+
PricingListElementType["PARKING_TIME"] = "PARKING_TIME";
|
|
679
|
+
})(exports.PricingListElementType || (exports.PricingListElementType = {}));
|
|
680
|
+
|
|
357
681
|
/** Types of an alternative route */
|
|
358
682
|
exports.RouteAlternativeType = void 0;
|
|
359
683
|
|
|
@@ -391,7 +715,7 @@ exports.RouteInstructionSign = void 0;
|
|
|
391
715
|
RouteInstructionSign["IGNORE"] = "IGNORE";
|
|
392
716
|
})(exports.RouteInstructionSign || (exports.RouteInstructionSign = {}));
|
|
393
717
|
|
|
394
|
-
/** Type of operator
|
|
718
|
+
/** Type of operator prioritization for a route */
|
|
395
719
|
exports.RouteOperatorsType = void 0;
|
|
396
720
|
|
|
397
721
|
(function (RouteOperatorsType) {
|
|
@@ -411,7 +735,6 @@ exports.RouteSeason = void 0;
|
|
|
411
735
|
|
|
412
736
|
/** The status of a route. The status can be pending, processing, done, not_found or error */
|
|
413
737
|
exports.RouteStatus = void 0;
|
|
414
|
-
/** Standards(plug type) stats model */
|
|
415
738
|
|
|
416
739
|
(function (RouteStatus) {
|
|
417
740
|
RouteStatus["PENDING"] = "pending";
|
|
@@ -421,6 +744,17 @@ exports.RouteStatus = void 0;
|
|
|
421
744
|
RouteStatus["ERROR"] = "error";
|
|
422
745
|
})(exports.RouteStatus || (exports.RouteStatus = {}));
|
|
423
746
|
|
|
747
|
+
/** Tags of a route */
|
|
748
|
+
exports.RouteTagType = void 0;
|
|
749
|
+
/** Standards(plug type) stats model */
|
|
750
|
+
|
|
751
|
+
(function (RouteTagType) {
|
|
752
|
+
RouteTagType["ROAD"] = "road";
|
|
753
|
+
RouteTagType["HIGHWAY"] = "highway";
|
|
754
|
+
RouteTagType["TOLL"] = "toll";
|
|
755
|
+
RouteTagType["FERRY"] = "ferry";
|
|
756
|
+
})(exports.RouteTagType || (exports.RouteTagType = {}));
|
|
757
|
+
|
|
424
758
|
/** The station speed type */
|
|
425
759
|
exports.StationSpeedType = void 0;
|
|
426
760
|
/** The station stats model */
|
|
@@ -430,4 +764,14 @@ exports.StationSpeedType = void 0;
|
|
|
430
764
|
StationSpeedType["FAST"] = "fast";
|
|
431
765
|
StationSpeedType["TURBO"] = "turbo";
|
|
432
766
|
})(exports.StationSpeedType || (exports.StationSpeedType = {}));
|
|
767
|
+
|
|
768
|
+
/** Types of a route step */
|
|
769
|
+
exports.StepType = void 0;
|
|
770
|
+
|
|
771
|
+
(function (StepType) {
|
|
772
|
+
StepType["ROAD"] = "road";
|
|
773
|
+
StepType["HIGHWAY"] = "highway";
|
|
774
|
+
StepType["TOLL"] = "toll";
|
|
775
|
+
StepType["FERRY"] = "ferry";
|
|
776
|
+
})(exports.StepType || (exports.StepType = {}));
|
|
433
777
|
//# sourceMappingURL=index.js.map
|