@chargetrip/types 1.37.4 → 1.39.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 +14 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +99 -38
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +99 -38
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +1618 -994
- package/graphql.schema.json +5090 -1487
- package/package.json +1 -1
- package/src/graphql.ts +1711 -994
package/src/graphql.ts
CHANGED
|
@@ -17,25 +17,25 @@ export type Scalars = {
|
|
|
17
17
|
Acknowledgement: any;
|
|
18
18
|
/** The date and time scalar */
|
|
19
19
|
DateTime: string;
|
|
20
|
-
/** Email address scalar, email regex with HTML sanitization */
|
|
20
|
+
/** Email address scalar, email regex with HTML sanitization. */
|
|
21
21
|
Email: any;
|
|
22
22
|
/** Any JSON object */
|
|
23
23
|
JSON: { [key: string]: number | string | boolean | null | Scalars["JSON"] };
|
|
24
|
-
/** The non empty string scalar */
|
|
24
|
+
/** The non empty string scalar. */
|
|
25
25
|
NonEmptyString: any;
|
|
26
26
|
/**
|
|
27
27
|
* The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.
|
|
28
28
|
* The PlainString type represents free-form human-readable text with HTML sanitization.
|
|
29
29
|
*/
|
|
30
30
|
PlainString: any;
|
|
31
|
-
/** The File Upload scalar */
|
|
31
|
+
/** The File Upload scalar. */
|
|
32
32
|
Upload: any;
|
|
33
33
|
};
|
|
34
34
|
|
|
35
35
|
export enum AccelerationUnit {
|
|
36
|
-
/** Return the acceleration in seconds to 100 kilometers per hour */
|
|
36
|
+
/** Return the acceleration in seconds to 100 kilometers per hour. */
|
|
37
37
|
SECONDS_TO_100_KILOMETERS_PER_HOUR = "seconds_to_100_kilometers_per_hour",
|
|
38
|
-
/** Return the acceleration in seconds to 60 miles per hour */
|
|
38
|
+
/** Return the acceleration in seconds to 60 miles per hour. */
|
|
39
39
|
SECONDS_TO_60_MILES_PER_HOUR = "seconds_to_60_miles_per_hour"
|
|
40
40
|
}
|
|
41
41
|
|
|
@@ -45,25 +45,25 @@ export enum AccessType {
|
|
|
45
45
|
PRIVATE = "Private"
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
/** Information about an address */
|
|
48
|
+
/** Information about an address. */
|
|
49
49
|
export type Address = {
|
|
50
|
-
/** Continent code (2 letters) */
|
|
50
|
+
/** Continent code (2 letters). */
|
|
51
51
|
continent?: Maybe<Scalars["String"]>;
|
|
52
|
-
/** Country code (2 letters) */
|
|
52
|
+
/** Country code (2 letters). */
|
|
53
53
|
country?: Maybe<Scalars["String"]>;
|
|
54
|
-
/** County code (2 letters) */
|
|
54
|
+
/** County code (2 letters). */
|
|
55
55
|
county?: Maybe<Scalars["String"]>;
|
|
56
|
-
/** City */
|
|
56
|
+
/** City. */
|
|
57
57
|
city?: Maybe<Scalars["String"]>;
|
|
58
|
-
/** Street name */
|
|
58
|
+
/** Street name. */
|
|
59
59
|
street?: Maybe<Scalars["String"]>;
|
|
60
|
-
/** Street number */
|
|
60
|
+
/** Street number. */
|
|
61
61
|
number?: Maybe<Scalars["String"]>;
|
|
62
|
-
/** Postal code of a location */
|
|
62
|
+
/** Postal code of a location. */
|
|
63
63
|
postalCode?: Maybe<Scalars["String"]>;
|
|
64
|
-
/** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words
|
|
64
|
+
/** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>. */
|
|
65
65
|
what3Words?: Maybe<Scalars["String"]>;
|
|
66
|
-
/** Human-readable address of a location */
|
|
66
|
+
/** Human-readable address of a location. */
|
|
67
67
|
formattedAddress?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
68
68
|
};
|
|
69
69
|
|
|
@@ -118,11 +118,11 @@ export type Amenity = {
|
|
|
118
118
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
119
119
|
};
|
|
120
120
|
|
|
121
|
-
/** Amenity preferences for a route */
|
|
121
|
+
/** Amenity preferences for a route. */
|
|
122
122
|
export type AmenityPreferencesInput = {
|
|
123
|
-
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius */
|
|
123
|
+
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius. */
|
|
124
124
|
all_charge_stops?: Maybe<Array<AmenityType>>;
|
|
125
|
-
/** Scheduled charge stops, with a specified amenity and timeline */
|
|
125
|
+
/** Scheduled charge stops, with a specified amenity and timeline. */
|
|
126
126
|
scheduled_charge_stops?: Maybe<Array<ScheduledChargeStopInput>>;
|
|
127
127
|
};
|
|
128
128
|
|
|
@@ -134,7 +134,7 @@ export type AmenityStats = {
|
|
|
134
134
|
total?: Maybe<Scalars["Int"]>;
|
|
135
135
|
};
|
|
136
136
|
|
|
137
|
-
/** A list of amenity types */
|
|
137
|
+
/** A list of amenity types. */
|
|
138
138
|
export enum AmenityType {
|
|
139
139
|
PARK = "park",
|
|
140
140
|
RESTAURANT = "restaurant",
|
|
@@ -161,20 +161,20 @@ export type AuthorizeConnectedVehicleOptions = {
|
|
|
161
161
|
};
|
|
162
162
|
|
|
163
163
|
export type AuxiliaryConsumptionInput = {
|
|
164
|
-
/** Value of the auxiliary power consumption of the vehicle */
|
|
164
|
+
/** Value of the auxiliary power consumption of the vehicle. */
|
|
165
165
|
value: Scalars["Float"];
|
|
166
|
-
/** Type of auxiliary power consumption of the vehicle */
|
|
166
|
+
/** Type of auxiliary power consumption of the vehicle. */
|
|
167
167
|
type: AuxiliaryConsumptionUnit;
|
|
168
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
168
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
169
169
|
source?: Maybe<TelemetryInputSource>;
|
|
170
170
|
};
|
|
171
171
|
|
|
172
172
|
export enum AuxiliaryConsumptionUnit {
|
|
173
|
-
/** Return the auxiliary consumption in kilowatt hours */
|
|
173
|
+
/** Return the auxiliary consumption in kilowatt hours. */
|
|
174
174
|
KILOWATT_HOUR = "kilowatt_hour"
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
/** The type of the battery value */
|
|
177
|
+
/** The type of the battery value. */
|
|
178
178
|
export enum BatteryInputType {
|
|
179
179
|
KWH = "kwh",
|
|
180
180
|
KM = "km",
|
|
@@ -183,162 +183,162 @@ export enum BatteryInputType {
|
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
export type BatteryTemperatureInput = {
|
|
186
|
-
/** Value of the temperature of the battery */
|
|
186
|
+
/** Value of the temperature of the battery. */
|
|
187
187
|
value: Scalars["Float"];
|
|
188
|
-
/** Type of temperature of the battery */
|
|
188
|
+
/** Type of temperature of the battery. */
|
|
189
189
|
type: TemperatureUnit;
|
|
190
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
190
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
191
191
|
source?: Maybe<TelemetryInputSource>;
|
|
192
192
|
};
|
|
193
193
|
|
|
194
|
-
/** Output of a car query */
|
|
194
|
+
/** Output of a car query. */
|
|
195
195
|
export type Car = {
|
|
196
|
-
/** Cars unique ID */
|
|
196
|
+
/** Cars unique ID. */
|
|
197
197
|
id?: Maybe<Scalars["ID"]>;
|
|
198
|
-
/** Naming of a car */
|
|
198
|
+
/** Naming of a car. */
|
|
199
199
|
naming?: Maybe<CarNaming>;
|
|
200
|
-
/** Available connectors for a car */
|
|
200
|
+
/** Available connectors for a car. */
|
|
201
201
|
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
202
|
-
/** List of adapters of connectors available for a car */
|
|
202
|
+
/** List of adapters of connectors available for a car. */
|
|
203
203
|
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
204
|
-
/** Battery of a car */
|
|
204
|
+
/** Battery of a car. */
|
|
205
205
|
battery?: Maybe<CarBattery>;
|
|
206
|
-
/** Body of a car */
|
|
206
|
+
/** Body of a car. */
|
|
207
207
|
body?: Maybe<CarBody>;
|
|
208
|
-
/** Availability of a car */
|
|
208
|
+
/** Availability of a car. */
|
|
209
209
|
availability?: Maybe<CarAvailability>;
|
|
210
|
-
/** Performance of a car */
|
|
210
|
+
/** Performance of a car. */
|
|
211
211
|
performance?: Maybe<CarPerformance>;
|
|
212
|
-
/** Range of a car */
|
|
212
|
+
/** Range of a car. */
|
|
213
213
|
range?: Maybe<CarRange>;
|
|
214
|
-
/** Media of a car */
|
|
214
|
+
/** Media of a car. */
|
|
215
215
|
media?: Maybe<CarMedia>;
|
|
216
|
-
/** Routing of a car */
|
|
216
|
+
/** Routing of a car. */
|
|
217
217
|
routing?: Maybe<CarRouting>;
|
|
218
|
-
/** Information about vehicle connectivity */
|
|
218
|
+
/** Information about vehicle connectivity. */
|
|
219
219
|
connect?: Maybe<Connect>;
|
|
220
220
|
/**
|
|
221
|
-
* ID provided by a car data source as the row ID
|
|
221
|
+
* ID provided by a car data source as the row ID.
|
|
222
222
|
* @deprecated Will be removed in the future
|
|
223
223
|
*/
|
|
224
224
|
externalId?: Maybe<Scalars["String"]>;
|
|
225
225
|
/**
|
|
226
|
-
* Car manufacturer
|
|
226
|
+
* Car manufacturer.
|
|
227
227
|
* @deprecated In favor of naming.make
|
|
228
228
|
*/
|
|
229
229
|
make?: Maybe<Scalars["String"]>;
|
|
230
230
|
/**
|
|
231
|
-
* Car model
|
|
231
|
+
* Car model.
|
|
232
232
|
* @deprecated In favor of naming.model
|
|
233
233
|
*/
|
|
234
234
|
carModel?: Maybe<Scalars["String"]>;
|
|
235
235
|
/**
|
|
236
|
-
* Car edition
|
|
236
|
+
* Car edition.
|
|
237
237
|
* @deprecated In favor of naming.version
|
|
238
238
|
*/
|
|
239
239
|
edition?: Maybe<Scalars["String"]>;
|
|
240
240
|
/**
|
|
241
|
-
* Car model edition. Added by Chargetrip as an alternative for when a car manufacturer does not provide an edition name, or uses the same edition name across all trims or consecutive years
|
|
241
|
+
* Car model edition. Added by Chargetrip as an alternative for when a car manufacturer does not provide an edition name, or uses the same edition name across all trims or consecutive years.
|
|
242
242
|
* @deprecated In favor of naming.chargetrip_version
|
|
243
243
|
*/
|
|
244
244
|
chargetripEdition?: Maybe<Scalars["String"]>;
|
|
245
245
|
/**
|
|
246
|
-
* Car version
|
|
246
|
+
* Car version.
|
|
247
247
|
* @deprecated In favor of naming.edition
|
|
248
248
|
*/
|
|
249
249
|
version?: Maybe<Scalars["String"]>;
|
|
250
250
|
/**
|
|
251
|
-
* Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data
|
|
251
|
+
* Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data.
|
|
252
252
|
* @deprecated In favor of range.chargetrip_range
|
|
253
253
|
*/
|
|
254
254
|
chargetripRange?: Maybe<ChargetripRange>;
|
|
255
255
|
/**
|
|
256
|
-
* Cars that support fast charging have a minimum charging speed of 43 kWh
|
|
256
|
+
* Cars that support fast charging have a minimum charging speed of 43 kWh.
|
|
257
257
|
* @deprecated In favor of routing.fast_charging_support
|
|
258
258
|
*/
|
|
259
259
|
fastChargingSupport?: Maybe<Scalars["Boolean"]>;
|
|
260
260
|
/**
|
|
261
|
-
* Current production mode of a car
|
|
261
|
+
* Current production mode of a car.
|
|
262
262
|
* @deprecated In favor of availability.status
|
|
263
263
|
*/
|
|
264
264
|
mode?: Maybe<CarMode>;
|
|
265
265
|
/**
|
|
266
|
-
* Number of seats
|
|
266
|
+
* Number of seats.
|
|
267
267
|
* @deprecated In favor of body.seats
|
|
268
268
|
*/
|
|
269
269
|
seats?: Maybe<Scalars["Int"]>;
|
|
270
270
|
/**
|
|
271
|
-
* Weight in kg
|
|
271
|
+
* Weight in kg.
|
|
272
272
|
* @deprecated In favor of body.weight
|
|
273
273
|
*/
|
|
274
274
|
weight?: Maybe<Scalars["Float"]>;
|
|
275
275
|
/**
|
|
276
|
-
* Height in mm
|
|
276
|
+
* Height in mm.
|
|
277
277
|
* @deprecated In favor of body.height
|
|
278
278
|
*/
|
|
279
279
|
height?: Maybe<Scalars["Int"]>;
|
|
280
280
|
/**
|
|
281
|
-
* Width in mm
|
|
281
|
+
* Width in mm.
|
|
282
282
|
* @deprecated In favor of body.width
|
|
283
283
|
*/
|
|
284
284
|
width?: Maybe<Scalars["Int"]>;
|
|
285
285
|
/**
|
|
286
|
-
* Usable battery capacity in kWh
|
|
286
|
+
* Usable battery capacity in kWh.
|
|
287
287
|
* @deprecated In favor of battery.usable_kwh
|
|
288
288
|
*/
|
|
289
289
|
batteryUsableKwh?: Maybe<Scalars["Float"]>;
|
|
290
290
|
/**
|
|
291
|
-
* Full battery capacity in kWh
|
|
291
|
+
* Full battery capacity in kWh.
|
|
292
292
|
* @deprecated In favor of battery.full_kwh
|
|
293
293
|
*/
|
|
294
294
|
batteryFullKwh?: Maybe<Scalars["Float"]>;
|
|
295
295
|
/**
|
|
296
|
-
* Battery efficiency in the city, highway and combined depending on weather conditions
|
|
296
|
+
* Battery efficiency in the city, highway and combined depending on weather conditions.
|
|
297
297
|
* @deprecated In favor of efficiency
|
|
298
298
|
*/
|
|
299
299
|
batteryEfficiency?: Maybe<CarBatteryEfficiency>;
|
|
300
300
|
/**
|
|
301
|
-
* Acceleration time from 0 to 100 km/h
|
|
301
|
+
* Acceleration time from 0 to 100 km/h.
|
|
302
302
|
* @deprecated In favor of performance.acceleration
|
|
303
303
|
*/
|
|
304
304
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
305
305
|
/**
|
|
306
|
-
* Maximum car speed in km/h
|
|
306
|
+
* Maximum car speed in km/h.
|
|
307
307
|
* @deprecated In favor of performance.top_speed
|
|
308
308
|
*/
|
|
309
309
|
topSpeed?: Maybe<Scalars["Float"]>;
|
|
310
310
|
/**
|
|
311
|
-
* Power of a car in Kw
|
|
311
|
+
* Power of a car in Kw.
|
|
312
312
|
* @deprecated In favor of drivetrain.power
|
|
313
313
|
*/
|
|
314
314
|
power?: Maybe<Scalars["Float"]>;
|
|
315
315
|
/**
|
|
316
|
-
* Engine torque
|
|
316
|
+
* Engine torque.
|
|
317
317
|
* @deprecated In favor of drivetrain.torque
|
|
318
318
|
*/
|
|
319
319
|
torque?: Maybe<Scalars["Float"]>;
|
|
320
320
|
/**
|
|
321
|
-
* Extra consumption model
|
|
321
|
+
* Extra consumption model.
|
|
322
322
|
* @deprecated In favor of routing.consumption
|
|
323
323
|
*/
|
|
324
324
|
consumption?: Maybe<CarExtraConsumption>;
|
|
325
325
|
/**
|
|
326
|
-
* Amount of petrol a similar petrol car would consume per 100 km
|
|
326
|
+
* Amount of petrol a similar petrol car would consume per 100 km.
|
|
327
327
|
* @deprecated In favor of routing.petrol_consumption
|
|
328
328
|
*/
|
|
329
329
|
petrolConsumption?: Maybe<Scalars["Float"]>;
|
|
330
330
|
/**
|
|
331
|
-
* A list of offset data for different charging speeds
|
|
331
|
+
* A list of offset data for different charging speeds.
|
|
332
332
|
* @deprecated You will receive null values
|
|
333
333
|
*/
|
|
334
334
|
chargingOffset?: Maybe<Scalars["JSON"]>;
|
|
335
335
|
/**
|
|
336
|
-
* Images of a car
|
|
336
|
+
* Images of a car.
|
|
337
337
|
* @deprecated In favor of media.image_list
|
|
338
338
|
*/
|
|
339
339
|
images?: Maybe<Array<Maybe<CarImage>>>;
|
|
340
340
|
/**
|
|
341
|
-
* Images of a car in structured data
|
|
341
|
+
* Images of a car in structured data.
|
|
342
342
|
* @deprecated In favor of media.image or media.brand
|
|
343
343
|
*/
|
|
344
344
|
imagesData?: Maybe<CarImageData>;
|
|
@@ -346,59 +346,59 @@ export type Car = {
|
|
|
346
346
|
|
|
347
347
|
export type CarAvailability = {
|
|
348
348
|
/**
|
|
349
|
-
* Availability of car
|
|
349
|
+
* Availability of car.
|
|
350
350
|
*
|
|
351
351
|
* Values:
|
|
352
|
-
* - 0 = Car no longer for sale in any market / region
|
|
353
|
-
* - 1 = Car currently for sale in at least one market / region
|
|
354
|
-
* - 2 = Car expected in market from Date_From (estimated), pre-order open
|
|
355
|
-
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open
|
|
356
|
-
* - 12 = Concept car, nearing production and/or confirmed, pre-order open
|
|
357
|
-
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open
|
|
358
|
-
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open
|
|
359
|
-
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown
|
|
360
|
-
* - 91 = Status uncertain, introduction date and/or pricing unclear
|
|
352
|
+
* - 0 = Car no longer for sale in any market / region.
|
|
353
|
+
* - 1 = Car currently for sale in at least one market / region.
|
|
354
|
+
* - 2 = Car expected in market from Date_From (estimated), pre-order open.
|
|
355
|
+
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
|
|
356
|
+
* - 12 = Concept car, nearing production and/or confirmed, pre-order open.
|
|
357
|
+
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
|
|
358
|
+
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
|
|
359
|
+
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
|
|
360
|
+
* - 91 = Status uncertain, introduction date and/or pricing unclear.
|
|
361
361
|
*/
|
|
362
362
|
status?: Maybe<Scalars["Int"]>;
|
|
363
363
|
};
|
|
364
364
|
|
|
365
365
|
export type CarBattery = {
|
|
366
|
-
/** Usable battery capacity in kWh */
|
|
366
|
+
/** Usable battery capacity in kWh. */
|
|
367
367
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
368
|
-
/** Full battery capacity in kWh */
|
|
368
|
+
/** Full battery capacity in kWh. */
|
|
369
369
|
full_kwh?: Maybe<Scalars["Float"]>;
|
|
370
370
|
};
|
|
371
371
|
|
|
372
|
-
/** Deprecated */
|
|
372
|
+
/** Deprecated. */
|
|
373
373
|
export type CarBatteryEfficiency = {
|
|
374
|
-
/** Average efficiency measured in kWh/100 km */
|
|
374
|
+
/** Average efficiency measured in kWh/100 km. */
|
|
375
375
|
average?: Maybe<Scalars["Float"]>;
|
|
376
|
-
/** Worst conditions are based on -10°C and use of heating, measured in kWh/100 km */
|
|
376
|
+
/** Worst conditions are based on -10°C and use of heating, measured in kWh/100 km. */
|
|
377
377
|
worst?: Maybe<CarEstimationData>;
|
|
378
|
-
/** Best conditions are based on 23°C and no use of A/C, measured in kWh/100 km */
|
|
378
|
+
/** Best conditions are based on 23°C and no use of A/C, measured in kWh/100 km. */
|
|
379
379
|
best?: Maybe<CarEstimationData>;
|
|
380
380
|
};
|
|
381
381
|
|
|
382
|
-
/** Battery field estimated */
|
|
382
|
+
/** Battery field estimated. */
|
|
383
383
|
export enum CarBatteryFieldEstimations {
|
|
384
|
-
/** Both of the battery kWh fields are estimations */
|
|
384
|
+
/** Both of the battery kWh fields are estimations. */
|
|
385
385
|
B = "B",
|
|
386
|
-
/** full_kwh field is estimated */
|
|
386
|
+
/** full_kwh field is estimated. */
|
|
387
387
|
F = "F",
|
|
388
|
-
/** None of the battery kWh fields are estimations */
|
|
388
|
+
/** None of the battery kWh fields are estimations. */
|
|
389
389
|
N = "N",
|
|
390
|
-
/** usable_kwh field is estimated */
|
|
390
|
+
/** usable_kwh field is estimated. */
|
|
391
391
|
U = "U"
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
export type CarBody = {
|
|
395
|
-
/** Width with folded mirrors in mm */
|
|
395
|
+
/** Width with folded mirrors in mm. */
|
|
396
396
|
width?: Maybe<Scalars["Int"]>;
|
|
397
|
-
/** Height (average height for adjustable suspensions) in mm */
|
|
397
|
+
/** Height (average height for adjustable suspensions) in mm. */
|
|
398
398
|
height?: Maybe<Scalars["Int"]>;
|
|
399
|
-
/** Weight Unladen EU) in kg */
|
|
399
|
+
/** Weight Unladen EU) in kg. */
|
|
400
400
|
weight?: Maybe<Scalars["Int"]>;
|
|
401
|
-
/** Number of seats */
|
|
401
|
+
/** Number of seats. */
|
|
402
402
|
seats?: Maybe<Scalars["Int"]>;
|
|
403
403
|
};
|
|
404
404
|
|
|
@@ -406,195 +406,195 @@ export enum CarConnectivityProvider {
|
|
|
406
406
|
ENODE = "Enode"
|
|
407
407
|
}
|
|
408
408
|
|
|
409
|
-
/** Deprecated */
|
|
409
|
+
/** Deprecated. */
|
|
410
410
|
export type CarConsumption = {
|
|
411
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
411
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
412
412
|
worst?: Maybe<Scalars["Float"]>;
|
|
413
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
413
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
414
414
|
best?: Maybe<Scalars["Float"]>;
|
|
415
415
|
};
|
|
416
416
|
|
|
417
417
|
/** The consumption of the car */
|
|
418
418
|
export type CarConsumptionInput = {
|
|
419
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
419
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
420
420
|
worst?: Maybe<Scalars["Float"]>;
|
|
421
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
421
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
422
422
|
best?: Maybe<Scalars["Float"]>;
|
|
423
423
|
};
|
|
424
424
|
|
|
425
|
-
/** Drivetrain */
|
|
425
|
+
/** Drivetrain. */
|
|
426
426
|
export enum CarDrivetrain {
|
|
427
|
-
/** Battery Electric Car */
|
|
427
|
+
/** Battery Electric Car.. */
|
|
428
428
|
BEV = "BEV",
|
|
429
|
-
/** Extended Range Electric Car */
|
|
429
|
+
/** Extended Range Electric Car. */
|
|
430
430
|
EREV = "EREV"
|
|
431
431
|
}
|
|
432
432
|
|
|
433
|
-
/** Deprecated */
|
|
433
|
+
/** Deprecated. */
|
|
434
434
|
export type CarEstimationData = {
|
|
435
|
-
/** Estimated battery efficiency on a highway or express roads, in km */
|
|
435
|
+
/** Estimated battery efficiency on a highway or express roads, in km. */
|
|
436
436
|
highway?: Maybe<Scalars["Float"]>;
|
|
437
|
-
/** Estimated battery efficiency on city roads, in km */
|
|
437
|
+
/** Estimated battery efficiency on city roads, in km. */
|
|
438
438
|
city?: Maybe<Scalars["Float"]>;
|
|
439
|
-
/** Estimated battery efficiency on highway and city roads combined, in km */
|
|
439
|
+
/** Estimated battery efficiency on highway and city roads combined, in km. */
|
|
440
440
|
combined?: Maybe<Scalars["Float"]>;
|
|
441
441
|
};
|
|
442
442
|
|
|
443
|
-
/** Deprecated */
|
|
443
|
+
/** Deprecated. */
|
|
444
444
|
export type CarExtraConsumption = {
|
|
445
|
-
/** Consumption, in kWh, of the auxiliaries */
|
|
445
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
446
446
|
aux?: Maybe<CarConsumption>;
|
|
447
|
-
/** Consumption, in kWh, of the battery management system */
|
|
447
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
448
448
|
bms?: Maybe<CarConsumption>;
|
|
449
|
-
/** Consumption, in kWh, of a car in idle mode */
|
|
449
|
+
/** Consumption, in kWh, of a car in idle mode. */
|
|
450
450
|
idle?: Maybe<CarConsumption>;
|
|
451
451
|
};
|
|
452
452
|
|
|
453
|
-
/** Fuel type */
|
|
453
|
+
/** Fuel type. */
|
|
454
454
|
export enum CarFuel {
|
|
455
|
-
/** Electricity only. Full electric car */
|
|
455
|
+
/** Electricity only. Full electric car. */
|
|
456
456
|
E = "E"
|
|
457
457
|
}
|
|
458
458
|
|
|
459
459
|
export type CarImage = {
|
|
460
|
-
/** Image id */
|
|
460
|
+
/** Image id. */
|
|
461
461
|
id?: Maybe<Scalars["ID"]>;
|
|
462
|
-
/** Image type */
|
|
462
|
+
/** Image type. */
|
|
463
463
|
type?: Maybe<CarImageType>;
|
|
464
|
-
/** Full path URL of a large image */
|
|
464
|
+
/** Full path URL of a large image. */
|
|
465
465
|
url?: Maybe<Scalars["String"]>;
|
|
466
|
-
/** Height of a large image in pixels */
|
|
466
|
+
/** Height of a large image in pixels. */
|
|
467
467
|
height?: Maybe<Scalars["Int"]>;
|
|
468
|
-
/** Width of a large image in pixels */
|
|
468
|
+
/** Width of a large image in pixels. */
|
|
469
469
|
width?: Maybe<Scalars["Int"]>;
|
|
470
|
-
/** Full path URL of a thumbnail image */
|
|
470
|
+
/** Full path URL of a thumbnail image. */
|
|
471
471
|
thumbnail_url?: Maybe<Scalars["String"]>;
|
|
472
|
-
/** Height of a thumbnail image in pixels */
|
|
472
|
+
/** Height of a thumbnail image in pixels. */
|
|
473
473
|
thumbnail_height?: Maybe<Scalars["Int"]>;
|
|
474
|
-
/** Width of a thumbnail image in pixels */
|
|
474
|
+
/** Width of a thumbnail image in pixels. */
|
|
475
475
|
thumbnail_width?: Maybe<Scalars["Int"]>;
|
|
476
476
|
};
|
|
477
477
|
|
|
478
|
-
/** Deprecated */
|
|
478
|
+
/** Deprecated. */
|
|
479
479
|
export type CarImageData = {
|
|
480
|
-
/** Full size image of a car */
|
|
480
|
+
/** Full size image of a car. */
|
|
481
481
|
image?: Maybe<CarImage>;
|
|
482
|
-
/** Thumbnail of a full size image */
|
|
482
|
+
/** Thumbnail of a full size image. */
|
|
483
483
|
image_thumbnail?: Maybe<CarImage>;
|
|
484
|
-
/** Full size logo of the
|
|
484
|
+
/** Full size logo of the make of a car. */
|
|
485
485
|
brand?: Maybe<CarImage>;
|
|
486
|
-
/** Thumbnail of a full size logo of the
|
|
486
|
+
/** Thumbnail of a full size logo of the make of a car. */
|
|
487
487
|
brand_thumbnail?: Maybe<CarImage>;
|
|
488
488
|
};
|
|
489
489
|
|
|
490
|
-
/** Available types of images which can be found for a car. Each type has specific image sizes */
|
|
490
|
+
/** Available types of images which can be found for a car. Each type has specific image sizes. */
|
|
491
491
|
export enum CarImageType {
|
|
492
|
-
/** Images provided by a Car Datasource */
|
|
492
|
+
/** Images provided by a Car Datasource. */
|
|
493
493
|
PROVIDER = "provider",
|
|
494
|
-
/** Full-sized image at 1536x864 px */
|
|
494
|
+
/** Full-sized image at 1536x864 px. */
|
|
495
495
|
IMAGE = "image",
|
|
496
|
-
/** Thumbnail of a full-sized image at 131x72 px */
|
|
496
|
+
/** Thumbnail of a full-sized image at 131x72 px. */
|
|
497
497
|
IMAGE_THUMBNAIL = "image_thumbnail",
|
|
498
|
-
/** Full-sized brand (
|
|
498
|
+
/** Full-sized brand (make) logo at 768x432 px. */
|
|
499
499
|
BRAND = "brand",
|
|
500
|
-
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
500
|
+
/** Thumbnail of a full-sized brand (make) logo at 56x24 px. */
|
|
501
501
|
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
502
|
-
/** Placeholder image at 1536x864 px */
|
|
502
|
+
/** Placeholder image at 1536x864 px. */
|
|
503
503
|
PLACEHOLDER = "placeholder"
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
-
/** When uploading images to a car, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
506
|
+
/** When uploading images to a car, you can select one of this types. The rest of the types are automatically generated by the system. */
|
|
507
507
|
export enum CarImageTypeUploadable {
|
|
508
|
-
/** Full size image with a resolution at least 1536x864 px */
|
|
508
|
+
/** Full size image with a resolution at least 1536x864 px. */
|
|
509
509
|
IMAGE = "image"
|
|
510
510
|
}
|
|
511
511
|
|
|
512
|
-
/** The output element of the carList query */
|
|
512
|
+
/** The output element of the carList query. */
|
|
513
513
|
export type CarList = {
|
|
514
|
-
/** Cars unique ID */
|
|
514
|
+
/** Cars unique ID. */
|
|
515
515
|
id?: Maybe<Scalars["ID"]>;
|
|
516
|
-
/** Naming of a car */
|
|
516
|
+
/** Naming of a car. */
|
|
517
517
|
naming?: Maybe<CarListNaming>;
|
|
518
|
-
/** Connectors available for a car */
|
|
518
|
+
/** Connectors available for a car. */
|
|
519
519
|
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
520
|
-
/** Adapters of connectors available for a car */
|
|
520
|
+
/** Adapters of connectors available for a car. */
|
|
521
521
|
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
522
|
-
/** Battery of a car */
|
|
522
|
+
/** Battery of a car. */
|
|
523
523
|
battery?: Maybe<CarListBattery>;
|
|
524
|
-
/** Body of a car */
|
|
524
|
+
/** Body of a car. */
|
|
525
525
|
body?: Maybe<CarListBody>;
|
|
526
|
-
/** Availability of a car */
|
|
526
|
+
/** Availability of a car. */
|
|
527
527
|
availability?: Maybe<CarListAvailability>;
|
|
528
|
-
/** Range of a car */
|
|
528
|
+
/** Range of a car. */
|
|
529
529
|
range?: Maybe<CarListRange>;
|
|
530
|
-
/** Media of a car */
|
|
530
|
+
/** Media of a car. */
|
|
531
531
|
media?: Maybe<CarListMedia>;
|
|
532
|
-
/** Routing of a car */
|
|
532
|
+
/** Routing of a car. */
|
|
533
533
|
routing?: Maybe<CarListRouting>;
|
|
534
|
-
/** Information about vehicle connectivity */
|
|
534
|
+
/** Information about vehicle connectivity. */
|
|
535
535
|
connect?: Maybe<Connect>;
|
|
536
536
|
/**
|
|
537
|
-
* ID provided by a car data source as the row ID
|
|
537
|
+
* ID provided by a car data source as the row ID.
|
|
538
538
|
* @deprecated Will be removed in the future
|
|
539
539
|
*/
|
|
540
540
|
externalId?: Maybe<Scalars["String"]>;
|
|
541
541
|
/**
|
|
542
|
-
* Car manufacturer
|
|
542
|
+
* Car manufacturer.
|
|
543
543
|
* @deprecated In favor of naming.make
|
|
544
544
|
*/
|
|
545
545
|
make?: Maybe<Scalars["String"]>;
|
|
546
546
|
/**
|
|
547
|
-
* Car model
|
|
547
|
+
* Car model.
|
|
548
548
|
* @deprecated In favor of naming.model
|
|
549
549
|
*/
|
|
550
550
|
carModel?: Maybe<Scalars["String"]>;
|
|
551
551
|
/**
|
|
552
|
-
* Car edition
|
|
552
|
+
* Car edition.
|
|
553
553
|
* @deprecated In favor of naming.version
|
|
554
554
|
*/
|
|
555
555
|
edition?: Maybe<Scalars["String"]>;
|
|
556
556
|
/**
|
|
557
|
-
* Car model edition. Added by Chargetrip as an alternative for when a car manufacturer does not provide an edition name, or uses the same edition name across all trims or consecutive years
|
|
557
|
+
* Car model edition. Added by Chargetrip as an alternative for when a car manufacturer does not provide an edition name, or uses the same edition name across all trims or consecutive years.
|
|
558
558
|
* @deprecated In favor of naming.chargetrip_version
|
|
559
559
|
*/
|
|
560
560
|
chargetripEdition?: Maybe<Scalars["String"]>;
|
|
561
561
|
/**
|
|
562
|
-
* Car version
|
|
562
|
+
* Car version.
|
|
563
563
|
* @deprecated In favor of naming.edition
|
|
564
564
|
*/
|
|
565
565
|
version?: Maybe<Scalars["String"]>;
|
|
566
566
|
/**
|
|
567
|
-
* Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data
|
|
567
|
+
* Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data.
|
|
568
568
|
* @deprecated In favor of range.chargetrip_range
|
|
569
569
|
*/
|
|
570
570
|
chargetripRange?: Maybe<ChargetripRange>;
|
|
571
571
|
/**
|
|
572
|
-
* Cars that support fast charging have a minimum charging speed of 43 kWh
|
|
572
|
+
* Cars that support fast charging have a minimum charging speed of 43 kWh.
|
|
573
573
|
* @deprecated In favor of routing.fast_charging_support
|
|
574
574
|
*/
|
|
575
575
|
fastChargingSupport?: Maybe<Scalars["Boolean"]>;
|
|
576
576
|
/**
|
|
577
|
-
* Current production mode of a car
|
|
577
|
+
* Current production mode of a car.
|
|
578
578
|
* @deprecated In favor of availability.status
|
|
579
579
|
*/
|
|
580
580
|
mode?: Maybe<CarMode>;
|
|
581
581
|
/**
|
|
582
|
-
* Number of seats
|
|
582
|
+
* Number of seats.
|
|
583
583
|
* @deprecated In favor of body.seats
|
|
584
584
|
*/
|
|
585
585
|
seats?: Maybe<Scalars["Int"]>;
|
|
586
586
|
/**
|
|
587
|
-
* Usable battery capacity in kWh
|
|
587
|
+
* Usable battery capacity in kWh.
|
|
588
588
|
* @deprecated In favor of battery.usable_kwh
|
|
589
589
|
*/
|
|
590
590
|
batteryUsableKwh?: Maybe<Scalars["Float"]>;
|
|
591
591
|
/**
|
|
592
|
-
* Full battery capacity in kWh
|
|
592
|
+
* Full battery capacity in kWh.
|
|
593
593
|
* @deprecated In favor of battery.full_kwh
|
|
594
594
|
*/
|
|
595
595
|
batteryFullKwh?: Maybe<Scalars["Float"]>;
|
|
596
596
|
/**
|
|
597
|
-
* Images of a car in structured data
|
|
597
|
+
* Images of a car in structured data.
|
|
598
598
|
* @deprecated In favor of media.image and media.brand
|
|
599
599
|
*/
|
|
600
600
|
imagesData?: Maybe<CarImageData>;
|
|
@@ -640,87 +640,87 @@ export type CarList = {
|
|
|
640
640
|
|
|
641
641
|
export type CarListAvailability = {
|
|
642
642
|
/**
|
|
643
|
-
* Availability of car
|
|
643
|
+
* Availability of car.
|
|
644
644
|
*
|
|
645
645
|
* Values:
|
|
646
|
-
* - 0 = Car no longer for sale in any market / region
|
|
647
|
-
* - 1 = Car currently for sale in at least one market / region
|
|
648
|
-
* - 2 = Car expected in market from Date_From (estimated), pre-order open
|
|
649
|
-
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open
|
|
650
|
-
* - 12 = Concept car, nearing production and/or confirmed, pre-order open
|
|
651
|
-
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open
|
|
652
|
-
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open
|
|
653
|
-
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown
|
|
654
|
-
* - 91 = Status uncertain, introduction date and/or pricing unclear
|
|
646
|
+
* - 0 = Car no longer for sale in any market / region.
|
|
647
|
+
* - 1 = Car currently for sale in at least one market / region.
|
|
648
|
+
* - 2 = Car expected in market from Date_From (estimated), pre-order open.
|
|
649
|
+
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
|
|
650
|
+
* - 12 = Concept car, nearing production and/or confirmed, pre-order open.
|
|
651
|
+
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
|
|
652
|
+
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
|
|
653
|
+
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
|
|
654
|
+
* - 91 = Status uncertain, introduction date and/or pricing unclear.
|
|
655
655
|
*/
|
|
656
656
|
status?: Maybe<Scalars["Int"]>;
|
|
657
657
|
};
|
|
658
658
|
|
|
659
659
|
export type CarListBattery = {
|
|
660
|
-
/** Usable battery capacity in kWh */
|
|
660
|
+
/** Usable battery capacity in kWh. */
|
|
661
661
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
662
|
-
/** Full battery capacity in kWh */
|
|
662
|
+
/** Full battery capacity in kWh. */
|
|
663
663
|
full_kwh?: Maybe<Scalars["Float"]>;
|
|
664
664
|
};
|
|
665
665
|
|
|
666
666
|
export type CarListBody = {
|
|
667
|
-
/** Number of seats in car */
|
|
667
|
+
/** Number of seats in car. */
|
|
668
668
|
seats?: Maybe<Scalars["Int"]>;
|
|
669
669
|
};
|
|
670
670
|
|
|
671
671
|
export type CarListFilter = {
|
|
672
672
|
/**
|
|
673
|
-
* Availability of car
|
|
673
|
+
* Availability of car.
|
|
674
674
|
*
|
|
675
675
|
* Values:
|
|
676
|
-
* - 0 = Car no longer for sale in any market / region
|
|
677
|
-
* - 1 = Car currently for sale in at least one market / region
|
|
678
|
-
* - 2 = Car expected in market from Date_From (estimated), pre-order open
|
|
679
|
-
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open
|
|
680
|
-
* - 12 = Concept car, nearing production and/or confirmed, pre-order open
|
|
681
|
-
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open
|
|
682
|
-
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open
|
|
683
|
-
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown
|
|
684
|
-
* - 91 = Status uncertain, introduction date and/or pricing unclear
|
|
676
|
+
* - 0 = Car no longer for sale in any market / region.
|
|
677
|
+
* - 1 = Car currently for sale in at least one market / region.
|
|
678
|
+
* - 2 = Car expected in market from Date_From (estimated), pre-order open.
|
|
679
|
+
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
|
|
680
|
+
* - 12 = Concept car, nearing production and/or confirmed, pre-order open.
|
|
681
|
+
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
|
|
682
|
+
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
|
|
683
|
+
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
|
|
684
|
+
* - 91 = Status uncertain, introduction date and/or pricing unclear.
|
|
685
685
|
*/
|
|
686
686
|
availability?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
687
|
-
/** Information about vehicle connectivity */
|
|
687
|
+
/** Information about vehicle connectivity. */
|
|
688
688
|
connect?: Maybe<ConnectFilter>;
|
|
689
689
|
};
|
|
690
690
|
|
|
691
691
|
export type CarListMedia = {
|
|
692
|
-
/** Latest image of the car */
|
|
692
|
+
/** Latest image of the car. */
|
|
693
693
|
image?: Maybe<CarImage>;
|
|
694
|
-
/** Latest
|
|
694
|
+
/** Latest make logo of the car. */
|
|
695
695
|
brand?: Maybe<CarImage>;
|
|
696
|
-
/** Latest video of the car */
|
|
696
|
+
/** Latest video of the car. */
|
|
697
697
|
video?: Maybe<CarVideo>;
|
|
698
698
|
};
|
|
699
699
|
|
|
700
700
|
export type CarListNaming = {
|
|
701
|
-
/** Car manufacturer name */
|
|
701
|
+
/** Car manufacturer name. */
|
|
702
702
|
make?: Maybe<Scalars["String"]>;
|
|
703
|
-
/** Car model name */
|
|
703
|
+
/** Car model name. */
|
|
704
704
|
model?: Maybe<Scalars["String"]>;
|
|
705
|
-
/** Version, edition or submodel of car */
|
|
705
|
+
/** Version, edition or submodel of car. */
|
|
706
706
|
version?: Maybe<Scalars["String"]>;
|
|
707
|
-
/** Another submodel level of car */
|
|
707
|
+
/** Another submodel level of car. */
|
|
708
708
|
edition?: Maybe<Scalars["String"]>;
|
|
709
|
-
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
709
|
+
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */
|
|
710
710
|
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
711
711
|
};
|
|
712
712
|
|
|
713
|
-
/** Deprecated */
|
|
713
|
+
/** Deprecated. */
|
|
714
714
|
export type CarListQuery = {
|
|
715
|
-
/** Deprecated: Not used anymore */
|
|
715
|
+
/** Deprecated: Not used anymore. */
|
|
716
716
|
make?: Maybe<Scalars["String"]>;
|
|
717
|
-
/** Deprecated: Not used anymore */
|
|
717
|
+
/** Deprecated: Not used anymore. */
|
|
718
718
|
model?: Maybe<Scalars["String"]>;
|
|
719
|
-
/** Deprecated: Not used anymore */
|
|
719
|
+
/** Deprecated: Not used anymore. */
|
|
720
720
|
version?: Maybe<Scalars["String"]>;
|
|
721
|
-
/** Deprecated: Not used anymore */
|
|
721
|
+
/** Deprecated: Not used anymore. */
|
|
722
722
|
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
723
|
-
/** Deprecated: Not used anymore */
|
|
723
|
+
/** Deprecated: Not used anymore. */
|
|
724
724
|
mode?: Maybe<CarMode>;
|
|
725
725
|
};
|
|
726
726
|
|
|
@@ -739,700 +739,700 @@ export type CarListRange = {
|
|
|
739
739
|
};
|
|
740
740
|
|
|
741
741
|
export type CarListRouting = {
|
|
742
|
-
/** Cars that support fast charging have a minimum charging speed of 43 kWh */
|
|
742
|
+
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
743
743
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
744
744
|
};
|
|
745
745
|
|
|
746
746
|
export type CarMedia = {
|
|
747
|
-
/** URL to detail page on EV database */
|
|
747
|
+
/** URL to detail page on EV database. */
|
|
748
748
|
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
749
|
-
/** Latest image */
|
|
749
|
+
/** Latest image. */
|
|
750
750
|
image?: Maybe<CarImage>;
|
|
751
|
-
/** Latest
|
|
751
|
+
/** Latest make logo. */
|
|
752
752
|
brand?: Maybe<CarImage>;
|
|
753
|
-
/** All images */
|
|
753
|
+
/** All images. */
|
|
754
754
|
image_list?: Maybe<Array<Maybe<CarImage>>>;
|
|
755
|
-
/** Latest video */
|
|
755
|
+
/** Latest video. */
|
|
756
756
|
video?: Maybe<CarVideo>;
|
|
757
|
-
/** All videos */
|
|
757
|
+
/** All videos. */
|
|
758
758
|
video_list?: Maybe<Array<Maybe<CarVideo>>>;
|
|
759
759
|
/**
|
|
760
|
-
* URL to detail page on EV database
|
|
760
|
+
* URL to detail page on EV database.
|
|
761
761
|
* @deprecated Will be removed in the future. Please use evdb_details_url
|
|
762
762
|
*/
|
|
763
763
|
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
764
764
|
};
|
|
765
765
|
|
|
766
|
-
/** Mode (state) of the current production */
|
|
766
|
+
/** Mode (state) of the current production. */
|
|
767
767
|
export enum CarMode {
|
|
768
|
-
/** Old car that is no longer manufactured */
|
|
768
|
+
/** Old car that is no longer manufactured. */
|
|
769
769
|
INDEX_ONLY = "index_only",
|
|
770
|
-
/** Car is in production and has been released */
|
|
770
|
+
/** Car is in production and has been released. */
|
|
771
771
|
PRODUCTION = "production",
|
|
772
|
-
/** Future releases of a car, a concept of the car, specs may change over time */
|
|
772
|
+
/** Future releases of a car, a concept of the car, specs may change over time. */
|
|
773
773
|
CONCEPT = "concept"
|
|
774
774
|
}
|
|
775
775
|
|
|
776
776
|
export type CarNaming = {
|
|
777
|
-
/** Car manufacturer name */
|
|
777
|
+
/** Car manufacturer name. */
|
|
778
778
|
make?: Maybe<Scalars["String"]>;
|
|
779
|
-
/** Car model name */
|
|
779
|
+
/** Car model name. */
|
|
780
780
|
model?: Maybe<Scalars["String"]>;
|
|
781
|
-
/** Version, edition or submodel of car */
|
|
781
|
+
/** Version, edition or submodel of car. */
|
|
782
782
|
version?: Maybe<Scalars["String"]>;
|
|
783
|
-
/** Another submodel level of car */
|
|
783
|
+
/** Another submodel level of car. */
|
|
784
784
|
edition?: Maybe<Scalars["String"]>;
|
|
785
|
-
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
785
|
+
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */
|
|
786
786
|
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
787
787
|
};
|
|
788
788
|
|
|
789
789
|
export type CarPerformance = {
|
|
790
|
-
/** Acceleration 0-100 km/h in seconds */
|
|
790
|
+
/** Acceleration 0-100 km/h in seconds. */
|
|
791
791
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
792
|
-
/** Top speed of car in km/h */
|
|
792
|
+
/** Top speed of car in km/h. */
|
|
793
793
|
top_speed?: Maybe<Scalars["Int"]>;
|
|
794
794
|
};
|
|
795
795
|
|
|
796
|
-
/** Car plug model */
|
|
796
|
+
/** Car plug model. */
|
|
797
797
|
export type CarPlug = {
|
|
798
|
-
/** Plug type, known as connector standard in OCPI */
|
|
798
|
+
/** Plug type, known as connector standard in OCPI. */
|
|
799
799
|
standard?: Maybe<ConnectorType>;
|
|
800
|
-
/** Usable electric power in kW */
|
|
800
|
+
/** Usable electric power in kW. */
|
|
801
801
|
power?: Maybe<Scalars["Float"]>;
|
|
802
|
-
/** Maximum electric power in kW */
|
|
802
|
+
/** Maximum electric power in kW. */
|
|
803
803
|
max_electric_power?: Maybe<Scalars["Float"]>;
|
|
804
|
-
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
|
|
804
|
+
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */
|
|
805
805
|
time?: Maybe<Scalars["Int"]>;
|
|
806
|
-
/** Charging speed in km/h */
|
|
806
|
+
/** Charging speed in km/h. */
|
|
807
807
|
speed?: Maybe<Scalars["Int"]>;
|
|
808
808
|
};
|
|
809
809
|
|
|
810
|
-
/** The output element of the carPremium query */
|
|
810
|
+
/** The output element of the carPremium query. */
|
|
811
811
|
export type CarPremium = {
|
|
812
|
-
/** Unique ID of a car */
|
|
812
|
+
/** Unique ID of a car. */
|
|
813
813
|
id?: Maybe<Scalars["ID"]>;
|
|
814
|
-
/** Internal ID of the successor car trim */
|
|
814
|
+
/** Internal ID of the successor car trim. */
|
|
815
815
|
succesor_id?: Maybe<Scalars["String"]>;
|
|
816
|
-
/** Naming of a car */
|
|
816
|
+
/** Naming of a car. */
|
|
817
817
|
naming?: Maybe<CarPremiumNaming>;
|
|
818
|
-
/** Connectors available for a car */
|
|
818
|
+
/** Connectors available for a car. */
|
|
819
819
|
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
820
|
-
/** Charge details */
|
|
820
|
+
/** Charge details. */
|
|
821
821
|
charge?: Maybe<CarPremiumCharge>;
|
|
822
|
-
/** Fast charge details */
|
|
822
|
+
/** Fast charge details. */
|
|
823
823
|
fast_charge?: Maybe<CarPremiumFastCharge>;
|
|
824
|
-
/** Adapters of connectors available for a car */
|
|
824
|
+
/** Adapters of connectors available for a car. */
|
|
825
825
|
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
826
|
-
/** Battery of a car */
|
|
826
|
+
/** Battery of a car. */
|
|
827
827
|
battery?: Maybe<CarPremiumBattery>;
|
|
828
|
-
/** Body of a car */
|
|
828
|
+
/** Body of a car. */
|
|
829
829
|
body?: Maybe<CarPremiumBody>;
|
|
830
|
-
/** Availability of a car */
|
|
830
|
+
/** Availability of a car. */
|
|
831
831
|
availability?: Maybe<CarPremiumAvailability>;
|
|
832
|
-
/** Pricing of a car */
|
|
832
|
+
/** Pricing of a car. */
|
|
833
833
|
price?: Maybe<CarPremiumPrice>;
|
|
834
|
-
/** Drivetrain of a car */
|
|
834
|
+
/** Drivetrain of a car. */
|
|
835
835
|
drivetrain?: Maybe<CarPremiumDrivetrain>;
|
|
836
|
-
/** Performance of a car */
|
|
836
|
+
/** Performance of a car. */
|
|
837
837
|
performance?: Maybe<CarPremiumPerformance>;
|
|
838
|
-
/** Range of a car */
|
|
838
|
+
/** Range of a car. */
|
|
839
839
|
range?: Maybe<CarPremiumRange>;
|
|
840
|
-
/** Efficiency of a car */
|
|
840
|
+
/** Efficiency of a car. */
|
|
841
841
|
efficiency?: Maybe<CarPremiumEfficiency>;
|
|
842
|
-
/** Safety of a car */
|
|
842
|
+
/** Safety of a car. */
|
|
843
843
|
safety?: Maybe<CarPremiumSafety>;
|
|
844
|
-
/** Media of a car */
|
|
844
|
+
/** Media of a car. */
|
|
845
845
|
media?: Maybe<CarPremiumMedia>;
|
|
846
|
-
/** Routing of a car */
|
|
846
|
+
/** Routing of a car. */
|
|
847
847
|
routing?: Maybe<CarPremiumRouting>;
|
|
848
|
-
/** Information about vehicle connectivity */
|
|
848
|
+
/** Information about vehicle connectivity. */
|
|
849
849
|
connect?: Maybe<Connect>;
|
|
850
850
|
};
|
|
851
851
|
|
|
852
852
|
export type CarPremiumAvailability = {
|
|
853
853
|
/**
|
|
854
|
-
* Availability of car
|
|
854
|
+
* Availability of car.
|
|
855
855
|
*
|
|
856
856
|
* Values:
|
|
857
|
-
* - 0 = Car no longer for sale in any market/region
|
|
858
|
-
* - 1 = Car currently for sale in at least one market/region
|
|
859
|
-
* - 2 = Car expected in market from Date_From (estimated), pre-order open
|
|
860
|
-
* - 3 = Car expected in market from Date_From (estimated), pre-order unknown or not open
|
|
861
|
-
* - 12 = Concept car, nearing production and/or confirmed, pre-order open
|
|
862
|
-
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open
|
|
863
|
-
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open
|
|
864
|
-
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown
|
|
865
|
-
* - 91 = Status uncertain, introduction date and/or pricing unclear
|
|
857
|
+
* - 0 = Car no longer for sale in any market/region.
|
|
858
|
+
* - 1 = Car currently for sale in at least one market/region.
|
|
859
|
+
* - 2 = Car expected in market from Date_From (estimated), pre-order open.
|
|
860
|
+
* - 3 = Car expected in market from Date_From (estimated), pre-order unknown or not open.
|
|
861
|
+
* - 12 = Concept car, nearing production and/or confirmed, pre-order open.
|
|
862
|
+
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
|
|
863
|
+
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
|
|
864
|
+
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
|
|
865
|
+
* - 91 = Status uncertain, introduction date and/or pricing unclear.
|
|
866
866
|
*/
|
|
867
867
|
status?: Maybe<Scalars["Int"]>;
|
|
868
|
-
/** Date of introduction, mm-yyyy */
|
|
868
|
+
/** Date of introduction, mm-yyyy. */
|
|
869
869
|
date_from?: Maybe<Scalars["String"]>;
|
|
870
|
-
/** Indicates if date from field is estimated */
|
|
870
|
+
/** Indicates if date from field is estimated. */
|
|
871
871
|
date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
872
|
-
/** Date last available, mm-yyyy */
|
|
872
|
+
/** Date last available, mm-yyyy. */
|
|
873
873
|
date_to?: Maybe<Scalars["String"]>;
|
|
874
874
|
};
|
|
875
875
|
|
|
876
876
|
export type CarPremiumBattery = {
|
|
877
|
-
/** Usable battery capacity in kWh */
|
|
877
|
+
/** Usable battery capacity in kWh. */
|
|
878
878
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
879
|
-
/** Full battery capacity in kWh */
|
|
879
|
+
/** Full battery capacity in kWh. */
|
|
880
880
|
full_kwh?: Maybe<Scalars["Float"]>;
|
|
881
|
-
/** Indicates which battery fields are estimated */
|
|
881
|
+
/** Indicates which battery fields are estimated. */
|
|
882
882
|
estimated_fields?: Maybe<CarBatteryFieldEstimations>;
|
|
883
|
-
/** Battery thermal management system (active/passive, air/liquid) */
|
|
883
|
+
/** Battery thermal management system (active/passive, air/liquid). */
|
|
884
884
|
thermal_management_system?: Maybe<Scalars["String"]>;
|
|
885
|
-
/** Duration of battery warranty */
|
|
885
|
+
/** Duration of battery warranty. */
|
|
886
886
|
warranty_period?: Maybe<Scalars["Float"]>;
|
|
887
|
-
/** Mileage of battery warranty */
|
|
887
|
+
/** Mileage of battery warranty. */
|
|
888
888
|
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
889
889
|
};
|
|
890
890
|
|
|
891
891
|
export type CarPremiumBody = {
|
|
892
|
-
/** Length in mm */
|
|
892
|
+
/** Length in mm. */
|
|
893
893
|
length?: Maybe<Scalars["Int"]>;
|
|
894
|
-
/** Width with folded mirrors in mm */
|
|
894
|
+
/** Width with folded mirrors in mm. */
|
|
895
895
|
width?: Maybe<Scalars["Int"]>;
|
|
896
|
-
/** Width of vehicle in mm, including mirrors */
|
|
896
|
+
/** Width of vehicle in mm, including mirrors. */
|
|
897
897
|
full_width?: Maybe<Scalars["Int"]>;
|
|
898
|
-
/** Height (average height for adjustable suspensions) in mm */
|
|
898
|
+
/** Height (average height for adjustable suspensions) in mm. */
|
|
899
899
|
height?: Maybe<Scalars["Int"]>;
|
|
900
|
-
/** Indicates if length/width/height fields are estimations */
|
|
900
|
+
/** Indicates if length/width/height fields are estimations. */
|
|
901
901
|
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
902
|
-
/** Wheelbase in mm */
|
|
902
|
+
/** Wheelbase in mm. */
|
|
903
903
|
wheelbase?: Maybe<Scalars["Int"]>;
|
|
904
|
-
/** Indicates if wheelbase field is estimated */
|
|
904
|
+
/** Indicates if wheelbase field is estimated. */
|
|
905
905
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
906
|
-
/** Weight (unladen EU) in kg */
|
|
906
|
+
/** Weight (unladen EU) in kg. */
|
|
907
907
|
weight?: Maybe<Scalars["Int"]>;
|
|
908
|
-
/** Indicates if weight field is estimated */
|
|
908
|
+
/** Indicates if weight field is estimated. */
|
|
909
909
|
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
910
|
-
/** Maximum payload allowed for vehicle in kg */
|
|
910
|
+
/** Maximum payload allowed for vehicle in kg. */
|
|
911
911
|
weight_max_payload?: Maybe<Scalars["Int"]>;
|
|
912
|
-
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload) in kg */
|
|
912
|
+
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload) in kg. */
|
|
913
913
|
max_gross_vehicle_weight?: Maybe<Scalars["Int"]>;
|
|
914
|
-
/** Standard luggage capacity in l */
|
|
914
|
+
/** Standard luggage capacity in l. */
|
|
915
915
|
boot_capacity?: Maybe<Scalars["Int"]>;
|
|
916
|
-
/** Storage capacity of front trunk/under the hood (frunk) */
|
|
916
|
+
/** Storage capacity of front trunk/under the hood (frunk). */
|
|
917
917
|
boot_front_capacity?: Maybe<Scalars["Int"]>;
|
|
918
|
-
/** Maximum luggage capacity in l */
|
|
918
|
+
/** Maximum luggage capacity in l. */
|
|
919
919
|
boot_capacity_max?: Maybe<Scalars["Int"]>;
|
|
920
|
-
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation */
|
|
920
|
+
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */
|
|
921
921
|
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
922
|
-
/** Maximum unbraked towing weight in kg */
|
|
922
|
+
/** Maximum unbraked towing weight in kg. */
|
|
923
923
|
tow_weight_unbraked?: Maybe<Scalars["Int"]>;
|
|
924
|
-
/** Maximum braked towing weight in kg */
|
|
924
|
+
/** Maximum braked towing weight in kg. */
|
|
925
925
|
tow_weight_braked?: Maybe<Scalars["Int"]>;
|
|
926
|
-
/** Indicates if tow weight fields are estimations */
|
|
926
|
+
/** Indicates if tow weight fields are estimations. */
|
|
927
927
|
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
928
|
-
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation */
|
|
928
|
+
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation. */
|
|
929
929
|
tow_weight_vertical_load?: Maybe<Scalars["Int"]>;
|
|
930
|
-
/** Maximum load on roof of car in kg */
|
|
930
|
+
/** Maximum load on roof of car in kg. */
|
|
931
931
|
roof_load_max?: Maybe<Scalars["Int"]>;
|
|
932
|
-
/** Body type, listed in local naming convention where applicable */
|
|
932
|
+
/** Body type, listed in local naming convention where applicable. */
|
|
933
933
|
body_type?: Maybe<Scalars["String"]>;
|
|
934
|
-
/** Segment, listed in local naming convention where applicable */
|
|
934
|
+
/** Segment, listed in local naming convention where applicable. */
|
|
935
935
|
segment?: Maybe<Scalars["String"]>;
|
|
936
|
-
/** Number of seats */
|
|
936
|
+
/** Number of seats. */
|
|
937
937
|
seats?: Maybe<Scalars["Int"]>;
|
|
938
|
-
/** Indicates whether a car has roof rails as a standard */
|
|
938
|
+
/** Indicates whether a car has roof rails as a standard. */
|
|
939
939
|
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
940
|
-
/** Turning circle of vehicle kerb-to-kerb */
|
|
940
|
+
/** Turning circle of vehicle kerb-to-kerb. */
|
|
941
941
|
turning_circle?: Maybe<Scalars["Float"]>;
|
|
942
|
-
/** Name of vehicle platform used for vehicle (often abbreviated to indicate group platforms) */
|
|
942
|
+
/** Name of vehicle platform used for vehicle (often abbreviated to indicate group platforms). */
|
|
943
943
|
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
944
|
-
/** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform */
|
|
944
|
+
/** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform. */
|
|
945
945
|
vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
946
946
|
/**
|
|
947
|
-
* Indicates whether a car has roof rails as a standard
|
|
947
|
+
* Indicates whether a car has roof rails as a standard.
|
|
948
948
|
* @deprecated In favor of has_roofrails
|
|
949
949
|
*/
|
|
950
950
|
rooftrails?: Maybe<Scalars["Boolean"]>;
|
|
951
951
|
};
|
|
952
952
|
|
|
953
953
|
export type CarPremiumCharge = {
|
|
954
|
-
/** Location of charge port */
|
|
954
|
+
/** Location of charge port. */
|
|
955
955
|
plug?: Maybe<CarPremiumChargePlug>;
|
|
956
|
-
/** Location of second charge port */
|
|
956
|
+
/** Location of second charge port. */
|
|
957
957
|
second_plug?: Maybe<CarPremiumChargeSecondPlug>;
|
|
958
|
-
/** The car standard charge */
|
|
958
|
+
/** The car standard charge. */
|
|
959
959
|
standard?: Maybe<CarPremiumChargeStandardOBC>;
|
|
960
|
-
/** The car alternative charge */
|
|
960
|
+
/** The car alternative charge. */
|
|
961
961
|
alternative?: Maybe<CarPremiumChargeAlternativeOBC>;
|
|
962
|
-
/** The car option charge */
|
|
962
|
+
/** The car option charge. */
|
|
963
963
|
option?: Maybe<CarPremiumChargeOptionOBC>;
|
|
964
964
|
};
|
|
965
965
|
|
|
966
966
|
export type CarPremiumChargeAlternativeOBC = {
|
|
967
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
967
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
968
968
|
power?: Maybe<Scalars["Float"]>;
|
|
969
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
969
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
970
970
|
phases?: Maybe<Scalars["Int"]>;
|
|
971
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
971
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
972
972
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
973
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
973
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
974
974
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
975
|
-
/** Charging speed when charging at maximum power (standard OBC) */
|
|
975
|
+
/** Charging speed when charging at maximum power (standard OBC). */
|
|
976
976
|
charge_speed?: Maybe<Scalars["Int"]>;
|
|
977
|
-
/** Charging details for the standard OBC at several charging points */
|
|
977
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
978
978
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
979
979
|
};
|
|
980
980
|
|
|
981
981
|
export type CarPremiumChargeOBCTable = {
|
|
982
|
-
/** Voltage between phase and neutral for this EVSE (phase voltage) */
|
|
982
|
+
/** Voltage between phase and neutral for this EVSE (phase voltage). */
|
|
983
983
|
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
984
|
-
/** Current per phase for this EVSE (phase current) */
|
|
984
|
+
/** Current per phase for this EVSE (phase current). */
|
|
985
985
|
evse_phase_amperage?: Maybe<Scalars["Int"]>;
|
|
986
|
-
/** Number of phases for this EVSE */
|
|
986
|
+
/** Number of phases for this EVSE. */
|
|
987
987
|
evse_phases?: Maybe<Scalars["Int"]>;
|
|
988
|
-
/** Voltage between phase and neutral used by standard OBC (phase voltage) */
|
|
988
|
+
/** Voltage between phase and neutral used by standard OBC (phase voltage). */
|
|
989
989
|
charge_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
990
|
-
/** Current per phase used by standard OBC (phase current) */
|
|
990
|
+
/** Current per phase used by standard OBC (phase current). */
|
|
991
991
|
charge_phase_amperage?: Maybe<Scalars["Float"]>;
|
|
992
|
-
/** Number of phases used by standard OBC */
|
|
992
|
+
/** Number of phases used by standard OBC. */
|
|
993
993
|
charge_phases?: Maybe<Scalars["Int"]>;
|
|
994
|
-
/** Power used by standard OBC (before OBC losses) */
|
|
994
|
+
/** Power used by standard OBC (before OBC losses). */
|
|
995
995
|
charge_power?: Maybe<Scalars["Float"]>;
|
|
996
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE) */
|
|
996
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */
|
|
997
997
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
998
|
-
/** Charging speed when charging at maximum power (standard OBC with this EVSE) */
|
|
998
|
+
/** Charging speed when charging at maximum power (standard OBC with this EVSE). */
|
|
999
999
|
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1000
1000
|
};
|
|
1001
1001
|
|
|
1002
1002
|
export type CarPremiumChargeOptionOBC = {
|
|
1003
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
1003
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
1004
1004
|
power?: Maybe<Scalars["Float"]>;
|
|
1005
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
1005
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
1006
1006
|
phases?: Maybe<Scalars["Int"]>;
|
|
1007
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
1007
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
1008
1008
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
1009
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
1009
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
1010
1010
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
1011
|
-
/** Charging speed when charging at maximum power (standard OBC) */
|
|
1011
|
+
/** Charging speed when charging at maximum power (standard OBC). */
|
|
1012
1012
|
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1013
|
-
/** Charging details for the standard OBC at several charging points */
|
|
1013
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
1014
1014
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
1015
1015
|
};
|
|
1016
1016
|
|
|
1017
1017
|
export type CarPremiumChargePlug = {
|
|
1018
|
-
/** Type of charge port on vehicle */
|
|
1018
|
+
/** Type of charge port on vehicle. */
|
|
1019
1019
|
value?: Maybe<ConnectorType>;
|
|
1020
|
-
/** Indicates if value is an estimate */
|
|
1020
|
+
/** Indicates if value is an estimate. */
|
|
1021
1021
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1022
|
-
/** Location of charge port */
|
|
1022
|
+
/** Location of charge port. */
|
|
1023
1023
|
location?: Maybe<Scalars["String"]>;
|
|
1024
1024
|
};
|
|
1025
1025
|
|
|
1026
1026
|
export type CarPremiumChargePower = {
|
|
1027
|
-
/** Maximum value */
|
|
1027
|
+
/** Maximum value. */
|
|
1028
1028
|
max?: Maybe<Scalars["Float"]>;
|
|
1029
|
-
/** Average value */
|
|
1029
|
+
/** Average value. */
|
|
1030
1030
|
average?: Maybe<Scalars["Float"]>;
|
|
1031
1031
|
};
|
|
1032
1032
|
|
|
1033
1033
|
export type CarPremiumChargeSecondPlug = {
|
|
1034
|
-
/** Location of charge port */
|
|
1034
|
+
/** Location of charge port. */
|
|
1035
1035
|
location?: Maybe<Scalars["String"]>;
|
|
1036
|
-
/** Indicates if second charge port is optional */
|
|
1036
|
+
/** Indicates if second charge port is optional. */
|
|
1037
1037
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
1038
1038
|
};
|
|
1039
1039
|
|
|
1040
1040
|
export type CarPremiumChargeStandardOBC = {
|
|
1041
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
1041
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
1042
1042
|
power?: Maybe<Scalars["Float"]>;
|
|
1043
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
1043
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
1044
1044
|
phases?: Maybe<Scalars["Int"]>;
|
|
1045
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
1045
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
1046
1046
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
1047
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
1047
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
1048
1048
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
1049
|
-
/** Charging speed when charging at maximum power (standard OBC) */
|
|
1049
|
+
/** Charging speed when charging at maximum power (standard OBC). */
|
|
1050
1050
|
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1051
|
-
/** Indicates if Charge_Standard fields are estimated */
|
|
1051
|
+
/** Indicates if Charge_Standard fields are estimated. */
|
|
1052
1052
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1053
|
-
/** Charging details for the standard OBC at several charging points */
|
|
1053
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
1054
1054
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
1055
1055
|
};
|
|
1056
1056
|
|
|
1057
1057
|
export type CarPremiumDrivetrain = {
|
|
1058
|
-
/** Type of drivetrain */
|
|
1058
|
+
/** Type of drivetrain. */
|
|
1059
1059
|
type?: Maybe<CarDrivetrain>;
|
|
1060
|
-
/** Fuel type */
|
|
1060
|
+
/** Fuel type. */
|
|
1061
1061
|
fuel?: Maybe<CarFuel>;
|
|
1062
|
-
/** Propulsion type */
|
|
1062
|
+
/** Propulsion type. */
|
|
1063
1063
|
propulsion?: Maybe<CarPropulsion>;
|
|
1064
|
-
/** Indicates if propulsion field is estimated */
|
|
1064
|
+
/** Indicates if propulsion field is estimated. */
|
|
1065
1065
|
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1066
|
-
/** Maximum (combined) power output in kw */
|
|
1066
|
+
/** Maximum (combined) power output in kw. */
|
|
1067
1067
|
power?: Maybe<Scalars["Int"]>;
|
|
1068
|
-
/** Indicates if power field is estimated */
|
|
1068
|
+
/** Indicates if power field is estimated. */
|
|
1069
1069
|
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1070
|
-
/** Maximum (combined) power output in horsepower (PS) */
|
|
1070
|
+
/** Maximum (combined) power output in horsepower (PS). */
|
|
1071
1071
|
power_hp?: Maybe<Scalars["Int"]>;
|
|
1072
|
-
/** Maximum (combined) torque output in newton meter */
|
|
1072
|
+
/** Maximum (combined) torque output in newton meter. */
|
|
1073
1073
|
torque?: Maybe<Scalars["Int"]>;
|
|
1074
|
-
/** Indicates if torque field is estimated */
|
|
1074
|
+
/** Indicates if torque field is estimated. */
|
|
1075
1075
|
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1076
1076
|
};
|
|
1077
1077
|
|
|
1078
1078
|
export type CarPremiumEfficiency = {
|
|
1079
|
-
/** Rated efficiency in WLTP combined cycle */
|
|
1079
|
+
/** Rated efficiency in WLTP combined cycle. */
|
|
1080
1080
|
wltp?: Maybe<CarPremiumEfficiencyWLTP>;
|
|
1081
|
-
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
|
|
1081
|
+
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */
|
|
1082
1082
|
wltp_teh?: Maybe<CarPremiumEfficiencyWLTPTEH>;
|
|
1083
|
-
/** Rated efficiency in NEDC combined cycle */
|
|
1083
|
+
/** Rated efficiency in NEDC combined cycle. */
|
|
1084
1084
|
nedc?: Maybe<CarPremiumEfficiencyNEDC>;
|
|
1085
|
-
/** Car efficiency based on RealRange */
|
|
1085
|
+
/** Car efficiency based on RealRange. */
|
|
1086
1086
|
real?: Maybe<CarPremiumEfficiencyReal>;
|
|
1087
1087
|
};
|
|
1088
1088
|
|
|
1089
1089
|
export type CarPremiumEfficiencyNEDC = {
|
|
1090
|
-
/** Rated efficiency in NEDC combined cycle in kWh/100 km */
|
|
1090
|
+
/** Rated efficiency in NEDC combined cycle in kWh/100 km. */
|
|
1091
1091
|
value?: Maybe<Scalars["Float"]>;
|
|
1092
|
-
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, in l/100 km */
|
|
1092
|
+
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, in l/100 km. */
|
|
1093
1093
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1094
|
-
/** Rated vehicle efficiency in NEDC combined cycle (based on value) in kWh/100 km */
|
|
1094
|
+
/** Rated vehicle efficiency in NEDC combined cycle (based on value) in kWh/100 km. */
|
|
1095
1095
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
1096
|
-
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent in l/100 km */
|
|
1096
|
+
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent in l/100 km. */
|
|
1097
1097
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1098
|
-
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated) in gr/km */
|
|
1098
|
+
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated) in gr/km. */
|
|
1099
1099
|
co2?: Maybe<Scalars["Int"]>;
|
|
1100
1100
|
};
|
|
1101
1101
|
|
|
1102
1102
|
export type CarPremiumEfficiencyReal = {
|
|
1103
|
-
/** Car efficiency based on RealRange (useable battery/range) in kWh/100 km */
|
|
1103
|
+
/** Car efficiency based on RealRange (useable battery/range) in kWh/100 km. */
|
|
1104
1104
|
value?: Maybe<Scalars["Float"]>;
|
|
1105
|
-
/** Car efficiency based on RealRange presented in gas equivalent, in l/100 km */
|
|
1105
|
+
/** Car efficiency based on RealRange presented in gas equivalent, in l/100 km. */
|
|
1106
1106
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1107
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
1107
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
1108
1108
|
worst?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
1109
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
1109
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1110
1110
|
best?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
1111
1111
|
};
|
|
1112
1112
|
|
|
1113
1113
|
export type CarPremiumEfficiencyRealValue = {
|
|
1114
|
-
/** Estimated value on highway or express roads */
|
|
1114
|
+
/** Estimated value on highway or express roads. */
|
|
1115
1115
|
highway?: Maybe<Scalars["Float"]>;
|
|
1116
|
-
/** Estimated value on city roads */
|
|
1116
|
+
/** Estimated value on city roads. */
|
|
1117
1117
|
city?: Maybe<Scalars["Float"]>;
|
|
1118
|
-
/** Estimated combined value */
|
|
1118
|
+
/** Estimated combined value. */
|
|
1119
1119
|
combined?: Maybe<Scalars["Float"]>;
|
|
1120
1120
|
};
|
|
1121
1121
|
|
|
1122
1122
|
export type CarPremiumEfficiencyWLTP = {
|
|
1123
|
-
/** Rated efficiency in WLTP combined cycle in kWh/100 km */
|
|
1123
|
+
/** Rated efficiency in WLTP combined cycle in kWh/100 km. */
|
|
1124
1124
|
value?: Maybe<Scalars["Float"]>;
|
|
1125
|
-
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km */
|
|
1125
|
+
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km. */
|
|
1126
1126
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1127
|
-
/** Rated vehicle efficiency in WLTP combined cycle (based on value) in kWh/100 km */
|
|
1127
|
+
/** Rated vehicle efficiency in WLTP combined cycle (based on value) in kWh/100 km. */
|
|
1128
1128
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
1129
|
-
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km */
|
|
1129
|
+
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km. */
|
|
1130
1130
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1131
|
-
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated) in gr/km */
|
|
1131
|
+
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated) in gr/km. */
|
|
1132
1132
|
co2?: Maybe<Scalars["Int"]>;
|
|
1133
1133
|
};
|
|
1134
1134
|
|
|
1135
1135
|
export type CarPremiumEfficiencyWLTPTEH = {
|
|
1136
|
-
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
|
|
1136
|
+
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
|
|
1137
1137
|
value?: Maybe<Scalars["Float"]>;
|
|
1138
|
-
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km */
|
|
1138
|
+
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km. */
|
|
1139
1139
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1140
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value) in kWh/100 km */
|
|
1140
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value) in kWh/100 km. */
|
|
1141
1141
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
1142
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km */
|
|
1142
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km. */
|
|
1143
1143
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1144
|
-
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated) in gr/km */
|
|
1144
|
+
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated) in gr/km. */
|
|
1145
1145
|
co2?: Maybe<Scalars["Int"]>;
|
|
1146
1146
|
};
|
|
1147
1147
|
|
|
1148
1148
|
export type CarPremiumFastCharge = {
|
|
1149
|
-
/** Location of charge port */
|
|
1149
|
+
/** Location of charge port. */
|
|
1150
1150
|
plug?: Maybe<CarPremiumChargePlug>;
|
|
1151
|
-
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
|
|
1151
|
+
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger). */
|
|
1152
1152
|
power?: Maybe<CarPremiumChargePower>;
|
|
1153
|
-
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
|
|
1153
|
+
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */
|
|
1154
1154
|
charge_time?: Maybe<Scalars["Float"]>;
|
|
1155
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger) */
|
|
1155
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger). */
|
|
1156
1156
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
1157
|
-
/** Indicates if fast charge is optional in some markets/regions */
|
|
1157
|
+
/** Indicates if fast charge is optional in some markets/regions. */
|
|
1158
1158
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
1159
|
-
/** Indicates what fields are estimated */
|
|
1159
|
+
/** Indicates what fields are estimated. */
|
|
1160
1160
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1161
|
-
/** Charging details for fast charging */
|
|
1161
|
+
/** Charging details for fast charging. */
|
|
1162
1162
|
table?: Maybe<Array<Maybe<CarPremiumFastChargeTable>>>;
|
|
1163
1163
|
};
|
|
1164
1164
|
|
|
1165
1165
|
export type CarPremiumFastChargeTable = {
|
|
1166
|
-
/** Charging details for fast charging (format: ChargerPlug-ChargerPower-AC/DC) */
|
|
1166
|
+
/** Charging details for fast charging (format: ChargerPlug-ChargerPower-AC/DC). */
|
|
1167
1167
|
format?: Maybe<Scalars["String"]>;
|
|
1168
|
-
/** Fast charge power */
|
|
1168
|
+
/** Fast charge power. */
|
|
1169
1169
|
power?: Maybe<CarPremiumChargePower>;
|
|
1170
|
-
/** Minutes needed to charge from 10% to 80% (optimal conditions) */
|
|
1170
|
+
/** Minutes needed to charge from 10% to 80% (optimal conditions). */
|
|
1171
1171
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
1172
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions) */
|
|
1172
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions). */
|
|
1173
1173
|
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1174
|
-
/** Indicates if maximum power during fast charging is limited by the vehicle */
|
|
1174
|
+
/** Indicates if maximum power during fast charging is limited by the vehicle. */
|
|
1175
1175
|
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1176
|
-
/** Indicates if average power during fast charging is limited by the vehicle */
|
|
1176
|
+
/** Indicates if average power during fast charging is limited by the vehicle. */
|
|
1177
1177
|
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1178
1178
|
};
|
|
1179
1179
|
|
|
1180
1180
|
export type CarPremiumMedia = {
|
|
1181
|
-
/** URL to detail page on EV database */
|
|
1181
|
+
/** URL to detail page on EV database. */
|
|
1182
1182
|
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
1183
|
-
/** Latest image */
|
|
1183
|
+
/** Latest image. */
|
|
1184
1184
|
image?: Maybe<CarImage>;
|
|
1185
|
-
/** Latest
|
|
1185
|
+
/** Latest make logo. */
|
|
1186
1186
|
brand?: Maybe<CarImage>;
|
|
1187
|
-
/** All images */
|
|
1187
|
+
/** All images. */
|
|
1188
1188
|
image_list?: Maybe<Array<Maybe<CarImage>>>;
|
|
1189
|
-
/** Latest video */
|
|
1189
|
+
/** Latest video. */
|
|
1190
1190
|
video?: Maybe<CarVideo>;
|
|
1191
|
-
/** All videos */
|
|
1191
|
+
/** All videos. */
|
|
1192
1192
|
video_list?: Maybe<Array<Maybe<CarVideo>>>;
|
|
1193
1193
|
/**
|
|
1194
|
-
* URL to detail page on EV database
|
|
1194
|
+
* URL to detail page on EV database.
|
|
1195
1195
|
* @deprecated Will be removed in the future. Please use evdb_details_url
|
|
1196
1196
|
*/
|
|
1197
1197
|
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
1198
1198
|
};
|
|
1199
1199
|
|
|
1200
1200
|
export type CarPremiumNaming = {
|
|
1201
|
-
/** Car manufacturer name */
|
|
1201
|
+
/** Car manufacturer name. */
|
|
1202
1202
|
make?: Maybe<Scalars["String"]>;
|
|
1203
|
-
/** Car model name */
|
|
1203
|
+
/** Car model name. */
|
|
1204
1204
|
model?: Maybe<Scalars["String"]>;
|
|
1205
|
-
/** Version, edition or submodel of car */
|
|
1205
|
+
/** Version, edition or submodel of car. */
|
|
1206
1206
|
version?: Maybe<Scalars["String"]>;
|
|
1207
|
-
/** Another submodel level of car */
|
|
1207
|
+
/** Another submodel level of car. */
|
|
1208
1208
|
edition?: Maybe<Scalars["String"]>;
|
|
1209
|
-
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years */
|
|
1209
|
+
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years. */
|
|
1210
1210
|
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
1211
1211
|
};
|
|
1212
1212
|
|
|
1213
1213
|
export type CarPremiumPerformance = {
|
|
1214
|
-
/** Acceleration 0-100 km/h in seconds */
|
|
1214
|
+
/** Acceleration 0-100 km/h in seconds. */
|
|
1215
1215
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
1216
|
-
/** Indicates if acceleration field is estimated */
|
|
1216
|
+
/** Indicates if acceleration field is estimated. */
|
|
1217
1217
|
acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1218
|
-
/** Top speed of car in km/h */
|
|
1218
|
+
/** Top speed of car in km/h. */
|
|
1219
1219
|
top_speed?: Maybe<Scalars["Int"]>;
|
|
1220
|
-
/** Indicates if top_speed field is estimated */
|
|
1220
|
+
/** Indicates if top_speed field is estimated. */
|
|
1221
1221
|
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1222
1222
|
};
|
|
1223
1223
|
|
|
1224
1224
|
export type CarPremiumPrice = {
|
|
1225
|
-
/** Starting price for German market */
|
|
1225
|
+
/** Starting price for German market. */
|
|
1226
1226
|
de?: Maybe<CarPremiumPriceValue>;
|
|
1227
|
-
/** Starting price for Dutch market */
|
|
1227
|
+
/** Starting price for Dutch market. */
|
|
1228
1228
|
nl?: Maybe<CarPremiumPriceValue>;
|
|
1229
|
-
/** Starting price for British market */
|
|
1229
|
+
/** Starting price for British market. */
|
|
1230
1230
|
uk?: Maybe<CarPremiumPriceValueWithGrant>;
|
|
1231
1231
|
};
|
|
1232
1232
|
|
|
1233
1233
|
export type CarPremiumPriceValue = {
|
|
1234
|
-
/** Starting price for local market */
|
|
1234
|
+
/** Starting price for local market. */
|
|
1235
1235
|
value?: Maybe<Scalars["Int"]>;
|
|
1236
|
-
/** Currency name for local market */
|
|
1236
|
+
/** Currency name for local market. */
|
|
1237
1237
|
currency?: Maybe<Scalars["String"]>;
|
|
1238
|
-
/** Indicates if price value is based on estimates */
|
|
1238
|
+
/** Indicates if price value is based on estimates. */
|
|
1239
1239
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1240
1240
|
/**
|
|
1241
|
-
* Indicates if price value is based on estimates
|
|
1241
|
+
* Indicates if price value is based on estimates.
|
|
1242
1242
|
* @deprecated In favor of is_estimated
|
|
1243
1243
|
*/
|
|
1244
1244
|
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1245
1245
|
};
|
|
1246
1246
|
|
|
1247
1247
|
export type CarPremiumPriceValueWithGrant = {
|
|
1248
|
-
/** Starting price for local market */
|
|
1248
|
+
/** Starting price for local market. */
|
|
1249
1249
|
value?: Maybe<Scalars["Int"]>;
|
|
1250
|
-
/** Currency name for local market */
|
|
1250
|
+
/** Currency name for local market. */
|
|
1251
1251
|
currency?: Maybe<Scalars["String"]>;
|
|
1252
|
-
/** Indicates if price
|
|
1252
|
+
/** Indicates if the starting price is based on an estimate. */
|
|
1253
1253
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1254
|
-
/** Grant is applied to
|
|
1254
|
+
/** Grant that is applied to the starting price. */
|
|
1255
1255
|
grant_applied?: Maybe<Scalars["Int"]>;
|
|
1256
1256
|
/**
|
|
1257
|
-
* Indicates if price value is based on estimates
|
|
1257
|
+
* Indicates if price value is based on estimates.
|
|
1258
1258
|
* @deprecated In favor of is_estimated
|
|
1259
1259
|
*/
|
|
1260
1260
|
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1261
1261
|
};
|
|
1262
1262
|
|
|
1263
1263
|
export type CarPremiumRange = {
|
|
1264
|
-
/** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km */
|
|
1264
|
+
/** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km. */
|
|
1265
1265
|
wltp?: Maybe<Scalars["Int"]>;
|
|
1266
|
-
/** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
|
|
1266
|
+
/** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
|
|
1267
1267
|
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1268
|
-
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
|
|
1268
|
+
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */
|
|
1269
1269
|
wltp_teh?: Maybe<Scalars["Int"]>;
|
|
1270
|
-
/** Rated range in NEDC combined cycle (NULL if not NEDC rated) in km */
|
|
1270
|
+
/** Rated range in NEDC combined cycle (NULL if not NEDC rated) in km. */
|
|
1271
1271
|
nedc?: Maybe<Scalars["Int"]>;
|
|
1272
|
-
/** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
|
|
1272
|
+
/** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
|
|
1273
1273
|
nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1274
|
-
/** Index range in EV Database RealRange model in km */
|
|
1274
|
+
/** Index range in EV Database RealRange model in km. */
|
|
1275
1275
|
real?: Maybe<Scalars["Int"]>;
|
|
1276
|
-
/** Indicates if real is estimated */
|
|
1276
|
+
/** Indicates if real is estimated. */
|
|
1277
1277
|
real_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1278
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
1278
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
1279
1279
|
worst?: Maybe<CarPremiumRangeValue>;
|
|
1280
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
1280
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1281
1281
|
best?: Maybe<CarPremiumRangeValue>;
|
|
1282
1282
|
/** Is an index value of what we consider to be the real-world range. (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display on the front-end. */
|
|
1283
1283
|
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1284
1284
|
};
|
|
1285
1285
|
|
|
1286
1286
|
export type CarPremiumRangeValue = {
|
|
1287
|
-
/** Estimated value on highway or express roads */
|
|
1287
|
+
/** Estimated value on highway or express roads. */
|
|
1288
1288
|
highway?: Maybe<Scalars["Int"]>;
|
|
1289
|
-
/** Estimated value on city roads */
|
|
1289
|
+
/** Estimated value on city roads. */
|
|
1290
1290
|
city?: Maybe<Scalars["Int"]>;
|
|
1291
|
-
/** Estimated combined value */
|
|
1291
|
+
/** Estimated combined value. */
|
|
1292
1292
|
combined?: Maybe<Scalars["Int"]>;
|
|
1293
1293
|
};
|
|
1294
1294
|
|
|
1295
1295
|
export type CarPremiumRouting = {
|
|
1296
|
-
/** Cars that support fast charging have a minimum charging speed of 43 kWh */
|
|
1296
|
+
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
1297
1297
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
1298
|
-
/** Drag coefficient */
|
|
1298
|
+
/** Drag coefficient. */
|
|
1299
1299
|
drag_coefficient?: Maybe<Scalars["Float"]>;
|
|
1300
|
-
/** Tire pressure recommended by manufacturer */
|
|
1300
|
+
/** Tire pressure recommended by manufacturer. */
|
|
1301
1301
|
tire_pressure?: Maybe<Scalars["Float"]>;
|
|
1302
|
-
/** Extra consumption model */
|
|
1302
|
+
/** Extra consumption model. */
|
|
1303
1303
|
consumption?: Maybe<CarPremiumRoutingConsumption>;
|
|
1304
|
-
/** Amount of petrol that an equivalent petrol car would consume in l/100 km */
|
|
1304
|
+
/** Amount of petrol that an equivalent petrol car would consume in l/100 km. */
|
|
1305
1305
|
petrol_consumption?: Maybe<Scalars["Float"]>;
|
|
1306
1306
|
};
|
|
1307
1307
|
|
|
1308
1308
|
export type CarPremiumRoutingConsumption = {
|
|
1309
|
-
/** Consumption, in kWh, of the auxiliaries */
|
|
1309
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
1310
1310
|
aux?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
1311
|
-
/** Consumption, in kWh, of the battery management system */
|
|
1311
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
1312
1312
|
bms?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
1313
|
-
/** Consumption, in kWh, of the car in idle mode */
|
|
1313
|
+
/** Consumption, in kWh, of the car in idle mode. */
|
|
1314
1314
|
idle?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
1315
1315
|
};
|
|
1316
1316
|
|
|
1317
1317
|
export type CarPremiumRoutingConsumptionValue = {
|
|
1318
|
-
/** Best (lowest) consumption in summer */
|
|
1318
|
+
/** Best (lowest) consumption in summer. */
|
|
1319
1319
|
best?: Maybe<Scalars["Float"]>;
|
|
1320
|
-
/** Best (lowest) consumption in winter */
|
|
1320
|
+
/** Best (lowest) consumption in winter. */
|
|
1321
1321
|
worst?: Maybe<Scalars["Float"]>;
|
|
1322
1322
|
};
|
|
1323
1323
|
|
|
1324
1324
|
export type CarPremiumSafety = {
|
|
1325
|
-
/** Number of seats equipped with ISOFIX */
|
|
1325
|
+
/** Number of seats equipped with ISOFIX. */
|
|
1326
1326
|
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
1327
|
-
/** EuroNCAP results */
|
|
1327
|
+
/** EuroNCAP results. */
|
|
1328
1328
|
euro_ncap?: Maybe<CarPremiumSafetyEuroNcap>;
|
|
1329
1329
|
};
|
|
1330
1330
|
|
|
1331
1331
|
export type CarPremiumSafetyEuroNcap = {
|
|
1332
|
-
/** EuroNCAP rating (out of 5 stars) */
|
|
1332
|
+
/** EuroNCAP rating (out of 5 stars). */
|
|
1333
1333
|
rating?: Maybe<Scalars["Int"]>;
|
|
1334
|
-
/** EuroNCAP year of rating */
|
|
1334
|
+
/** EuroNCAP year of rating. */
|
|
1335
1335
|
year?: Maybe<Scalars["Int"]>;
|
|
1336
|
-
/** EuroNCAP rating of adult protection (out of 100%) */
|
|
1336
|
+
/** EuroNCAP rating of adult protection (out of 100%). */
|
|
1337
1337
|
adult?: Maybe<Scalars["Int"]>;
|
|
1338
|
-
/** EuroNCAP rating of child protection (out of 100%) */
|
|
1338
|
+
/** EuroNCAP rating of child protection (out of 100%). */
|
|
1339
1339
|
child?: Maybe<Scalars["Int"]>;
|
|
1340
|
-
/** EuroNCAP rating of vulnerable road users (out of 100%) */
|
|
1340
|
+
/** EuroNCAP rating of vulnerable road users (out of 100%). */
|
|
1341
1341
|
vru?: Maybe<Scalars["Int"]>;
|
|
1342
|
-
/** EuroNCAP rating of safety assists (out of 100%) */
|
|
1342
|
+
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
1343
1343
|
sa?: Maybe<Scalars["Int"]>;
|
|
1344
1344
|
};
|
|
1345
1345
|
|
|
1346
|
-
/** Propulsion */
|
|
1346
|
+
/** Propulsion. */
|
|
1347
1347
|
export enum CarPropulsion {
|
|
1348
|
-
/** All-wheel drive car */
|
|
1348
|
+
/** All-wheel drive car. */
|
|
1349
1349
|
AWD = "AWD",
|
|
1350
|
-
/** Front-wheel drive car */
|
|
1350
|
+
/** Front-wheel drive car. */
|
|
1351
1351
|
FRONT = "Front",
|
|
1352
|
-
/** Rear-wheel drive car */
|
|
1352
|
+
/** Rear-wheel drive car. */
|
|
1353
1353
|
REAR = "Rear"
|
|
1354
1354
|
}
|
|
1355
1355
|
|
|
1356
1356
|
export type CarRange = {
|
|
1357
|
-
/** Index range in EV Database RealRange model in km */
|
|
1357
|
+
/** Index range in EV Database RealRange model in km. */
|
|
1358
1358
|
real?: Maybe<Scalars["Int"]>;
|
|
1359
|
-
/** Indicates if real is estimated */
|
|
1359
|
+
/** Indicates if real is estimated. */
|
|
1360
1360
|
real_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1361
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
1361
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
1362
1362
|
worst?: Maybe<CarRangeValue>;
|
|
1363
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
1363
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1364
1364
|
best?: Maybe<CarRangeValue>;
|
|
1365
|
-
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
1365
|
+
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data. */
|
|
1366
1366
|
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1367
1367
|
/** @deprecated You will receive null values */
|
|
1368
1368
|
wltp?: Maybe<Scalars["Float"]>;
|
|
1369
1369
|
};
|
|
1370
1370
|
|
|
1371
1371
|
export type CarRangeValue = {
|
|
1372
|
-
/** Estimated value on the highway or express roads */
|
|
1372
|
+
/** Estimated value on the highway or express roads. */
|
|
1373
1373
|
highway?: Maybe<Scalars["Int"]>;
|
|
1374
|
-
/** Estimated value on the cities road */
|
|
1374
|
+
/** Estimated value on the cities road. */
|
|
1375
1375
|
city?: Maybe<Scalars["Int"]>;
|
|
1376
|
-
/** Estimated combined value */
|
|
1376
|
+
/** Estimated combined value. */
|
|
1377
1377
|
combined?: Maybe<Scalars["Int"]>;
|
|
1378
1378
|
};
|
|
1379
1379
|
|
|
1380
1380
|
export type CarRouting = {
|
|
1381
|
-
/** Cars that support fast charging have a minimum charging speed of 43 kWh */
|
|
1381
|
+
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
1382
1382
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
1383
1383
|
};
|
|
1384
1384
|
|
|
1385
|
-
/** Status of a car */
|
|
1385
|
+
/** Status of a car. */
|
|
1386
1386
|
export enum CarStatus {
|
|
1387
|
-
/** Was just imported */
|
|
1387
|
+
/** Was just imported. */
|
|
1388
1388
|
NEW = "new",
|
|
1389
|
-
/** Is being reviewed by a human operator */
|
|
1389
|
+
/** Is being reviewed by a human operator. */
|
|
1390
1390
|
REVIEW = "review",
|
|
1391
|
-
/** Is public and can be used by a customer */
|
|
1391
|
+
/** Is public and can be used by a customer. */
|
|
1392
1392
|
PUBLIC = "public",
|
|
1393
|
-
/** Is removed and can not be used */
|
|
1393
|
+
/** Is removed and can not be used. */
|
|
1394
1394
|
REMOVED = "removed"
|
|
1395
1395
|
}
|
|
1396
1396
|
|
|
1397
1397
|
export type CarVideo = {
|
|
1398
|
-
/** Video id */
|
|
1398
|
+
/** Video id. */
|
|
1399
1399
|
id?: Maybe<Scalars["ID"]>;
|
|
1400
|
-
/** Full path URL of a video */
|
|
1400
|
+
/** Full path URL of a video. */
|
|
1401
1401
|
url?: Maybe<Scalars["String"]>;
|
|
1402
1402
|
};
|
|
1403
1403
|
|
|
1404
|
-
/** Charging mode used at charging stations */
|
|
1404
|
+
/** Charging mode used at charging stations. */
|
|
1405
1405
|
export enum ChargeMode {
|
|
1406
|
-
/** Optimizes the charging time at each station, in order to decrease the total travel time. You will only charge up until the SOC you need in order to reach the next stop */
|
|
1406
|
+
/** Optimizes the charging time at each station, in order to decrease the total travel time. You will only charge up until the SOC you need in order to reach the next stop. */
|
|
1407
1407
|
OPTIMIZE_TRAVEL_TIME = "OPTIMIZE_TRAVEL_TIME",
|
|
1408
|
-
/** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80
|
|
1408
|
+
/** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80%. */
|
|
1409
1409
|
ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE"
|
|
1410
1410
|
}
|
|
1411
1411
|
|
|
1412
1412
|
export type ChargeSpeedInput = {
|
|
1413
|
-
/** Value of the charge speed of the battery */
|
|
1413
|
+
/** Value of the charge speed of the battery. */
|
|
1414
1414
|
value: Scalars["Float"];
|
|
1415
|
-
/** Type of the charge speed of the battery */
|
|
1415
|
+
/** Type of the charge speed of the battery. */
|
|
1416
1416
|
type: ChargeSpeedUnit;
|
|
1417
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
1417
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
1418
1418
|
source?: Maybe<TelemetryInputSource>;
|
|
1419
1419
|
};
|
|
1420
1420
|
|
|
1421
1421
|
export enum ChargeSpeedUnit {
|
|
1422
|
-
/** Return the charge speed in kilowatt hours */
|
|
1422
|
+
/** Return the charge speed in kilowatt hours. */
|
|
1423
1423
|
KILOWATT_HOUR = "kilowatt_hour",
|
|
1424
|
-
/** Return the charge speed in kilometers per hour */
|
|
1424
|
+
/** Return the charge speed in kilometers per hour. */
|
|
1425
1425
|
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
1426
|
-
/** Return the charge speed in miles per hour */
|
|
1426
|
+
/** Return the charge speed in miles per hour. */
|
|
1427
1427
|
MILES_PER_HOUR = "miles_per_hour"
|
|
1428
1428
|
}
|
|
1429
1429
|
|
|
1430
1430
|
export type ChargeTotalInput = {
|
|
1431
|
-
/** Value of the temperature of the battery */
|
|
1431
|
+
/** Value of the temperature of the battery. */
|
|
1432
1432
|
value: Scalars["Float"];
|
|
1433
|
-
/** Type of total charge amount */
|
|
1433
|
+
/** Type of total charge amount. */
|
|
1434
1434
|
type: StateOfChargeUnit;
|
|
1435
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
1435
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
1436
1436
|
source?: Maybe<TelemetryInputSource>;
|
|
1437
1437
|
};
|
|
1438
1438
|
|
|
@@ -1478,19 +1478,19 @@ export type ChargerStatuses = {
|
|
|
1478
1478
|
/**
|
|
1479
1479
|
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
1480
1480
|
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
1481
|
-
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
|
|
1481
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1482
1482
|
*/
|
|
1483
1483
|
export type ChargetripRange = {
|
|
1484
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
1485
|
-
worst?: Maybe<Scalars["
|
|
1486
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
1487
|
-
best?: Maybe<Scalars["
|
|
1484
|
+
/** Range in kilometers. Worst conditions are based on -10°C and use of heating. */
|
|
1485
|
+
worst?: Maybe<Scalars["Int"]>;
|
|
1486
|
+
/** Range in kilometers. Best conditions are based on 23°C and no use of A/C. */
|
|
1487
|
+
best?: Maybe<Scalars["Int"]>;
|
|
1488
1488
|
};
|
|
1489
1489
|
|
|
1490
1490
|
/**
|
|
1491
1491
|
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
1492
1492
|
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
1493
|
-
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
|
|
1493
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1494
1494
|
*/
|
|
1495
1495
|
export type ChargetripRangeworstArgs = {
|
|
1496
1496
|
unit?: Maybe<DistanceUnit>;
|
|
@@ -1499,7 +1499,7 @@ export type ChargetripRangeworstArgs = {
|
|
|
1499
1499
|
/**
|
|
1500
1500
|
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
1501
1501
|
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
1502
|
-
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
|
|
1502
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1503
1503
|
*/
|
|
1504
1504
|
export type ChargetripRangebestArgs = {
|
|
1505
1505
|
unit?: Maybe<DistanceUnit>;
|
|
@@ -1563,7 +1563,7 @@ export type ConnectCharge = {
|
|
|
1563
1563
|
};
|
|
1564
1564
|
|
|
1565
1565
|
export type ConnectFilter = {
|
|
1566
|
-
/** List of connectivity providers to which a vehicle can connect */
|
|
1566
|
+
/** List of connectivity providers to which a vehicle can connect. */
|
|
1567
1567
|
providers?: Maybe<Array<Maybe<ConnectProvider>>>;
|
|
1568
1568
|
};
|
|
1569
1569
|
|
|
@@ -1693,118 +1693,118 @@ export type ConnectorCustomProperties = {
|
|
|
1693
1693
|
|
|
1694
1694
|
/** The socket or plug standard of the charging point. */
|
|
1695
1695
|
export enum ConnectorType {
|
|
1696
|
-
/** The connector type is CHAdeMO, DC */
|
|
1696
|
+
/** The connector type is CHAdeMO, DC. */
|
|
1697
1697
|
CHADEMO = "CHADEMO",
|
|
1698
|
-
/** Standard/domestic household, type "A", NEMA 1-15, 2 pins */
|
|
1698
|
+
/** Standard/domestic household, type "A", NEMA 1-15, 2 pins. */
|
|
1699
1699
|
DOMESTIC_A = "DOMESTIC_A",
|
|
1700
|
-
/** Standard/domestic household, type "B", NEMA 5-15, 3 pins */
|
|
1700
|
+
/** Standard/domestic household, type "B", NEMA 5-15, 3 pins. */
|
|
1701
1701
|
DOMESTIC_B = "DOMESTIC_B",
|
|
1702
|
-
/** Standard/domestic household, type "C", CEE 7/17, 2 pins */
|
|
1702
|
+
/** Standard/domestic household, type "C", CEE 7/17, 2 pins. */
|
|
1703
1703
|
DOMESTIC_C = "DOMESTIC_C",
|
|
1704
|
-
/** Standard/domestic household, type "D", 3 pins */
|
|
1704
|
+
/** Standard/domestic household, type "D", 3 pins. */
|
|
1705
1705
|
DOMESTIC_D = "DOMESTIC_D",
|
|
1706
|
-
/** Standard/domestic household, type "E", CEE 7/5 3 pins */
|
|
1706
|
+
/** Standard/domestic household, type "E", CEE 7/5 3 pins. */
|
|
1707
1707
|
DOMESTIC_E = "DOMESTIC_E",
|
|
1708
|
-
/** Standard/domestic household, type "F", CEE 7/4, Schuko, 3 pins */
|
|
1708
|
+
/** Standard/domestic household, type "F", CEE 7/4, Schuko, 3 pins. */
|
|
1709
1709
|
DOMESTIC_F = "DOMESTIC_F",
|
|
1710
|
-
/** Standard/domestic household, type "G", BS 1363, Commonwealth, 3 pins */
|
|
1710
|
+
/** Standard/domestic household, type "G", BS 1363, Commonwealth, 3 pins. */
|
|
1711
1711
|
DOMESTIC_G = "DOMESTIC_G",
|
|
1712
|
-
/** Standard/domestic household, type "H", SI-32, 3 pins */
|
|
1712
|
+
/** Standard/domestic household, type "H", SI-32, 3 pins. */
|
|
1713
1713
|
DOMESTIC_H = "DOMESTIC_H",
|
|
1714
|
-
/** Standard/domestic household, type "I", AS 3112, 3 pins */
|
|
1714
|
+
/** Standard/domestic household, type "I", AS 3112, 3 pins. */
|
|
1715
1715
|
DOMESTIC_I = "DOMESTIC_I",
|
|
1716
|
-
/** Standard/domestic household, type "J", SEV 1011, 3 pins */
|
|
1716
|
+
/** Standard/domestic household, type "J", SEV 1011, 3 pins. */
|
|
1717
1717
|
DOMESTIC_J = "DOMESTIC_J",
|
|
1718
|
-
/** Standard/domestic household, type "K", DS 60884-2-D1, 3 pins */
|
|
1718
|
+
/** Standard/domestic household, type "K", DS 60884-2-D1, 3 pins. */
|
|
1719
1719
|
DOMESTIC_K = "DOMESTIC_K",
|
|
1720
|
-
/** Standard/domestic household, type "L", CEI 23-16-VII, 3 pins */
|
|
1720
|
+
/** Standard/domestic household, type "L", CEI 23-16-VII, 3 pins. */
|
|
1721
1721
|
DOMESTIC_L = "DOMESTIC_L",
|
|
1722
|
-
/** Standard/Domestic household, type "M", BS 546, 3 pins */
|
|
1722
|
+
/** Standard/Domestic household, type "M", BS 546, 3 pins. */
|
|
1723
1723
|
DOMESTIC_M = "DOMESTIC_M",
|
|
1724
|
-
/** Standard/Domestic household, type "N", NBR 14136, 3 pins */
|
|
1724
|
+
/** Standard/Domestic household, type "N", NBR 14136, 3 pins. */
|
|
1725
1725
|
DOMESTIC_N = "DOMESTIC_N",
|
|
1726
|
-
/** Standard/Domestic household, type "O", TIS 166-2549, 3 pins */
|
|
1726
|
+
/** Standard/Domestic household, type "O", TIS 166-2549, 3 pins. */
|
|
1727
1727
|
DOMESTIC_O = "DOMESTIC_O",
|
|
1728
|
-
/** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue) */
|
|
1728
|
+
/** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue). */
|
|
1729
1729
|
IEC_60309_2_SINGLE_16 = "IEC_60309_2_single_16",
|
|
1730
|
-
/** IEC 60309-2 Industrial connector three phase 16 amperes (usually red) */
|
|
1730
|
+
/** IEC 60309-2 Industrial connector three phase 16 amperes (usually red). */
|
|
1731
1731
|
IEC_60309_2_THREE_16 = "IEC_60309_2_three_16",
|
|
1732
|
-
/** IEC 60309-2 Industrial connector three phase 32 amperes (usually red) */
|
|
1732
|
+
/** IEC 60309-2 Industrial connector three phase 32 amperes (usually red). */
|
|
1733
1733
|
IEC_60309_2_THREE_32 = "IEC_60309_2_three_32",
|
|
1734
|
-
/** IEC 60309-2 Industrial connector three phase 64 amperes (usually red) */
|
|
1734
|
+
/** IEC 60309-2 Industrial connector three phase 64 amperes (usually red). */
|
|
1735
1735
|
IEC_60309_2_THREE_64 = "IEC_60309_2_three_64",
|
|
1736
|
-
/** IEC 62196 Type 1 "SAE J1772" */
|
|
1736
|
+
/** IEC 62196 Type 1 "SAE J1772". */
|
|
1737
1737
|
IEC_62196_T1 = "IEC_62196_T1",
|
|
1738
|
-
/** Combo Type 1 based, DC */
|
|
1738
|
+
/** Combo Type 1 based, DC. */
|
|
1739
1739
|
IEC_62196_T1_COMBO = "IEC_62196_T1_COMBO",
|
|
1740
|
-
/** IEC 62196 Type 2 "Mennekes" */
|
|
1740
|
+
/** IEC 62196 Type 2 "Mennekes". */
|
|
1741
1741
|
IEC_62196_T2 = "IEC_62196_T2",
|
|
1742
|
-
/** Combo Type 2 based, DC */
|
|
1742
|
+
/** Combo Type 2 based, DC. */
|
|
1743
1743
|
IEC_62196_T2_COMBO = "IEC_62196_T2_COMBO",
|
|
1744
|
-
/** IEC 62196 Type 3A */
|
|
1744
|
+
/** IEC 62196 Type 3A. */
|
|
1745
1745
|
IEC_62196_T3A = "IEC_62196_T3A",
|
|
1746
|
-
/** IEC 62196 Type 3C "Scame" */
|
|
1746
|
+
/** IEC 62196 Type 3C "Scame". */
|
|
1747
1747
|
IEC_62196_T3C = "IEC_62196_T3C",
|
|
1748
|
-
/** On-board bottom-up-pantograph typically for bus charging */
|
|
1748
|
+
/** On-board bottom-up-pantograph typically for bus charging. */
|
|
1749
1749
|
PANTOGRAPH_BOTTOM_UP = "PANTOGRAPH_BOTTOM_UP",
|
|
1750
|
-
/** Off-board top-down-pantograph typically for bus charging */
|
|
1750
|
+
/** Off-board top-down-pantograph typically for bus charging. */
|
|
1751
1751
|
PANTOGRAPH_TOP_DOWN = "PANTOGRAPH_TOP_DOWN",
|
|
1752
|
-
/** Tesla connector "Roadster"-type (round, 4 pins) */
|
|
1752
|
+
/** Tesla connector "Roadster"-type (round, 4 pins). */
|
|
1753
1753
|
TESLA_R = "TESLA_R",
|
|
1754
|
-
/** Tesla connector "Model-S"-type (oval, 5 pins) */
|
|
1754
|
+
/** Tesla connector "Model-S"-type (oval, 5 pins). */
|
|
1755
1755
|
TESLA_S = "TESLA_S",
|
|
1756
|
-
/** The connector type is GB_T (Chinese standard), DC */
|
|
1756
|
+
/** The connector type is GB_T (Chinese standard), DC. */
|
|
1757
1757
|
GB_T = "GB_T",
|
|
1758
1758
|
/** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */
|
|
1759
1759
|
CHAOJI = "CHAOJI",
|
|
1760
|
-
/** The connector type is NEMA 5-20, 3 pins */
|
|
1760
|
+
/** The connector type is NEMA 5-20, 3 pins. */
|
|
1761
1761
|
NEMA_5_20 = "NEMA_5_20",
|
|
1762
|
-
/** The connector type is NEMA 6-30, 3 pins */
|
|
1762
|
+
/** The connector type is NEMA 6-30, 3 pins. */
|
|
1763
1763
|
NEMA_6_30 = "NEMA_6_30",
|
|
1764
|
-
/** The connector type is NEMA 6-50, 3 pins */
|
|
1764
|
+
/** The connector type is NEMA 6-50, 3 pins. */
|
|
1765
1765
|
NEMA_6_50 = "NEMA_6_50",
|
|
1766
|
-
/** The connector type is NEMA 10-30, 3 pins */
|
|
1766
|
+
/** The connector type is NEMA 10-30, 3 pins. */
|
|
1767
1767
|
NEMA_10_30 = "NEMA_10_30",
|
|
1768
|
-
/** The connector type is NEMA 10-50, 3 pins */
|
|
1768
|
+
/** The connector type is NEMA 10-50, 3 pins. */
|
|
1769
1769
|
NEMA_10_50 = "NEMA_10_50",
|
|
1770
|
-
/** The connector type is NEMA 14-30, 3 pins, rating of 30 A */
|
|
1770
|
+
/** The connector type is NEMA 14-30, 3 pins, rating of 30 A. */
|
|
1771
1771
|
NEMA_14_30 = "NEMA_14_30",
|
|
1772
|
-
/** The connector type is NEMA 14-50, 3 pins, rating of 50 A */
|
|
1772
|
+
/** The connector type is NEMA 14-50, 3 pins, rating of 50 A. */
|
|
1773
1773
|
NEMA_14_50 = "NEMA_14_50"
|
|
1774
1774
|
}
|
|
1775
1775
|
|
|
1776
1776
|
export enum ConsumptionUnit {
|
|
1777
|
-
/** Return the consumption in kilowatt hours per 100 kilometers */
|
|
1777
|
+
/** Return the consumption in kilowatt hours per 100 kilometers. */
|
|
1778
1778
|
KILOWATT_HOURS_PER_100_KILOMETERS = "kilowatt_hours_per_100_kilometers",
|
|
1779
|
-
/** Return the consumption in watt hours per kilometer */
|
|
1779
|
+
/** Return the consumption in watt hours per kilometer. */
|
|
1780
1780
|
WATT_HOURS_PER_KILOMETER = "watt_hours_per_kilometer",
|
|
1781
|
-
/** Return the consumption in kilometers per kilowatt hour */
|
|
1781
|
+
/** Return the consumption in kilometers per kilowatt hour. */
|
|
1782
1782
|
KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour",
|
|
1783
|
-
/** Return the consumption in kilowatt hours per 100 miles */
|
|
1783
|
+
/** Return the consumption in kilowatt hours per 100 miles. */
|
|
1784
1784
|
KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
|
|
1785
|
-
/** Return the consumption in watt hours per mile */
|
|
1785
|
+
/** Return the consumption in watt hours per mile. */
|
|
1786
1786
|
WATT_HOURS_PER_MILE = "watt_hours_per_mile",
|
|
1787
|
-
/** Return the consumption in miles per kilowatt hour */
|
|
1787
|
+
/** Return the consumption in miles per kilowatt hour. */
|
|
1788
1788
|
MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour"
|
|
1789
1789
|
}
|
|
1790
1790
|
|
|
1791
|
-
/** The complete contact information */
|
|
1791
|
+
/** The complete contact information. */
|
|
1792
1792
|
export type Contact = {
|
|
1793
|
-
/** The phone number in international format */
|
|
1793
|
+
/** The phone number in international format. */
|
|
1794
1794
|
phone?: Maybe<Scalars["String"]>;
|
|
1795
|
-
/** The email address */
|
|
1795
|
+
/** The email address. */
|
|
1796
1796
|
email?: Maybe<Scalars["String"]>;
|
|
1797
|
-
/** The absolute URL of the website */
|
|
1797
|
+
/** The absolute URL of the website. */
|
|
1798
1798
|
website?: Maybe<Scalars["String"]>;
|
|
1799
|
-
/** The absolute URL of the facebook profile page */
|
|
1799
|
+
/** The absolute URL of the facebook profile page. */
|
|
1800
1800
|
facebook?: Maybe<Scalars["String"]>;
|
|
1801
|
-
/** The absolute URL of the twitter profile page */
|
|
1801
|
+
/** The absolute URL of the twitter profile page. */
|
|
1802
1802
|
twitter?: Maybe<Scalars["String"]>;
|
|
1803
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1803
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
1804
1804
|
properties?: Maybe<Scalars["JSON"]>;
|
|
1805
1805
|
};
|
|
1806
1806
|
|
|
1807
|
-
/** ISO-3166 alpha-2 country codes */
|
|
1807
|
+
/** ISO-3166 alpha-2 country codes. */
|
|
1808
1808
|
export enum CountryCodeAlpha2 {
|
|
1809
1809
|
AD = "AD",
|
|
1810
1810
|
AE = "AE",
|
|
@@ -2078,24 +2078,24 @@ export type CreateConnectedVehicleOptions = {
|
|
|
2078
2078
|
scope?: Maybe<Array<ConnectScope>>;
|
|
2079
2079
|
};
|
|
2080
2080
|
|
|
2081
|
-
/** Currency according to the ISO 4217 standard */
|
|
2081
|
+
/** Currency according to the ISO 4217 standard. */
|
|
2082
2082
|
export enum CurrencyUnit {
|
|
2083
|
-
/** Return the currency in EUR */
|
|
2083
|
+
/** Return the currency in EUR. */
|
|
2084
2084
|
EUR = "EUR",
|
|
2085
|
-
/** Return the currency in USD */
|
|
2085
|
+
/** Return the currency in USD. */
|
|
2086
2086
|
USD = "USD",
|
|
2087
|
-
/** Return the currency in GBP */
|
|
2087
|
+
/** Return the currency in GBP. */
|
|
2088
2088
|
GBP = "GBP"
|
|
2089
2089
|
}
|
|
2090
2090
|
|
|
2091
2091
|
export enum DistanceUnit {
|
|
2092
|
-
/** Return the distance in meters */
|
|
2092
|
+
/** Return the distance in meters. */
|
|
2093
2093
|
METER = "meter",
|
|
2094
|
-
/** Return the distance in feet */
|
|
2094
|
+
/** Return the distance in feet. */
|
|
2095
2095
|
FOOT = "foot",
|
|
2096
|
-
/** Return the distance in kilometers */
|
|
2096
|
+
/** Return the distance in kilometers. */
|
|
2097
2097
|
KILOMETER = "kilometer",
|
|
2098
|
-
/** Return the distance in miles */
|
|
2098
|
+
/** Return the distance in miles. */
|
|
2099
2099
|
MILE = "mile"
|
|
2100
2100
|
}
|
|
2101
2101
|
|
|
@@ -2137,32 +2137,32 @@ export type EVSE = {
|
|
|
2137
2137
|
};
|
|
2138
2138
|
|
|
2139
2139
|
export type ElevationInput = {
|
|
2140
|
-
/** Value of the elevation */
|
|
2140
|
+
/** Value of the elevation. */
|
|
2141
2141
|
value: Scalars["Float"];
|
|
2142
|
-
/** Type of the value of elevation */
|
|
2142
|
+
/** Type of the value of elevation. */
|
|
2143
2143
|
type: DistanceUnit;
|
|
2144
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
2144
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
2145
2145
|
source?: Maybe<TelemetryInputSource>;
|
|
2146
2146
|
};
|
|
2147
2147
|
|
|
2148
2148
|
export enum ElevationUnit {
|
|
2149
|
-
/** Return the elevation in meters */
|
|
2149
|
+
/** Return the elevation in meters. */
|
|
2150
2150
|
METER = "meter",
|
|
2151
|
-
/** Return the elevation in feet */
|
|
2151
|
+
/** Return the elevation in feet. */
|
|
2152
2152
|
FOOT = "foot"
|
|
2153
2153
|
}
|
|
2154
2154
|
|
|
2155
2155
|
export enum EmissionRateUnit {
|
|
2156
|
-
/** Return the emission rate in grams per kilometer */
|
|
2156
|
+
/** Return the emission rate in grams per kilometer. */
|
|
2157
2157
|
GRAMS_PER_KILOMETER = "grams_per_kilometer",
|
|
2158
|
-
/** Return the emission rate in ounces per mile */
|
|
2158
|
+
/** Return the emission rate in ounces per mile. */
|
|
2159
2159
|
OUNCES_PER_MILE = "ounces_per_mile"
|
|
2160
2160
|
}
|
|
2161
2161
|
|
|
2162
2162
|
export enum EmissionUnit {
|
|
2163
|
-
/** Return the emission in grams */
|
|
2163
|
+
/** Return the emission in grams. */
|
|
2164
2164
|
GRAM = "gram",
|
|
2165
|
-
/** Return the emission in ounces */
|
|
2165
|
+
/** Return the emission in ounces. */
|
|
2166
2166
|
OUNCE = "ounce"
|
|
2167
2167
|
}
|
|
2168
2168
|
|
|
@@ -2172,77 +2172,77 @@ export type EvseCustomProperties = {
|
|
|
2172
2172
|
oicp?: Maybe<OICPEvseCustomProperties>;
|
|
2173
2173
|
};
|
|
2174
2174
|
|
|
2175
|
-
/** A GeoJSON Feature<LineString
|
|
2175
|
+
/** A GeoJSON Feature<LineString>. */
|
|
2176
2176
|
export type FeatureLineString = {
|
|
2177
|
-
/** Feature type */
|
|
2177
|
+
/** Feature type. */
|
|
2178
2178
|
type: FeatureType;
|
|
2179
|
-
/** Geometry of the feature */
|
|
2179
|
+
/** Geometry of the feature. */
|
|
2180
2180
|
geometry: LineString;
|
|
2181
2181
|
};
|
|
2182
2182
|
|
|
2183
|
-
/** A GeoJSON Feature<MultiPolygon
|
|
2183
|
+
/** A GeoJSON Feature<MultiPolygon>. */
|
|
2184
2184
|
export type FeatureMultiPolygon = {
|
|
2185
|
-
/** Feature type */
|
|
2185
|
+
/** Feature type. */
|
|
2186
2186
|
type: FeatureType;
|
|
2187
|
-
/** Geometry of the feature */
|
|
2187
|
+
/** Geometry of the feature. */
|
|
2188
2188
|
geometry: MultiPolygon;
|
|
2189
|
-
/** Properties of the MultiPolygon Feature */
|
|
2189
|
+
/** Properties of the MultiPolygon Feature. */
|
|
2190
2190
|
properties?: Maybe<PolygonProperties>;
|
|
2191
2191
|
};
|
|
2192
2192
|
|
|
2193
|
-
/** A GeoJSON Feature<Point
|
|
2193
|
+
/** A GeoJSON Feature<Point>. */
|
|
2194
2194
|
export type FeatureMultiPolygonPoint = {
|
|
2195
|
-
/** Feature type */
|
|
2195
|
+
/** Feature type. */
|
|
2196
2196
|
type: FeatureType;
|
|
2197
|
-
/** Geometry of the feature */
|
|
2197
|
+
/** Geometry of the feature. */
|
|
2198
2198
|
geometry: Point;
|
|
2199
2199
|
/** Optional object where you can store custom data you need in your application. */
|
|
2200
2200
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2201
2201
|
};
|
|
2202
2202
|
|
|
2203
|
-
/** A GeoJSON Feature<Point
|
|
2203
|
+
/** A GeoJSON Feature<Point>. */
|
|
2204
2204
|
export type FeaturePoint = {
|
|
2205
|
-
/** Feature ID */
|
|
2205
|
+
/** Feature ID. */
|
|
2206
2206
|
id?: Maybe<Scalars["String"]>;
|
|
2207
|
-
/** Feature type */
|
|
2207
|
+
/** Feature type. */
|
|
2208
2208
|
type: FeatureType;
|
|
2209
|
-
/** Geometry of the feature */
|
|
2209
|
+
/** Geometry of the feature. */
|
|
2210
2210
|
geometry: Point;
|
|
2211
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
2211
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
2212
2212
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2213
2213
|
};
|
|
2214
2214
|
|
|
2215
|
-
/** A GeoJSON Feature<Point> input */
|
|
2215
|
+
/** A GeoJSON Feature<Point> input. */
|
|
2216
2216
|
export type FeaturePointInput = {
|
|
2217
|
-
/** The feature ID */
|
|
2217
|
+
/** The feature ID. */
|
|
2218
2218
|
id?: Maybe<Scalars["String"]>;
|
|
2219
|
-
/** Feature type */
|
|
2219
|
+
/** Feature type. */
|
|
2220
2220
|
type: FeatureType;
|
|
2221
|
-
/** Geometry of the feature */
|
|
2221
|
+
/** Geometry of the feature. */
|
|
2222
2222
|
geometry: PointInput;
|
|
2223
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
2223
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
2224
2224
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2225
2225
|
};
|
|
2226
2226
|
|
|
2227
|
-
/** A GeoJSON Feature<Point> input */
|
|
2227
|
+
/** A GeoJSON Feature<Point> input. */
|
|
2228
2228
|
export type FeaturePointPolygonInput = {
|
|
2229
|
-
/** Feature type */
|
|
2229
|
+
/** Feature type. */
|
|
2230
2230
|
type: FeatureType;
|
|
2231
|
-
/** Geometry of the feature */
|
|
2231
|
+
/** Geometry of the feature. */
|
|
2232
2232
|
geometry: PointInput;
|
|
2233
2233
|
/** Optional object where you can store custom data you need in your application. */
|
|
2234
2234
|
properties?: Maybe<FeaturePointPolygonPropertiesInput>;
|
|
2235
2235
|
};
|
|
2236
2236
|
|
|
2237
|
-
/** Properties for Feature<Point> input */
|
|
2237
|
+
/** Properties for Feature<Point> input. */
|
|
2238
2238
|
export type FeaturePointPolygonProperties = {
|
|
2239
|
-
/** Name of the location */
|
|
2239
|
+
/** Name of the location. */
|
|
2240
2240
|
name?: Maybe<Scalars["String"]>;
|
|
2241
2241
|
};
|
|
2242
2242
|
|
|
2243
|
-
/** Properties for Feature<Point> input */
|
|
2243
|
+
/** Properties for Feature<Point> input. */
|
|
2244
2244
|
export type FeaturePointPolygonPropertiesInput = {
|
|
2245
|
-
/** Name of the location */
|
|
2245
|
+
/** Name of the location. */
|
|
2246
2246
|
name?: Maybe<Scalars["String"]>;
|
|
2247
2247
|
};
|
|
2248
2248
|
|
|
@@ -2252,12 +2252,19 @@ export enum FeatureType {
|
|
|
2252
2252
|
}
|
|
2253
2253
|
|
|
2254
2254
|
export enum FuelConsumptionUnit {
|
|
2255
|
-
/** Return the fuel consumption in liters per 100 kilometers */
|
|
2255
|
+
/** Return the fuel consumption in liters per 100 kilometers. */
|
|
2256
2256
|
LITERS_PER_100_KILOMETERS = "liters_per_100_kilometers",
|
|
2257
|
-
/** Return the fuel consumption in miles per gallon */
|
|
2257
|
+
/** Return the fuel consumption in miles per gallon. */
|
|
2258
2258
|
MILES_PER_GALLON = "miles_per_gallon"
|
|
2259
2259
|
}
|
|
2260
2260
|
|
|
2261
|
+
export enum FuelUnit {
|
|
2262
|
+
/** Return the fuel consumption in liters. */
|
|
2263
|
+
LITER = "liter",
|
|
2264
|
+
/** Return the fuel consumption in US gallon. */
|
|
2265
|
+
GALLON = "gallon"
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2261
2268
|
/** Geometry point with GPS coordinates */
|
|
2262
2269
|
export type GeometryPoint = {
|
|
2263
2270
|
type: PointType;
|
|
@@ -2273,51 +2280,45 @@ export enum InstructionsFormat {
|
|
|
2273
2280
|
}
|
|
2274
2281
|
|
|
2275
2282
|
export type Isoline = {
|
|
2276
|
-
/** Isoline id */
|
|
2283
|
+
/** Isoline id. */
|
|
2277
2284
|
id: Scalars["ID"];
|
|
2278
|
-
/** Isoline status */
|
|
2285
|
+
/** Isoline status. */
|
|
2279
2286
|
status: IsolineStatus;
|
|
2280
|
-
/** Shape of the isoline consisting in a list of multipolygons */
|
|
2287
|
+
/** Shape of the isoline consisting in a list of multipolygons. */
|
|
2281
2288
|
polygons?: Maybe<Array<Maybe<FeatureMultiPolygon>>>;
|
|
2282
|
-
/** List of the ferries uniting islands formed by the isoline */
|
|
2289
|
+
/** List of the ferries uniting islands formed by the isoline. */
|
|
2283
2290
|
ferries?: Maybe<Array<Maybe<FeatureLineString>>>;
|
|
2284
|
-
/**
|
|
2285
|
-
|
|
2286
|
-
/** Vehicle id */
|
|
2287
|
-
vehicle_id: Scalars["ID"];
|
|
2288
|
-
/** Number of Isolines to be generated representing SoC (default: 1, maximum: 20) */
|
|
2289
|
-
polygon_count?: Maybe<Scalars["Int"]>;
|
|
2290
|
-
/** Season to be taken into account when generating the isoline. Default: current */
|
|
2291
|
-
season?: Maybe<RouteSeason>;
|
|
2291
|
+
/** The inputted request data for the isoline used to compute it. */
|
|
2292
|
+
request_input?: Maybe<IsolineRequestInput>;
|
|
2292
2293
|
};
|
|
2293
2294
|
|
|
2294
2295
|
export enum IsolineFerryConnectionsType {
|
|
2295
|
-
/** Ferry connections should not be included */
|
|
2296
|
+
/** Ferry connections should not be included. */
|
|
2296
2297
|
NONE = "none",
|
|
2297
2298
|
/** Ferry connections should be taken into account but only one level deep. For example: from the European mainland to England and no other connecting ferries departing from England. */
|
|
2298
2299
|
SINGLE = "single"
|
|
2299
2300
|
}
|
|
2300
2301
|
|
|
2301
2302
|
export type IsolineInput = {
|
|
2302
|
-
/** Vehicle id */
|
|
2303
|
+
/** Vehicle id. */
|
|
2303
2304
|
vehicle_id: Scalars["ID"];
|
|
2304
|
-
/** Origin point of the request */
|
|
2305
|
+
/** Origin point of the request. */
|
|
2305
2306
|
origin: FeaturePointPolygonInput;
|
|
2306
|
-
/** Numbers of polygons to be generated (
|
|
2307
|
+
/** Numbers of polygons to be generated (maximum: 20). */
|
|
2307
2308
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
2308
|
-
/** Vehicle should be able to return to the origin point from any point */
|
|
2309
|
+
/** Vehicle should be able to return to the origin point from any point. */
|
|
2309
2310
|
round_trip?: Maybe<Scalars["Boolean"]>;
|
|
2310
|
-
/** Number of occupants */
|
|
2311
|
+
/** Number of occupants. */
|
|
2311
2312
|
occupants?: Maybe<Scalars["Int"]>;
|
|
2312
|
-
/** Cumulated weight of the occupants */
|
|
2313
|
+
/** Cumulated weight of the occupants. */
|
|
2313
2314
|
total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
|
|
2314
|
-
/** Cargo weight
|
|
2315
|
+
/** Cargo weight. */
|
|
2315
2316
|
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
2316
|
-
/** Climate is on */
|
|
2317
|
+
/** Climate is on. */
|
|
2317
2318
|
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2318
|
-
/** Season to be taken into account when generating the isoline */
|
|
2319
|
+
/** Season to be taken into account when generating the isoline. */
|
|
2319
2320
|
season?: Maybe<RouteSeason>;
|
|
2320
|
-
/** Polygons precision quality */
|
|
2321
|
+
/** Polygons precision quality. */
|
|
2321
2322
|
quality?: Maybe<IsolineQuality>;
|
|
2322
2323
|
/** Include ferry connections. Single and multiple ferry connections increase the calculation time and the number of polygons. */
|
|
2323
2324
|
ferry_connections?: Maybe<IsolineFerryConnectionsType>;
|
|
@@ -2327,49 +2328,94 @@ export type IsolineInput = {
|
|
|
2327
2328
|
final_state_of_charge?: Maybe<StateOfChargeInput>;
|
|
2328
2329
|
};
|
|
2329
2330
|
|
|
2330
|
-
/** Granularity of the isoline */
|
|
2331
|
+
/** Granularity of the isoline. */
|
|
2331
2332
|
export enum IsolineQuality {
|
|
2332
|
-
/** High polygons precisions */
|
|
2333
|
+
/** High polygons precisions. */
|
|
2333
2334
|
HIGH = "high",
|
|
2334
|
-
/** Low polygons precisions */
|
|
2335
|
+
/** Low polygons precisions. */
|
|
2335
2336
|
LOW = "low"
|
|
2336
2337
|
}
|
|
2337
2338
|
|
|
2338
|
-
|
|
2339
|
+
export type IsolineRequestInput = {
|
|
2340
|
+
/** Vehicle id. */
|
|
2341
|
+
vehicle_id: Scalars["ID"];
|
|
2342
|
+
/** Origin point of the request. */
|
|
2343
|
+
origin: FeaturePoint;
|
|
2344
|
+
/** Numbers of polygons that were generated. */
|
|
2345
|
+
polygon_count?: Maybe<Scalars["Int"]>;
|
|
2346
|
+
/** Vehicle should be able to return to the origin point from any point. */
|
|
2347
|
+
round_trip?: Maybe<Scalars["Boolean"]>;
|
|
2348
|
+
/** Number of occupants. */
|
|
2349
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
2350
|
+
/** Cumulated weight of the occupants. */
|
|
2351
|
+
total_occupant_weight?: Maybe<Scalars["Float"]>;
|
|
2352
|
+
/** Cargo weight. */
|
|
2353
|
+
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
2354
|
+
/** Climate is on. */
|
|
2355
|
+
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2356
|
+
/** Season taken into account when isoline was generated. */
|
|
2357
|
+
season?: Maybe<RouteSeason>;
|
|
2358
|
+
/** Polygons precision quality. */
|
|
2359
|
+
quality?: Maybe<IsolineQuality>;
|
|
2360
|
+
/** Ferry connections. */
|
|
2361
|
+
ferry_connections?: Maybe<IsolineFerryConnectionsType>;
|
|
2362
|
+
/** Battery state of charge. */
|
|
2363
|
+
state_of_charge: Scalars["Float"];
|
|
2364
|
+
/** Minimum final battery state of charge. */
|
|
2365
|
+
final_state_of_charge: Scalars["Float"];
|
|
2366
|
+
};
|
|
2367
|
+
|
|
2368
|
+
export type IsolineRequestInputtotal_occupant_weightArgs = {
|
|
2369
|
+
unit?: Maybe<WeightUnit>;
|
|
2370
|
+
};
|
|
2371
|
+
|
|
2372
|
+
export type IsolineRequestInputtotal_cargo_weightArgs = {
|
|
2373
|
+
unit?: Maybe<WeightUnit>;
|
|
2374
|
+
};
|
|
2375
|
+
|
|
2376
|
+
export type IsolineRequestInputstate_of_chargeArgs = {
|
|
2377
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2378
|
+
};
|
|
2379
|
+
|
|
2380
|
+
export type IsolineRequestInputfinal_state_of_chargeArgs = {
|
|
2381
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2382
|
+
};
|
|
2383
|
+
|
|
2384
|
+
/** Status of the isoline label. */
|
|
2339
2385
|
export enum IsolineStatus {
|
|
2340
|
-
/** Isoline label has been successfully generated */
|
|
2386
|
+
/** Isoline label has been successfully generated. */
|
|
2341
2387
|
DONE = "done",
|
|
2342
|
-
/** Isoline label is under processing */
|
|
2388
|
+
/** Isoline label is under processing. */
|
|
2343
2389
|
PENDING = "pending",
|
|
2344
|
-
/** There was an error while generating the isoline label */
|
|
2390
|
+
/** There was an error while generating the isoline label. */
|
|
2345
2391
|
ERROR = "error"
|
|
2346
2392
|
}
|
|
2347
2393
|
|
|
2348
|
-
/** Types of a leg */
|
|
2394
|
+
/** Types of a leg. */
|
|
2349
2395
|
export enum LegType {
|
|
2350
|
-
/** This leg ends at a charging station and the vehicle must recharge */
|
|
2396
|
+
/** This leg ends at a charging station and the vehicle must recharge. */
|
|
2351
2397
|
STATION = "station",
|
|
2352
|
-
/** This leg ends at a via charging station and the vehicle must recharge */
|
|
2398
|
+
/** This leg ends at a via charging station and the vehicle must recharge. */
|
|
2353
2399
|
STATIONVIA = "stationVia",
|
|
2354
|
-
/** This leg ends at a scheduled charging station and the vehicle must recharge */
|
|
2400
|
+
/** This leg ends at a scheduled charging station and the vehicle must recharge. */
|
|
2355
2401
|
STATIONAMENITY = "stationAmenity",
|
|
2356
|
-
/** This leg ends at a via location */
|
|
2402
|
+
/** This leg ends at a via location. */
|
|
2357
2403
|
VIA = "via",
|
|
2358
|
-
/** This leg ends at the destination, and is the last leg of the route */
|
|
2404
|
+
/** This leg ends at the destination, and is the last leg of the route. */
|
|
2359
2405
|
FINAL = "final",
|
|
2360
|
-
/** This leg ends at the destination which is a charging station, and is the last leg of the route */
|
|
2406
|
+
/** This leg ends at the destination which is a charging station, and is the last leg of the route. */
|
|
2361
2407
|
STATIONFINAL = "stationFinal"
|
|
2362
2408
|
}
|
|
2363
2409
|
|
|
2364
|
-
/** A GeoJSON LineString */
|
|
2410
|
+
/** A GeoJSON LineString. */
|
|
2365
2411
|
export type LineString = {
|
|
2366
|
-
/** LineString type */
|
|
2412
|
+
/** LineString type. */
|
|
2367
2413
|
type: LineStringType;
|
|
2368
|
-
/** List of coordinates arrays with longitude as first value and latitude as second one */
|
|
2414
|
+
/** List of coordinates arrays with longitude as first value and latitude as second one. */
|
|
2369
2415
|
coordinates: Array<Maybe<Array<Scalars["Float"]>>>;
|
|
2370
2416
|
};
|
|
2371
2417
|
|
|
2372
|
-
/** GeoJSON LineString type */
|
|
2418
|
+
/** GeoJSON LineString type. */
|
|
2373
2419
|
export enum LineStringType {
|
|
2374
2420
|
LINESTRING = "LineString"
|
|
2375
2421
|
}
|
|
@@ -2389,23 +2435,23 @@ export enum MappingProvider {
|
|
|
2389
2435
|
}
|
|
2390
2436
|
|
|
2391
2437
|
export enum MeasurementUnit {
|
|
2392
|
-
/** Return the measurement in millimeters */
|
|
2438
|
+
/** Return the measurement in millimeters. */
|
|
2393
2439
|
MILLIMETER = "millimeter",
|
|
2394
|
-
/** Return the measurement in inches */
|
|
2440
|
+
/** Return the measurement in inches. */
|
|
2395
2441
|
INCH = "inch"
|
|
2396
2442
|
}
|
|
2397
2443
|
|
|
2398
|
-
/** A GeoJSON Polygon */
|
|
2444
|
+
/** A GeoJSON Polygon. */
|
|
2399
2445
|
export type MultiPolygon = {
|
|
2400
|
-
/** MultiPolygon type */
|
|
2446
|
+
/** MultiPolygon type. */
|
|
2401
2447
|
type: MultiPolygonType;
|
|
2402
|
-
/** List of coordinates representing a polygon */
|
|
2448
|
+
/** List of coordinates representing a polygon. */
|
|
2403
2449
|
coordinates: Array<
|
|
2404
2450
|
Maybe<Array<Maybe<Array<Maybe<Array<Scalars["Float"]>>>>>>
|
|
2405
2451
|
>;
|
|
2406
2452
|
};
|
|
2407
2453
|
|
|
2408
|
-
/** GeoJSON MultiPolygon type */
|
|
2454
|
+
/** GeoJSON MultiPolygon type. */
|
|
2409
2455
|
export enum MultiPolygonType {
|
|
2410
2456
|
MULTIPOLYGON = "MultiPolygon"
|
|
2411
2457
|
}
|
|
@@ -2419,7 +2465,7 @@ export type Mutation = {
|
|
|
2419
2465
|
updateConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2420
2466
|
/** [BETA] Remove a connected vehicle and revoke access */
|
|
2421
2467
|
removeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2422
|
-
/**
|
|
2468
|
+
/** Create a consumption based isoline. */
|
|
2423
2469
|
createIsoline?: Maybe<Scalars["ID"]>;
|
|
2424
2470
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
2425
2471
|
startNavigation?: Maybe<Scalars["ID"]>;
|
|
@@ -3222,11 +3268,11 @@ export enum OICPValueAddedServices {
|
|
|
3222
3268
|
}
|
|
3223
3269
|
|
|
3224
3270
|
export type OdometerInput = {
|
|
3225
|
-
/** Value of the vehicle's odometer */
|
|
3271
|
+
/** Value of the vehicle's odometer. */
|
|
3226
3272
|
value: Scalars["Float"];
|
|
3227
|
-
/** Type of the value of the vehicle's odometer */
|
|
3273
|
+
/** Type of the value of the vehicle's odometer. */
|
|
3228
3274
|
type: DistanceUnit;
|
|
3229
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
3275
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
3230
3276
|
source?: Maybe<TelemetryInputSource>;
|
|
3231
3277
|
};
|
|
3232
3278
|
|
|
@@ -3277,11 +3323,11 @@ export type OperatorListQuery = {
|
|
|
3277
3323
|
};
|
|
3278
3324
|
|
|
3279
3325
|
export type OutsideTempInput = {
|
|
3280
|
-
/** Value of the outside temperature */
|
|
3326
|
+
/** Value of the outside temperature. */
|
|
3281
3327
|
value: Scalars["Float"];
|
|
3282
|
-
/** Type of the value of the outside temperature */
|
|
3328
|
+
/** Type of the value of the outside temperature. */
|
|
3283
3329
|
type: TemperatureUnit;
|
|
3284
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
3330
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
3285
3331
|
source?: Maybe<TelemetryInputSource>;
|
|
3286
3332
|
};
|
|
3287
3333
|
|
|
@@ -3293,19 +3339,19 @@ export enum ParkingCost {
|
|
|
3293
3339
|
}
|
|
3294
3340
|
|
|
3295
3341
|
export type PathSegment = {
|
|
3296
|
-
/** Elevation (altitude) in meters */
|
|
3342
|
+
/** Elevation (altitude) in meters. */
|
|
3297
3343
|
elevation?: Maybe<Scalars["Int"]>;
|
|
3298
|
-
/** Average speed, in km/h, for this route path segment */
|
|
3344
|
+
/** Average speed, in km/h, for this route path segment. */
|
|
3299
3345
|
averageSpeed?: Maybe<Scalars["Float"]>;
|
|
3300
|
-
/** Consumption, in kWh, of a route path segment */
|
|
3346
|
+
/** Consumption, in kWh, of a route path segment. */
|
|
3301
3347
|
consumption?: Maybe<Scalars["Float"]>;
|
|
3302
|
-
/** Consumption, in kWh per km, of a route path segment */
|
|
3348
|
+
/** Consumption, in kWh per km, of a route path segment. */
|
|
3303
3349
|
consumptionPerKm?: Maybe<Scalars["Float"]>;
|
|
3304
|
-
/** Distance, in meters, of a route path segment */
|
|
3350
|
+
/** Distance, in meters, of a route path segment. */
|
|
3305
3351
|
distance?: Maybe<Scalars["Float"]>;
|
|
3306
|
-
/** Duration, in seconds, of a route path segment */
|
|
3352
|
+
/** Duration, in seconds, of a route path segment. */
|
|
3307
3353
|
duration?: Maybe<Scalars["Float"]>;
|
|
3308
|
-
/** State of charge, in kWh, of a route path segment */
|
|
3354
|
+
/** State of charge, in kWh, of a route path segment. */
|
|
3309
3355
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
3310
3356
|
};
|
|
3311
3357
|
|
|
@@ -3317,11 +3363,11 @@ export type Point = {
|
|
|
3317
3363
|
coordinates: Array<Scalars["Float"]>;
|
|
3318
3364
|
};
|
|
3319
3365
|
|
|
3320
|
-
/** A GeoJSON Point input */
|
|
3366
|
+
/** A GeoJSON Point input. */
|
|
3321
3367
|
export type PointInput = {
|
|
3322
|
-
/** Point type */
|
|
3368
|
+
/** Point type. */
|
|
3323
3369
|
type: PointType;
|
|
3324
|
-
/** Coordinates [longitude, latitude] */
|
|
3370
|
+
/** Coordinates [longitude, latitude]. */
|
|
3325
3371
|
coordinates: Array<Scalars["Float"]>;
|
|
3326
3372
|
};
|
|
3327
3373
|
|
|
@@ -3330,18 +3376,18 @@ export enum PointType {
|
|
|
3330
3376
|
POINT = "Point"
|
|
3331
3377
|
}
|
|
3332
3378
|
|
|
3333
|
-
/** Polygon properties */
|
|
3379
|
+
/** Polygon properties. */
|
|
3334
3380
|
export type PolygonProperties = {
|
|
3335
|
-
/** Index of the feature inside the list */
|
|
3381
|
+
/** Index of the feature inside the list. */
|
|
3336
3382
|
index?: Maybe<Scalars["Int"]>;
|
|
3337
3383
|
};
|
|
3338
3384
|
|
|
3339
3385
|
export type PowerInput = {
|
|
3340
|
-
/** Value of the positive or negative power. When negative the vehicle is charging */
|
|
3386
|
+
/** Value of the positive or negative power. When negative the vehicle is charging. */
|
|
3341
3387
|
value: Scalars["Float"];
|
|
3342
|
-
/** Type of the value of the power */
|
|
3388
|
+
/** Type of the value of the power. */
|
|
3343
3389
|
type: PowerUnit;
|
|
3344
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
3390
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
3345
3391
|
source?: Maybe<TelemetryInputSource>;
|
|
3346
3392
|
};
|
|
3347
3393
|
|
|
@@ -3362,28 +3408,28 @@ export type PowerStats = {
|
|
|
3362
3408
|
};
|
|
3363
3409
|
|
|
3364
3410
|
export enum PowerUnit {
|
|
3365
|
-
/** Return the power in kilowatts */
|
|
3411
|
+
/** Return the power in kilowatts. */
|
|
3366
3412
|
KILOWATT = "kilowatt",
|
|
3367
|
-
/** Return the power in horsepower */
|
|
3413
|
+
/** Return the power in horsepower. */
|
|
3368
3414
|
HORSEPOWER = "horsepower"
|
|
3369
3415
|
}
|
|
3370
3416
|
|
|
3371
3417
|
export enum PressureUnit {
|
|
3372
|
-
/** Return the pressure in bar */
|
|
3418
|
+
/** Return the pressure in bar. */
|
|
3373
3419
|
BAR = "bar",
|
|
3374
|
-
/** Return the pressure in pounds per square inch */
|
|
3420
|
+
/** Return the pressure in pounds per square inch. */
|
|
3375
3421
|
POUNDS_PER_SQUARE_INCH = "pounds_per_square_inch"
|
|
3376
3422
|
}
|
|
3377
3423
|
|
|
3378
|
-
/** The price model */
|
|
3424
|
+
/** The price model. */
|
|
3379
3425
|
export type Price = {
|
|
3380
|
-
/** The value of the price */
|
|
3426
|
+
/** The value of the price. */
|
|
3381
3427
|
value?: Maybe<Scalars["String"]>;
|
|
3382
|
-
/** The currency of the price */
|
|
3428
|
+
/** The currency of the price. */
|
|
3383
3429
|
currency?: Maybe<Scalars["String"]>;
|
|
3384
|
-
/** The pricing model */
|
|
3430
|
+
/** The pricing model. */
|
|
3385
3431
|
model?: Maybe<Scalars["String"]>;
|
|
3386
|
-
/** The value of the price which should be display by the frontend */
|
|
3432
|
+
/** The value of the price which should be display by the frontend. */
|
|
3387
3433
|
displayValue?: Maybe<Scalars["String"]>;
|
|
3388
3434
|
};
|
|
3389
3435
|
|
|
@@ -3451,7 +3497,7 @@ export type Query = {
|
|
|
3451
3497
|
connectedVehicleList?: Maybe<Array<Maybe<ConnectedVehicle>>>;
|
|
3452
3498
|
/** [BETA] Retrieve live vehicle data by connected vehicle id */
|
|
3453
3499
|
connectedVehicleData?: Maybe<VehicleData>;
|
|
3454
|
-
/**
|
|
3500
|
+
/** Get an isoline by ID. */
|
|
3455
3501
|
isoline?: Maybe<Isoline>;
|
|
3456
3502
|
/** [BETA] Get a navigation session by ID */
|
|
3457
3503
|
navigation?: Maybe<Navigation>;
|
|
@@ -3469,6 +3515,8 @@ export type Query = {
|
|
|
3469
3515
|
userReviewList?: Maybe<Array<Review>>;
|
|
3470
3516
|
/** Get a route by ID */
|
|
3471
3517
|
route?: Maybe<Route>;
|
|
3518
|
+
/** [BETA] Emission profile for route. */
|
|
3519
|
+
routeEmissions: RouteEmissions;
|
|
3472
3520
|
/** Retrieve information about a route path segment */
|
|
3473
3521
|
routePath?: Maybe<RoutePath>;
|
|
3474
3522
|
/** Get the station statistics */
|
|
@@ -3563,6 +3611,11 @@ export type QueryrouteArgs = {
|
|
|
3563
3611
|
id: Scalars["ID"];
|
|
3564
3612
|
};
|
|
3565
3613
|
|
|
3614
|
+
export type QueryrouteEmissionsArgs = {
|
|
3615
|
+
route_id: Scalars["ID"];
|
|
3616
|
+
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
3617
|
+
};
|
|
3618
|
+
|
|
3566
3619
|
export type QueryroutePathArgs = {
|
|
3567
3620
|
id: Scalars["ID"];
|
|
3568
3621
|
location: PointInput;
|
|
@@ -3629,213 +3682,213 @@ export type RemoveConnectedVehicleInput = {
|
|
|
3629
3682
|
id: Scalars["ID"];
|
|
3630
3683
|
};
|
|
3631
3684
|
|
|
3632
|
-
/** EV specific data for a route request */
|
|
3685
|
+
/** EV specific data for a route request. */
|
|
3633
3686
|
export type RequestEv = {
|
|
3634
|
-
/** Internal ID of a Vehicle */
|
|
3687
|
+
/** Internal ID of a Vehicle. */
|
|
3635
3688
|
id?: Maybe<Scalars["ID"]>;
|
|
3636
|
-
/** EV battery specific data */
|
|
3689
|
+
/** EV battery specific data. */
|
|
3637
3690
|
battery?: Maybe<RequestEvBattery>;
|
|
3638
|
-
/** Supported plugs for an EV */
|
|
3691
|
+
/** Supported plugs for an EV. */
|
|
3639
3692
|
plugs?: Maybe<Array<Maybe<RequestEvPlug>>>;
|
|
3640
|
-
/** Supported adapters of plugs for an EV */
|
|
3693
|
+
/** Supported adapters of plugs for an EV. */
|
|
3641
3694
|
adapters?: Maybe<Array<Maybe<RequestEvPlug>>>;
|
|
3642
|
-
/** Minimum desired power of chargers */
|
|
3695
|
+
/** Minimum desired power of chargers. */
|
|
3643
3696
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3644
|
-
/** Climate is on. The default is true */
|
|
3697
|
+
/** Climate is on. The default is true. */
|
|
3645
3698
|
climate?: Maybe<Scalars["Boolean"]>;
|
|
3646
|
-
/** Cargo weight, in kg */
|
|
3699
|
+
/** Cargo weight, in kg. */
|
|
3647
3700
|
cargo?: Maybe<Scalars["Float"]>;
|
|
3648
3701
|
/**
|
|
3649
|
-
* The number of passengers on board
|
|
3650
|
-
* @deprecated In favor of occupants
|
|
3702
|
+
* The number of passengers on board.
|
|
3703
|
+
* @deprecated In favor of occupants.
|
|
3651
3704
|
*/
|
|
3652
3705
|
numberOfPassengers?: Maybe<Scalars["Int"]>;
|
|
3653
|
-
/** Number of occupants */
|
|
3706
|
+
/** Number of occupants. */
|
|
3654
3707
|
occupants?: Maybe<Scalars["Int"]>;
|
|
3655
|
-
/** Consumption specific to an EV or
|
|
3708
|
+
/** Consumption specific to an EV or inputted by a request. */
|
|
3656
3709
|
consumption?: Maybe<RequestEvConsumption>;
|
|
3657
3710
|
};
|
|
3658
3711
|
|
|
3659
3712
|
export type RequestEvBattery = {
|
|
3660
|
-
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the vehicle battery.usable_kwh */
|
|
3713
|
+
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the vehicle battery.usable_kwh. */
|
|
3661
3714
|
capacity?: Maybe<RequestEvBatteryValue>;
|
|
3662
|
-
/** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value */
|
|
3715
|
+
/** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value. */
|
|
3663
3716
|
capacityKwh?: Maybe<Scalars["Float"]>;
|
|
3664
|
-
/** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and it will be equal to the battery.usable_kwh */
|
|
3717
|
+
/** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and it will be equal to the battery.usable_kwh. */
|
|
3665
3718
|
stateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
3666
|
-
/** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge */
|
|
3719
|
+
/** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge. */
|
|
3667
3720
|
stateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
3668
|
-
/** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the vehicle battery.usable_kwh */
|
|
3721
|
+
/** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the vehicle battery.usable_kwh. */
|
|
3669
3722
|
finalStateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
3670
|
-
/** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge */
|
|
3723
|
+
/** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge. */
|
|
3671
3724
|
finalStateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
3672
3725
|
};
|
|
3673
3726
|
|
|
3674
3727
|
export type RequestEvBatteryInput = {
|
|
3675
|
-
/** Usable capacity of a battery used to compute a route. We recommend you stay between 50% and 150%. If this in not filled in, we assume it is the same value as the vehicle battery.usable_kwh */
|
|
3728
|
+
/** Usable capacity of a battery used to compute a route. We recommend you stay between 50% and 150%. If this in not filled in, we assume it is the same value as the vehicle battery.usable_kwh. */
|
|
3676
3729
|
capacity?: Maybe<RequestEvBatteryInputValue>;
|
|
3677
|
-
/** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and we fill it in with vehicle battery.usable_kwh */
|
|
3730
|
+
/** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and we fill it in with vehicle battery.usable_kwh. */
|
|
3678
3731
|
stateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
3679
|
-
/** Desired final amount of energy in a battery. The value should be between 0 and 80% of the vehicle battery.usable_kwh If this is not filled in, we assume it is 20% of the vehicle battery.usable_kwh */
|
|
3732
|
+
/** Desired final amount of energy in a battery. The value should be between 0 and 80% of the vehicle battery.usable_kwh If this is not filled in, we assume it is 20% of the vehicle battery.usable_kwh. */
|
|
3680
3733
|
finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
3681
3734
|
};
|
|
3682
3735
|
|
|
3683
3736
|
export type RequestEvBatteryInputValue = {
|
|
3684
|
-
/** Value of a desired final amount of energy in a battery */
|
|
3737
|
+
/** Value of a desired final amount of energy in a battery. */
|
|
3685
3738
|
value: Scalars["Float"];
|
|
3686
|
-
/** Type of a desired final amount of energy in a battery */
|
|
3739
|
+
/** Type of a desired final amount of energy in a battery. */
|
|
3687
3740
|
type: BatteryInputType;
|
|
3688
3741
|
};
|
|
3689
3742
|
|
|
3690
3743
|
export type RequestEvBatteryValue = {
|
|
3691
|
-
/** Value of the desired final amount of energy in a battery */
|
|
3744
|
+
/** Value of the desired final amount of energy in a battery. */
|
|
3692
3745
|
value: Scalars["Float"];
|
|
3693
|
-
/** Type of the desired final amount of energy in a battery */
|
|
3746
|
+
/** Type of the desired final amount of energy in a battery. */
|
|
3694
3747
|
type: BatteryInputType;
|
|
3695
3748
|
};
|
|
3696
3749
|
|
|
3697
3750
|
export type RequestEvConsumption = {
|
|
3698
|
-
/** Consumption, in kWh, of the auxiliaries */
|
|
3751
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
3699
3752
|
aux?: Maybe<CarConsumption>;
|
|
3700
|
-
/** The consumption, in kWh, of the battery management system */
|
|
3753
|
+
/** The consumption, in kWh, of the battery management system. */
|
|
3701
3754
|
bms?: Maybe<CarConsumption>;
|
|
3702
|
-
/** The consumption, in kWh, of the vehicle in idle mode */
|
|
3755
|
+
/** The consumption, in kWh, of the vehicle in idle mode. */
|
|
3703
3756
|
idle?: Maybe<CarConsumption>;
|
|
3704
3757
|
};
|
|
3705
3758
|
|
|
3706
3759
|
export type RequestEvConsumptionInput = {
|
|
3707
|
-
/** Consumption, in kWh, of the auxiliaries */
|
|
3760
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
3708
3761
|
aux?: Maybe<CarConsumptionInput>;
|
|
3709
|
-
/** Consumption, in kWh, of the battery management system */
|
|
3762
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
3710
3763
|
bms?: Maybe<CarConsumptionInput>;
|
|
3711
|
-
/** Consumption, in kWh, of the vehicle in idle mode */
|
|
3764
|
+
/** Consumption, in kWh, of the vehicle in idle mode. */
|
|
3712
3765
|
idle?: Maybe<CarConsumptionInput>;
|
|
3713
3766
|
};
|
|
3714
3767
|
|
|
3715
3768
|
export type RequestEvInput = {
|
|
3716
|
-
/** Internal ID of a Vehicle */
|
|
3769
|
+
/** Internal ID of a Vehicle. */
|
|
3717
3770
|
id: Scalars["ID"];
|
|
3718
|
-
/** The EV battery specific data */
|
|
3771
|
+
/** The EV battery specific data. */
|
|
3719
3772
|
battery?: Maybe<RequestEvBatteryInput>;
|
|
3720
|
-
/** Supported plugs of an EV */
|
|
3773
|
+
/** Supported plugs of an EV. */
|
|
3721
3774
|
plugs?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
|
|
3722
|
-
/** Supported adapters of plugs of an EV */
|
|
3775
|
+
/** Supported adapters of plugs of an EV. */
|
|
3723
3776
|
adapters?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
|
|
3724
|
-
/** Minimum desired power of chargers */
|
|
3777
|
+
/** Minimum desired power of chargers. */
|
|
3725
3778
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3726
|
-
/** Flag which indicates if the climate is on. The default is true */
|
|
3779
|
+
/** Flag which indicates if the climate is on. The default is true. */
|
|
3727
3780
|
climate?: Maybe<Scalars["Boolean"]>;
|
|
3728
|
-
/** Number of occupants */
|
|
3781
|
+
/** Number of occupants. */
|
|
3729
3782
|
occupants?: Maybe<Scalars["Int"]>;
|
|
3730
|
-
/** Cargo weight, in kg */
|
|
3783
|
+
/** Cargo weight, in kg. */
|
|
3731
3784
|
cargo?: Maybe<Scalars["Int"]>;
|
|
3732
|
-
/** Consumption specific to the EV or inputted by the request */
|
|
3785
|
+
/** Consumption specific to the EV or inputted by the request. */
|
|
3733
3786
|
consumption?: Maybe<RequestEvConsumptionInput>;
|
|
3734
|
-
/** Deprecated */
|
|
3787
|
+
/** Deprecated. */
|
|
3735
3788
|
auxConsumption?: Maybe<Scalars["Float"]>;
|
|
3736
|
-
/** Deprecated */
|
|
3789
|
+
/** Deprecated. */
|
|
3737
3790
|
bmsConsumption?: Maybe<Scalars["Float"]>;
|
|
3738
3791
|
};
|
|
3739
3792
|
|
|
3740
3793
|
export type RequestEvPlug = {
|
|
3741
|
-
/** Type of the plug */
|
|
3794
|
+
/** Type of the plug. */
|
|
3742
3795
|
standard?: Maybe<ConnectorType>;
|
|
3743
|
-
/** Maximum charging speed for a plug */
|
|
3796
|
+
/** Maximum charging speed for a plug. */
|
|
3744
3797
|
chargingPower?: Maybe<Scalars["Float"]>;
|
|
3745
3798
|
};
|
|
3746
3799
|
|
|
3747
3800
|
export type RequestEvPlugInput = {
|
|
3748
|
-
/** Type of a plug */
|
|
3801
|
+
/** Type of a plug. */
|
|
3749
3802
|
standard: ConnectorType;
|
|
3750
|
-
/** Maximum charging speed for this plug */
|
|
3803
|
+
/** Maximum charging speed for this plug. */
|
|
3751
3804
|
chargingPower: Scalars["Float"];
|
|
3752
3805
|
};
|
|
3753
3806
|
|
|
3754
3807
|
export type RequestInput = {
|
|
3755
|
-
/** EV specific data for a route request */
|
|
3808
|
+
/** EV specific data for a route request. */
|
|
3756
3809
|
ev: RequestEvInput;
|
|
3757
|
-
/** Route request data */
|
|
3810
|
+
/** Route request data. */
|
|
3758
3811
|
routeRequest: RequestRouteInput;
|
|
3759
|
-
/** Telemetry data used to overwrite routing parameters */
|
|
3812
|
+
/** Telemetry data used to overwrite routing parameters. */
|
|
3760
3813
|
telemetry?: Maybe<Scalars["JSON"]>;
|
|
3761
3814
|
};
|
|
3762
3815
|
|
|
3763
3816
|
export type RequestRoute = {
|
|
3764
3817
|
/**
|
|
3765
|
-
* Requested amenities near the stations, within a 1 kilometer radius
|
|
3766
|
-
* @deprecated Will be removed. Use the amenity preferences instead
|
|
3818
|
+
* Requested amenities near the stations, within a 1 kilometer radius.
|
|
3819
|
+
* @deprecated Will be removed. Use the amenity preferences instead.
|
|
3767
3820
|
*/
|
|
3768
3821
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3769
|
-
/** Amenity preferences for a route */
|
|
3822
|
+
/** Amenity preferences for a route. */
|
|
3770
3823
|
amenity_preferences?: Maybe<RouteAmenityPreferences>;
|
|
3771
3824
|
/**
|
|
3772
|
-
* Requested operators
|
|
3773
|
-
* @deprecated Will be removed. Use the operators property instead
|
|
3825
|
+
* Requested operators.
|
|
3826
|
+
* @deprecated Will be removed. Use the operators property instead.
|
|
3774
3827
|
*/
|
|
3775
3828
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3776
3829
|
/**
|
|
3777
|
-
* Preferred operators are required. In case there are no preferred operators the route cannot be calculated
|
|
3778
|
-
* @deprecated Will be removed. Use the operators property instead
|
|
3830
|
+
* Preferred operators are required. In case there are no preferred operators the route cannot be calculated.
|
|
3831
|
+
* @deprecated Will be removed. Use the operators property instead.
|
|
3779
3832
|
*/
|
|
3780
3833
|
operatorRequired?: Maybe<Scalars["Boolean"]>;
|
|
3781
3834
|
/**
|
|
3782
|
-
* Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated
|
|
3783
|
-
* @deprecated Will be removed. Use the operators property instead
|
|
3835
|
+
* Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated.
|
|
3836
|
+
* @deprecated Will be removed. Use the operators property instead.
|
|
3784
3837
|
*/
|
|
3785
3838
|
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
3786
|
-
/** Operator prioritization for a route */
|
|
3839
|
+
/** Operator prioritization for a route. */
|
|
3787
3840
|
operators?: Maybe<RouteOperators>;
|
|
3788
|
-
/** Season */
|
|
3841
|
+
/** Season. */
|
|
3789
3842
|
season?: Maybe<RouteSeason>;
|
|
3790
|
-
/** Percentage for the minimum limit of the battery capacity before a recharge. The value should be between 0 and 60, with a default of 10
|
|
3843
|
+
/** Percentage for the minimum limit of the battery capacity before a recharge. The value should be between 0 and 60, with a default of 10%. */
|
|
3791
3844
|
safeRiskMargin?: Maybe<Scalars["Int"]>;
|
|
3792
|
-
/** Origin of a route */
|
|
3845
|
+
/** Origin of a route. */
|
|
3793
3846
|
origin?: Maybe<FeaturePoint>;
|
|
3794
|
-
/** Destination of a route */
|
|
3847
|
+
/** Destination of a route. */
|
|
3795
3848
|
destination?: Maybe<FeaturePoint>;
|
|
3796
|
-
/** Locations where a route will stop */
|
|
3849
|
+
/** Locations where a route will stop. */
|
|
3797
3850
|
via?: Maybe<Array<Maybe<FeaturePoint>>>;
|
|
3798
|
-
/** Radius in meters for alternative stations along a route (min 500 - max 5000) */
|
|
3851
|
+
/** Radius in meters for alternative stations along a route (min 500 - max 5000). */
|
|
3799
3852
|
stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
|
|
3800
|
-
/** Flag indicating wether the turn-by-turn navigation instructions should be prepared. Disclaimer: The functionality is under active development and the final API is a subject to change. Not ready for production */
|
|
3853
|
+
/** Flag indicating wether the turn-by-turn navigation instructions should be prepared. Disclaimer: The functionality is under active development and the final API is a subject to change. Not ready for production. */
|
|
3801
3854
|
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3802
|
-
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity */
|
|
3855
|
+
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */
|
|
3803
3856
|
chargeMode?: Maybe<ChargeMode>;
|
|
3804
3857
|
};
|
|
3805
3858
|
|
|
3806
3859
|
export type RequestRouteInput = {
|
|
3807
|
-
/** Deprecated: in favor of amenity preferences. A list of desired amenities near the stations, with a 1 kilometer radius */
|
|
3860
|
+
/** Deprecated: in favor of amenity preferences. A list of desired amenities near the stations, with a 1 kilometer radius. */
|
|
3808
3861
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3809
|
-
/** Amenity preferences for a route */
|
|
3862
|
+
/** Amenity preferences for a route. */
|
|
3810
3863
|
amenity_preferences?: Maybe<AmenityPreferencesInput>;
|
|
3811
|
-
/** Deprecated: in favor of operators. A list of requested operators */
|
|
3864
|
+
/** Deprecated: in favor of operators. A list of requested operators. */
|
|
3812
3865
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3813
|
-
/** Deprecated: in favor of operators. Flag which indicates if the operators are required */
|
|
3866
|
+
/** Deprecated: in favor of operators. Flag which indicates if the operators are required. */
|
|
3814
3867
|
operatorRequired?: Maybe<Scalars["Boolean"]>;
|
|
3815
|
-
/** Deprecated: in favor of operators. Flag which indicates if the preferred operators should be loaded */
|
|
3868
|
+
/** Deprecated: in favor of operators. Flag which indicates if the preferred operators should be loaded. */
|
|
3816
3869
|
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
3817
|
-
/** Operator prioritization for a route */
|
|
3870
|
+
/** Operator prioritization for a route. */
|
|
3818
3871
|
operators?: Maybe<RouteOperatorsInput>;
|
|
3819
|
-
/** Optional flag to specify the season */
|
|
3872
|
+
/** Optional flag to specify the season. */
|
|
3820
3873
|
season?: Maybe<RouteSeason>;
|
|
3821
|
-
/** Percentage for a minimum limit of a battery capacity before a recharge. The value should be between 0 and 60, with a default of 10
|
|
3874
|
+
/** Percentage for a minimum limit of a battery capacity before a recharge. The value should be between 0 and 60, with a default of 10%. */
|
|
3822
3875
|
safeRiskMargin?: Maybe<Scalars["Int"]>;
|
|
3823
|
-
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity */
|
|
3876
|
+
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */
|
|
3824
3877
|
chargeMode?: Maybe<ChargeMode>;
|
|
3825
|
-
/** Origin of a route */
|
|
3878
|
+
/** Origin of a route. */
|
|
3826
3879
|
origin: FeaturePointInput;
|
|
3827
|
-
/** Destination of a route */
|
|
3880
|
+
/** Destination of a route. */
|
|
3828
3881
|
destination: FeaturePointInput;
|
|
3829
|
-
/** An optional list of locations where we should stop */
|
|
3882
|
+
/** An optional list of locations where we should stop. */
|
|
3830
3883
|
via?: Maybe<Array<Maybe<FeaturePointInput>>>;
|
|
3831
|
-
/** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000) */
|
|
3884
|
+
/** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
|
|
3832
3885
|
stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
|
|
3833
|
-
/** Deprecated: all routes will have turn-by-turn instructions prepared. Boolean will be ignored */
|
|
3886
|
+
/** Deprecated: all routes will have turn-by-turn instructions prepared. Boolean will be ignored. */
|
|
3834
3887
|
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3835
3888
|
};
|
|
3836
3889
|
|
|
3837
3890
|
export type RequestUser = {
|
|
3838
|
-
/** ID of the user */
|
|
3891
|
+
/** ID of the user. */
|
|
3839
3892
|
id?: Maybe<Scalars["ID"]>;
|
|
3840
3893
|
};
|
|
3841
3894
|
|
|
@@ -3947,88 +4000,88 @@ export type ReviewUser = {
|
|
|
3947
4000
|
};
|
|
3948
4001
|
|
|
3949
4002
|
export type Route = {
|
|
3950
|
-
/** Recommended route */
|
|
4003
|
+
/** Recommended route. */
|
|
3951
4004
|
route?: Maybe<RouteAlternative>;
|
|
3952
|
-
/** Available alternatives */
|
|
4005
|
+
/** Available alternatives. */
|
|
3953
4006
|
alternatives?: Maybe<Array<Maybe<RouteAlternative>>>;
|
|
3954
|
-
/** EV specific data for a route request */
|
|
4007
|
+
/** EV specific data for a route request. */
|
|
3955
4008
|
ev?: Maybe<RequestEv>;
|
|
3956
|
-
/** Route telemetry data */
|
|
4009
|
+
/** Route telemetry data. */
|
|
3957
4010
|
telemetry?: Maybe<Scalars["JSON"]>;
|
|
3958
|
-
/** @deprecated You will receive null values */
|
|
4011
|
+
/** @deprecated You will receive null values. */
|
|
3959
4012
|
user?: Maybe<RequestUser>;
|
|
3960
|
-
/** Route request data */
|
|
4013
|
+
/** Route request data. */
|
|
3961
4014
|
routeRequest?: Maybe<RequestRoute>;
|
|
3962
|
-
/** Application who requested a route */
|
|
4015
|
+
/** Application who requested a route. */
|
|
3963
4016
|
app?: Maybe<RouteApp>;
|
|
3964
|
-
/** Route status */
|
|
4017
|
+
/** Route status. */
|
|
3965
4018
|
status?: Maybe<RouteStatus>;
|
|
3966
4019
|
};
|
|
3967
4020
|
|
|
3968
4021
|
export type RouteAlternative = {
|
|
3969
|
-
/** ID of a route alternative */
|
|
4022
|
+
/** ID of a route alternative. */
|
|
3970
4023
|
id?: Maybe<Scalars["ID"]>;
|
|
3971
|
-
/** Type of alternative route */
|
|
4024
|
+
/** Type of alternative route. */
|
|
3972
4025
|
type?: Maybe<RouteAlternativeType>;
|
|
3973
|
-
/** Number of charges along a route */
|
|
4026
|
+
/** Number of charges along a route. */
|
|
3974
4027
|
charges?: Maybe<Scalars["Int"]>;
|
|
3975
|
-
/** Number of available charges along a route */
|
|
4028
|
+
/** Number of available charges along a route. */
|
|
3976
4029
|
chargesAvailable?: Maybe<Scalars["Int"]>;
|
|
3977
|
-
/** Number of occupied charges along a route */
|
|
4030
|
+
/** Number of occupied charges along a route. */
|
|
3978
4031
|
chargesOccupied?: Maybe<Scalars["Int"]>;
|
|
3979
|
-
/** Number of unknown charges along a route */
|
|
4032
|
+
/** Number of unknown charges along a route. */
|
|
3980
4033
|
chargesUnknown?: Maybe<Scalars["Int"]>;
|
|
3981
|
-
/** Number of out of order charges along a route */
|
|
4034
|
+
/** Number of out of order charges along a route. */
|
|
3982
4035
|
chargesOutOfOrder?: Maybe<Scalars["Int"]>;
|
|
3983
|
-
/** Total distance of a route in meters */
|
|
4036
|
+
/** Total distance of a route in meters. */
|
|
3984
4037
|
distance?: Maybe<Scalars["Int"]>;
|
|
3985
|
-
/** Total duration of a route, including charge time, in seconds */
|
|
4038
|
+
/** Total duration of a route, including charge time, in seconds. */
|
|
3986
4039
|
duration?: Maybe<Scalars["Int"]>;
|
|
3987
|
-
/** Total energy used for a route in kWh */
|
|
4040
|
+
/** Total energy used for a route in kWh. */
|
|
3988
4041
|
consumption?: Maybe<Scalars["Float"]>;
|
|
3989
|
-
/** Total time required to charge for an entire route, in seconds */
|
|
4042
|
+
/** Total time required to charge for an entire route, in seconds. */
|
|
3990
4043
|
chargeTime?: Maybe<Scalars["Float"]>;
|
|
3991
4044
|
/**
|
|
3992
|
-
* Amenity ranking for an alternative
|
|
4045
|
+
* Amenity ranking for an alternative.
|
|
3993
4046
|
* @deprecated Will be removed in the future
|
|
3994
4047
|
*/
|
|
3995
4048
|
amenityRanking?: Maybe<Scalars["Int"]>;
|
|
3996
|
-
/** Range, in meters, available at the beginning of a trip */
|
|
4049
|
+
/** Range, in meters, available at the beginning of a trip. */
|
|
3997
4050
|
rangeStart?: Maybe<Scalars["Int"]>;
|
|
3998
|
-
/** Total energy in a battery at the beginning of a trip, in kWh */
|
|
4051
|
+
/** Total energy in a battery at the beginning of a trip, in kWh. */
|
|
3999
4052
|
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
4000
|
-
/** Total energy in a battery at the beginning of a trip, in percentage */
|
|
4053
|
+
/** Total energy in a battery at the beginning of a trip, in percentage. */
|
|
4001
4054
|
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
4002
4055
|
/** Remaining range, in meters, at the end of a trip. In the case of a non BEV where the range end is negative, the value will be 0. */
|
|
4003
4056
|
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
4004
4057
|
/** Remaining range, energy in kWh, at the end of a trip. In the case of a non BEV where the range end is negative, the value will be 0. */
|
|
4005
4058
|
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
4006
|
-
/** Remaining range, energy in percentage, at the end of a trip */
|
|
4059
|
+
/** Remaining range, energy in percentage, at the end of a trip. */
|
|
4007
4060
|
rangeEndPercentage?: Maybe<Scalars["Int"]>;
|
|
4008
|
-
/** Text information about a route direction */
|
|
4061
|
+
/** Text information about a route direction. */
|
|
4009
4062
|
via?: Maybe<Scalars["String"]>;
|
|
4010
|
-
/** Polyline containing encoded coordinates */
|
|
4063
|
+
/** Polyline containing encoded coordinates. */
|
|
4011
4064
|
polyline?: Maybe<Scalars["String"]>;
|
|
4012
|
-
/** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments */
|
|
4065
|
+
/** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */
|
|
4013
4066
|
pathPlot?: Maybe<Array<Maybe<PathSegment>>>;
|
|
4014
4067
|
/**
|
|
4015
|
-
* Elevation values. Each elevationPlot has a hundred points, independent of the length of a route
|
|
4068
|
+
* Elevation values. Each elevationPlot has a hundred points, independent of the length of a route.
|
|
4016
4069
|
* @deprecated Will be removed in the future; Use the pathPlot property
|
|
4017
4070
|
*/
|
|
4018
4071
|
elevationPlot?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
4019
|
-
/** Total number of meters which are going up on a route */
|
|
4072
|
+
/** Total number of meters which are going up on a route. */
|
|
4020
4073
|
elevationUp?: Maybe<Scalars["Float"]>;
|
|
4021
|
-
/** Total number of meters which are going down on a route */
|
|
4074
|
+
/** Total number of meters which are going down on a route. */
|
|
4022
4075
|
elevationDown?: Maybe<Scalars["Float"]>;
|
|
4023
|
-
/** Highest value from the elevation array */
|
|
4076
|
+
/** Highest value from the elevation array. */
|
|
4024
4077
|
elevationMax?: Maybe<Scalars["Float"]>;
|
|
4025
|
-
/** Money and CO2 saving information */
|
|
4078
|
+
/** Money and CO2 saving information. */
|
|
4026
4079
|
saving?: Maybe<RouteAlternativeSaving>;
|
|
4027
|
-
/** Legs of the route */
|
|
4080
|
+
/** Legs of the route. */
|
|
4028
4081
|
legs?: Maybe<Array<Maybe<RouteLeg>>>;
|
|
4029
|
-
/** List of raw turn-by-turn navigation instructions */
|
|
4082
|
+
/** List of raw turn-by-turn navigation instructions. */
|
|
4030
4083
|
instructions?: Maybe<Array<Maybe<RouteInstruction>>>;
|
|
4031
|
-
/** Alternative stations along a route within specified radius in meters. Only if it was provided at newRoute mutation */
|
|
4084
|
+
/** Alternative stations along a route within specified radius in meters. Only if it was provided at newRoute mutation. */
|
|
4032
4085
|
stationsAlongRoute?: Maybe<Array<Maybe<RouteStationsAlong>>>;
|
|
4033
4086
|
/** Tags of a route alternative. Values: road, highway, toll, ferry, etc. */
|
|
4034
4087
|
tags?: Maybe<Array<Maybe<RouteTagType>>>;
|
|
@@ -4039,66 +4092,251 @@ export type RouteAlternativepolylineArgs = {
|
|
|
4039
4092
|
};
|
|
4040
4093
|
|
|
4041
4094
|
export type RouteAlternativeSaving = {
|
|
4042
|
-
/** Total amount of CO2, in grams, which would be used with a
|
|
4095
|
+
/** Total amount of CO2, in grams, which would be used with a gasoline vehicle. */
|
|
4043
4096
|
co2?: Maybe<Scalars["String"]>;
|
|
4044
|
-
/** Money saved by a user driving this route with the electric vehicle */
|
|
4097
|
+
/** Money saved by a user driving this route with the electric vehicle. */
|
|
4045
4098
|
money?: Maybe<Scalars["String"]>;
|
|
4046
|
-
/** Currency */
|
|
4099
|
+
/** Currency. */
|
|
4047
4100
|
currency?: Maybe<Scalars["String"]>;
|
|
4048
|
-
/** Average gas price with which the calculation was made */
|
|
4101
|
+
/** Average gas price with which the calculation was made. */
|
|
4049
4102
|
averageGasPrice?: Maybe<Scalars["String"]>;
|
|
4050
|
-
/** Average energy price with which the calculation was made */
|
|
4103
|
+
/** Average energy price with which the calculation was made. */
|
|
4051
4104
|
averageEnergyPrice?: Maybe<Scalars["String"]>;
|
|
4052
4105
|
};
|
|
4053
4106
|
|
|
4054
|
-
/** Types of an alternative route */
|
|
4107
|
+
/** Types of an alternative route. */
|
|
4055
4108
|
export enum RouteAlternativeType {
|
|
4056
|
-
/** Fastest route between origin and destination */
|
|
4109
|
+
/** Fastest route between origin and destination. */
|
|
4057
4110
|
FASTEST = "fastest",
|
|
4058
|
-
/** Best matching route based on operator and amenities preferences */
|
|
4111
|
+
/** Best matching route based on operator and amenities preferences. */
|
|
4059
4112
|
BESTMATCHING = "bestMatching",
|
|
4060
|
-
/** An alternative to the fastest route */
|
|
4113
|
+
/** An alternative to the fastest route. */
|
|
4061
4114
|
ALTERNATIVE = "alternative"
|
|
4062
4115
|
}
|
|
4063
4116
|
|
|
4064
|
-
/** Amenity preferences for a route */
|
|
4117
|
+
/** Amenity preferences for a route. */
|
|
4065
4118
|
export type RouteAmenityPreferences = {
|
|
4066
|
-
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius */
|
|
4119
|
+
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius. */
|
|
4067
4120
|
all_charge_stops?: Maybe<Array<AmenityType>>;
|
|
4068
|
-
/** Scheduled charge stops, with a specified amenity and timeline */
|
|
4121
|
+
/** Scheduled charge stops, with a specified amenity and timeline. */
|
|
4069
4122
|
scheduled_charge_stops?: Maybe<Array<RouteScheduledChargeStop>>;
|
|
4070
4123
|
};
|
|
4071
4124
|
|
|
4072
4125
|
export type RouteApp = {
|
|
4073
|
-
/** ID of the app who requested a route */
|
|
4126
|
+
/** ID of the app who requested a route. */
|
|
4074
4127
|
id?: Maybe<Scalars["ID"]>;
|
|
4075
4128
|
};
|
|
4076
4129
|
|
|
4130
|
+
export type RouteEmbeddedEmissions = {
|
|
4131
|
+
/** Total embedded emissions. */
|
|
4132
|
+
total: Scalars["Float"];
|
|
4133
|
+
/** Total manufacturing emissions. */
|
|
4134
|
+
manufacturing: RouteEmbeddedManufacturingEmissions;
|
|
4135
|
+
/** Total distribution related emissions. */
|
|
4136
|
+
distribution: Scalars["Float"];
|
|
4137
|
+
/** Distribution sea segment emissions. */
|
|
4138
|
+
maritime: RouteEmbeddedMaritimeEmissions;
|
|
4139
|
+
/** Distribution land segment emissions. */
|
|
4140
|
+
land: RouteEmbeddedLandEmissions;
|
|
4141
|
+
};
|
|
4142
|
+
|
|
4143
|
+
export type RouteEmbeddedEmissionstotalArgs = {
|
|
4144
|
+
unit?: Maybe<EmissionUnit>;
|
|
4145
|
+
};
|
|
4146
|
+
|
|
4147
|
+
export type RouteEmbeddedEmissionsdistributionArgs = {
|
|
4148
|
+
unit?: Maybe<EmissionUnit>;
|
|
4149
|
+
};
|
|
4150
|
+
|
|
4151
|
+
export type RouteEmbeddedLandEmissions = {
|
|
4152
|
+
/** Total embedded land emissions. */
|
|
4153
|
+
total: Scalars["Float"];
|
|
4154
|
+
/** Distribution land segment emissions from fuel consumption. */
|
|
4155
|
+
fuel: Scalars["Float"];
|
|
4156
|
+
/** Distribution land segment lifecycle emissions. */
|
|
4157
|
+
lifecycle: Scalars["Float"];
|
|
4158
|
+
};
|
|
4159
|
+
|
|
4160
|
+
export type RouteEmbeddedLandEmissionstotalArgs = {
|
|
4161
|
+
unit?: Maybe<EmissionUnit>;
|
|
4162
|
+
};
|
|
4163
|
+
|
|
4164
|
+
export type RouteEmbeddedLandEmissionsfuelArgs = {
|
|
4165
|
+
unit?: Maybe<EmissionUnit>;
|
|
4166
|
+
};
|
|
4167
|
+
|
|
4168
|
+
export type RouteEmbeddedLandEmissionslifecycleArgs = {
|
|
4169
|
+
unit?: Maybe<EmissionUnit>;
|
|
4170
|
+
};
|
|
4171
|
+
|
|
4172
|
+
export type RouteEmbeddedManufacturingEmissions = {
|
|
4173
|
+
/** Total embedded manufacturing emissions. */
|
|
4174
|
+
total: Scalars["Float"];
|
|
4175
|
+
/** Body manufacturing emissions. */
|
|
4176
|
+
body: Scalars["Float"];
|
|
4177
|
+
/** Lithium ion battery manufacturing emissions. */
|
|
4178
|
+
battery?: Maybe<Scalars["Float"]>;
|
|
4179
|
+
};
|
|
4180
|
+
|
|
4181
|
+
export type RouteEmbeddedManufacturingEmissionstotalArgs = {
|
|
4182
|
+
unit?: Maybe<EmissionUnit>;
|
|
4183
|
+
};
|
|
4184
|
+
|
|
4185
|
+
export type RouteEmbeddedManufacturingEmissionsbodyArgs = {
|
|
4186
|
+
unit?: Maybe<EmissionUnit>;
|
|
4187
|
+
};
|
|
4188
|
+
|
|
4189
|
+
export type RouteEmbeddedManufacturingEmissionsbatteryArgs = {
|
|
4190
|
+
unit?: Maybe<EmissionUnit>;
|
|
4191
|
+
};
|
|
4192
|
+
|
|
4193
|
+
export type RouteEmbeddedMaritimeEmissions = {
|
|
4194
|
+
/** Total embedded maritime emissions. */
|
|
4195
|
+
total: Scalars["Float"];
|
|
4196
|
+
/** Fuel related sea segment emissions. */
|
|
4197
|
+
fuel: Scalars["Float"];
|
|
4198
|
+
/** Port facility related sea segment emissions. */
|
|
4199
|
+
port: Scalars["Float"];
|
|
4200
|
+
/** Idling related sea segment emissions. */
|
|
4201
|
+
idle: Scalars["Float"];
|
|
4202
|
+
/** Distributed lifecycle related sea segment emissions. */
|
|
4203
|
+
lifecycle: Scalars["Float"];
|
|
4204
|
+
};
|
|
4205
|
+
|
|
4206
|
+
export type RouteEmbeddedMaritimeEmissionstotalArgs = {
|
|
4207
|
+
unit?: Maybe<EmissionUnit>;
|
|
4208
|
+
};
|
|
4209
|
+
|
|
4210
|
+
export type RouteEmbeddedMaritimeEmissionsfuelArgs = {
|
|
4211
|
+
unit?: Maybe<EmissionUnit>;
|
|
4212
|
+
};
|
|
4213
|
+
|
|
4214
|
+
export type RouteEmbeddedMaritimeEmissionsportArgs = {
|
|
4215
|
+
unit?: Maybe<EmissionUnit>;
|
|
4216
|
+
};
|
|
4217
|
+
|
|
4218
|
+
export type RouteEmbeddedMaritimeEmissionsidleArgs = {
|
|
4219
|
+
unit?: Maybe<EmissionUnit>;
|
|
4220
|
+
};
|
|
4221
|
+
|
|
4222
|
+
export type RouteEmbeddedMaritimeEmissionslifecycleArgs = {
|
|
4223
|
+
unit?: Maybe<EmissionUnit>;
|
|
4224
|
+
};
|
|
4225
|
+
|
|
4226
|
+
export type RouteEmissions = {
|
|
4227
|
+
/** ID of the route for which we retrieve the emissions profile. */
|
|
4228
|
+
route_id: Scalars["ID"];
|
|
4229
|
+
/** ID of the route alternative for which we retrieve the emissions profile. */
|
|
4230
|
+
route_alternative_id: Scalars["ID"];
|
|
4231
|
+
/** Emissions profile for the vehicle used in route. */
|
|
4232
|
+
route_vehicle: RouteVehicleEmissions;
|
|
4233
|
+
/** Emissions profile for the internal combustion engine equivalent. */
|
|
4234
|
+
internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;
|
|
4235
|
+
};
|
|
4236
|
+
|
|
4237
|
+
export type RouteEmissionsinternal_combustion_vehicleArgs = {
|
|
4238
|
+
fuel_type?: Maybe<RouteOperationalFuelType>;
|
|
4239
|
+
};
|
|
4240
|
+
|
|
4241
|
+
export type RouteEndOfLifeEmissions = {
|
|
4242
|
+
/** Total end of life emissions. */
|
|
4243
|
+
total: Scalars["Float"];
|
|
4244
|
+
/** Total fluid related end of life emissions. */
|
|
4245
|
+
fluids: RouteEndOfLifeFluidsEmissions;
|
|
4246
|
+
/** Battery related end of life emissions. */
|
|
4247
|
+
battery: Scalars["Float"];
|
|
4248
|
+
/** Tire related end of life emissions. */
|
|
4249
|
+
tires: Scalars["Float"];
|
|
4250
|
+
/** Body end of life emissions. */
|
|
4251
|
+
body: Scalars["Float"];
|
|
4252
|
+
/** Transport end of life emissions. */
|
|
4253
|
+
transport: Scalars["Float"];
|
|
4254
|
+
};
|
|
4255
|
+
|
|
4256
|
+
export type RouteEndOfLifeEmissionstotalArgs = {
|
|
4257
|
+
unit?: Maybe<EmissionUnit>;
|
|
4258
|
+
};
|
|
4259
|
+
|
|
4260
|
+
export type RouteEndOfLifeEmissionsbatteryArgs = {
|
|
4261
|
+
unit?: Maybe<EmissionUnit>;
|
|
4262
|
+
};
|
|
4263
|
+
|
|
4264
|
+
export type RouteEndOfLifeEmissionstiresArgs = {
|
|
4265
|
+
unit?: Maybe<EmissionUnit>;
|
|
4266
|
+
};
|
|
4267
|
+
|
|
4268
|
+
export type RouteEndOfLifeEmissionsbodyArgs = {
|
|
4269
|
+
unit?: Maybe<EmissionUnit>;
|
|
4270
|
+
};
|
|
4271
|
+
|
|
4272
|
+
export type RouteEndOfLifeEmissionstransportArgs = {
|
|
4273
|
+
unit?: Maybe<EmissionUnit>;
|
|
4274
|
+
};
|
|
4275
|
+
|
|
4276
|
+
export type RouteEndOfLifeFluidsEmissions = {
|
|
4277
|
+
/** Total end of life fluids emissions. */
|
|
4278
|
+
total: Scalars["Float"];
|
|
4279
|
+
/** Total wiper fluid end of life emissions. */
|
|
4280
|
+
wiper: Scalars["Float"];
|
|
4281
|
+
/** Total brake fluid end of life emissions. */
|
|
4282
|
+
brake: Scalars["Float"];
|
|
4283
|
+
/** Total powertrain coolant fluid end of life emissions. */
|
|
4284
|
+
coolant: Scalars["Float"];
|
|
4285
|
+
/** Total transmission fluid end of life emissions. */
|
|
4286
|
+
transmission: Scalars["Float"];
|
|
4287
|
+
/** Total motor oil end of life emissions. */
|
|
4288
|
+
motor_oil?: Maybe<Scalars["Float"]>;
|
|
4289
|
+
};
|
|
4290
|
+
|
|
4291
|
+
export type RouteEndOfLifeFluidsEmissionstotalArgs = {
|
|
4292
|
+
unit?: Maybe<EmissionUnit>;
|
|
4293
|
+
};
|
|
4294
|
+
|
|
4295
|
+
export type RouteEndOfLifeFluidsEmissionswiperArgs = {
|
|
4296
|
+
unit?: Maybe<EmissionUnit>;
|
|
4297
|
+
};
|
|
4298
|
+
|
|
4299
|
+
export type RouteEndOfLifeFluidsEmissionsbrakeArgs = {
|
|
4300
|
+
unit?: Maybe<EmissionUnit>;
|
|
4301
|
+
};
|
|
4302
|
+
|
|
4303
|
+
export type RouteEndOfLifeFluidsEmissionscoolantArgs = {
|
|
4304
|
+
unit?: Maybe<EmissionUnit>;
|
|
4305
|
+
};
|
|
4306
|
+
|
|
4307
|
+
export type RouteEndOfLifeFluidsEmissionstransmissionArgs = {
|
|
4308
|
+
unit?: Maybe<EmissionUnit>;
|
|
4309
|
+
};
|
|
4310
|
+
|
|
4311
|
+
export type RouteEndOfLifeFluidsEmissionsmotor_oilArgs = {
|
|
4312
|
+
unit?: Maybe<EmissionUnit>;
|
|
4313
|
+
};
|
|
4314
|
+
|
|
4077
4315
|
export type RouteInstruction = {
|
|
4078
|
-
/** Information about the points on the polyline */
|
|
4316
|
+
/** Information about the points on the polyline. */
|
|
4079
4317
|
points?: Maybe<RouteInstructionPoints>;
|
|
4080
|
-
/** Sign of the instruction. See `RouteInstructionSign
|
|
4318
|
+
/** Sign of the instruction. See `RouteInstructionSign`. */
|
|
4081
4319
|
sign?: Maybe<RouteInstructionSign>;
|
|
4082
|
-
/** Name of the street on which the instruction is */
|
|
4320
|
+
/** Name of the street on which the instruction is. */
|
|
4083
4321
|
name?: Maybe<Scalars["String"]>;
|
|
4084
|
-
/** Distance, in meters, of the current route instruction */
|
|
4322
|
+
/** Distance, in meters, of the current route instruction. */
|
|
4085
4323
|
distance?: Maybe<Scalars["Int"]>;
|
|
4086
|
-
/** Duration, in seconds, of the current route instruction */
|
|
4324
|
+
/** Duration, in seconds, of the current route instruction. */
|
|
4087
4325
|
time?: Maybe<Scalars["Int"]>;
|
|
4088
|
-
/** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null */
|
|
4326
|
+
/** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null. */
|
|
4089
4327
|
exit_number?: Maybe<Scalars["Int"]>;
|
|
4090
|
-
/** Curvature angle between the roundabout and street you exit the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise is null */
|
|
4328
|
+
/** Curvature angle between the roundabout and street you exit the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise is null. */
|
|
4091
4329
|
turn_angle?: Maybe<Scalars["Float"]>;
|
|
4092
4330
|
};
|
|
4093
4331
|
|
|
4094
4332
|
export type RouteInstructionPoints = {
|
|
4095
|
-
/** Number of polyline points which are included in this instruction */
|
|
4333
|
+
/** Number of polyline points which are included in this instruction. */
|
|
4096
4334
|
size?: Maybe<Scalars["Int"]>;
|
|
4097
|
-
/** The interval of points that are included in this instruction, an array with 2 values, where the first value is the index of the polyline where the interval starts. The second value is where it ends */
|
|
4335
|
+
/** The interval of points that are included in this instruction, an array with 2 values, where the first value is the index of the polyline where the interval starts. The second value is where it ends. */
|
|
4098
4336
|
interval?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
4099
4337
|
};
|
|
4100
4338
|
|
|
4101
|
-
/** Sign belonging to the instruction indicating the main maneuver */
|
|
4339
|
+
/** Sign belonging to the instruction indicating the main maneuver. */
|
|
4102
4340
|
export enum RouteInstructionSign {
|
|
4103
4341
|
UNKNOWN = "UNKNOWN",
|
|
4104
4342
|
U_TURN_UNKNOWN = "U_TURN_UNKNOWN",
|
|
@@ -4124,68 +4362,115 @@ export enum RouteInstructionSign {
|
|
|
4124
4362
|
IGNORE = "IGNORE"
|
|
4125
4363
|
}
|
|
4126
4364
|
|
|
4365
|
+
export type RouteInternalCombustionVehicleEmissions = {
|
|
4366
|
+
/** Total emissions. */
|
|
4367
|
+
total: Scalars["Float"];
|
|
4368
|
+
/** Embedded emissions. */
|
|
4369
|
+
embedded: RouteEmbeddedEmissions;
|
|
4370
|
+
/** Operational emissions. */
|
|
4371
|
+
operational: RouteInternalCombustionVehicleOperationalEmissions;
|
|
4372
|
+
/** End of life emissions. */
|
|
4373
|
+
end_of_life: RouteEndOfLifeEmissions;
|
|
4374
|
+
/** Emissions info for the legs in the order as within the route. */
|
|
4375
|
+
legs: Array<RouteInternalCombustionVehicleLegEmissions>;
|
|
4376
|
+
};
|
|
4377
|
+
|
|
4378
|
+
export type RouteInternalCombustionVehicleEmissionstotalArgs = {
|
|
4379
|
+
unit?: Maybe<EmissionUnit>;
|
|
4380
|
+
};
|
|
4381
|
+
|
|
4382
|
+
export type RouteInternalCombustionVehicleLegEmissions = {
|
|
4383
|
+
/** Total emissions for the leg. */
|
|
4384
|
+
total: Scalars["Float"];
|
|
4385
|
+
/** Embedded emissions for the leg. */
|
|
4386
|
+
embedded: RouteEmbeddedEmissions;
|
|
4387
|
+
/** Operational emissions for the leg. */
|
|
4388
|
+
operational: RouteInternalCombustionVehicleOperationalEmissions;
|
|
4389
|
+
/** End of life emissions for the leg. */
|
|
4390
|
+
end_of_life: RouteEndOfLifeEmissions;
|
|
4391
|
+
};
|
|
4392
|
+
|
|
4393
|
+
export type RouteInternalCombustionVehicleLegEmissionstotalArgs = {
|
|
4394
|
+
unit?: Maybe<EmissionUnit>;
|
|
4395
|
+
};
|
|
4396
|
+
|
|
4397
|
+
export type RouteInternalCombustionVehicleOperationalEmissions = {
|
|
4398
|
+
/** Total operational emissions. */
|
|
4399
|
+
total: Scalars["Float"];
|
|
4400
|
+
/** Fuel emissions data. */
|
|
4401
|
+
fuel: RouteOperationalFuelEmissions;
|
|
4402
|
+
/** Total road infrastructure emissions. */
|
|
4403
|
+
infrastructure: RouteOperationalInfrastructureEmissions;
|
|
4404
|
+
/** Total maintenance emissions. */
|
|
4405
|
+
maintenance: RouteOperationalMaintenanceEmissions;
|
|
4406
|
+
};
|
|
4407
|
+
|
|
4408
|
+
export type RouteInternalCombustionVehicleOperationalEmissionstotalArgs = {
|
|
4409
|
+
unit?: Maybe<EmissionUnit>;
|
|
4410
|
+
};
|
|
4411
|
+
|
|
4127
4412
|
export type RouteLeg = {
|
|
4128
|
-
/** ID of a leg */
|
|
4413
|
+
/** ID of a leg. */
|
|
4129
4414
|
id?: Maybe<Scalars["ID"]>;
|
|
4130
|
-
/** Distance from the start to the end of a leg, in meters */
|
|
4415
|
+
/** Distance from the start to the end of a leg, in meters. */
|
|
4131
4416
|
distance?: Maybe<Scalars["Int"]>;
|
|
4132
|
-
/** Total drive time from the start to the end of a leg, in seconds */
|
|
4417
|
+
/** Total drive time from the start to the end of a leg, in seconds. */
|
|
4133
4418
|
duration?: Maybe<Scalars["Int"]>;
|
|
4134
|
-
/** Total energy used in a leg in kWh */
|
|
4419
|
+
/** Total energy used in a leg in kWh. */
|
|
4135
4420
|
consumption?: Maybe<Scalars["Float"]>;
|
|
4136
|
-
/** Range, in meters, available at the beginning of a leg */
|
|
4421
|
+
/** Range, in meters, available at the beginning of a leg. */
|
|
4137
4422
|
rangeStart?: Maybe<Scalars["Int"]>;
|
|
4138
|
-
/** Total energy in a battery at the beginning of a leg, in kWh */
|
|
4423
|
+
/** Total energy in a battery at the beginning of a leg, in kWh. */
|
|
4139
4424
|
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
4140
|
-
/** Total energy in a battery at the beginning of a trip, in percentage */
|
|
4425
|
+
/** Total energy in a battery at the beginning of a trip, in percentage. */
|
|
4141
4426
|
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
4142
4427
|
/** Range, in meters, available at the end of a leg. In the case of a non BEV where the range end is negative, the value will be 0. */
|
|
4143
4428
|
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
4144
4429
|
/** Total energy left in a battery at the end of a leg, in kWh. In the case of a non BEV where the range end is negative, the value will be 0. */
|
|
4145
4430
|
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
4146
|
-
/** Remaining range, energy in percentage, at the end of a trip */
|
|
4431
|
+
/** Remaining range, energy in percentage, at the end of a trip. */
|
|
4147
4432
|
rangeEndPercentage?: Maybe<Scalars["Int"]>;
|
|
4148
|
-
/** Origin point location */
|
|
4433
|
+
/** Origin point location. */
|
|
4149
4434
|
origin?: Maybe<FeaturePoint>;
|
|
4150
|
-
/** Destination point location */
|
|
4435
|
+
/** Destination point location. */
|
|
4151
4436
|
destination?: Maybe<FeaturePoint>;
|
|
4152
|
-
/** Type of a leg */
|
|
4437
|
+
/** Type of a leg. */
|
|
4153
4438
|
type?: Maybe<LegType>;
|
|
4154
|
-
/** Name of a destination. This is the station name in case a user should charge or the name of the location in case this was provided */
|
|
4439
|
+
/** Name of a destination. This is the station name in case a user should charge or the name of the location in case this was provided. */
|
|
4155
4440
|
name?: Maybe<Scalars["String"]>;
|
|
4156
|
-
/** ID of a station */
|
|
4441
|
+
/** ID of a station. */
|
|
4157
4442
|
stationId?: Maybe<Scalars["String"]>;
|
|
4158
|
-
/** ID of an operator */
|
|
4443
|
+
/** ID of an operator. */
|
|
4159
4444
|
operatorId?: Maybe<Scalars["String"]>;
|
|
4160
|
-
/** Name of an operator */
|
|
4445
|
+
/** Name of an operator. */
|
|
4161
4446
|
operatorName?: Maybe<Scalars["String"]>;
|
|
4162
|
-
/** Ranking of an operator */
|
|
4447
|
+
/** Ranking of an operator. */
|
|
4163
4448
|
operatorRanking?: Maybe<Scalars["Int"]>;
|
|
4164
|
-
/** Total time required to charge a battery until 80%, in seconds */
|
|
4449
|
+
/** Total time required to charge a battery until 80%, in seconds. */
|
|
4165
4450
|
chargeTime?: Maybe<Scalars["Int"]>;
|
|
4166
|
-
/** Recommended EVSE where to charge */
|
|
4451
|
+
/** Recommended EVSE where to charge. */
|
|
4167
4452
|
evse?: Maybe<EVSE>;
|
|
4168
|
-
/** Recommended connector for charging */
|
|
4453
|
+
/** Recommended connector for charging. */
|
|
4169
4454
|
connector?: Maybe<Connector>;
|
|
4170
|
-
/** Number of compatible plugs available at a charge station */
|
|
4455
|
+
/** Number of compatible plugs available at a charge station. */
|
|
4171
4456
|
plugsAvailable?: Maybe<Scalars["Int"]>;
|
|
4172
|
-
/** Number of compatible plugs occupied at a charge station */
|
|
4457
|
+
/** Number of compatible plugs occupied at a charge station. */
|
|
4173
4458
|
plugsOccupied?: Maybe<Scalars["Int"]>;
|
|
4174
|
-
/** Number of compatible plugs unknown at a charge station */
|
|
4459
|
+
/** Number of compatible plugs unknown at a charge station. */
|
|
4175
4460
|
plugsUnknown?: Maybe<Scalars["Int"]>;
|
|
4176
|
-
/** Number of compatible plugs out of order at a charge station */
|
|
4461
|
+
/** Number of compatible plugs out of order at a charge station. */
|
|
4177
4462
|
plugsOutOfOrder?: Maybe<Scalars["Int"]>;
|
|
4178
|
-
/** Total number of compatible plugs at a charge station */
|
|
4463
|
+
/** Total number of compatible plugs at a charge station. */
|
|
4179
4464
|
plugsCount?: Maybe<Scalars["Int"]>;
|
|
4180
|
-
/** Polyline containing encoded coordinates */
|
|
4465
|
+
/** Polyline containing encoded coordinates. */
|
|
4181
4466
|
polyline?: Maybe<Scalars["String"]>;
|
|
4182
|
-
/** Steps of a leg */
|
|
4467
|
+
/** Steps of a leg. */
|
|
4183
4468
|
steps?: Maybe<Array<Maybe<RouteStep>>>;
|
|
4184
|
-
/** Tags of a leg. Values: road, highway, toll, ferry */
|
|
4469
|
+
/** Tags of a leg. Values: road, highway, toll, ferry. */
|
|
4185
4470
|
tags?: Maybe<Array<Maybe<RouteTagType>>>;
|
|
4186
|
-
/** Cargo weight in a vehicle for the duration of a leg, in kg */
|
|
4471
|
+
/** Cargo weight in a vehicle for the duration of a leg, in kg. */
|
|
4187
4472
|
cargo?: Maybe<Scalars["Float"]>;
|
|
4188
|
-
/** Number of occupants in a vehicle for the duration of a leg */
|
|
4473
|
+
/** Number of occupants in a vehicle for the duration of a leg. */
|
|
4189
4474
|
occupants?: Maybe<Scalars["Int"]>;
|
|
4190
4475
|
};
|
|
4191
4476
|
|
|
@@ -4212,170 +4497,532 @@ export type RouteMetaWarning = {
|
|
|
4212
4497
|
data?: Maybe<Scalars["JSON"]>;
|
|
4213
4498
|
};
|
|
4214
4499
|
|
|
4215
|
-
/**
|
|
4500
|
+
/** Köppen climate classification. */
|
|
4501
|
+
export enum RouteOperationalElectricityClimate {
|
|
4502
|
+
/** Tropical rain forest climate. */
|
|
4503
|
+
AF = "Af",
|
|
4504
|
+
/** Tropical monsoon climate. */
|
|
4505
|
+
AM = "Am",
|
|
4506
|
+
/** Tropical savanna climate, dry summer. */
|
|
4507
|
+
AW = "Aw",
|
|
4508
|
+
/** Tropical savanna climate, dry winter. */
|
|
4509
|
+
AS = "As",
|
|
4510
|
+
/** Hot desert climate. */
|
|
4511
|
+
BWH = "BWh",
|
|
4512
|
+
/** Cold desert climate. */
|
|
4513
|
+
BWK = "BWk",
|
|
4514
|
+
/** Hot semi-arid climate. */
|
|
4515
|
+
BSH = "BSh",
|
|
4516
|
+
/** Cold semi-arid climate. */
|
|
4517
|
+
BSK = "BSk",
|
|
4518
|
+
/** Monsoon-influenced humid subtropical climate. */
|
|
4519
|
+
CWA = "Cwa",
|
|
4520
|
+
/** Subtropical highland climate. */
|
|
4521
|
+
CWB = "Cwb",
|
|
4522
|
+
/** Cold subtropical highland climate. */
|
|
4523
|
+
CWC = "Cwc",
|
|
4524
|
+
/** Humid subtropical climate. */
|
|
4525
|
+
CFA = "Cfa",
|
|
4526
|
+
/** Temperate oceanic climate. */
|
|
4527
|
+
CFB = "Cfb",
|
|
4528
|
+
/** Sub polar oceanic climate. */
|
|
4529
|
+
CFC = "Cfc",
|
|
4530
|
+
/** Hot-summer Mediterranean climate. */
|
|
4531
|
+
CSA = "Csa",
|
|
4532
|
+
/** Warm-summer Mediterranean climate. */
|
|
4533
|
+
CSB = "Csb",
|
|
4534
|
+
/** Cold-summer Mediterranean climate. */
|
|
4535
|
+
CSC = "Csc",
|
|
4536
|
+
/** Monsoon-influenced hot-summer humid continental climate. */
|
|
4537
|
+
DWA = "Dwa",
|
|
4538
|
+
/** Monsoon-influenced warm-summer humid continental climate. */
|
|
4539
|
+
DWB = "Dwb",
|
|
4540
|
+
/** Monsoon-influenced subarctic climate. */
|
|
4541
|
+
DWC = "Dwc",
|
|
4542
|
+
/** Monsoon-influenced extremely cold subarctic climate. */
|
|
4543
|
+
DWD = "Dwd",
|
|
4544
|
+
/** Hot-summer humid continental climate. */
|
|
4545
|
+
DFA = "Dfa",
|
|
4546
|
+
/** Warm-summer humid continental climate. */
|
|
4547
|
+
DFB = "Dfb",
|
|
4548
|
+
/** Subarctic climate. */
|
|
4549
|
+
DFC = "Dfc",
|
|
4550
|
+
/** Extremely cold subarctic climate. */
|
|
4551
|
+
DFD = "Dfd",
|
|
4552
|
+
/** Mediterranean-influenced hot-summer humid continental climate. */
|
|
4553
|
+
DSA = "Dsa",
|
|
4554
|
+
/** Mediterranean-influenced warm-summer humid continental climate. */
|
|
4555
|
+
DSB = "Dsb",
|
|
4556
|
+
/** Mediterranean-influenced subarctic climate. */
|
|
4557
|
+
DSC = "Dsc",
|
|
4558
|
+
/** Mediterranean-influenced extremely cold subarctic climate. */
|
|
4559
|
+
DSD = "Dsd",
|
|
4560
|
+
/** Tundra climate. */
|
|
4561
|
+
ET = "ET",
|
|
4562
|
+
/** Ice cap climate. */
|
|
4563
|
+
EF = "EF"
|
|
4564
|
+
}
|
|
4565
|
+
|
|
4566
|
+
export type RouteOperationalElectricityEmissions = {
|
|
4567
|
+
/** Total electricity emissions. */
|
|
4568
|
+
total: Scalars["Float"];
|
|
4569
|
+
/** Base emissions without efficiency losses. */
|
|
4570
|
+
base_emissions: Scalars["Float"];
|
|
4571
|
+
/** Emissions for electricity lost in the battery. */
|
|
4572
|
+
battery_losses: Scalars["Float"];
|
|
4573
|
+
/** Emissions for electricity lost in transmission. */
|
|
4574
|
+
transmission_losses: Scalars["Float"];
|
|
4575
|
+
/** Emissions for electricity lost during charging. */
|
|
4576
|
+
chargepoint_losses: Scalars["Float"];
|
|
4577
|
+
/** Electricity efficiency information. */
|
|
4578
|
+
electricity_efficiency: RouteOperationalElectricityEmissionsEfficiency;
|
|
4579
|
+
/** Electricity intensity information. */
|
|
4580
|
+
electricity_intensity: RouteOperationalElectricityEmissionsIntensity;
|
|
4581
|
+
};
|
|
4582
|
+
|
|
4583
|
+
export type RouteOperationalElectricityEmissionstotalArgs = {
|
|
4584
|
+
unit?: Maybe<EmissionUnit>;
|
|
4585
|
+
};
|
|
4586
|
+
|
|
4587
|
+
export type RouteOperationalElectricityEmissionsbase_emissionsArgs = {
|
|
4588
|
+
unit?: Maybe<EmissionUnit>;
|
|
4589
|
+
};
|
|
4590
|
+
|
|
4591
|
+
export type RouteOperationalElectricityEmissionsbattery_lossesArgs = {
|
|
4592
|
+
unit?: Maybe<EmissionUnit>;
|
|
4593
|
+
};
|
|
4594
|
+
|
|
4595
|
+
export type RouteOperationalElectricityEmissionstransmission_lossesArgs = {
|
|
4596
|
+
unit?: Maybe<EmissionUnit>;
|
|
4597
|
+
};
|
|
4598
|
+
|
|
4599
|
+
export type RouteOperationalElectricityEmissionschargepoint_lossesArgs = {
|
|
4600
|
+
unit?: Maybe<EmissionUnit>;
|
|
4601
|
+
};
|
|
4602
|
+
|
|
4603
|
+
export type RouteOperationalElectricityEmissionsEfficiency = {
|
|
4604
|
+
/** Average total electricity efficiency. */
|
|
4605
|
+
total_efficiency: Scalars["Float"];
|
|
4606
|
+
/** Average efficiency of the battery. */
|
|
4607
|
+
battery_efficiency: Scalars["Float"];
|
|
4608
|
+
/** Average efficiency of electricity transmission. */
|
|
4609
|
+
transmission_efficiency: Scalars["Float"];
|
|
4610
|
+
/** Average base regional grid efficiency. */
|
|
4611
|
+
base_transmission_efficiency: Scalars["Float"];
|
|
4612
|
+
/** Average transmission efficiency change due to temperature. */
|
|
4613
|
+
transmission_efficiency_temperature_modifier: Scalars["Float"];
|
|
4614
|
+
/** Average efficiency of the chargepoint. */
|
|
4615
|
+
chargepoint_efficiency: Scalars["Float"];
|
|
4616
|
+
/** Average evse efficiency. */
|
|
4617
|
+
evse_efficiency: Scalars["Float"];
|
|
4618
|
+
/** Average breaker efficiency. */
|
|
4619
|
+
breaker_efficiency: Scalars["Float"];
|
|
4620
|
+
/** Average power electronics unit efficiency. */
|
|
4621
|
+
power_electronics_unit_efficiency: Scalars["Float"];
|
|
4622
|
+
/** Average transformer efficiency. */
|
|
4623
|
+
transformer_efficiency: Scalars["Float"];
|
|
4624
|
+
/** Change in chargepoint efficiency due to temperature. */
|
|
4625
|
+
chargepoint_efficiency_temperature_modifier: Scalars["Float"];
|
|
4626
|
+
/** Average charging current in ampere. */
|
|
4627
|
+
average_charging_current: Scalars["Float"];
|
|
4628
|
+
/** Average charging voltage in volts. */
|
|
4629
|
+
average_charging_voltage: Scalars["Float"];
|
|
4630
|
+
/** Average outside temperature. */
|
|
4631
|
+
average_temperature: Scalars["Float"];
|
|
4632
|
+
/** Average regional temperature. */
|
|
4633
|
+
average_regional_temperature: Scalars["Float"];
|
|
4634
|
+
};
|
|
4635
|
+
|
|
4636
|
+
export type RouteOperationalElectricityEmissionsEfficiencyaverage_temperatureArgs = {
|
|
4637
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4638
|
+
};
|
|
4639
|
+
|
|
4640
|
+
export type RouteOperationalElectricityEmissionsEfficiencyaverage_regional_temperatureArgs = {
|
|
4641
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4642
|
+
};
|
|
4643
|
+
|
|
4644
|
+
export type RouteOperationalElectricityEmissionsGenerationMethods = {
|
|
4645
|
+
/** Fraction of coal production. */
|
|
4646
|
+
coal: Scalars["Float"];
|
|
4647
|
+
/** Fraction of gas production. */
|
|
4648
|
+
gas: Scalars["Float"];
|
|
4649
|
+
/** Fraction of hydroelectric production. */
|
|
4650
|
+
hydro: Scalars["Float"];
|
|
4651
|
+
/** Fraction of solar production. */
|
|
4652
|
+
solar: Scalars["Float"];
|
|
4653
|
+
/** Fraction of wind production. */
|
|
4654
|
+
wind: Scalars["Float"];
|
|
4655
|
+
/** Fraction of oil production. */
|
|
4656
|
+
oil: Scalars["Float"];
|
|
4657
|
+
/** Fraction of nuclear production. */
|
|
4658
|
+
nuclear: Scalars["Float"];
|
|
4659
|
+
/** Fraction of biofuel production. */
|
|
4660
|
+
biofuel: Scalars["Float"];
|
|
4661
|
+
/** Fraction of other misc renewable production. */
|
|
4662
|
+
other: Scalars["Float"];
|
|
4663
|
+
};
|
|
4664
|
+
|
|
4665
|
+
export type RouteOperationalElectricityEmissionsIntensity = {
|
|
4666
|
+
/** Average route electricity emissions intensity in unit CO2e/kWh. */
|
|
4667
|
+
total_electricity_intensity: Scalars["Float"];
|
|
4668
|
+
/** Base regional electricity emissions intensity in unit CO2e/kWh. */
|
|
4669
|
+
base_electricity_intensity: Scalars["Float"];
|
|
4670
|
+
/** Generation methods of electricity production. */
|
|
4671
|
+
generation_methods: RouteOperationalElectricityEmissionsGenerationMethods;
|
|
4672
|
+
/** Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc in unit CO2e/kWh. */
|
|
4673
|
+
electricity_infrastructure_intensity: Scalars["Float"];
|
|
4674
|
+
/** Season for which the route was calculated. */
|
|
4675
|
+
season: RouteOperationalElectricitySeason;
|
|
4676
|
+
/** The climate for which the route was calculated. */
|
|
4677
|
+
climate: RouteOperationalElectricityClimate;
|
|
4678
|
+
/** Average electricity demand at the time of route charges as a fraction of average demand. */
|
|
4679
|
+
average_electricity_demand: Scalars["Float"];
|
|
4680
|
+
/** Fraction of regional power generation that is not affected by demand (always on). */
|
|
4681
|
+
base_load_fraction: Scalars["Float"];
|
|
4682
|
+
};
|
|
4683
|
+
|
|
4684
|
+
export type RouteOperationalElectricityEmissionsIntensitytotal_electricity_intensityArgs = {
|
|
4685
|
+
unit?: Maybe<EmissionUnit>;
|
|
4686
|
+
};
|
|
4687
|
+
|
|
4688
|
+
export type RouteOperationalElectricityEmissionsIntensitybase_electricity_intensityArgs = {
|
|
4689
|
+
unit?: Maybe<EmissionUnit>;
|
|
4690
|
+
};
|
|
4691
|
+
|
|
4692
|
+
export type RouteOperationalElectricityEmissionsIntensityelectricity_infrastructure_intensityArgs = {
|
|
4693
|
+
unit?: Maybe<EmissionUnit>;
|
|
4694
|
+
};
|
|
4695
|
+
|
|
4696
|
+
/** Yearly seasons. */
|
|
4697
|
+
export enum RouteOperationalElectricitySeason {
|
|
4698
|
+
/** Winter season. */
|
|
4699
|
+
WINTER = "winter",
|
|
4700
|
+
/** Spring season. */
|
|
4701
|
+
SPRING = "spring",
|
|
4702
|
+
/** Summer season. */
|
|
4703
|
+
SUMMER = "summer",
|
|
4704
|
+
/** Fall season. */
|
|
4705
|
+
FALL = "fall"
|
|
4706
|
+
}
|
|
4707
|
+
|
|
4708
|
+
export type RouteOperationalFluidEmissions = {
|
|
4709
|
+
/** Total fluid. */
|
|
4710
|
+
total: Scalars["Float"];
|
|
4711
|
+
/** Total wiper fluid maintenance emissions. */
|
|
4712
|
+
wiper: Scalars["Float"];
|
|
4713
|
+
/** Total brake fluid maintenance emissions. */
|
|
4714
|
+
brake: Scalars["Float"];
|
|
4715
|
+
/** Total powertrain coolant fluid maintenance emissions. */
|
|
4716
|
+
coolant: Scalars["Float"];
|
|
4717
|
+
/** Total transmission fluid maintenance emissions. */
|
|
4718
|
+
transmission: Scalars["Float"];
|
|
4719
|
+
/** Total motor oil maintenance emissions. */
|
|
4720
|
+
motor_oil?: Maybe<Scalars["Float"]>;
|
|
4721
|
+
};
|
|
4722
|
+
|
|
4723
|
+
export type RouteOperationalFluidEmissionstotalArgs = {
|
|
4724
|
+
unit?: Maybe<EmissionUnit>;
|
|
4725
|
+
};
|
|
4726
|
+
|
|
4727
|
+
export type RouteOperationalFluidEmissionswiperArgs = {
|
|
4728
|
+
unit?: Maybe<EmissionUnit>;
|
|
4729
|
+
};
|
|
4730
|
+
|
|
4731
|
+
export type RouteOperationalFluidEmissionsbrakeArgs = {
|
|
4732
|
+
unit?: Maybe<EmissionUnit>;
|
|
4733
|
+
};
|
|
4734
|
+
|
|
4735
|
+
export type RouteOperationalFluidEmissionscoolantArgs = {
|
|
4736
|
+
unit?: Maybe<EmissionUnit>;
|
|
4737
|
+
};
|
|
4738
|
+
|
|
4739
|
+
export type RouteOperationalFluidEmissionstransmissionArgs = {
|
|
4740
|
+
unit?: Maybe<EmissionUnit>;
|
|
4741
|
+
};
|
|
4742
|
+
|
|
4743
|
+
export type RouteOperationalFluidEmissionsmotor_oilArgs = {
|
|
4744
|
+
unit?: Maybe<EmissionUnit>;
|
|
4745
|
+
};
|
|
4746
|
+
|
|
4747
|
+
export type RouteOperationalFuelEmissions = {
|
|
4748
|
+
/** Total fuel for the route. */
|
|
4749
|
+
total: Scalars["Float"];
|
|
4750
|
+
/** Direct (combustion) emissions of the fuel. */
|
|
4751
|
+
direct_emissions: Scalars["Float"];
|
|
4752
|
+
/** Indirect (production and transport) emissions of the fuel. */
|
|
4753
|
+
indirect_emissions: Scalars["Float"];
|
|
4754
|
+
/** Fuel consumption for the route in litres. */
|
|
4755
|
+
fuel_consumption: Scalars["Float"];
|
|
4756
|
+
/** Estimated internal combustion vehicle weight. */
|
|
4757
|
+
weight: Scalars["Float"];
|
|
4758
|
+
/** Estimated internal combustion vehicle engine torque. */
|
|
4759
|
+
engine_torque: Scalars["Float"];
|
|
4760
|
+
/** Average powertrain efficiency. */
|
|
4761
|
+
powertrain_efficiency: Scalars["Float"];
|
|
4762
|
+
/** Average base powertrain efficiency. */
|
|
4763
|
+
base_powertrain_efficiency: Scalars["Float"];
|
|
4764
|
+
/** Speed related change in powertrain efficiency from the base. */
|
|
4765
|
+
powertrain_efficiency_speed_modifier: Scalars["Float"];
|
|
4766
|
+
/** Average speed of the vehicle. */
|
|
4767
|
+
average_speed: Scalars["Float"];
|
|
4768
|
+
};
|
|
4769
|
+
|
|
4770
|
+
export type RouteOperationalFuelEmissionstotalArgs = {
|
|
4771
|
+
unit?: Maybe<EmissionUnit>;
|
|
4772
|
+
};
|
|
4773
|
+
|
|
4774
|
+
export type RouteOperationalFuelEmissionsdirect_emissionsArgs = {
|
|
4775
|
+
unit?: Maybe<EmissionUnit>;
|
|
4776
|
+
};
|
|
4777
|
+
|
|
4778
|
+
export type RouteOperationalFuelEmissionsindirect_emissionsArgs = {
|
|
4779
|
+
unit?: Maybe<EmissionUnit>;
|
|
4780
|
+
};
|
|
4781
|
+
|
|
4782
|
+
export type RouteOperationalFuelEmissionsfuel_consumptionArgs = {
|
|
4783
|
+
unit?: Maybe<FuelUnit>;
|
|
4784
|
+
};
|
|
4785
|
+
|
|
4786
|
+
export type RouteOperationalFuelEmissionsweightArgs = {
|
|
4787
|
+
unit?: Maybe<WeightUnit>;
|
|
4788
|
+
};
|
|
4789
|
+
|
|
4790
|
+
export type RouteOperationalFuelEmissionsengine_torqueArgs = {
|
|
4791
|
+
unit?: Maybe<TorqueUnit>;
|
|
4792
|
+
};
|
|
4793
|
+
|
|
4794
|
+
export type RouteOperationalFuelEmissionsaverage_speedArgs = {
|
|
4795
|
+
unit?: Maybe<SpeedUnit>;
|
|
4796
|
+
};
|
|
4797
|
+
|
|
4798
|
+
/** Fuel types. */
|
|
4799
|
+
export enum RouteOperationalFuelType {
|
|
4800
|
+
/** Gasoline fuel. */
|
|
4801
|
+
GASOLINE = "gasoline",
|
|
4802
|
+
/** Diesel fuel. */
|
|
4803
|
+
DIESEL = "diesel"
|
|
4804
|
+
}
|
|
4805
|
+
|
|
4806
|
+
export type RouteOperationalInfrastructureEmissions = {
|
|
4807
|
+
/** Total infrastructure. */
|
|
4808
|
+
total: Scalars["Float"];
|
|
4809
|
+
/** Embedded (construction, decommissioning, etc) emissions cost. */
|
|
4810
|
+
embedded: Scalars["Float"];
|
|
4811
|
+
/** Induced maintenance emissions. */
|
|
4812
|
+
maintenance: Scalars["Float"];
|
|
4813
|
+
};
|
|
4814
|
+
|
|
4815
|
+
export type RouteOperationalInfrastructureEmissionstotalArgs = {
|
|
4816
|
+
unit?: Maybe<EmissionUnit>;
|
|
4817
|
+
};
|
|
4818
|
+
|
|
4819
|
+
export type RouteOperationalInfrastructureEmissionsembeddedArgs = {
|
|
4820
|
+
unit?: Maybe<EmissionUnit>;
|
|
4821
|
+
};
|
|
4822
|
+
|
|
4823
|
+
export type RouteOperationalInfrastructureEmissionsmaintenanceArgs = {
|
|
4824
|
+
unit?: Maybe<EmissionUnit>;
|
|
4825
|
+
};
|
|
4826
|
+
|
|
4827
|
+
export type RouteOperationalMaintenanceEmissions = {
|
|
4828
|
+
/** Total maintenance. */
|
|
4829
|
+
total: Scalars["Float"];
|
|
4830
|
+
/** Total fluid related maintenance emissions. */
|
|
4831
|
+
fluids: RouteOperationalFluidEmissions;
|
|
4832
|
+
/** Battery related maintenance emissions. */
|
|
4833
|
+
battery: Scalars["Float"];
|
|
4834
|
+
/** Tire related maintenance emissions. */
|
|
4835
|
+
tires: Scalars["Float"];
|
|
4836
|
+
/** Miscellaneous component maintenance emissions. */
|
|
4837
|
+
components: Scalars["Float"];
|
|
4838
|
+
/** Accident repair related maintenance emissions. */
|
|
4839
|
+
repair: Scalars["Float"];
|
|
4840
|
+
};
|
|
4841
|
+
|
|
4842
|
+
export type RouteOperationalMaintenanceEmissionstotalArgs = {
|
|
4843
|
+
unit?: Maybe<EmissionUnit>;
|
|
4844
|
+
};
|
|
4845
|
+
|
|
4846
|
+
export type RouteOperationalMaintenanceEmissionsbatteryArgs = {
|
|
4847
|
+
unit?: Maybe<EmissionUnit>;
|
|
4848
|
+
};
|
|
4849
|
+
|
|
4850
|
+
export type RouteOperationalMaintenanceEmissionstiresArgs = {
|
|
4851
|
+
unit?: Maybe<EmissionUnit>;
|
|
4852
|
+
};
|
|
4853
|
+
|
|
4854
|
+
export type RouteOperationalMaintenanceEmissionscomponentsArgs = {
|
|
4855
|
+
unit?: Maybe<EmissionUnit>;
|
|
4856
|
+
};
|
|
4857
|
+
|
|
4858
|
+
export type RouteOperationalMaintenanceEmissionsrepairArgs = {
|
|
4859
|
+
unit?: Maybe<EmissionUnit>;
|
|
4860
|
+
};
|
|
4861
|
+
|
|
4862
|
+
/** Prioritized operators for a route calculation. */
|
|
4216
4863
|
export type RouteOperators = {
|
|
4217
|
-
/** Flag indicating if the operators ranking should be preferred or required */
|
|
4864
|
+
/** Flag indicating if the operators ranking should be preferred or required. */
|
|
4218
4865
|
type?: Maybe<RouteOperatorsType>;
|
|
4219
|
-
/** Ranking of an operator with multiple levels, each level having it's own penalty value */
|
|
4866
|
+
/** Ranking of an operator with multiple levels, each level having it's own penalty value. */
|
|
4220
4867
|
ranking?: Maybe<RouteOperatorsRanking>;
|
|
4221
|
-
/** Operator IDs which should be excluded from a route */
|
|
4868
|
+
/** Operator IDs which should be excluded from a route. */
|
|
4222
4869
|
exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4223
4870
|
};
|
|
4224
4871
|
|
|
4225
|
-
/** Prioritized operators for a route calculation */
|
|
4872
|
+
/** Prioritized operators for a route calculation. */
|
|
4226
4873
|
export type RouteOperatorsInput = {
|
|
4227
|
-
/** Flag indicating if the operators ranking should be preferred or required */
|
|
4874
|
+
/** Flag indicating if the operators ranking should be preferred or required. */
|
|
4228
4875
|
type?: Maybe<RouteOperatorsType>;
|
|
4229
|
-
/** Ranking of an operator with multiple levels, each level having it's own penalty value */
|
|
4876
|
+
/** Ranking of an operator with multiple levels, each level having it's own penalty value. */
|
|
4230
4877
|
ranking?: Maybe<RouteOperatorsRankingInput>;
|
|
4231
|
-
/** Operator IDs which should be excluded from a route */
|
|
4878
|
+
/** Operator IDs which should be excluded from a route. */
|
|
4232
4879
|
exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4233
4880
|
};
|
|
4234
4881
|
|
|
4235
|
-
/** Ranking configuration for prioritized operators */
|
|
4882
|
+
/** Ranking configuration for prioritized operators. */
|
|
4236
4883
|
export type RouteOperatorsRanking = {
|
|
4237
|
-
/** Level 1 (most significant) for operator ranking */
|
|
4884
|
+
/** Level 1 (most significant) for operator ranking. */
|
|
4238
4885
|
level1?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4239
|
-
/** Level 2 for operator ranking */
|
|
4886
|
+
/** Level 2 for operator ranking. */
|
|
4240
4887
|
level2?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4241
|
-
/** Level 3 for operator ranking */
|
|
4888
|
+
/** Level 3 for operator ranking. */
|
|
4242
4889
|
level3?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4243
|
-
/** Level 4 for operator ranking */
|
|
4890
|
+
/** Level 4 for operator ranking. */
|
|
4244
4891
|
level4?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4245
|
-
/** Level 5 for operator ranking */
|
|
4892
|
+
/** Level 5 for operator ranking. */
|
|
4246
4893
|
level5?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4247
|
-
/** Level 6 for operator ranking */
|
|
4894
|
+
/** Level 6 for operator ranking. */
|
|
4248
4895
|
level6?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4249
|
-
/** Level 7 for operator ranking */
|
|
4896
|
+
/** Level 7 for operator ranking. */
|
|
4250
4897
|
level7?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4251
|
-
/** Level 8 for operator ranking */
|
|
4898
|
+
/** Level 8 for operator ranking. */
|
|
4252
4899
|
level8?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4253
|
-
/** Level 9 for operator ranking */
|
|
4900
|
+
/** Level 9 for operator ranking. */
|
|
4254
4901
|
level9?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4255
|
-
/** Level 10 (least significant) for operator ranking */
|
|
4902
|
+
/** Level 10 (least significant) for operator ranking. */
|
|
4256
4903
|
level10?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4257
4904
|
};
|
|
4258
4905
|
|
|
4259
|
-
/** Ranking configuration for prioritized operators */
|
|
4906
|
+
/** Ranking configuration for prioritized operators. */
|
|
4260
4907
|
export type RouteOperatorsRankingInput = {
|
|
4261
|
-
/** Level 1 (most significant) for operator ranking */
|
|
4908
|
+
/** Level 1 (most significant) for operator ranking. */
|
|
4262
4909
|
level1?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4263
|
-
/** Level 2 for operator ranking */
|
|
4910
|
+
/** Level 2 for operator ranking. */
|
|
4264
4911
|
level2?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4265
|
-
/** Level 3 for operator ranking */
|
|
4912
|
+
/** Level 3 for operator ranking. */
|
|
4266
4913
|
level3?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4267
|
-
/** Level 4 for operator ranking */
|
|
4914
|
+
/** Level 4 for operator ranking. */
|
|
4268
4915
|
level4?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4269
|
-
/** Level 5 for operator ranking */
|
|
4916
|
+
/** Level 5 for operator ranking. */
|
|
4270
4917
|
level5?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4271
|
-
/** Level 6 for operator ranking */
|
|
4918
|
+
/** Level 6 for operator ranking. */
|
|
4272
4919
|
level6?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4273
|
-
/** Level 7 for operator ranking */
|
|
4920
|
+
/** Level 7 for operator ranking. */
|
|
4274
4921
|
level7?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4275
|
-
/** Level 8 for operator ranking */
|
|
4922
|
+
/** Level 8 for operator ranking. */
|
|
4276
4923
|
level8?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4277
|
-
/** Level 9 for operator ranking */
|
|
4924
|
+
/** Level 9 for operator ranking. */
|
|
4278
4925
|
level9?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4279
|
-
/** Level 10 (least significant) for operator ranking */
|
|
4926
|
+
/** Level 10 (least significant) for operator ranking. */
|
|
4280
4927
|
level10?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
4281
4928
|
};
|
|
4282
4929
|
|
|
4283
|
-
/** Type of operator prioritization for a route */
|
|
4930
|
+
/** Type of operator prioritization for a route. */
|
|
4284
4931
|
export enum RouteOperatorsType {
|
|
4285
|
-
/** Default option. Operators ranking will not be taken into account if no type is given */
|
|
4932
|
+
/** Default option. Operators ranking will not be taken into account if no type is given. */
|
|
4286
4933
|
NONE = "none",
|
|
4287
|
-
/** Operators given in the operators ranking will be preferred when calculating routes */
|
|
4934
|
+
/** Operators given in the operators ranking will be preferred when calculating routes. */
|
|
4288
4935
|
PREFERRED = "preferred",
|
|
4289
|
-
/** Operators given in the operators ranking will be required when calculating routes, all other operators will be ignored */
|
|
4936
|
+
/** Operators given in the operators ranking will be required when calculating routes, all other operators will be ignored. */
|
|
4290
4937
|
REQUIRED = "required"
|
|
4291
4938
|
}
|
|
4292
4939
|
|
|
4293
4940
|
export type RoutePath = {
|
|
4294
|
-
/** GeoJSON location of a route path segment */
|
|
4941
|
+
/** GeoJSON location of a route path segment. */
|
|
4295
4942
|
location?: Maybe<Point>;
|
|
4296
|
-
/** Elevation (altitude) in meters */
|
|
4943
|
+
/** Elevation (altitude) in meters. */
|
|
4297
4944
|
elevation?: Maybe<Scalars["Int"]>;
|
|
4298
|
-
/** Average speed, in km/h, for this route path segment */
|
|
4945
|
+
/** Average speed, in km/h, for this route path segment. */
|
|
4299
4946
|
averageSpeed?: Maybe<Scalars["Float"]>;
|
|
4300
|
-
/** Recommended speed, in km/h for this route path segment to optimise the consumption */
|
|
4947
|
+
/** Recommended speed, in km/h for this route path segment to optimise the consumption. */
|
|
4301
4948
|
recommendedSpeed?: Maybe<Scalars["Float"]>;
|
|
4302
|
-
/** Consumption, in kWh, of a route path segment */
|
|
4949
|
+
/** Consumption, in kWh, of a route path segment. */
|
|
4303
4950
|
consumption?: Maybe<Scalars["Float"]>;
|
|
4304
|
-
/** Consumption, in kWh per km, of a route path segment */
|
|
4951
|
+
/** Consumption, in kWh per km, of a route path segment. */
|
|
4305
4952
|
consumptionPerKm?: Maybe<Scalars["Float"]>;
|
|
4306
|
-
/** Distance, in meters, of a route path segment */
|
|
4953
|
+
/** Distance, in meters, of a route path segment. */
|
|
4307
4954
|
distance?: Maybe<Scalars["Float"]>;
|
|
4308
|
-
/** Duration, in seconds, of a route path segment */
|
|
4955
|
+
/** Duration, in seconds, of a route path segment. */
|
|
4309
4956
|
duration?: Maybe<Scalars["Float"]>;
|
|
4310
|
-
/** State of charge, in kWh, of a route path segment */
|
|
4957
|
+
/** State of charge, in kWh, of a route path segment. */
|
|
4311
4958
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
4312
4959
|
};
|
|
4313
4960
|
|
|
4314
|
-
/** Scheduled charge stop along a route */
|
|
4961
|
+
/** Scheduled charge stop along a route. */
|
|
4315
4962
|
export type RouteScheduledChargeStop = {
|
|
4316
|
-
/** List of amenity types */
|
|
4963
|
+
/** List of amenity types. */
|
|
4317
4964
|
types?: Maybe<Array<Maybe<AmenityType>>>;
|
|
4318
|
-
/** Duration at the amenity, in seconds */
|
|
4965
|
+
/** Duration at the amenity, in seconds. */
|
|
4319
4966
|
duration?: Maybe<Scalars["Int"]>;
|
|
4320
|
-
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800 */
|
|
4967
|
+
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800. */
|
|
4321
4968
|
offset?: Maybe<Scalars["Int"]>;
|
|
4322
|
-
/** Desired drive time before a scheduled stop after leaving the previous stop, in seconds */
|
|
4969
|
+
/** Desired drive time before a scheduled stop after leaving the previous stop, in seconds. */
|
|
4323
4970
|
stop_after?: Maybe<Scalars["Int"]>;
|
|
4324
|
-
/** Maximum distance from a station to an amenity, in meters */
|
|
4971
|
+
/** Maximum distance from a station to an amenity, in meters. */
|
|
4325
4972
|
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
4326
4973
|
};
|
|
4327
4974
|
|
|
4328
|
-
/** The season of the route */
|
|
4975
|
+
/** The season of the route. */
|
|
4329
4976
|
export enum RouteSeason {
|
|
4330
|
-
/** We suppose it is summer and we have the best weather conditions */
|
|
4977
|
+
/** We suppose it is summer and we have the best weather conditions. */
|
|
4331
4978
|
SUMMER = "summer",
|
|
4332
|
-
/** We suppose it is winter and we have the worst weather conditions */
|
|
4979
|
+
/** We suppose it is winter and we have the worst weather conditions. */
|
|
4333
4980
|
WINTER = "winter",
|
|
4334
|
-
/** We fetch the current weather conditions */
|
|
4981
|
+
/** We fetch the current weather conditions. */
|
|
4335
4982
|
CURRENT = "current"
|
|
4336
4983
|
}
|
|
4337
4984
|
|
|
4338
4985
|
export type RouteStationsAlong = {
|
|
4339
|
-
/** The ID of station */
|
|
4986
|
+
/** The ID of station. */
|
|
4340
4987
|
id?: Maybe<Scalars["String"]>;
|
|
4341
|
-
/** Geojson location of a station */
|
|
4988
|
+
/** Geojson location of a station. */
|
|
4342
4989
|
location?: Maybe<Point>;
|
|
4343
|
-
/** Speed of a station. A station along a route can be either fast or turbo */
|
|
4990
|
+
/** Speed of a station. A station along a route can be either fast or turbo. */
|
|
4344
4991
|
speed?: Maybe<StationSpeedType>;
|
|
4345
|
-
/** Status of a station */
|
|
4992
|
+
/** Status of a station. */
|
|
4346
4993
|
status?: Maybe<ChargerStatus>;
|
|
4347
|
-
/** The station uses a preferred operator */
|
|
4994
|
+
/** The station uses a preferred operator. */
|
|
4348
4995
|
preferredOperator?: Maybe<Scalars["Boolean"]>;
|
|
4349
|
-
/** Distance in meters between station and route path */
|
|
4996
|
+
/** Distance in meters between station and route path. */
|
|
4350
4997
|
distance?: Maybe<Scalars["Int"]>;
|
|
4351
4998
|
};
|
|
4352
4999
|
|
|
4353
|
-
/** The status of a route. The status can be pending, processing, done, not_found or error */
|
|
5000
|
+
/** The status of a route. The status can be pending, processing, done, not_found or error. */
|
|
4354
5001
|
export enum RouteStatus {
|
|
4355
|
-
/** Route is queued and pending processing. Temporary status */
|
|
5002
|
+
/** Route is queued and pending processing. Temporary status. */
|
|
4356
5003
|
PENDING = "pending",
|
|
4357
|
-
/** We are computing the route for your request. Temporary status */
|
|
5004
|
+
/** We are computing the route for your request. Temporary status. */
|
|
4358
5005
|
PROCESSING = "processing",
|
|
4359
|
-
/** We finished computing the route, with a result. Final status */
|
|
5006
|
+
/** We finished computing the route, with a result. Final status. */
|
|
4360
5007
|
DONE = "done",
|
|
4361
|
-
/** We finished the computing the route, without any result. Final status */
|
|
5008
|
+
/** We finished the computing the route, without any result. Final status. */
|
|
4362
5009
|
NOT_FOUND = "not_found",
|
|
4363
|
-
/** An error occurred while computing the route. Final status */
|
|
5010
|
+
/** An error occurred while computing the route. Final status. */
|
|
4364
5011
|
ERROR = "error"
|
|
4365
5012
|
}
|
|
4366
5013
|
|
|
4367
5014
|
export type RouteStep = {
|
|
4368
|
-
/** ID of a step */
|
|
5015
|
+
/** ID of a step. */
|
|
4369
5016
|
id?: Maybe<Scalars["ID"]>;
|
|
4370
|
-
/** Type of a step */
|
|
5017
|
+
/** Type of a step. */
|
|
4371
5018
|
type?: Maybe<StepType>;
|
|
4372
|
-
/** Polyline containing encoded coordinates */
|
|
5019
|
+
/** Polyline containing encoded coordinates. */
|
|
4373
5020
|
polyline?: Maybe<Scalars["String"]>;
|
|
4374
|
-
/** Distance from the start to the end of a step, in meters */
|
|
5021
|
+
/** Distance from the start to the end of a step, in meters. */
|
|
4375
5022
|
distance?: Maybe<Scalars["Int"]>;
|
|
4376
|
-
/** Total drive time from the start to the end of a step, in seconds */
|
|
5023
|
+
/** Total drive time from the start to the end of a step, in seconds. */
|
|
4377
5024
|
duration?: Maybe<Scalars["Int"]>;
|
|
4378
|
-
/** Total energy used in a step in kWh */
|
|
5025
|
+
/** Total energy used in a step in kWh. */
|
|
4379
5026
|
consumption?: Maybe<Scalars["Float"]>;
|
|
4380
5027
|
};
|
|
4381
5028
|
|
|
@@ -4383,7 +5030,7 @@ export type RouteSteppolylineArgs = {
|
|
|
4383
5030
|
decimals?: Maybe<Scalars["Int"]>;
|
|
4384
5031
|
};
|
|
4385
5032
|
|
|
4386
|
-
/** Tags of a route */
|
|
5033
|
+
/** Tags of a route. */
|
|
4387
5034
|
export enum RouteTagType {
|
|
4388
5035
|
ROAD = "road",
|
|
4389
5036
|
HIGHWAY = "highway",
|
|
@@ -4393,24 +5040,71 @@ export enum RouteTagType {
|
|
|
4393
5040
|
CROSSBORDER = "crossborder"
|
|
4394
5041
|
}
|
|
4395
5042
|
|
|
4396
|
-
|
|
5043
|
+
export type RouteVehicleEmissions = {
|
|
5044
|
+
/** Total emissions. */
|
|
5045
|
+
total: Scalars["Float"];
|
|
5046
|
+
/** Embedded emissions. */
|
|
5047
|
+
embedded: RouteEmbeddedEmissions;
|
|
5048
|
+
/** Operational emissions. */
|
|
5049
|
+
operational: RouteVehicleOperationalEmissions;
|
|
5050
|
+
/** End of life emissions. */
|
|
5051
|
+
end_of_life: RouteEndOfLifeEmissions;
|
|
5052
|
+
/** Emissions info for the legs in the order as within the route. */
|
|
5053
|
+
legs: Array<RouteVehicleLegEmissions>;
|
|
5054
|
+
};
|
|
5055
|
+
|
|
5056
|
+
export type RouteVehicleEmissionstotalArgs = {
|
|
5057
|
+
unit?: Maybe<EmissionUnit>;
|
|
5058
|
+
};
|
|
5059
|
+
|
|
5060
|
+
export type RouteVehicleLegEmissions = {
|
|
5061
|
+
/** Total emissions for the leg. */
|
|
5062
|
+
total: Scalars["Float"];
|
|
5063
|
+
/** Embedded emissions for the leg. */
|
|
5064
|
+
embedded: RouteEmbeddedEmissions;
|
|
5065
|
+
/** Operational emissions for the leg. */
|
|
5066
|
+
operational: RouteVehicleOperationalEmissions;
|
|
5067
|
+
/** End of life emissions for the leg. */
|
|
5068
|
+
end_of_life: RouteEndOfLifeEmissions;
|
|
5069
|
+
};
|
|
5070
|
+
|
|
5071
|
+
export type RouteVehicleLegEmissionstotalArgs = {
|
|
5072
|
+
unit?: Maybe<EmissionUnit>;
|
|
5073
|
+
};
|
|
5074
|
+
|
|
5075
|
+
export type RouteVehicleOperationalEmissions = {
|
|
5076
|
+
/** Total operational emissions. */
|
|
5077
|
+
total: Scalars["Float"];
|
|
5078
|
+
/** Electricity emissions data. */
|
|
5079
|
+
electricity: RouteOperationalElectricityEmissions;
|
|
5080
|
+
/** Total road infrastructure emissions. */
|
|
5081
|
+
infrastructure: RouteOperationalInfrastructureEmissions;
|
|
5082
|
+
/** Total maintenance emissions. */
|
|
5083
|
+
maintenance: RouteOperationalMaintenanceEmissions;
|
|
5084
|
+
};
|
|
5085
|
+
|
|
5086
|
+
export type RouteVehicleOperationalEmissionstotalArgs = {
|
|
5087
|
+
unit?: Maybe<EmissionUnit>;
|
|
5088
|
+
};
|
|
5089
|
+
|
|
5090
|
+
/** Scheduled charge stop along a route. */
|
|
4397
5091
|
export type ScheduledChargeStopInput = {
|
|
4398
|
-
/** List of amenity types */
|
|
5092
|
+
/** List of amenity types. */
|
|
4399
5093
|
types: Array<AmenityType>;
|
|
4400
|
-
/** Duration at the amenity, in seconds. The value should be between 900 and 86400 */
|
|
5094
|
+
/** Duration at the amenity, in seconds. The value should be between 900 and 86400. */
|
|
4401
5095
|
duration: Scalars["Int"];
|
|
4402
|
-
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800 */
|
|
5096
|
+
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800. */
|
|
4403
5097
|
offset?: Maybe<Scalars["Int"]>;
|
|
4404
|
-
/** Desired drive time for a scheduled stop after leaving the origin point, in seconds */
|
|
5098
|
+
/** Desired drive time for a scheduled stop after leaving the origin point, in seconds. */
|
|
4405
5099
|
stop_after: Scalars["Int"];
|
|
4406
|
-
/** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000. Default is 1000 */
|
|
5100
|
+
/** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000. Default is 1000. */
|
|
4407
5101
|
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
4408
5102
|
};
|
|
4409
5103
|
|
|
4410
5104
|
export enum SpeedUnit {
|
|
4411
|
-
/** Return the speed in kilometers per hour */
|
|
5105
|
+
/** Return the speed in kilometers per hour. */
|
|
4412
5106
|
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
4413
|
-
/** Return the speed in miles per hour */
|
|
5107
|
+
/** Return the speed in miles per hour. */
|
|
4414
5108
|
MILES_PER_HOUR = "miles_per_hour"
|
|
4415
5109
|
}
|
|
4416
5110
|
|
|
@@ -4423,22 +5117,22 @@ export type StandardStats = {
|
|
|
4423
5117
|
};
|
|
4424
5118
|
|
|
4425
5119
|
export type StateOfChargeInput = {
|
|
4426
|
-
/** Value of the state of charge of the vehicle */
|
|
5120
|
+
/** Value of the state of charge of the vehicle. */
|
|
4427
5121
|
value: Scalars["Float"];
|
|
4428
|
-
/** Type of the state of charge of the vehicle */
|
|
5122
|
+
/** Type of the state of charge of the vehicle. */
|
|
4429
5123
|
type: StateOfChargeUnit;
|
|
4430
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
5124
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
4431
5125
|
source?: Maybe<TelemetryInputSource>;
|
|
4432
5126
|
};
|
|
4433
5127
|
|
|
4434
5128
|
export enum StateOfChargeUnit {
|
|
4435
|
-
/** Return the state of charge in kilometers */
|
|
5129
|
+
/** Return the state of charge in kilometers. */
|
|
4436
5130
|
KILOMETER = "kilometer",
|
|
4437
|
-
/** Return the state of charge in miles */
|
|
5131
|
+
/** Return the state of charge in miles. */
|
|
4438
5132
|
MILE = "mile",
|
|
4439
|
-
/** Return the state of charge in kilowatt hours */
|
|
5133
|
+
/** Return the state of charge in kilowatt hours. */
|
|
4440
5134
|
KILOWATT_HOUR = "kilowatt_hour",
|
|
4441
|
-
/** Return the state of charge as a percentage */
|
|
5135
|
+
/** Return the state of charge as a percentage. */
|
|
4442
5136
|
PERCENTAGE = "percentage"
|
|
4443
5137
|
}
|
|
4444
5138
|
|
|
@@ -4646,13 +5340,13 @@ export type StationRoaming = {
|
|
|
4646
5340
|
ios_app_link?: Maybe<Scalars["String"]>;
|
|
4647
5341
|
};
|
|
4648
5342
|
|
|
4649
|
-
/** The station speed type */
|
|
5343
|
+
/** The station speed type. */
|
|
4650
5344
|
export enum StationSpeedType {
|
|
4651
|
-
/** Slow charging (below 43 kWh) */
|
|
5345
|
+
/** Slow charging (below 43 kWh). */
|
|
4652
5346
|
SLOW = "slow",
|
|
4653
|
-
/** Fast charging stations (above 43 kWh and below 150 kWh) */
|
|
5347
|
+
/** Fast charging stations (above 43 kWh and below 150 kWh). */
|
|
4654
5348
|
FAST = "fast",
|
|
4655
|
-
/** Ultra fast charging stations (above 150 kWh) */
|
|
5349
|
+
/** Ultra fast charging stations (above 150 kWh). */
|
|
4656
5350
|
TURBO = "turbo"
|
|
4657
5351
|
}
|
|
4658
5352
|
|
|
@@ -4666,26 +5360,26 @@ export type StationStats = {
|
|
|
4666
5360
|
amenities?: Maybe<Array<Maybe<AmenityStats>>>;
|
|
4667
5361
|
};
|
|
4668
5362
|
|
|
4669
|
-
/** Types of a route step */
|
|
5363
|
+
/** Types of a route step. */
|
|
4670
5364
|
export enum StepType {
|
|
4671
|
-
/** This step is a road */
|
|
5365
|
+
/** This step is a road. */
|
|
4672
5366
|
ROAD = "road",
|
|
4673
|
-
/** This step is a highway */
|
|
5367
|
+
/** This step is a highway. */
|
|
4674
5368
|
HIGHWAY = "highway",
|
|
4675
|
-
/** This step is a toll road */
|
|
5369
|
+
/** This step is a toll road. */
|
|
4676
5370
|
TOLL = "toll",
|
|
4677
|
-
/** This step is a ferry */
|
|
5371
|
+
/** This step is a ferry. */
|
|
4678
5372
|
FERRY = "ferry",
|
|
4679
|
-
/** This step is reachable by walking */
|
|
5373
|
+
/** This step is reachable by walking. */
|
|
4680
5374
|
WALKING = "walking",
|
|
4681
|
-
/** This step is a crossborder */
|
|
5375
|
+
/** This step is a crossborder. */
|
|
4682
5376
|
CROSSBORDER = "crossborder"
|
|
4683
5377
|
}
|
|
4684
5378
|
|
|
4685
5379
|
export type Subscription = {
|
|
4686
5380
|
/** [BETA] Subscribe to a connected vehicle. */
|
|
4687
5381
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
4688
|
-
/**
|
|
5382
|
+
/** Subscribe to an isoline in order to receive updates. */
|
|
4689
5383
|
isoline?: Maybe<Isoline>;
|
|
4690
5384
|
/** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates */
|
|
4691
5385
|
navigationUpdatedById?: Maybe<Navigation>;
|
|
@@ -4710,49 +5404,49 @@ export type SubscriptionrouteUpdatedByIdArgs = {
|
|
|
4710
5404
|
};
|
|
4711
5405
|
|
|
4712
5406
|
export type Telemetry = {
|
|
4713
|
-
/** Value of the auxiliary power consumption of the vehicle */
|
|
5407
|
+
/** Value of the auxiliary power consumption of the vehicle. */
|
|
4714
5408
|
auxiliary_consumption?: Maybe<Scalars["Float"]>;
|
|
4715
|
-
/** Battery current in ampere */
|
|
5409
|
+
/** Battery current in ampere. */
|
|
4716
5410
|
battery_current?: Maybe<Scalars["Float"]>;
|
|
4717
|
-
/** Value of the temperature of the battery */
|
|
5411
|
+
/** Value of the temperature of the battery. */
|
|
4718
5412
|
battery_temperature?: Maybe<Scalars["Float"]>;
|
|
4719
|
-
/** Battery voltage in volts */
|
|
5413
|
+
/** Battery voltage in volts. */
|
|
4720
5414
|
battery_voltage?: Maybe<Scalars["Float"]>;
|
|
4721
|
-
/** Is the vehicle currently charging */
|
|
5415
|
+
/** Is the vehicle currently charging. */
|
|
4722
5416
|
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
4723
|
-
/** Value of the rate of charge of the battery */
|
|
5417
|
+
/** Value of the rate of charge of the battery. */
|
|
4724
5418
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
4725
|
-
/** Value of the amount of battery charged */
|
|
5419
|
+
/** Value of the amount of battery charged. */
|
|
4726
5420
|
charge_total?: Maybe<Scalars["Float"]>;
|
|
4727
|
-
/** Value of the current weight of the occupants */
|
|
5421
|
+
/** Value of the current weight of the occupants. */
|
|
4728
5422
|
total_occupant_weight?: Maybe<Scalars["Float"]>;
|
|
4729
|
-
/** Value of the current weight of the cargo */
|
|
5423
|
+
/** Value of the current weight of the cargo. */
|
|
4730
5424
|
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
4731
|
-
/** Value of the current elevation */
|
|
5425
|
+
/** Value of the current elevation. */
|
|
4732
5426
|
elevation?: Maybe<Scalars["Float"]>;
|
|
4733
|
-
/** Current heading in degrees */
|
|
5427
|
+
/** Current heading in degrees. */
|
|
4734
5428
|
heading?: Maybe<Scalars["Float"]>;
|
|
4735
|
-
/** RPM of the motor */
|
|
5429
|
+
/** RPM of the motor. */
|
|
4736
5430
|
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
4737
|
-
/** Number of occupants present in the vehicle */
|
|
5431
|
+
/** Number of occupants present in the vehicle. */
|
|
4738
5432
|
occupants?: Maybe<Scalars["Int"]>;
|
|
4739
|
-
/** Value of the vehicle's odometer */
|
|
5433
|
+
/** Value of the vehicle's odometer. */
|
|
4740
5434
|
odometer?: Maybe<Scalars["Float"]>;
|
|
4741
|
-
/** Value of the outside temperature */
|
|
5435
|
+
/** Value of the outside temperature. */
|
|
4742
5436
|
outside_temperature?: Maybe<Scalars["Float"]>;
|
|
4743
|
-
/** Vehicle is in park, neutral or turned off */
|
|
5437
|
+
/** Vehicle is in park, neutral or turned off. */
|
|
4744
5438
|
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
4745
|
-
/** Value of the positive or negative power. When negative the vehicle is charging */
|
|
5439
|
+
/** Value of the positive or negative power. When negative the vehicle is charging. */
|
|
4746
5440
|
power?: Maybe<Scalars["Float"]>;
|
|
4747
|
-
/** Value of the state of charge of the vehicle */
|
|
5441
|
+
/** Value of the state of charge of the vehicle. */
|
|
4748
5442
|
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
4749
|
-
/** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear */
|
|
5443
|
+
/** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear. */
|
|
4750
5444
|
tire_pressure?: Maybe<Array<Scalars["Float"]>>;
|
|
4751
|
-
/** UNIX timestamp in seconds */
|
|
5445
|
+
/** UNIX timestamp in seconds. */
|
|
4752
5446
|
timestamp?: Maybe<Scalars["Int"]>;
|
|
4753
|
-
/** Value of the vehicle speed */
|
|
5447
|
+
/** Value of the vehicle speed. */
|
|
4754
5448
|
vehicle_speed?: Maybe<Scalars["Float"]>;
|
|
4755
|
-
/** Custom input fields can be added based on telemetry architecture */
|
|
5449
|
+
/** Custom input fields can be added based on telemetry architecture. */
|
|
4756
5450
|
custom?: Maybe<Scalars["JSON"]>;
|
|
4757
5451
|
};
|
|
4758
5452
|
|
|
@@ -4809,104 +5503,104 @@ export type Telemetryvehicle_speedArgs = {
|
|
|
4809
5503
|
};
|
|
4810
5504
|
|
|
4811
5505
|
export type TelemetryInput = {
|
|
4812
|
-
/** Average auxiliary power consumption */
|
|
5506
|
+
/** Average auxiliary power consumption. */
|
|
4813
5507
|
auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;
|
|
4814
|
-
/** Battery current in ampere */
|
|
5508
|
+
/** Battery current in ampere. */
|
|
4815
5509
|
battery_current?: Maybe<Scalars["Float"]>;
|
|
4816
|
-
/** Battery temperature */
|
|
5510
|
+
/** Battery temperature. */
|
|
4817
5511
|
battery_temperature?: Maybe<BatteryTemperatureInput>;
|
|
4818
|
-
/** Battery voltage in volts */
|
|
5512
|
+
/** Battery voltage in volts. */
|
|
4819
5513
|
battery_voltage?: Maybe<Scalars["Float"]>;
|
|
4820
|
-
/** Is the vehicle currently charging */
|
|
5514
|
+
/** Is the vehicle currently charging. */
|
|
4821
5515
|
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
4822
|
-
/** Rate of charge */
|
|
5516
|
+
/** Rate of charge. */
|
|
4823
5517
|
charge_speed?: Maybe<ChargeSpeedInput>;
|
|
4824
|
-
/** Amount charged */
|
|
5518
|
+
/** Amount charged. */
|
|
4825
5519
|
charge_total?: Maybe<ChargeTotalInput>;
|
|
4826
|
-
/** Cumulated weight of the occupants */
|
|
5520
|
+
/** Cumulated weight of the occupants. */
|
|
4827
5521
|
total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
|
|
4828
|
-
/** Weight of the cargo */
|
|
5522
|
+
/** Weight of the cargo. */
|
|
4829
5523
|
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
4830
|
-
/** Current elevation */
|
|
5524
|
+
/** Current elevation. */
|
|
4831
5525
|
elevation?: Maybe<ElevationInput>;
|
|
4832
|
-
/** Current heading in degrees */
|
|
5526
|
+
/** Current heading in degrees. */
|
|
4833
5527
|
heading?: Maybe<Scalars["Float"]>;
|
|
4834
|
-
/** RPM of the motor */
|
|
5528
|
+
/** RPM of the motor. */
|
|
4835
5529
|
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
4836
|
-
/** Number of occupants in the vehicle */
|
|
5530
|
+
/** Number of occupants in the vehicle. */
|
|
4837
5531
|
occupants?: Maybe<Scalars["Int"]>;
|
|
4838
|
-
/** Mileage or odometer reading */
|
|
5532
|
+
/** Mileage or odometer reading. */
|
|
4839
5533
|
odometer?: Maybe<OdometerInput>;
|
|
4840
|
-
/** Outside temperature */
|
|
5534
|
+
/** Outside temperature. */
|
|
4841
5535
|
outside_temperature?: Maybe<OutsideTempInput>;
|
|
4842
|
-
/** Vehicle is in park, neutral or turned off */
|
|
5536
|
+
/** Vehicle is in park, neutral or turned off. */
|
|
4843
5537
|
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
4844
|
-
/** Vehicle power */
|
|
5538
|
+
/** Vehicle power. */
|
|
4845
5539
|
power?: Maybe<PowerInput>;
|
|
4846
|
-
/** Battery state of charge */
|
|
5540
|
+
/** Battery state of charge. */
|
|
4847
5541
|
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
4848
|
-
/** Average tire pressures of all wheels, starting from the front side right to left and to the rear */
|
|
5542
|
+
/** Average tire pressures of all wheels, starting from the front side right to left and to the rear. */
|
|
4849
5543
|
tire_pressure?: Maybe<TirePressureInput>;
|
|
4850
|
-
/** UNIX timestamp in seconds */
|
|
5544
|
+
/** UNIX timestamp in seconds. */
|
|
4851
5545
|
timestamp?: Maybe<Scalars["Int"]>;
|
|
4852
|
-
/** Vehicle speed */
|
|
5546
|
+
/** Vehicle speed. */
|
|
4853
5547
|
vehicle_speed?: Maybe<VehicleSpeedInput>;
|
|
4854
|
-
/** Custom input fields can be added based on telemetry architecture */
|
|
5548
|
+
/** Custom input fields can be added based on telemetry architecture. */
|
|
4855
5549
|
custom?: Maybe<Scalars["JSON"]>;
|
|
4856
5550
|
};
|
|
4857
5551
|
|
|
4858
5552
|
export enum TelemetryInputSource {
|
|
4859
|
-
/** Manually inputted value */
|
|
5553
|
+
/** Manually inputted value. */
|
|
4860
5554
|
MANUAL = "manual",
|
|
4861
|
-
/** Value from the vehicle's telemetry */
|
|
5555
|
+
/** Value from the vehicle's telemetry. */
|
|
4862
5556
|
TELEMETRY = "telemetry"
|
|
4863
5557
|
}
|
|
4864
5558
|
|
|
4865
5559
|
export enum TemperatureUnit {
|
|
4866
|
-
/** Return the temperature in Celsius */
|
|
5560
|
+
/** Return the temperature in Celsius. */
|
|
4867
5561
|
CELSIUS = "Celsius",
|
|
4868
|
-
/** Return the temperature in Fahrenheit */
|
|
5562
|
+
/** Return the temperature in Fahrenheit. */
|
|
4869
5563
|
FAHRENHEIT = "Fahrenheit"
|
|
4870
5564
|
}
|
|
4871
5565
|
|
|
4872
5566
|
export type TirePressureInput = {
|
|
4873
|
-
/** Values for the tire pressure, starting from the front side right to left and to the rear */
|
|
5567
|
+
/** Values for the tire pressure, starting from the front side right to left and to the rear. */
|
|
4874
5568
|
value: Array<Scalars["Float"]>;
|
|
4875
|
-
/** Type of the value of pressure */
|
|
5569
|
+
/** Type of the value of pressure. */
|
|
4876
5570
|
type: PressureUnit;
|
|
4877
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
5571
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
4878
5572
|
source?: Maybe<TelemetryInputSource>;
|
|
4879
5573
|
};
|
|
4880
5574
|
|
|
4881
5575
|
export enum TorqueUnit {
|
|
4882
|
-
/** Return the torque in newton meters */
|
|
5576
|
+
/** Return the torque in newton meters. */
|
|
4883
5577
|
NEWTON_METER = "newton_meter",
|
|
4884
|
-
/** Return the torque in foot pounds */
|
|
5578
|
+
/** Return the torque in foot pounds. */
|
|
4885
5579
|
FOOT_POUND = "foot_pound"
|
|
4886
5580
|
}
|
|
4887
5581
|
|
|
4888
5582
|
export type TotalCargoWeightInput = {
|
|
4889
|
-
/** Value of the current weight of the cargo */
|
|
5583
|
+
/** Value of the current weight of the cargo. */
|
|
4890
5584
|
value: Scalars["Float"];
|
|
4891
|
-
/** Type of the current weight of the cargo */
|
|
5585
|
+
/** Type of the current weight of the cargo. */
|
|
4892
5586
|
type: WeightUnit;
|
|
4893
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
5587
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
4894
5588
|
source?: Maybe<TelemetryInputSource>;
|
|
4895
5589
|
};
|
|
4896
5590
|
|
|
4897
5591
|
export type TotalOccupantWeightInput = {
|
|
4898
|
-
/** Value of the current weight of the occupants */
|
|
5592
|
+
/** Value of the current weight of the occupants. */
|
|
4899
5593
|
value: Scalars["Float"];
|
|
4900
|
-
/** Type of the current weight of the occupants */
|
|
5594
|
+
/** Type of the current weight of the occupants. */
|
|
4901
5595
|
type: WeightUnit;
|
|
4902
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
5596
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
4903
5597
|
source?: Maybe<TelemetryInputSource>;
|
|
4904
5598
|
};
|
|
4905
5599
|
|
|
4906
5600
|
export enum TurningCircleUnit {
|
|
4907
|
-
/** Return the turning circle in meters */
|
|
5601
|
+
/** Return the turning circle in meters. */
|
|
4908
5602
|
METER = "meter",
|
|
4909
|
-
/** Return the turning circle in feet */
|
|
5603
|
+
/** Return the turning circle in feet. */
|
|
4910
5604
|
FOOT = "foot"
|
|
4911
5605
|
}
|
|
4912
5606
|
|
|
@@ -5142,9 +5836,9 @@ export enum VehicleImageType {
|
|
|
5142
5836
|
IMAGE_PREMIUM = "image_premium",
|
|
5143
5837
|
/** Thumbnail of a premium image. */
|
|
5144
5838
|
PREMIUM_IMAGE_THUMBNAIL = "premium_image_thumbnail",
|
|
5145
|
-
/** Full-sized brand (
|
|
5839
|
+
/** Full-sized brand (make) logo at 768x432 px. */
|
|
5146
5840
|
BRAND = "brand",
|
|
5147
|
-
/** Thumbnail of a full-sized brand logo at 56x24 px. */
|
|
5841
|
+
/** Thumbnail of a full-sized brand (make) logo at 56x24 px. */
|
|
5148
5842
|
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
5149
5843
|
/** Placeholder image at 1536x864 px. */
|
|
5150
5844
|
PLACEHOLDER = "placeholder"
|
|
@@ -5227,8 +5921,13 @@ export type VehicleListFilter = {
|
|
|
5227
5921
|
export type VehicleListMedia = {
|
|
5228
5922
|
/** Featured image of the vehicle from a 45-degree angle. */
|
|
5229
5923
|
image: VehicleImage;
|
|
5230
|
-
/**
|
|
5924
|
+
/**
|
|
5925
|
+
* Latest make logo of the vehicle.
|
|
5926
|
+
* @deprecated In favor of make.
|
|
5927
|
+
*/
|
|
5231
5928
|
brand: VehicleImage;
|
|
5929
|
+
/** Latest make logo of the vehicle. */
|
|
5930
|
+
make: VehicleImage;
|
|
5232
5931
|
/** Latest video of the vehicle. */
|
|
5233
5932
|
video?: Maybe<VehicleVideo>;
|
|
5234
5933
|
};
|
|
@@ -5263,8 +5962,13 @@ export type VehicleListRouting = {
|
|
|
5263
5962
|
export type VehicleMedia = {
|
|
5264
5963
|
/** Featured image of the vehicle from a 45-degree angle. */
|
|
5265
5964
|
image: VehicleImage;
|
|
5266
|
-
/**
|
|
5965
|
+
/**
|
|
5966
|
+
* Latest make logo.
|
|
5967
|
+
* @deprecated In favor of make.
|
|
5968
|
+
*/
|
|
5267
5969
|
brand: VehicleImage;
|
|
5970
|
+
/** Latest make logo. */
|
|
5971
|
+
make: VehicleImage;
|
|
5268
5972
|
/** All images of the vehicle. */
|
|
5269
5973
|
image_list: Array<VehicleImage>;
|
|
5270
5974
|
/** Latest video. */
|
|
@@ -5333,8 +6037,13 @@ export type VehiclePremium = {
|
|
|
5333
6037
|
body: VehiclePremiumBody;
|
|
5334
6038
|
/** Availability of the vehicle. */
|
|
5335
6039
|
availability: VehiclePremiumAvailability;
|
|
5336
|
-
/**
|
|
6040
|
+
/**
|
|
6041
|
+
* Pricing of the vehicle.
|
|
6042
|
+
* @deprecated In favor of pricing.
|
|
6043
|
+
*/
|
|
5337
6044
|
price: VehiclePremiumPrice;
|
|
6045
|
+
/** Starting price in the currency defined in the field argument. If not defined, it will return the starting price in the currency returned in the currency field. */
|
|
6046
|
+
pricing: VehiclePremiumPriceValueWithGrant;
|
|
5338
6047
|
/** Drivetrain of the vehicle. */
|
|
5339
6048
|
drivetrain: VehiclePremiumDrivetrain;
|
|
5340
6049
|
/** Performance of the vehicle. */
|
|
@@ -5424,7 +6133,10 @@ export type VehiclePremiumBody = {
|
|
|
5424
6133
|
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5425
6134
|
/** Maximum payload allowed for the vehicle, default in kg. */
|
|
5426
6135
|
weight_max_payload?: Maybe<Scalars["Float"]>;
|
|
5427
|
-
/**
|
|
6136
|
+
/**
|
|
6137
|
+
* Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg.
|
|
6138
|
+
* @deprecated In favor of weight_gvwr.nominal
|
|
6139
|
+
*/
|
|
5428
6140
|
max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
|
|
5429
6141
|
/** Standard luggage capacity, default in l. */
|
|
5430
6142
|
boot_capacity?: Maybe<Scalars["Float"]>;
|
|
@@ -5864,8 +6576,13 @@ export type VehiclePremiumMedia = {
|
|
|
5864
6576
|
provider_details_url?: Maybe<Scalars["String"]>;
|
|
5865
6577
|
/** Featured image of the vehicle from a 45-degree angle. */
|
|
5866
6578
|
image: VehicleImage;
|
|
5867
|
-
/**
|
|
6579
|
+
/**
|
|
6580
|
+
* Latest make logo.
|
|
6581
|
+
* @deprecated In favor of make.
|
|
6582
|
+
*/
|
|
5868
6583
|
brand: VehicleImage;
|
|
6584
|
+
/** Latest make logo. */
|
|
6585
|
+
make: VehicleImage;
|
|
5869
6586
|
/** All images of the vehicle. */
|
|
5870
6587
|
image_list: Array<VehicleImage>;
|
|
5871
6588
|
/** Latest video. */
|
|
@@ -5926,9 +6643,9 @@ export type VehiclePremiumPriceValueWithGrant = {
|
|
|
5926
6643
|
value?: Maybe<Scalars["Float"]>;
|
|
5927
6644
|
/** Currency in which the value without optional field conversion is expressed. */
|
|
5928
6645
|
currency?: Maybe<CurrencyUnit>;
|
|
5929
|
-
/** Indicates if price
|
|
6646
|
+
/** Indicates if the starting price is based on an estimate. */
|
|
5930
6647
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5931
|
-
/** Grant is applied to
|
|
6648
|
+
/** Grant that is applied to the starting price. */
|
|
5932
6649
|
grant_applied?: Maybe<Scalars["Int"]>;
|
|
5933
6650
|
};
|
|
5934
6651
|
|
|
@@ -6149,11 +6866,11 @@ export type VehicleRouting = {
|
|
|
6149
6866
|
};
|
|
6150
6867
|
|
|
6151
6868
|
export type VehicleSpeedInput = {
|
|
6152
|
-
/** Value of the vehicle speed */
|
|
6869
|
+
/** Value of the vehicle speed. */
|
|
6153
6870
|
value: Scalars["Float"];
|
|
6154
|
-
/** Type of the vehicle speed */
|
|
6871
|
+
/** Type of the vehicle speed. */
|
|
6155
6872
|
type: SpeedUnit;
|
|
6156
|
-
/** Source of inputted data, defaults to 'manual' */
|
|
6873
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
6157
6874
|
source?: Maybe<TelemetryInputSource>;
|
|
6158
6875
|
};
|
|
6159
6876
|
|
|
@@ -6208,17 +6925,17 @@ export type VehicleVideo = {
|
|
|
6208
6925
|
};
|
|
6209
6926
|
|
|
6210
6927
|
export enum VolumeUnit {
|
|
6211
|
-
/** Return the volume in liters */
|
|
6928
|
+
/** Return the volume in liters. */
|
|
6212
6929
|
LITER = "liter",
|
|
6213
|
-
/** Return the volume in cubic meters */
|
|
6930
|
+
/** Return the volume in cubic meters. */
|
|
6214
6931
|
CUBIC_METER = "cubic_meter",
|
|
6215
|
-
/** Return the volume in cubic feet */
|
|
6932
|
+
/** Return the volume in cubic feet. */
|
|
6216
6933
|
CUBIC_FOOT = "cubic_foot"
|
|
6217
6934
|
}
|
|
6218
6935
|
|
|
6219
6936
|
export enum WeightUnit {
|
|
6220
|
-
/** Return the weight in kilograms */
|
|
6937
|
+
/** Return the weight in kilograms. */
|
|
6221
6938
|
KILOGRAM = "kilogram",
|
|
6222
|
-
/** Return the weight in pounds */
|
|
6939
|
+
/** Return the weight in pounds. */
|
|
6223
6940
|
POUND = "pound"
|
|
6224
6941
|
}
|