@chargetrip/types 1.23.0 → 1.26.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/dist/browser/index.js +2 -0
- package/dist/browser/index.js.map +1 -0
- package/dist/node/index.js +797 -0
- package/dist/node/index.js.map +1 -0
- package/dist/react-native/graphql.js +793 -0
- package/dist/react-native/graphql.js.map +1 -0
- package/dist/react-native/index.js +2 -0
- package/dist/react-native/index.js.map +1 -0
- package/dist/ts/graphql.d.ts +3533 -0
- package/dist/ts/index.d.ts +1 -0
- package/graphql.schema.json +1388 -92
- package/package.json +1 -1
- package/src/graphql.ts +314 -79
- package/CHANGELOG.md +0 -168
|
@@ -0,0 +1,797 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
6
|
+
|
|
7
|
+
/** Information about an address */
|
|
8
|
+
|
|
9
|
+
/** The amenity model */
|
|
10
|
+
|
|
11
|
+
/** Amenities stats model */
|
|
12
|
+
|
|
13
|
+
/** The type of the batter value */
|
|
14
|
+
exports.BatteryInputType = void 0;
|
|
15
|
+
/** Output of a car query */
|
|
16
|
+
|
|
17
|
+
(function (BatteryInputType) {
|
|
18
|
+
BatteryInputType["KWH"] = "kwh";
|
|
19
|
+
BatteryInputType["KM"] = "km";
|
|
20
|
+
BatteryInputType["MILES"] = "miles";
|
|
21
|
+
BatteryInputType["PERCENTAGE"] = "percentage";
|
|
22
|
+
})(exports.BatteryInputType || (exports.BatteryInputType = {}));
|
|
23
|
+
|
|
24
|
+
/** Battery field estimated */
|
|
25
|
+
exports.CarBatteryFieldEstimations = void 0;
|
|
26
|
+
|
|
27
|
+
(function (CarBatteryFieldEstimations) {
|
|
28
|
+
CarBatteryFieldEstimations["B"] = "B";
|
|
29
|
+
CarBatteryFieldEstimations["F"] = "F";
|
|
30
|
+
CarBatteryFieldEstimations["N"] = "N";
|
|
31
|
+
CarBatteryFieldEstimations["U"] = "U";
|
|
32
|
+
})(exports.CarBatteryFieldEstimations || (exports.CarBatteryFieldEstimations = {}));
|
|
33
|
+
|
|
34
|
+
/** Drivetrain */
|
|
35
|
+
exports.CarDrivetrain = void 0;
|
|
36
|
+
/** Deprecated */
|
|
37
|
+
|
|
38
|
+
(function (CarDrivetrain) {
|
|
39
|
+
CarDrivetrain["BEV"] = "BEV";
|
|
40
|
+
CarDrivetrain["EREV"] = "EREV";
|
|
41
|
+
})(exports.CarDrivetrain || (exports.CarDrivetrain = {}));
|
|
42
|
+
|
|
43
|
+
/** Fuel type */
|
|
44
|
+
exports.CarFuel = void 0;
|
|
45
|
+
|
|
46
|
+
(function (CarFuel) {
|
|
47
|
+
CarFuel["E"] = "E";
|
|
48
|
+
})(exports.CarFuel || (exports.CarFuel = {}));
|
|
49
|
+
|
|
50
|
+
/** Available types of images which can be found for a car. Each type has specific image sizes */
|
|
51
|
+
exports.CarImageType = void 0;
|
|
52
|
+
/** When uploading images to a car, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
53
|
+
|
|
54
|
+
(function (CarImageType) {
|
|
55
|
+
CarImageType["PROVIDER"] = "provider";
|
|
56
|
+
CarImageType["IMAGE"] = "image";
|
|
57
|
+
CarImageType["IMAGE_THUMBNAIL"] = "image_thumbnail";
|
|
58
|
+
CarImageType["BRAND"] = "brand";
|
|
59
|
+
CarImageType["BRAND_THUMBNAIL"] = "brand_thumbnail";
|
|
60
|
+
})(exports.CarImageType || (exports.CarImageType = {}));
|
|
61
|
+
|
|
62
|
+
exports.CarImageTypeUploadable = void 0;
|
|
63
|
+
/** The output element of the carList query */
|
|
64
|
+
|
|
65
|
+
(function (CarImageTypeUploadable) {
|
|
66
|
+
CarImageTypeUploadable["IMAGE"] = "image";
|
|
67
|
+
})(exports.CarImageTypeUploadable || (exports.CarImageTypeUploadable = {}));
|
|
68
|
+
|
|
69
|
+
/** Mode (state) of the current production */
|
|
70
|
+
exports.CarMode = void 0;
|
|
71
|
+
|
|
72
|
+
(function (CarMode) {
|
|
73
|
+
CarMode["INDEX_ONLY"] = "index_only";
|
|
74
|
+
CarMode["PRODUCTION"] = "production";
|
|
75
|
+
CarMode["CONCEPT"] = "concept";
|
|
76
|
+
})(exports.CarMode || (exports.CarMode = {}));
|
|
77
|
+
|
|
78
|
+
/** Propulsion */
|
|
79
|
+
exports.CarPropulsion = void 0;
|
|
80
|
+
|
|
81
|
+
(function (CarPropulsion) {
|
|
82
|
+
CarPropulsion["AWD"] = "AWD";
|
|
83
|
+
CarPropulsion["FRONT"] = "Front";
|
|
84
|
+
CarPropulsion["REAR"] = "Rear";
|
|
85
|
+
})(exports.CarPropulsion || (exports.CarPropulsion = {}));
|
|
86
|
+
|
|
87
|
+
/** Status of a car */
|
|
88
|
+
exports.CarStatus = void 0;
|
|
89
|
+
|
|
90
|
+
(function (CarStatus) {
|
|
91
|
+
CarStatus["NEW"] = "new";
|
|
92
|
+
CarStatus["REVIEW"] = "review";
|
|
93
|
+
CarStatus["PUBLIC"] = "public";
|
|
94
|
+
CarStatus["REMOVED"] = "removed";
|
|
95
|
+
})(exports.CarStatus || (exports.CarStatus = {}));
|
|
96
|
+
|
|
97
|
+
/** Charging mode used at charging stations */
|
|
98
|
+
exports.ChargeMode = void 0;
|
|
99
|
+
/** A groupped representation of EVSEs */
|
|
100
|
+
|
|
101
|
+
(function (ChargeMode) {
|
|
102
|
+
ChargeMode["OPTIMIZE_TRAVEL_TIME"] = "OPTIMIZE_TRAVEL_TIME";
|
|
103
|
+
ChargeMode["ALWAYS_TO_MAX_CHARGE"] = "ALWAYS_TO_MAX_CHARGE";
|
|
104
|
+
})(exports.ChargeMode || (exports.ChargeMode = {}));
|
|
105
|
+
|
|
106
|
+
exports.ChargerStatus = void 0;
|
|
107
|
+
/** Groupping by status of the chargers */
|
|
108
|
+
|
|
109
|
+
(function (ChargerStatus) {
|
|
110
|
+
ChargerStatus["FREE"] = "free";
|
|
111
|
+
ChargerStatus["BUSY"] = "busy";
|
|
112
|
+
ChargerStatus["UNKNOWN"] = "unknown";
|
|
113
|
+
ChargerStatus["ERROR"] = "error";
|
|
114
|
+
})(exports.ChargerStatus || (exports.ChargerStatus = {}));
|
|
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
|
+
|
|
402
|
+
/** GeoJSON Feature type */
|
|
403
|
+
exports.FeatureType = void 0;
|
|
404
|
+
/** Navigation service providers available */
|
|
405
|
+
|
|
406
|
+
(function (FeatureType) {
|
|
407
|
+
FeatureType["FEATURE"] = "Feature";
|
|
408
|
+
})(exports.FeatureType || (exports.FeatureType = {}));
|
|
409
|
+
|
|
410
|
+
exports.InstructionsFormat = void 0;
|
|
411
|
+
/** Types of a leg */
|
|
412
|
+
|
|
413
|
+
(function (InstructionsFormat) {
|
|
414
|
+
InstructionsFormat["CHARGETRIP"] = "Chargetrip";
|
|
415
|
+
InstructionsFormat["MAPBOXV5"] = "MapboxV5";
|
|
416
|
+
})(exports.InstructionsFormat || (exports.InstructionsFormat = {}));
|
|
417
|
+
|
|
418
|
+
exports.LegType = void 0;
|
|
419
|
+
/** Preferred language for the mapping */
|
|
420
|
+
|
|
421
|
+
(function (LegType) {
|
|
422
|
+
LegType["STATION"] = "station";
|
|
423
|
+
LegType["STATIONVIA"] = "stationVia";
|
|
424
|
+
LegType["VIA"] = "via";
|
|
425
|
+
LegType["FINAL"] = "final";
|
|
426
|
+
LegType["STATIONFINAL"] = "stationFinal";
|
|
427
|
+
})(exports.LegType || (exports.LegType = {}));
|
|
428
|
+
|
|
429
|
+
exports.MappingLanguage = void 0;
|
|
430
|
+
/** Navigation service providers available */
|
|
431
|
+
|
|
432
|
+
(function (MappingLanguage) {
|
|
433
|
+
MappingLanguage["EN"] = "en";
|
|
434
|
+
})(exports.MappingLanguage || (exports.MappingLanguage = {}));
|
|
435
|
+
|
|
436
|
+
exports.MappingProvider = void 0;
|
|
437
|
+
|
|
438
|
+
(function (MappingProvider) {
|
|
439
|
+
MappingProvider["CHARGETRIP"] = "Chargetrip";
|
|
440
|
+
MappingProvider["MAPBOXV5"] = "MapboxV5";
|
|
441
|
+
})(exports.MappingProvider || (exports.MappingProvider = {}));
|
|
442
|
+
|
|
443
|
+
/** State of navigation session */
|
|
444
|
+
exports.NavigationState = void 0;
|
|
445
|
+
/** Navigation session station type */
|
|
446
|
+
|
|
447
|
+
(function (NavigationState) {
|
|
448
|
+
NavigationState["DRIVING"] = "Driving";
|
|
449
|
+
NavigationState["CHARGING"] = "Charging";
|
|
450
|
+
NavigationState["FINISHED"] = "Finished";
|
|
451
|
+
NavigationState["ERROR"] = "Error";
|
|
452
|
+
})(exports.NavigationState || (exports.NavigationState = {}));
|
|
453
|
+
|
|
454
|
+
/** The capabilities of an EVSE. */
|
|
455
|
+
exports.OCPICapability = void 0;
|
|
456
|
+
/** The format of the connector, whether it is a socket or a plug. */
|
|
457
|
+
|
|
458
|
+
(function (OCPICapability) {
|
|
459
|
+
OCPICapability["CHARGING_PROFILE_CAPABLE"] = "CHARGING_PROFILE_CAPABLE";
|
|
460
|
+
OCPICapability["CHARGING_PREFERENCES_CAPABLE"] = "CHARGING_PREFERENCES_CAPABLE";
|
|
461
|
+
OCPICapability["CHIP_CARD_SUPPORT"] = "CHIP_CARD_SUPPORT";
|
|
462
|
+
OCPICapability["CONTACTLESS_CARD_SUPPORT"] = "CONTACTLESS_CARD_SUPPORT";
|
|
463
|
+
OCPICapability["CREDIT_CARD_PAYABLE"] = "CREDIT_CARD_PAYABLE";
|
|
464
|
+
OCPICapability["DEBIT_CARD_PAYABLE"] = "DEBIT_CARD_PAYABLE";
|
|
465
|
+
OCPICapability["PED_TERMINAL"] = "PED_TERMINAL";
|
|
466
|
+
OCPICapability["REMOTE_START_STOP_CAPABLE"] = "REMOTE_START_STOP_CAPABLE";
|
|
467
|
+
OCPICapability["RESERVABLE"] = "RESERVABLE";
|
|
468
|
+
OCPICapability["RFID_READER"] = "RFID_READER";
|
|
469
|
+
OCPICapability["TOKEN_GROUP_CAPABLE"] = "TOKEN_GROUP_CAPABLE";
|
|
470
|
+
OCPICapability["UNLOCK_CAPABLE"] = "UNLOCK_CAPABLE";
|
|
471
|
+
OCPICapability["START_SESSION_CONNECTOR_REQUIRED"] = "START_SESSION_CONNECTOR_REQUIRED";
|
|
472
|
+
})(exports.OCPICapability || (exports.OCPICapability = {}));
|
|
473
|
+
|
|
474
|
+
exports.OCPIConnectorFormat = void 0;
|
|
475
|
+
/** Deprecated: Please use ConnectorType instead */
|
|
476
|
+
|
|
477
|
+
(function (OCPIConnectorFormat) {
|
|
478
|
+
OCPIConnectorFormat["SOCKET"] = "SOCKET";
|
|
479
|
+
OCPIConnectorFormat["CABLE"] = "CABLE";
|
|
480
|
+
})(exports.OCPIConnectorFormat || (exports.OCPIConnectorFormat = {}));
|
|
481
|
+
|
|
482
|
+
exports.OCPIConnectorType = void 0;
|
|
483
|
+
|
|
484
|
+
(function (OCPIConnectorType) {
|
|
485
|
+
OCPIConnectorType["CHADEMO"] = "CHADEMO";
|
|
486
|
+
OCPIConnectorType["DOMESTIC_A"] = "DOMESTIC_A";
|
|
487
|
+
OCPIConnectorType["DOMESTIC_B"] = "DOMESTIC_B";
|
|
488
|
+
OCPIConnectorType["DOMESTIC_C"] = "DOMESTIC_C";
|
|
489
|
+
OCPIConnectorType["DOMESTIC_D"] = "DOMESTIC_D";
|
|
490
|
+
OCPIConnectorType["DOMESTIC_E"] = "DOMESTIC_E";
|
|
491
|
+
OCPIConnectorType["DOMESTIC_F"] = "DOMESTIC_F";
|
|
492
|
+
OCPIConnectorType["DOMESTIC_G"] = "DOMESTIC_G";
|
|
493
|
+
OCPIConnectorType["DOMESTIC_H"] = "DOMESTIC_H";
|
|
494
|
+
OCPIConnectorType["DOMESTIC_I"] = "DOMESTIC_I";
|
|
495
|
+
OCPIConnectorType["DOMESTIC_J"] = "DOMESTIC_J";
|
|
496
|
+
OCPIConnectorType["DOMESTIC_K"] = "DOMESTIC_K";
|
|
497
|
+
OCPIConnectorType["DOMESTIC_L"] = "DOMESTIC_L";
|
|
498
|
+
OCPIConnectorType["DOMESTIC_M"] = "DOMESTIC_M";
|
|
499
|
+
OCPIConnectorType["DOMESTIC_N"] = "DOMESTIC_N";
|
|
500
|
+
OCPIConnectorType["DOMESTIC_O"] = "DOMESTIC_O";
|
|
501
|
+
OCPIConnectorType["IEC_60309_2_SINGLE_16"] = "IEC_60309_2_single_16";
|
|
502
|
+
OCPIConnectorType["IEC_60309_2_THREE_16"] = "IEC_60309_2_three_16";
|
|
503
|
+
OCPIConnectorType["IEC_60309_2_THREE_32"] = "IEC_60309_2_three_32";
|
|
504
|
+
OCPIConnectorType["IEC_60309_2_THREE_64"] = "IEC_60309_2_three_64";
|
|
505
|
+
OCPIConnectorType["IEC_62196_T1"] = "IEC_62196_T1";
|
|
506
|
+
OCPIConnectorType["IEC_62196_T1_COMBO"] = "IEC_62196_T1_COMBO";
|
|
507
|
+
OCPIConnectorType["IEC_62196_T2"] = "IEC_62196_T2";
|
|
508
|
+
OCPIConnectorType["IEC_62196_T2_COMBO"] = "IEC_62196_T2_COMBO";
|
|
509
|
+
OCPIConnectorType["IEC_62196_T3A"] = "IEC_62196_T3A";
|
|
510
|
+
OCPIConnectorType["IEC_62196_T3C"] = "IEC_62196_T3C";
|
|
511
|
+
OCPIConnectorType["PANTOGRAPH_BOTTOM_UP"] = "PANTOGRAPH_BOTTOM_UP";
|
|
512
|
+
OCPIConnectorType["PANTOGRAPH_TOP_DOWN"] = "PANTOGRAPH_TOP_DOWN";
|
|
513
|
+
OCPIConnectorType["TESLA_R"] = "TESLA_R";
|
|
514
|
+
OCPIConnectorType["TESLA_S"] = "TESLA_S";
|
|
515
|
+
OCPIConnectorType["GB_T"] = "GB_T";
|
|
516
|
+
OCPIConnectorType["CHAOJI"] = "CHAOJI";
|
|
517
|
+
OCPIConnectorType["NEMA_5_20"] = "NEMA_5_20";
|
|
518
|
+
OCPIConnectorType["NEMA_6_30"] = "NEMA_6_30";
|
|
519
|
+
OCPIConnectorType["NEMA_6_50"] = "NEMA_6_50";
|
|
520
|
+
OCPIConnectorType["NEMA_10_30"] = "NEMA_10_30";
|
|
521
|
+
OCPIConnectorType["NEMA_10_50"] = "NEMA_10_50";
|
|
522
|
+
OCPIConnectorType["NEMA_14_30"] = "NEMA_14_30";
|
|
523
|
+
OCPIConnectorType["NEMA_14_50"] = "NEMA_14_50";
|
|
524
|
+
})(exports.OCPIConnectorType || (exports.OCPIConnectorType = {}));
|
|
525
|
+
|
|
526
|
+
exports.OCPIDayOfWeek = void 0;
|
|
527
|
+
|
|
528
|
+
(function (OCPIDayOfWeek) {
|
|
529
|
+
OCPIDayOfWeek["MONDAY"] = "MONDAY";
|
|
530
|
+
OCPIDayOfWeek["TUESDAY"] = "TUESDAY";
|
|
531
|
+
OCPIDayOfWeek["WEDNESDAY"] = "WEDNESDAY";
|
|
532
|
+
OCPIDayOfWeek["THURSDAY"] = "THURSDAY";
|
|
533
|
+
OCPIDayOfWeek["FRIDAY"] = "FRIDAY";
|
|
534
|
+
OCPIDayOfWeek["SATURDAY"] = "SATURDAY";
|
|
535
|
+
OCPIDayOfWeek["SUNDAY"] = "SUNDAY";
|
|
536
|
+
})(exports.OCPIDayOfWeek || (exports.OCPIDayOfWeek = {}));
|
|
537
|
+
|
|
538
|
+
/** Categories of energy sources. */
|
|
539
|
+
exports.OCPIEnergySourceCategory = void 0;
|
|
540
|
+
/** Amount of waste produced/emitted per kWh. */
|
|
541
|
+
|
|
542
|
+
(function (OCPIEnergySourceCategory) {
|
|
543
|
+
OCPIEnergySourceCategory["NUCLEAR"] = "NUCLEAR";
|
|
544
|
+
OCPIEnergySourceCategory["GENERAL_FOSSIL"] = "GENERAL_FOSSIL";
|
|
545
|
+
OCPIEnergySourceCategory["COAL"] = "COAL";
|
|
546
|
+
OCPIEnergySourceCategory["GAS"] = "GAS";
|
|
547
|
+
OCPIEnergySourceCategory["GENERAL_GREEN"] = "GENERAL_GREEN";
|
|
548
|
+
OCPIEnergySourceCategory["SOLAR"] = "SOLAR";
|
|
549
|
+
OCPIEnergySourceCategory["WIND"] = "WIND";
|
|
550
|
+
OCPIEnergySourceCategory["WATER"] = "WATER";
|
|
551
|
+
})(exports.OCPIEnergySourceCategory || (exports.OCPIEnergySourceCategory = {}));
|
|
552
|
+
|
|
553
|
+
/** Categories of environmental impact values. */
|
|
554
|
+
exports.OCPIEnvironmentalImpactCategory = void 0;
|
|
555
|
+
/** Specifies one exceptional period for opening or access hours. */
|
|
556
|
+
|
|
557
|
+
(function (OCPIEnvironmentalImpactCategory) {
|
|
558
|
+
OCPIEnvironmentalImpactCategory["NUCLEAR_WASTE"] = "NUCLEAR_WASTE";
|
|
559
|
+
OCPIEnvironmentalImpactCategory["CARBON_DIOXIDE"] = "CARBON_DIOXIDE";
|
|
560
|
+
})(exports.OCPIEnvironmentalImpactCategory || (exports.OCPIEnvironmentalImpactCategory = {}));
|
|
561
|
+
|
|
562
|
+
exports.OCPIFacility = void 0;
|
|
563
|
+
/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */
|
|
564
|
+
|
|
565
|
+
(function (OCPIFacility) {
|
|
566
|
+
OCPIFacility["HOTEL"] = "HOTEL";
|
|
567
|
+
OCPIFacility["RESTAURANT"] = "RESTAURANT";
|
|
568
|
+
OCPIFacility["CAFE"] = "CAFE";
|
|
569
|
+
OCPIFacility["MALL"] = "MALL";
|
|
570
|
+
OCPIFacility["SUPERMARKET"] = "SUPERMARKET";
|
|
571
|
+
OCPIFacility["SPORT"] = "SPORT";
|
|
572
|
+
OCPIFacility["RECREATION_AREA"] = "RECREATION_AREA";
|
|
573
|
+
OCPIFacility["NATURE"] = "NATURE";
|
|
574
|
+
OCPIFacility["MUSEUM"] = "MUSEUM";
|
|
575
|
+
OCPIFacility["BIKE_SHARING"] = "BIKE_SHARING";
|
|
576
|
+
OCPIFacility["BUS_STOP"] = "BUS_STOP";
|
|
577
|
+
OCPIFacility["TAXI_STAND"] = "TAXI_STAND";
|
|
578
|
+
OCPIFacility["TRAM_STOP"] = "TRAM_STOP";
|
|
579
|
+
OCPIFacility["METRO_STATION"] = "METRO_STATION";
|
|
580
|
+
OCPIFacility["TRAIN_STATION"] = "TRAIN_STATION";
|
|
581
|
+
OCPIFacility["AIRPORT"] = "AIRPORT";
|
|
582
|
+
OCPIFacility["PARKING_LOT"] = "PARKING_LOT";
|
|
583
|
+
OCPIFacility["CARPOOL_PARKING"] = "CARPOOL_PARKING";
|
|
584
|
+
OCPIFacility["FUEL_STATION"] = "FUEL_STATION";
|
|
585
|
+
OCPIFacility["WIFI"] = "WIFI";
|
|
586
|
+
})(exports.OCPIFacility || (exports.OCPIFacility = {}));
|
|
587
|
+
|
|
588
|
+
/** The category of an image to obtain the correct usage in a user presentation. The category has to be set accordingly to the image content in order to guarantee the right usage. */
|
|
589
|
+
exports.OCPIImageCategory = void 0;
|
|
590
|
+
/** This value, if provided, represents the restriction to the parking spot for different purposes. */
|
|
591
|
+
|
|
592
|
+
(function (OCPIImageCategory) {
|
|
593
|
+
OCPIImageCategory["CHARGER"] = "CHARGER";
|
|
594
|
+
OCPIImageCategory["ENTRANCE"] = "ENTRANCE";
|
|
595
|
+
OCPIImageCategory["LOCATION"] = "LOCATION";
|
|
596
|
+
OCPIImageCategory["NETWORK"] = "NETWORK";
|
|
597
|
+
OCPIImageCategory["OPERATOR"] = "OPERATOR";
|
|
598
|
+
OCPIImageCategory["OTHER"] = "OTHER";
|
|
599
|
+
OCPIImageCategory["OWNER"] = "OWNER";
|
|
600
|
+
})(exports.OCPIImageCategory || (exports.OCPIImageCategory = {}));
|
|
601
|
+
|
|
602
|
+
exports.OCPIParkingRestriction = void 0;
|
|
603
|
+
/** Reflects the general type of the charge point’s location. May be used for user information. */
|
|
604
|
+
|
|
605
|
+
(function (OCPIParkingRestriction) {
|
|
606
|
+
OCPIParkingRestriction["EV_ONLY"] = "EV_ONLY";
|
|
607
|
+
OCPIParkingRestriction["PLUGGED"] = "PLUGGED";
|
|
608
|
+
OCPIParkingRestriction["DISABLED"] = "DISABLED";
|
|
609
|
+
OCPIParkingRestriction["CUSTOMERS"] = "CUSTOMERS";
|
|
610
|
+
OCPIParkingRestriction["MOTORCYCLES"] = "MOTORCYCLES";
|
|
611
|
+
})(exports.OCPIParkingRestriction || (exports.OCPIParkingRestriction = {}));
|
|
612
|
+
|
|
613
|
+
exports.OCPIParkingType = void 0;
|
|
614
|
+
|
|
615
|
+
(function (OCPIParkingType) {
|
|
616
|
+
OCPIParkingType["ALONG_MOTORWAY"] = "ALONG_MOTORWAY";
|
|
617
|
+
OCPIParkingType["PARKING_GARAGE"] = "PARKING_GARAGE";
|
|
618
|
+
OCPIParkingType["PARKING_LOT"] = "PARKING_LOT";
|
|
619
|
+
OCPIParkingType["ON_DRIVEWAY"] = "ON_DRIVEWAY";
|
|
620
|
+
OCPIParkingType["ON_STREET"] = "ON_STREET";
|
|
621
|
+
OCPIParkingType["UNDERGROUND_GARAGE"] = "UNDERGROUND_GARAGE";
|
|
622
|
+
})(exports.OCPIParkingType || (exports.OCPIParkingType = {}));
|
|
623
|
+
|
|
624
|
+
exports.OCPIPowerType = void 0;
|
|
625
|
+
|
|
626
|
+
(function (OCPIPowerType) {
|
|
627
|
+
OCPIPowerType["AC_1_PHASE"] = "AC_1_PHASE";
|
|
628
|
+
OCPIPowerType["AC_3_PHASE"] = "AC_3_PHASE";
|
|
629
|
+
OCPIPowerType["AC_2_PHASE"] = "AC_2_PHASE";
|
|
630
|
+
OCPIPowerType["AC_2_PHASE_SPLIT"] = "AC_2_PHASE_SPLIT";
|
|
631
|
+
OCPIPowerType["DC"] = "DC";
|
|
632
|
+
})(exports.OCPIPowerType || (exports.OCPIPowerType = {}));
|
|
633
|
+
|
|
634
|
+
exports.OCPIReservationRestrictionType = void 0;
|
|
635
|
+
/** The status of an EVSE. */
|
|
636
|
+
|
|
637
|
+
(function (OCPIReservationRestrictionType) {
|
|
638
|
+
OCPIReservationRestrictionType["RESERVATION"] = "RESERVATION";
|
|
639
|
+
OCPIReservationRestrictionType["RESERVATION_EXPIRES"] = "RESERVATION_EXPIRES";
|
|
640
|
+
})(exports.OCPIReservationRestrictionType || (exports.OCPIReservationRestrictionType = {}));
|
|
641
|
+
|
|
642
|
+
exports.OCPIStatus = void 0;
|
|
643
|
+
/** This type is used to schedule status periods in the future. The eMSP can provide this information to the EV user for trip planning purposes. A period MAY have no end. Example: "This station will be running as of tomorrow. Today it is still planned and under construction. */
|
|
644
|
+
|
|
645
|
+
(function (OCPIStatus) {
|
|
646
|
+
OCPIStatus["AVAILABLE"] = "AVAILABLE";
|
|
647
|
+
OCPIStatus["BLOCKED"] = "BLOCKED";
|
|
648
|
+
OCPIStatus["CHARGING"] = "CHARGING";
|
|
649
|
+
OCPIStatus["INOPERATIVE"] = "INOPERATIVE";
|
|
650
|
+
OCPIStatus["OUTOFORDER"] = "OUTOFORDER";
|
|
651
|
+
OCPIStatus["PLANNED"] = "PLANNED";
|
|
652
|
+
OCPIStatus["REMOVED"] = "REMOVED";
|
|
653
|
+
OCPIStatus["RESERVED"] = "RESERVED";
|
|
654
|
+
OCPIStatus["UNKNOWN"] = "UNKNOWN";
|
|
655
|
+
})(exports.OCPIStatus || (exports.OCPIStatus = {}));
|
|
656
|
+
|
|
657
|
+
exports.OCPITariffDimensionType = void 0;
|
|
658
|
+
|
|
659
|
+
(function (OCPITariffDimensionType) {
|
|
660
|
+
OCPITariffDimensionType["ENERGY"] = "ENERGY";
|
|
661
|
+
OCPITariffDimensionType["FLAT"] = "FLAT";
|
|
662
|
+
OCPITariffDimensionType["PARKING_TIME"] = "PARKING_TIME";
|
|
663
|
+
OCPITariffDimensionType["TIME"] = "TIME";
|
|
664
|
+
})(exports.OCPITariffDimensionType || (exports.OCPITariffDimensionType = {}));
|
|
665
|
+
|
|
666
|
+
exports.OCPITariffType = void 0;
|
|
667
|
+
/** The operator data which extends OCPI BusinessDetails */
|
|
668
|
+
|
|
669
|
+
(function (OCPITariffType) {
|
|
670
|
+
OCPITariffType["AD_HOC_PAYMENT"] = "AD_HOC_PAYMENT";
|
|
671
|
+
OCPITariffType["PROFILE_CHEAP"] = "PROFILE_CHEAP";
|
|
672
|
+
OCPITariffType["PROFILE_FAST"] = "PROFILE_FAST";
|
|
673
|
+
OCPITariffType["PROFILE_GREEN"] = "PROFILE_GREEN";
|
|
674
|
+
OCPITariffType["REGULAR"] = "REGULAR";
|
|
675
|
+
})(exports.OCPITariffType || (exports.OCPITariffType = {}));
|
|
676
|
+
|
|
677
|
+
exports.ParkingCost = void 0;
|
|
678
|
+
|
|
679
|
+
(function (ParkingCost) {
|
|
680
|
+
ParkingCost["FREE"] = "free";
|
|
681
|
+
ParkingCost["PAID"] = "paid";
|
|
682
|
+
})(exports.ParkingCost || (exports.ParkingCost = {}));
|
|
683
|
+
|
|
684
|
+
/** GeoJSON Point type */
|
|
685
|
+
exports.PointType = void 0;
|
|
686
|
+
/** The list of powers for the speed type */
|
|
687
|
+
|
|
688
|
+
(function (PointType) {
|
|
689
|
+
PointType["POINT"] = "Point";
|
|
690
|
+
})(exports.PointType || (exports.PointType = {}));
|
|
691
|
+
|
|
692
|
+
exports.PricingListElementType = void 0;
|
|
693
|
+
|
|
694
|
+
(function (PricingListElementType) {
|
|
695
|
+
PricingListElementType["ENERGY"] = "ENERGY";
|
|
696
|
+
PricingListElementType["FLAT"] = "FLAT";
|
|
697
|
+
PricingListElementType["TIME"] = "TIME";
|
|
698
|
+
PricingListElementType["PARKING_TIME"] = "PARKING_TIME";
|
|
699
|
+
})(exports.PricingListElementType || (exports.PricingListElementType = {}));
|
|
700
|
+
|
|
701
|
+
/** Types of an alternative route */
|
|
702
|
+
exports.RouteAlternativeType = void 0;
|
|
703
|
+
|
|
704
|
+
(function (RouteAlternativeType) {
|
|
705
|
+
RouteAlternativeType["FASTEST"] = "fastest";
|
|
706
|
+
RouteAlternativeType["BESTMATCHING"] = "bestMatching";
|
|
707
|
+
RouteAlternativeType["ALTERNATIVE"] = "alternative";
|
|
708
|
+
})(exports.RouteAlternativeType || (exports.RouteAlternativeType = {}));
|
|
709
|
+
|
|
710
|
+
/** Sign belonging to the instruction indicating the main maneuver */
|
|
711
|
+
exports.RouteInstructionSign = void 0;
|
|
712
|
+
|
|
713
|
+
(function (RouteInstructionSign) {
|
|
714
|
+
RouteInstructionSign["UNKNOWN"] = "UNKNOWN";
|
|
715
|
+
RouteInstructionSign["U_TURN_UNKNOWN"] = "U_TURN_UNKNOWN";
|
|
716
|
+
RouteInstructionSign["U_TURN_LEFT"] = "U_TURN_LEFT";
|
|
717
|
+
RouteInstructionSign["KEEP_LEFT"] = "KEEP_LEFT";
|
|
718
|
+
RouteInstructionSign["LEAVE_ROUNDABOUT"] = "LEAVE_ROUNDABOUT";
|
|
719
|
+
RouteInstructionSign["TURN_SHARP_LEFT"] = "TURN_SHARP_LEFT";
|
|
720
|
+
RouteInstructionSign["TURN_LEFT"] = "TURN_LEFT";
|
|
721
|
+
RouteInstructionSign["TURN_SLIGHT_LEFT"] = "TURN_SLIGHT_LEFT";
|
|
722
|
+
RouteInstructionSign["CONTINUE_ON_STREET"] = "CONTINUE_ON_STREET";
|
|
723
|
+
RouteInstructionSign["TURN_SLIGHT_RIGHT"] = "TURN_SLIGHT_RIGHT";
|
|
724
|
+
RouteInstructionSign["TURN_RIGHT"] = "TURN_RIGHT";
|
|
725
|
+
RouteInstructionSign["TURN_SHARP_RIGHT"] = "TURN_SHARP_RIGHT";
|
|
726
|
+
RouteInstructionSign["FINISH"] = "FINISH";
|
|
727
|
+
RouteInstructionSign["REACHED_VIA"] = "REACHED_VIA";
|
|
728
|
+
RouteInstructionSign["REACHED_CHARGING_STATION"] = "REACHED_CHARGING_STATION";
|
|
729
|
+
RouteInstructionSign["USE_ROUNDABOUT"] = "USE_ROUNDABOUT";
|
|
730
|
+
RouteInstructionSign["KEEP_RIGHT"] = "KEEP_RIGHT";
|
|
731
|
+
RouteInstructionSign["U_TURN_RIGHT"] = "U_TURN_RIGHT";
|
|
732
|
+
RouteInstructionSign["PT_START_TRIP"] = "PT_START_TRIP";
|
|
733
|
+
RouteInstructionSign["PT_TRANSFER"] = "PT_TRANSFER";
|
|
734
|
+
RouteInstructionSign["PT_END_TRIP"] = "PT_END_TRIP";
|
|
735
|
+
RouteInstructionSign["IGNORE"] = "IGNORE";
|
|
736
|
+
})(exports.RouteInstructionSign || (exports.RouteInstructionSign = {}));
|
|
737
|
+
|
|
738
|
+
/** Type of operator prioritization for a route */
|
|
739
|
+
exports.RouteOperatorsType = void 0;
|
|
740
|
+
|
|
741
|
+
(function (RouteOperatorsType) {
|
|
742
|
+
RouteOperatorsType["NONE"] = "none";
|
|
743
|
+
RouteOperatorsType["PREFERRED"] = "preferred";
|
|
744
|
+
RouteOperatorsType["REQUIRED"] = "required";
|
|
745
|
+
})(exports.RouteOperatorsType || (exports.RouteOperatorsType = {}));
|
|
746
|
+
|
|
747
|
+
/** The season of the route */
|
|
748
|
+
exports.RouteSeason = void 0;
|
|
749
|
+
|
|
750
|
+
(function (RouteSeason) {
|
|
751
|
+
RouteSeason["SUMMER"] = "summer";
|
|
752
|
+
RouteSeason["WINTER"] = "winter";
|
|
753
|
+
RouteSeason["CURRENT"] = "current";
|
|
754
|
+
})(exports.RouteSeason || (exports.RouteSeason = {}));
|
|
755
|
+
|
|
756
|
+
/** The status of a route. The status can be pending, processing, done, not_found or error */
|
|
757
|
+
exports.RouteStatus = void 0;
|
|
758
|
+
|
|
759
|
+
(function (RouteStatus) {
|
|
760
|
+
RouteStatus["PENDING"] = "pending";
|
|
761
|
+
RouteStatus["PROCESSING"] = "processing";
|
|
762
|
+
RouteStatus["DONE"] = "done";
|
|
763
|
+
RouteStatus["NOT_FOUND"] = "not_found";
|
|
764
|
+
RouteStatus["ERROR"] = "error";
|
|
765
|
+
})(exports.RouteStatus || (exports.RouteStatus = {}));
|
|
766
|
+
|
|
767
|
+
/** Tags of a route */
|
|
768
|
+
exports.RouteTagType = void 0;
|
|
769
|
+
/** Standards(plug type) stats model */
|
|
770
|
+
|
|
771
|
+
(function (RouteTagType) {
|
|
772
|
+
RouteTagType["ROAD"] = "road";
|
|
773
|
+
RouteTagType["HIGHWAY"] = "highway";
|
|
774
|
+
RouteTagType["TOLL"] = "toll";
|
|
775
|
+
RouteTagType["FERRY"] = "ferry";
|
|
776
|
+
})(exports.RouteTagType || (exports.RouteTagType = {}));
|
|
777
|
+
|
|
778
|
+
/** The station speed type */
|
|
779
|
+
exports.StationSpeedType = void 0;
|
|
780
|
+
/** The station stats model */
|
|
781
|
+
|
|
782
|
+
(function (StationSpeedType) {
|
|
783
|
+
StationSpeedType["SLOW"] = "slow";
|
|
784
|
+
StationSpeedType["FAST"] = "fast";
|
|
785
|
+
StationSpeedType["TURBO"] = "turbo";
|
|
786
|
+
})(exports.StationSpeedType || (exports.StationSpeedType = {}));
|
|
787
|
+
|
|
788
|
+
/** Types of a route step */
|
|
789
|
+
exports.StepType = void 0;
|
|
790
|
+
|
|
791
|
+
(function (StepType) {
|
|
792
|
+
StepType["ROAD"] = "road";
|
|
793
|
+
StepType["HIGHWAY"] = "highway";
|
|
794
|
+
StepType["TOLL"] = "toll";
|
|
795
|
+
StepType["FERRY"] = "ferry";
|
|
796
|
+
})(exports.StepType || (exports.StepType = {}));
|
|
797
|
+
//# sourceMappingURL=index.js.map
|