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