@chargetrip/types 1.38.0 → 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/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 maker of a car */
484
+ /** Full size logo of the make of a car. */
485
485
  brand?: Maybe<CarImage>;
486
- /** Thumbnail of a full size logo of the maker of a car */
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 (maker) logo at 768x432 px */
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 maker logo of the car */
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 maker logo */
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 maker logo */
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 value is based on estimates */
1252
+ /** Indicates if the starting price is based on an estimate. */
1253
1253
  is_estimated?: Maybe<Scalars["Boolean"]>;
1254
- /** Grant is applied to value */
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
- /** Range in kilometers. Worst conditions are based on -10°C and use of heating */
1484
+ /** Range in kilometers. Worst conditions are based on -10°C and use of heating. */
1485
1485
  worst?: Maybe<Scalars["Int"]>;
1486
- /** Range in kilometers. Best conditions are based on 23°C and no use of A/C */
1486
+ /** Range in kilometers. Best conditions are based on 23°C and no use of A/C. */
1487
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
 
@@ -2200,27 +2200,27 @@ export type FeatureMultiPolygonPoint = {
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
 
@@ -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;
@@ -2384,31 +2391,31 @@ export enum IsolineStatus {
2384
2391
  ERROR = "error"
2385
2392
  }
2386
2393
 
2387
- /** Types of a leg */
2394
+ /** Types of a leg. */
2388
2395
  export enum LegType {
2389
- /** 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. */
2390
2397
  STATION = "station",
2391
- /** 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. */
2392
2399
  STATIONVIA = "stationVia",
2393
- /** 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. */
2394
2401
  STATIONAMENITY = "stationAmenity",
2395
- /** This leg ends at a via location */
2402
+ /** This leg ends at a via location. */
2396
2403
  VIA = "via",
2397
- /** 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. */
2398
2405
  FINAL = "final",
2399
- /** 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. */
2400
2407
  STATIONFINAL = "stationFinal"
2401
2408
  }
2402
2409
 
2403
- /** A GeoJSON LineString */
2410
+ /** A GeoJSON LineString. */
2404
2411
  export type LineString = {
2405
- /** LineString type */
2412
+ /** LineString type. */
2406
2413
  type: LineStringType;
2407
- /** 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. */
2408
2415
  coordinates: Array<Maybe<Array<Scalars["Float"]>>>;
2409
2416
  };
2410
2417
 
2411
- /** GeoJSON LineString type */
2418
+ /** GeoJSON LineString type. */
2412
2419
  export enum LineStringType {
2413
2420
  LINESTRING = "LineString"
2414
2421
  }
@@ -2428,9 +2435,9 @@ export enum MappingProvider {
2428
2435
  }
2429
2436
 
2430
2437
  export enum MeasurementUnit {
2431
- /** Return the measurement in millimeters */
2438
+ /** Return the measurement in millimeters. */
2432
2439
  MILLIMETER = "millimeter",
2433
- /** Return the measurement in inches */
2440
+ /** Return the measurement in inches. */
2434
2441
  INCH = "inch"
2435
2442
  }
2436
2443
 
@@ -2444,7 +2451,7 @@ export type MultiPolygon = {
2444
2451
  >;
2445
2452
  };
2446
2453
 
2447
- /** GeoJSON MultiPolygon type */
2454
+ /** GeoJSON MultiPolygon type. */
2448
2455
  export enum MultiPolygonType {
2449
2456
  MULTIPOLYGON = "MultiPolygon"
2450
2457
  }
@@ -3261,11 +3268,11 @@ export enum OICPValueAddedServices {
3261
3268
  }
3262
3269
 
3263
3270
  export type OdometerInput = {
3264
- /** Value of the vehicle's odometer */
3271
+ /** Value of the vehicle's odometer. */
3265
3272
  value: Scalars["Float"];
3266
- /** Type of the value of the vehicle's odometer */
3273
+ /** Type of the value of the vehicle's odometer. */
3267
3274
  type: DistanceUnit;
3268
- /** Source of inputted data, defaults to 'manual' */
3275
+ /** Source of inputted data, defaults to 'manual'. */
3269
3276
  source?: Maybe<TelemetryInputSource>;
3270
3277
  };
3271
3278
 
@@ -3316,11 +3323,11 @@ export type OperatorListQuery = {
3316
3323
  };
3317
3324
 
3318
3325
  export type OutsideTempInput = {
3319
- /** Value of the outside temperature */
3326
+ /** Value of the outside temperature. */
3320
3327
  value: Scalars["Float"];
3321
- /** Type of the value of the outside temperature */
3328
+ /** Type of the value of the outside temperature. */
3322
3329
  type: TemperatureUnit;
3323
- /** Source of inputted data, defaults to 'manual' */
3330
+ /** Source of inputted data, defaults to 'manual'. */
3324
3331
  source?: Maybe<TelemetryInputSource>;
3325
3332
  };
3326
3333
 
@@ -3332,19 +3339,19 @@ export enum ParkingCost {
3332
3339
  }
3333
3340
 
3334
3341
  export type PathSegment = {
3335
- /** Elevation (altitude) in meters */
3342
+ /** Elevation (altitude) in meters. */
3336
3343
  elevation?: Maybe<Scalars["Int"]>;
3337
- /** Average speed, in km/h, for this route path segment */
3344
+ /** Average speed, in km/h, for this route path segment. */
3338
3345
  averageSpeed?: Maybe<Scalars["Float"]>;
3339
- /** Consumption, in kWh, of a route path segment */
3346
+ /** Consumption, in kWh, of a route path segment. */
3340
3347
  consumption?: Maybe<Scalars["Float"]>;
3341
- /** Consumption, in kWh per km, of a route path segment */
3348
+ /** Consumption, in kWh per km, of a route path segment. */
3342
3349
  consumptionPerKm?: Maybe<Scalars["Float"]>;
3343
- /** Distance, in meters, of a route path segment */
3350
+ /** Distance, in meters, of a route path segment. */
3344
3351
  distance?: Maybe<Scalars["Float"]>;
3345
- /** Duration, in seconds, of a route path segment */
3352
+ /** Duration, in seconds, of a route path segment. */
3346
3353
  duration?: Maybe<Scalars["Float"]>;
3347
- /** State of charge, in kWh, of a route path segment */
3354
+ /** State of charge, in kWh, of a route path segment. */
3348
3355
  stateOfCharge?: Maybe<Scalars["Float"]>;
3349
3356
  };
3350
3357
 
@@ -3356,11 +3363,11 @@ export type Point = {
3356
3363
  coordinates: Array<Scalars["Float"]>;
3357
3364
  };
3358
3365
 
3359
- /** A GeoJSON Point input */
3366
+ /** A GeoJSON Point input. */
3360
3367
  export type PointInput = {
3361
- /** Point type */
3368
+ /** Point type. */
3362
3369
  type: PointType;
3363
- /** Coordinates [longitude, latitude] */
3370
+ /** Coordinates [longitude, latitude]. */
3364
3371
  coordinates: Array<Scalars["Float"]>;
3365
3372
  };
3366
3373
 
@@ -3376,11 +3383,11 @@ export type PolygonProperties = {
3376
3383
  };
3377
3384
 
3378
3385
  export type PowerInput = {
3379
- /** 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. */
3380
3387
  value: Scalars["Float"];
3381
- /** Type of the value of the power */
3388
+ /** Type of the value of the power. */
3382
3389
  type: PowerUnit;
3383
- /** Source of inputted data, defaults to 'manual' */
3390
+ /** Source of inputted data, defaults to 'manual'. */
3384
3391
  source?: Maybe<TelemetryInputSource>;
3385
3392
  };
3386
3393
 
@@ -3401,28 +3408,28 @@ export type PowerStats = {
3401
3408
  };
3402
3409
 
3403
3410
  export enum PowerUnit {
3404
- /** Return the power in kilowatts */
3411
+ /** Return the power in kilowatts. */
3405
3412
  KILOWATT = "kilowatt",
3406
- /** Return the power in horsepower */
3413
+ /** Return the power in horsepower. */
3407
3414
  HORSEPOWER = "horsepower"
3408
3415
  }
3409
3416
 
3410
3417
  export enum PressureUnit {
3411
- /** Return the pressure in bar */
3418
+ /** Return the pressure in bar. */
3412
3419
  BAR = "bar",
3413
- /** Return the pressure in pounds per square inch */
3420
+ /** Return the pressure in pounds per square inch. */
3414
3421
  POUNDS_PER_SQUARE_INCH = "pounds_per_square_inch"
3415
3422
  }
3416
3423
 
3417
- /** The price model */
3424
+ /** The price model. */
3418
3425
  export type Price = {
3419
- /** The value of the price */
3426
+ /** The value of the price. */
3420
3427
  value?: Maybe<Scalars["String"]>;
3421
- /** The currency of the price */
3428
+ /** The currency of the price. */
3422
3429
  currency?: Maybe<Scalars["String"]>;
3423
- /** The pricing model */
3430
+ /** The pricing model. */
3424
3431
  model?: Maybe<Scalars["String"]>;
3425
- /** 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. */
3426
3433
  displayValue?: Maybe<Scalars["String"]>;
3427
3434
  };
3428
3435
 
@@ -3508,6 +3515,8 @@ export type Query = {
3508
3515
  userReviewList?: Maybe<Array<Review>>;
3509
3516
  /** Get a route by ID */
3510
3517
  route?: Maybe<Route>;
3518
+ /** [BETA] Emission profile for route. */
3519
+ routeEmissions: RouteEmissions;
3511
3520
  /** Retrieve information about a route path segment */
3512
3521
  routePath?: Maybe<RoutePath>;
3513
3522
  /** Get the station statistics */
@@ -3602,6 +3611,11 @@ export type QueryrouteArgs = {
3602
3611
  id: Scalars["ID"];
3603
3612
  };
3604
3613
 
3614
+ export type QueryrouteEmissionsArgs = {
3615
+ route_id: Scalars["ID"];
3616
+ route_alternative_id?: Maybe<Scalars["ID"]>;
3617
+ };
3618
+
3605
3619
  export type QueryroutePathArgs = {
3606
3620
  id: Scalars["ID"];
3607
3621
  location: PointInput;
@@ -3668,213 +3682,213 @@ export type RemoveConnectedVehicleInput = {
3668
3682
  id: Scalars["ID"];
3669
3683
  };
3670
3684
 
3671
- /** EV specific data for a route request */
3685
+ /** EV specific data for a route request. */
3672
3686
  export type RequestEv = {
3673
- /** Internal ID of a Vehicle */
3687
+ /** Internal ID of a Vehicle. */
3674
3688
  id?: Maybe<Scalars["ID"]>;
3675
- /** EV battery specific data */
3689
+ /** EV battery specific data. */
3676
3690
  battery?: Maybe<RequestEvBattery>;
3677
- /** Supported plugs for an EV */
3691
+ /** Supported plugs for an EV. */
3678
3692
  plugs?: Maybe<Array<Maybe<RequestEvPlug>>>;
3679
- /** Supported adapters of plugs for an EV */
3693
+ /** Supported adapters of plugs for an EV. */
3680
3694
  adapters?: Maybe<Array<Maybe<RequestEvPlug>>>;
3681
- /** Minimum desired power of chargers */
3695
+ /** Minimum desired power of chargers. */
3682
3696
  minPower?: Maybe<Scalars["Int"]>;
3683
- /** Climate is on. The default is true */
3697
+ /** Climate is on. The default is true. */
3684
3698
  climate?: Maybe<Scalars["Boolean"]>;
3685
- /** Cargo weight, in kg */
3699
+ /** Cargo weight, in kg. */
3686
3700
  cargo?: Maybe<Scalars["Float"]>;
3687
3701
  /**
3688
- * The number of passengers on board
3689
- * @deprecated In favor of occupants
3702
+ * The number of passengers on board.
3703
+ * @deprecated In favor of occupants.
3690
3704
  */
3691
3705
  numberOfPassengers?: Maybe<Scalars["Int"]>;
3692
- /** Number of occupants */
3706
+ /** Number of occupants. */
3693
3707
  occupants?: Maybe<Scalars["Int"]>;
3694
- /** Consumption specific to an EV or inputed by a request */
3708
+ /** Consumption specific to an EV or inputted by a request. */
3695
3709
  consumption?: Maybe<RequestEvConsumption>;
3696
3710
  };
3697
3711
 
3698
3712
  export type RequestEvBattery = {
3699
- /** 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. */
3700
3714
  capacity?: Maybe<RequestEvBatteryValue>;
3701
- /** 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. */
3702
3716
  capacityKwh?: Maybe<Scalars["Float"]>;
3703
- /** 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. */
3704
3718
  stateOfCharge?: Maybe<RequestEvBatteryValue>;
3705
- /** 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. */
3706
3720
  stateOfChargeKwh?: Maybe<Scalars["Float"]>;
3707
- /** 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. */
3708
3722
  finalStateOfCharge?: Maybe<RequestEvBatteryValue>;
3709
- /** 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. */
3710
3724
  finalStateOfChargeKwh?: Maybe<Scalars["Float"]>;
3711
3725
  };
3712
3726
 
3713
3727
  export type RequestEvBatteryInput = {
3714
- /** 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. */
3715
3729
  capacity?: Maybe<RequestEvBatteryInputValue>;
3716
- /** 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. */
3717
3731
  stateOfCharge?: Maybe<RequestEvBatteryInputValue>;
3718
- /** 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. */
3719
3733
  finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;
3720
3734
  };
3721
3735
 
3722
3736
  export type RequestEvBatteryInputValue = {
3723
- /** Value of a desired final amount of energy in a battery */
3737
+ /** Value of a desired final amount of energy in a battery. */
3724
3738
  value: Scalars["Float"];
3725
- /** Type of a desired final amount of energy in a battery */
3739
+ /** Type of a desired final amount of energy in a battery. */
3726
3740
  type: BatteryInputType;
3727
3741
  };
3728
3742
 
3729
3743
  export type RequestEvBatteryValue = {
3730
- /** Value of the desired final amount of energy in a battery */
3744
+ /** Value of the desired final amount of energy in a battery. */
3731
3745
  value: Scalars["Float"];
3732
- /** Type of the desired final amount of energy in a battery */
3746
+ /** Type of the desired final amount of energy in a battery. */
3733
3747
  type: BatteryInputType;
3734
3748
  };
3735
3749
 
3736
3750
  export type RequestEvConsumption = {
3737
- /** Consumption, in kWh, of the auxiliaries */
3751
+ /** Consumption, in kWh, of the auxiliaries. */
3738
3752
  aux?: Maybe<CarConsumption>;
3739
- /** The consumption, in kWh, of the battery management system */
3753
+ /** The consumption, in kWh, of the battery management system. */
3740
3754
  bms?: Maybe<CarConsumption>;
3741
- /** The consumption, in kWh, of the vehicle in idle mode */
3755
+ /** The consumption, in kWh, of the vehicle in idle mode. */
3742
3756
  idle?: Maybe<CarConsumption>;
3743
3757
  };
3744
3758
 
3745
3759
  export type RequestEvConsumptionInput = {
3746
- /** Consumption, in kWh, of the auxiliaries */
3760
+ /** Consumption, in kWh, of the auxiliaries. */
3747
3761
  aux?: Maybe<CarConsumptionInput>;
3748
- /** Consumption, in kWh, of the battery management system */
3762
+ /** Consumption, in kWh, of the battery management system. */
3749
3763
  bms?: Maybe<CarConsumptionInput>;
3750
- /** Consumption, in kWh, of the vehicle in idle mode */
3764
+ /** Consumption, in kWh, of the vehicle in idle mode. */
3751
3765
  idle?: Maybe<CarConsumptionInput>;
3752
3766
  };
3753
3767
 
3754
3768
  export type RequestEvInput = {
3755
- /** Internal ID of a Vehicle */
3769
+ /** Internal ID of a Vehicle. */
3756
3770
  id: Scalars["ID"];
3757
- /** The EV battery specific data */
3771
+ /** The EV battery specific data. */
3758
3772
  battery?: Maybe<RequestEvBatteryInput>;
3759
- /** Supported plugs of an EV */
3773
+ /** Supported plugs of an EV. */
3760
3774
  plugs?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
3761
- /** Supported adapters of plugs of an EV */
3775
+ /** Supported adapters of plugs of an EV. */
3762
3776
  adapters?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
3763
- /** Minimum desired power of chargers */
3777
+ /** Minimum desired power of chargers. */
3764
3778
  minPower?: Maybe<Scalars["Int"]>;
3765
- /** 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. */
3766
3780
  climate?: Maybe<Scalars["Boolean"]>;
3767
- /** Number of occupants */
3781
+ /** Number of occupants. */
3768
3782
  occupants?: Maybe<Scalars["Int"]>;
3769
- /** Cargo weight, in kg */
3783
+ /** Cargo weight, in kg. */
3770
3784
  cargo?: Maybe<Scalars["Int"]>;
3771
- /** Consumption specific to the EV or inputted by the request */
3785
+ /** Consumption specific to the EV or inputted by the request. */
3772
3786
  consumption?: Maybe<RequestEvConsumptionInput>;
3773
- /** Deprecated */
3787
+ /** Deprecated. */
3774
3788
  auxConsumption?: Maybe<Scalars["Float"]>;
3775
- /** Deprecated */
3789
+ /** Deprecated. */
3776
3790
  bmsConsumption?: Maybe<Scalars["Float"]>;
3777
3791
  };
3778
3792
 
3779
3793
  export type RequestEvPlug = {
3780
- /** Type of the plug */
3794
+ /** Type of the plug. */
3781
3795
  standard?: Maybe<ConnectorType>;
3782
- /** Maximum charging speed for a plug */
3796
+ /** Maximum charging speed for a plug. */
3783
3797
  chargingPower?: Maybe<Scalars["Float"]>;
3784
3798
  };
3785
3799
 
3786
3800
  export type RequestEvPlugInput = {
3787
- /** Type of a plug */
3801
+ /** Type of a plug. */
3788
3802
  standard: ConnectorType;
3789
- /** Maximum charging speed for this plug */
3803
+ /** Maximum charging speed for this plug. */
3790
3804
  chargingPower: Scalars["Float"];
3791
3805
  };
3792
3806
 
3793
3807
  export type RequestInput = {
3794
- /** EV specific data for a route request */
3808
+ /** EV specific data for a route request. */
3795
3809
  ev: RequestEvInput;
3796
- /** Route request data */
3810
+ /** Route request data. */
3797
3811
  routeRequest: RequestRouteInput;
3798
- /** Telemetry data used to overwrite routing parameters */
3812
+ /** Telemetry data used to overwrite routing parameters. */
3799
3813
  telemetry?: Maybe<Scalars["JSON"]>;
3800
3814
  };
3801
3815
 
3802
3816
  export type RequestRoute = {
3803
3817
  /**
3804
- * Requested amenities near the stations, within a 1 kilometer radius
3805
- * @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.
3806
3820
  */
3807
3821
  amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
3808
- /** Amenity preferences for a route */
3822
+ /** Amenity preferences for a route. */
3809
3823
  amenity_preferences?: Maybe<RouteAmenityPreferences>;
3810
3824
  /**
3811
- * Requested operators
3812
- * @deprecated Will be removed. Use the operators property instead
3825
+ * Requested operators.
3826
+ * @deprecated Will be removed. Use the operators property instead.
3813
3827
  */
3814
3828
  operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
3815
3829
  /**
3816
- * Preferred operators are required. In case there are no preferred operators the route cannot be calculated
3817
- * @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.
3818
3832
  */
3819
3833
  operatorRequired?: Maybe<Scalars["Boolean"]>;
3820
3834
  /**
3821
- * Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated
3822
- * @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.
3823
3837
  */
3824
3838
  operatorPrefer?: Maybe<Scalars["Boolean"]>;
3825
- /** Operator prioritization for a route */
3839
+ /** Operator prioritization for a route. */
3826
3840
  operators?: Maybe<RouteOperators>;
3827
- /** Season */
3841
+ /** Season. */
3828
3842
  season?: Maybe<RouteSeason>;
3829
- /** 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%. */
3830
3844
  safeRiskMargin?: Maybe<Scalars["Int"]>;
3831
- /** Origin of a route */
3845
+ /** Origin of a route. */
3832
3846
  origin?: Maybe<FeaturePoint>;
3833
- /** Destination of a route */
3847
+ /** Destination of a route. */
3834
3848
  destination?: Maybe<FeaturePoint>;
3835
- /** Locations where a route will stop */
3849
+ /** Locations where a route will stop. */
3836
3850
  via?: Maybe<Array<Maybe<FeaturePoint>>>;
3837
- /** 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). */
3838
3852
  stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
3839
- /** 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. */
3840
3854
  instructions?: Maybe<Scalars["Boolean"]>;
3841
- /** 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. */
3842
3856
  chargeMode?: Maybe<ChargeMode>;
3843
3857
  };
3844
3858
 
3845
3859
  export type RequestRouteInput = {
3846
- /** 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. */
3847
3861
  amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
3848
- /** Amenity preferences for a route */
3862
+ /** Amenity preferences for a route. */
3849
3863
  amenity_preferences?: Maybe<AmenityPreferencesInput>;
3850
- /** Deprecated: in favor of operators. A list of requested operators */
3864
+ /** Deprecated: in favor of operators. A list of requested operators. */
3851
3865
  operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
3852
- /** 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. */
3853
3867
  operatorRequired?: Maybe<Scalars["Boolean"]>;
3854
- /** 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. */
3855
3869
  operatorPrefer?: Maybe<Scalars["Boolean"]>;
3856
- /** Operator prioritization for a route */
3870
+ /** Operator prioritization for a route. */
3857
3871
  operators?: Maybe<RouteOperatorsInput>;
3858
- /** Optional flag to specify the season */
3872
+ /** Optional flag to specify the season. */
3859
3873
  season?: Maybe<RouteSeason>;
3860
- /** 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%. */
3861
3875
  safeRiskMargin?: Maybe<Scalars["Int"]>;
3862
- /** 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. */
3863
3877
  chargeMode?: Maybe<ChargeMode>;
3864
- /** Origin of a route */
3878
+ /** Origin of a route. */
3865
3879
  origin: FeaturePointInput;
3866
- /** Destination of a route */
3880
+ /** Destination of a route. */
3867
3881
  destination: FeaturePointInput;
3868
- /** An optional list of locations where we should stop */
3882
+ /** An optional list of locations where we should stop. */
3869
3883
  via?: Maybe<Array<Maybe<FeaturePointInput>>>;
3870
- /** 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). */
3871
3885
  stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
3872
- /** 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. */
3873
3887
  instructions?: Maybe<Scalars["Boolean"]>;
3874
3888
  };
3875
3889
 
3876
3890
  export type RequestUser = {
3877
- /** ID of the user */
3891
+ /** ID of the user. */
3878
3892
  id?: Maybe<Scalars["ID"]>;
3879
3893
  };
3880
3894
 
@@ -3986,88 +4000,88 @@ export type ReviewUser = {
3986
4000
  };
3987
4001
 
3988
4002
  export type Route = {
3989
- /** Recommended route */
4003
+ /** Recommended route. */
3990
4004
  route?: Maybe<RouteAlternative>;
3991
- /** Available alternatives */
4005
+ /** Available alternatives. */
3992
4006
  alternatives?: Maybe<Array<Maybe<RouteAlternative>>>;
3993
- /** EV specific data for a route request */
4007
+ /** EV specific data for a route request. */
3994
4008
  ev?: Maybe<RequestEv>;
3995
- /** Route telemetry data */
4009
+ /** Route telemetry data. */
3996
4010
  telemetry?: Maybe<Scalars["JSON"]>;
3997
- /** @deprecated You will receive null values */
4011
+ /** @deprecated You will receive null values. */
3998
4012
  user?: Maybe<RequestUser>;
3999
- /** Route request data */
4013
+ /** Route request data. */
4000
4014
  routeRequest?: Maybe<RequestRoute>;
4001
- /** Application who requested a route */
4015
+ /** Application who requested a route. */
4002
4016
  app?: Maybe<RouteApp>;
4003
- /** Route status */
4017
+ /** Route status. */
4004
4018
  status?: Maybe<RouteStatus>;
4005
4019
  };
4006
4020
 
4007
4021
  export type RouteAlternative = {
4008
- /** ID of a route alternative */
4022
+ /** ID of a route alternative. */
4009
4023
  id?: Maybe<Scalars["ID"]>;
4010
- /** Type of alternative route */
4024
+ /** Type of alternative route. */
4011
4025
  type?: Maybe<RouteAlternativeType>;
4012
- /** Number of charges along a route */
4026
+ /** Number of charges along a route. */
4013
4027
  charges?: Maybe<Scalars["Int"]>;
4014
- /** Number of available charges along a route */
4028
+ /** Number of available charges along a route. */
4015
4029
  chargesAvailable?: Maybe<Scalars["Int"]>;
4016
- /** Number of occupied charges along a route */
4030
+ /** Number of occupied charges along a route. */
4017
4031
  chargesOccupied?: Maybe<Scalars["Int"]>;
4018
- /** Number of unknown charges along a route */
4032
+ /** Number of unknown charges along a route. */
4019
4033
  chargesUnknown?: Maybe<Scalars["Int"]>;
4020
- /** Number of out of order charges along a route */
4034
+ /** Number of out of order charges along a route. */
4021
4035
  chargesOutOfOrder?: Maybe<Scalars["Int"]>;
4022
- /** Total distance of a route in meters */
4036
+ /** Total distance of a route in meters. */
4023
4037
  distance?: Maybe<Scalars["Int"]>;
4024
- /** Total duration of a route, including charge time, in seconds */
4038
+ /** Total duration of a route, including charge time, in seconds. */
4025
4039
  duration?: Maybe<Scalars["Int"]>;
4026
- /** Total energy used for a route in kWh */
4040
+ /** Total energy used for a route in kWh. */
4027
4041
  consumption?: Maybe<Scalars["Float"]>;
4028
- /** Total time required to charge for an entire route, in seconds */
4042
+ /** Total time required to charge for an entire route, in seconds. */
4029
4043
  chargeTime?: Maybe<Scalars["Float"]>;
4030
4044
  /**
4031
- * Amenity ranking for an alternative
4045
+ * Amenity ranking for an alternative.
4032
4046
  * @deprecated Will be removed in the future
4033
4047
  */
4034
4048
  amenityRanking?: Maybe<Scalars["Int"]>;
4035
- /** Range, in meters, available at the beginning of a trip */
4049
+ /** Range, in meters, available at the beginning of a trip. */
4036
4050
  rangeStart?: Maybe<Scalars["Int"]>;
4037
- /** 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. */
4038
4052
  rangeStartKwh?: Maybe<Scalars["Float"]>;
4039
- /** 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. */
4040
4054
  rangeStartPercentage?: Maybe<Scalars["Int"]>;
4041
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. */
4042
4056
  rangeEnd?: Maybe<Scalars["Int"]>;
4043
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. */
4044
4058
  rangeEndKwh?: Maybe<Scalars["Float"]>;
4045
- /** Remaining range, energy in percentage, at the end of a trip */
4059
+ /** Remaining range, energy in percentage, at the end of a trip. */
4046
4060
  rangeEndPercentage?: Maybe<Scalars["Int"]>;
4047
- /** Text information about a route direction */
4061
+ /** Text information about a route direction. */
4048
4062
  via?: Maybe<Scalars["String"]>;
4049
- /** Polyline containing encoded coordinates */
4063
+ /** Polyline containing encoded coordinates. */
4050
4064
  polyline?: Maybe<Scalars["String"]>;
4051
- /** 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. */
4052
4066
  pathPlot?: Maybe<Array<Maybe<PathSegment>>>;
4053
4067
  /**
4054
- * 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.
4055
4069
  * @deprecated Will be removed in the future; Use the pathPlot property
4056
4070
  */
4057
4071
  elevationPlot?: Maybe<Array<Maybe<Scalars["Float"]>>>;
4058
- /** Total number of meters which are going up on a route */
4072
+ /** Total number of meters which are going up on a route. */
4059
4073
  elevationUp?: Maybe<Scalars["Float"]>;
4060
- /** Total number of meters which are going down on a route */
4074
+ /** Total number of meters which are going down on a route. */
4061
4075
  elevationDown?: Maybe<Scalars["Float"]>;
4062
- /** Highest value from the elevation array */
4076
+ /** Highest value from the elevation array. */
4063
4077
  elevationMax?: Maybe<Scalars["Float"]>;
4064
- /** Money and CO2 saving information */
4078
+ /** Money and CO2 saving information. */
4065
4079
  saving?: Maybe<RouteAlternativeSaving>;
4066
- /** Legs of the route */
4080
+ /** Legs of the route. */
4067
4081
  legs?: Maybe<Array<Maybe<RouteLeg>>>;
4068
- /** List of raw turn-by-turn navigation instructions */
4082
+ /** List of raw turn-by-turn navigation instructions. */
4069
4083
  instructions?: Maybe<Array<Maybe<RouteInstruction>>>;
4070
- /** 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. */
4071
4085
  stationsAlongRoute?: Maybe<Array<Maybe<RouteStationsAlong>>>;
4072
4086
  /** Tags of a route alternative. Values: road, highway, toll, ferry, etc. */
4073
4087
  tags?: Maybe<Array<Maybe<RouteTagType>>>;
@@ -4078,66 +4092,251 @@ export type RouteAlternativepolylineArgs = {
4078
4092
  };
4079
4093
 
4080
4094
  export type RouteAlternativeSaving = {
4081
- /** Total amount of CO2, in grams, which would be used with a petrol vehicle */
4095
+ /** Total amount of CO2, in grams, which would be used with a gasoline vehicle. */
4082
4096
  co2?: Maybe<Scalars["String"]>;
4083
- /** 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. */
4084
4098
  money?: Maybe<Scalars["String"]>;
4085
- /** Currency */
4099
+ /** Currency. */
4086
4100
  currency?: Maybe<Scalars["String"]>;
4087
- /** Average gas price with which the calculation was made */
4101
+ /** Average gas price with which the calculation was made. */
4088
4102
  averageGasPrice?: Maybe<Scalars["String"]>;
4089
- /** Average energy price with which the calculation was made */
4103
+ /** Average energy price with which the calculation was made. */
4090
4104
  averageEnergyPrice?: Maybe<Scalars["String"]>;
4091
4105
  };
4092
4106
 
4093
- /** Types of an alternative route */
4107
+ /** Types of an alternative route. */
4094
4108
  export enum RouteAlternativeType {
4095
- /** Fastest route between origin and destination */
4109
+ /** Fastest route between origin and destination. */
4096
4110
  FASTEST = "fastest",
4097
- /** Best matching route based on operator and amenities preferences */
4111
+ /** Best matching route based on operator and amenities preferences. */
4098
4112
  BESTMATCHING = "bestMatching",
4099
- /** An alternative to the fastest route */
4113
+ /** An alternative to the fastest route. */
4100
4114
  ALTERNATIVE = "alternative"
4101
4115
  }
4102
4116
 
4103
- /** Amenity preferences for a route */
4117
+ /** Amenity preferences for a route. */
4104
4118
  export type RouteAmenityPreferences = {
4105
- /** 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. */
4106
4120
  all_charge_stops?: Maybe<Array<AmenityType>>;
4107
- /** Scheduled charge stops, with a specified amenity and timeline */
4121
+ /** Scheduled charge stops, with a specified amenity and timeline. */
4108
4122
  scheduled_charge_stops?: Maybe<Array<RouteScheduledChargeStop>>;
4109
4123
  };
4110
4124
 
4111
4125
  export type RouteApp = {
4112
- /** ID of the app who requested a route */
4126
+ /** ID of the app who requested a route. */
4113
4127
  id?: Maybe<Scalars["ID"]>;
4114
4128
  };
4115
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
+
4116
4315
  export type RouteInstruction = {
4117
- /** Information about the points on the polyline */
4316
+ /** Information about the points on the polyline. */
4118
4317
  points?: Maybe<RouteInstructionPoints>;
4119
- /** Sign of the instruction. See `RouteInstructionSign` */
4318
+ /** Sign of the instruction. See `RouteInstructionSign`. */
4120
4319
  sign?: Maybe<RouteInstructionSign>;
4121
- /** Name of the street on which the instruction is */
4320
+ /** Name of the street on which the instruction is. */
4122
4321
  name?: Maybe<Scalars["String"]>;
4123
- /** Distance, in meters, of the current route instruction */
4322
+ /** Distance, in meters, of the current route instruction. */
4124
4323
  distance?: Maybe<Scalars["Int"]>;
4125
- /** Duration, in seconds, of the current route instruction */
4324
+ /** Duration, in seconds, of the current route instruction. */
4126
4325
  time?: Maybe<Scalars["Int"]>;
4127
- /** 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. */
4128
4327
  exit_number?: Maybe<Scalars["Int"]>;
4129
- /** 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. */
4130
4329
  turn_angle?: Maybe<Scalars["Float"]>;
4131
4330
  };
4132
4331
 
4133
4332
  export type RouteInstructionPoints = {
4134
- /** Number of polyline points which are included in this instruction */
4333
+ /** Number of polyline points which are included in this instruction. */
4135
4334
  size?: Maybe<Scalars["Int"]>;
4136
- /** 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. */
4137
4336
  interval?: Maybe<Array<Maybe<Scalars["Int"]>>>;
4138
4337
  };
4139
4338
 
4140
- /** Sign belonging to the instruction indicating the main maneuver */
4339
+ /** Sign belonging to the instruction indicating the main maneuver. */
4141
4340
  export enum RouteInstructionSign {
4142
4341
  UNKNOWN = "UNKNOWN",
4143
4342
  U_TURN_UNKNOWN = "U_TURN_UNKNOWN",
@@ -4163,68 +4362,115 @@ export enum RouteInstructionSign {
4163
4362
  IGNORE = "IGNORE"
4164
4363
  }
4165
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
+
4166
4412
  export type RouteLeg = {
4167
- /** ID of a leg */
4413
+ /** ID of a leg. */
4168
4414
  id?: Maybe<Scalars["ID"]>;
4169
- /** 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. */
4170
4416
  distance?: Maybe<Scalars["Int"]>;
4171
- /** 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. */
4172
4418
  duration?: Maybe<Scalars["Int"]>;
4173
- /** Total energy used in a leg in kWh */
4419
+ /** Total energy used in a leg in kWh. */
4174
4420
  consumption?: Maybe<Scalars["Float"]>;
4175
- /** Range, in meters, available at the beginning of a leg */
4421
+ /** Range, in meters, available at the beginning of a leg. */
4176
4422
  rangeStart?: Maybe<Scalars["Int"]>;
4177
- /** 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. */
4178
4424
  rangeStartKwh?: Maybe<Scalars["Float"]>;
4179
- /** 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. */
4180
4426
  rangeStartPercentage?: Maybe<Scalars["Int"]>;
4181
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. */
4182
4428
  rangeEnd?: Maybe<Scalars["Int"]>;
4183
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. */
4184
4430
  rangeEndKwh?: Maybe<Scalars["Float"]>;
4185
- /** Remaining range, energy in percentage, at the end of a trip */
4431
+ /** Remaining range, energy in percentage, at the end of a trip. */
4186
4432
  rangeEndPercentage?: Maybe<Scalars["Int"]>;
4187
- /** Origin point location */
4433
+ /** Origin point location. */
4188
4434
  origin?: Maybe<FeaturePoint>;
4189
- /** Destination point location */
4435
+ /** Destination point location. */
4190
4436
  destination?: Maybe<FeaturePoint>;
4191
- /** Type of a leg */
4437
+ /** Type of a leg. */
4192
4438
  type?: Maybe<LegType>;
4193
- /** 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. */
4194
4440
  name?: Maybe<Scalars["String"]>;
4195
- /** ID of a station */
4441
+ /** ID of a station. */
4196
4442
  stationId?: Maybe<Scalars["String"]>;
4197
- /** ID of an operator */
4443
+ /** ID of an operator. */
4198
4444
  operatorId?: Maybe<Scalars["String"]>;
4199
- /** Name of an operator */
4445
+ /** Name of an operator. */
4200
4446
  operatorName?: Maybe<Scalars["String"]>;
4201
- /** Ranking of an operator */
4447
+ /** Ranking of an operator. */
4202
4448
  operatorRanking?: Maybe<Scalars["Int"]>;
4203
- /** Total time required to charge a battery until 80%, in seconds */
4449
+ /** Total time required to charge a battery until 80%, in seconds. */
4204
4450
  chargeTime?: Maybe<Scalars["Int"]>;
4205
- /** Recommended EVSE where to charge */
4451
+ /** Recommended EVSE where to charge. */
4206
4452
  evse?: Maybe<EVSE>;
4207
- /** Recommended connector for charging */
4453
+ /** Recommended connector for charging. */
4208
4454
  connector?: Maybe<Connector>;
4209
- /** Number of compatible plugs available at a charge station */
4455
+ /** Number of compatible plugs available at a charge station. */
4210
4456
  plugsAvailable?: Maybe<Scalars["Int"]>;
4211
- /** Number of compatible plugs occupied at a charge station */
4457
+ /** Number of compatible plugs occupied at a charge station. */
4212
4458
  plugsOccupied?: Maybe<Scalars["Int"]>;
4213
- /** Number of compatible plugs unknown at a charge station */
4459
+ /** Number of compatible plugs unknown at a charge station. */
4214
4460
  plugsUnknown?: Maybe<Scalars["Int"]>;
4215
- /** Number of compatible plugs out of order at a charge station */
4461
+ /** Number of compatible plugs out of order at a charge station. */
4216
4462
  plugsOutOfOrder?: Maybe<Scalars["Int"]>;
4217
- /** Total number of compatible plugs at a charge station */
4463
+ /** Total number of compatible plugs at a charge station. */
4218
4464
  plugsCount?: Maybe<Scalars["Int"]>;
4219
- /** Polyline containing encoded coordinates */
4465
+ /** Polyline containing encoded coordinates. */
4220
4466
  polyline?: Maybe<Scalars["String"]>;
4221
- /** Steps of a leg */
4467
+ /** Steps of a leg. */
4222
4468
  steps?: Maybe<Array<Maybe<RouteStep>>>;
4223
- /** Tags of a leg. Values: road, highway, toll, ferry */
4469
+ /** Tags of a leg. Values: road, highway, toll, ferry. */
4224
4470
  tags?: Maybe<Array<Maybe<RouteTagType>>>;
4225
- /** 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. */
4226
4472
  cargo?: Maybe<Scalars["Float"]>;
4227
- /** 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. */
4228
4474
  occupants?: Maybe<Scalars["Int"]>;
4229
4475
  };
4230
4476
 
@@ -4251,170 +4497,532 @@ export type RouteMetaWarning = {
4251
4497
  data?: Maybe<Scalars["JSON"]>;
4252
4498
  };
4253
4499
 
4254
- /** Prioritized operators for a route calculation */
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. */
4255
4863
  export type RouteOperators = {
4256
- /** Flag indicating if the operators ranking should be preferred or required */
4864
+ /** Flag indicating if the operators ranking should be preferred or required. */
4257
4865
  type?: Maybe<RouteOperatorsType>;
4258
- /** 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. */
4259
4867
  ranking?: Maybe<RouteOperatorsRanking>;
4260
- /** Operator IDs which should be excluded from a route */
4868
+ /** Operator IDs which should be excluded from a route. */
4261
4869
  exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4262
4870
  };
4263
4871
 
4264
- /** Prioritized operators for a route calculation */
4872
+ /** Prioritized operators for a route calculation. */
4265
4873
  export type RouteOperatorsInput = {
4266
- /** Flag indicating if the operators ranking should be preferred or required */
4874
+ /** Flag indicating if the operators ranking should be preferred or required. */
4267
4875
  type?: Maybe<RouteOperatorsType>;
4268
- /** 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. */
4269
4877
  ranking?: Maybe<RouteOperatorsRankingInput>;
4270
- /** Operator IDs which should be excluded from a route */
4878
+ /** Operator IDs which should be excluded from a route. */
4271
4879
  exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4272
4880
  };
4273
4881
 
4274
- /** Ranking configuration for prioritized operators */
4882
+ /** Ranking configuration for prioritized operators. */
4275
4883
  export type RouteOperatorsRanking = {
4276
- /** Level 1 (most significant) for operator ranking */
4884
+ /** Level 1 (most significant) for operator ranking. */
4277
4885
  level1?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4278
- /** Level 2 for operator ranking */
4886
+ /** Level 2 for operator ranking. */
4279
4887
  level2?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4280
- /** Level 3 for operator ranking */
4888
+ /** Level 3 for operator ranking. */
4281
4889
  level3?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4282
- /** Level 4 for operator ranking */
4890
+ /** Level 4 for operator ranking. */
4283
4891
  level4?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4284
- /** Level 5 for operator ranking */
4892
+ /** Level 5 for operator ranking. */
4285
4893
  level5?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4286
- /** Level 6 for operator ranking */
4894
+ /** Level 6 for operator ranking. */
4287
4895
  level6?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4288
- /** Level 7 for operator ranking */
4896
+ /** Level 7 for operator ranking. */
4289
4897
  level7?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4290
- /** Level 8 for operator ranking */
4898
+ /** Level 8 for operator ranking. */
4291
4899
  level8?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4292
- /** Level 9 for operator ranking */
4900
+ /** Level 9 for operator ranking. */
4293
4901
  level9?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4294
- /** Level 10 (least significant) for operator ranking */
4902
+ /** Level 10 (least significant) for operator ranking. */
4295
4903
  level10?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4296
4904
  };
4297
4905
 
4298
- /** Ranking configuration for prioritized operators */
4906
+ /** Ranking configuration for prioritized operators. */
4299
4907
  export type RouteOperatorsRankingInput = {
4300
- /** Level 1 (most significant) for operator ranking */
4908
+ /** Level 1 (most significant) for operator ranking. */
4301
4909
  level1?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4302
- /** Level 2 for operator ranking */
4910
+ /** Level 2 for operator ranking. */
4303
4911
  level2?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4304
- /** Level 3 for operator ranking */
4912
+ /** Level 3 for operator ranking. */
4305
4913
  level3?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4306
- /** Level 4 for operator ranking */
4914
+ /** Level 4 for operator ranking. */
4307
4915
  level4?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4308
- /** Level 5 for operator ranking */
4916
+ /** Level 5 for operator ranking. */
4309
4917
  level5?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4310
- /** Level 6 for operator ranking */
4918
+ /** Level 6 for operator ranking. */
4311
4919
  level6?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4312
- /** Level 7 for operator ranking */
4920
+ /** Level 7 for operator ranking. */
4313
4921
  level7?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4314
- /** Level 8 for operator ranking */
4922
+ /** Level 8 for operator ranking. */
4315
4923
  level8?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4316
- /** Level 9 for operator ranking */
4924
+ /** Level 9 for operator ranking. */
4317
4925
  level9?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4318
- /** Level 10 (least significant) for operator ranking */
4926
+ /** Level 10 (least significant) for operator ranking. */
4319
4927
  level10?: Maybe<Array<Maybe<Scalars["ID"]>>>;
4320
4928
  };
4321
4929
 
4322
- /** Type of operator prioritization for a route */
4930
+ /** Type of operator prioritization for a route. */
4323
4931
  export enum RouteOperatorsType {
4324
- /** 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. */
4325
4933
  NONE = "none",
4326
- /** 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. */
4327
4935
  PREFERRED = "preferred",
4328
- /** 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. */
4329
4937
  REQUIRED = "required"
4330
4938
  }
4331
4939
 
4332
4940
  export type RoutePath = {
4333
- /** GeoJSON location of a route path segment */
4941
+ /** GeoJSON location of a route path segment. */
4334
4942
  location?: Maybe<Point>;
4335
- /** Elevation (altitude) in meters */
4943
+ /** Elevation (altitude) in meters. */
4336
4944
  elevation?: Maybe<Scalars["Int"]>;
4337
- /** Average speed, in km/h, for this route path segment */
4945
+ /** Average speed, in km/h, for this route path segment. */
4338
4946
  averageSpeed?: Maybe<Scalars["Float"]>;
4339
- /** 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. */
4340
4948
  recommendedSpeed?: Maybe<Scalars["Float"]>;
4341
- /** Consumption, in kWh, of a route path segment */
4949
+ /** Consumption, in kWh, of a route path segment. */
4342
4950
  consumption?: Maybe<Scalars["Float"]>;
4343
- /** Consumption, in kWh per km, of a route path segment */
4951
+ /** Consumption, in kWh per km, of a route path segment. */
4344
4952
  consumptionPerKm?: Maybe<Scalars["Float"]>;
4345
- /** Distance, in meters, of a route path segment */
4953
+ /** Distance, in meters, of a route path segment. */
4346
4954
  distance?: Maybe<Scalars["Float"]>;
4347
- /** Duration, in seconds, of a route path segment */
4955
+ /** Duration, in seconds, of a route path segment. */
4348
4956
  duration?: Maybe<Scalars["Float"]>;
4349
- /** State of charge, in kWh, of a route path segment */
4957
+ /** State of charge, in kWh, of a route path segment. */
4350
4958
  stateOfCharge?: Maybe<Scalars["Float"]>;
4351
4959
  };
4352
4960
 
4353
- /** Scheduled charge stop along a route */
4961
+ /** Scheduled charge stop along a route. */
4354
4962
  export type RouteScheduledChargeStop = {
4355
- /** List of amenity types */
4963
+ /** List of amenity types. */
4356
4964
  types?: Maybe<Array<Maybe<AmenityType>>>;
4357
- /** Duration at the amenity, in seconds */
4965
+ /** Duration at the amenity, in seconds. */
4358
4966
  duration?: Maybe<Scalars["Int"]>;
4359
- /** 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. */
4360
4968
  offset?: Maybe<Scalars["Int"]>;
4361
- /** 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. */
4362
4970
  stop_after?: Maybe<Scalars["Int"]>;
4363
- /** Maximum distance from a station to an amenity, in meters */
4971
+ /** Maximum distance from a station to an amenity, in meters. */
4364
4972
  max_distance_from_station?: Maybe<Scalars["Int"]>;
4365
4973
  };
4366
4974
 
4367
- /** The season of the route */
4975
+ /** The season of the route. */
4368
4976
  export enum RouteSeason {
4369
- /** 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. */
4370
4978
  SUMMER = "summer",
4371
- /** 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. */
4372
4980
  WINTER = "winter",
4373
- /** We fetch the current weather conditions */
4981
+ /** We fetch the current weather conditions. */
4374
4982
  CURRENT = "current"
4375
4983
  }
4376
4984
 
4377
4985
  export type RouteStationsAlong = {
4378
- /** The ID of station */
4986
+ /** The ID of station. */
4379
4987
  id?: Maybe<Scalars["String"]>;
4380
- /** Geojson location of a station */
4988
+ /** Geojson location of a station. */
4381
4989
  location?: Maybe<Point>;
4382
- /** 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. */
4383
4991
  speed?: Maybe<StationSpeedType>;
4384
- /** Status of a station */
4992
+ /** Status of a station. */
4385
4993
  status?: Maybe<ChargerStatus>;
4386
- /** The station uses a preferred operator */
4994
+ /** The station uses a preferred operator. */
4387
4995
  preferredOperator?: Maybe<Scalars["Boolean"]>;
4388
- /** Distance in meters between station and route path */
4996
+ /** Distance in meters between station and route path. */
4389
4997
  distance?: Maybe<Scalars["Int"]>;
4390
4998
  };
4391
4999
 
4392
- /** 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. */
4393
5001
  export enum RouteStatus {
4394
- /** Route is queued and pending processing. Temporary status */
5002
+ /** Route is queued and pending processing. Temporary status. */
4395
5003
  PENDING = "pending",
4396
- /** We are computing the route for your request. Temporary status */
5004
+ /** We are computing the route for your request. Temporary status. */
4397
5005
  PROCESSING = "processing",
4398
- /** We finished computing the route, with a result. Final status */
5006
+ /** We finished computing the route, with a result. Final status. */
4399
5007
  DONE = "done",
4400
- /** We finished the computing the route, without any result. Final status */
5008
+ /** We finished the computing the route, without any result. Final status. */
4401
5009
  NOT_FOUND = "not_found",
4402
- /** An error occurred while computing the route. Final status */
5010
+ /** An error occurred while computing the route. Final status. */
4403
5011
  ERROR = "error"
4404
5012
  }
4405
5013
 
4406
5014
  export type RouteStep = {
4407
- /** ID of a step */
5015
+ /** ID of a step. */
4408
5016
  id?: Maybe<Scalars["ID"]>;
4409
- /** Type of a step */
5017
+ /** Type of a step. */
4410
5018
  type?: Maybe<StepType>;
4411
- /** Polyline containing encoded coordinates */
5019
+ /** Polyline containing encoded coordinates. */
4412
5020
  polyline?: Maybe<Scalars["String"]>;
4413
- /** 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. */
4414
5022
  distance?: Maybe<Scalars["Int"]>;
4415
- /** 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. */
4416
5024
  duration?: Maybe<Scalars["Int"]>;
4417
- /** Total energy used in a step in kWh */
5025
+ /** Total energy used in a step in kWh. */
4418
5026
  consumption?: Maybe<Scalars["Float"]>;
4419
5027
  };
4420
5028
 
@@ -4422,7 +5030,7 @@ export type RouteSteppolylineArgs = {
4422
5030
  decimals?: Maybe<Scalars["Int"]>;
4423
5031
  };
4424
5032
 
4425
- /** Tags of a route */
5033
+ /** Tags of a route. */
4426
5034
  export enum RouteTagType {
4427
5035
  ROAD = "road",
4428
5036
  HIGHWAY = "highway",
@@ -4432,24 +5040,71 @@ export enum RouteTagType {
4432
5040
  CROSSBORDER = "crossborder"
4433
5041
  }
4434
5042
 
4435
- /** Scheduled charge stop along a route */
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. */
4436
5091
  export type ScheduledChargeStopInput = {
4437
- /** List of amenity types */
5092
+ /** List of amenity types. */
4438
5093
  types: Array<AmenityType>;
4439
- /** 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. */
4440
5095
  duration: Scalars["Int"];
4441
- /** 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. */
4442
5097
  offset?: Maybe<Scalars["Int"]>;
4443
- /** 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. */
4444
5099
  stop_after: Scalars["Int"];
4445
- /** 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. */
4446
5101
  max_distance_from_station?: Maybe<Scalars["Int"]>;
4447
5102
  };
4448
5103
 
4449
5104
  export enum SpeedUnit {
4450
- /** Return the speed in kilometers per hour */
5105
+ /** Return the speed in kilometers per hour. */
4451
5106
  KILOMETERS_PER_HOUR = "kilometers_per_hour",
4452
- /** Return the speed in miles per hour */
5107
+ /** Return the speed in miles per hour. */
4453
5108
  MILES_PER_HOUR = "miles_per_hour"
4454
5109
  }
4455
5110
 
@@ -4462,22 +5117,22 @@ export type StandardStats = {
4462
5117
  };
4463
5118
 
4464
5119
  export type StateOfChargeInput = {
4465
- /** Value of the state of charge of the vehicle */
5120
+ /** Value of the state of charge of the vehicle. */
4466
5121
  value: Scalars["Float"];
4467
- /** Type of the state of charge of the vehicle */
5122
+ /** Type of the state of charge of the vehicle. */
4468
5123
  type: StateOfChargeUnit;
4469
- /** Source of inputted data, defaults to 'manual' */
5124
+ /** Source of inputted data, defaults to 'manual'. */
4470
5125
  source?: Maybe<TelemetryInputSource>;
4471
5126
  };
4472
5127
 
4473
5128
  export enum StateOfChargeUnit {
4474
- /** Return the state of charge in kilometers */
5129
+ /** Return the state of charge in kilometers. */
4475
5130
  KILOMETER = "kilometer",
4476
- /** Return the state of charge in miles */
5131
+ /** Return the state of charge in miles. */
4477
5132
  MILE = "mile",
4478
- /** Return the state of charge in kilowatt hours */
5133
+ /** Return the state of charge in kilowatt hours. */
4479
5134
  KILOWATT_HOUR = "kilowatt_hour",
4480
- /** Return the state of charge as a percentage */
5135
+ /** Return the state of charge as a percentage. */
4481
5136
  PERCENTAGE = "percentage"
4482
5137
  }
4483
5138
 
@@ -4685,13 +5340,13 @@ export type StationRoaming = {
4685
5340
  ios_app_link?: Maybe<Scalars["String"]>;
4686
5341
  };
4687
5342
 
4688
- /** The station speed type */
5343
+ /** The station speed type. */
4689
5344
  export enum StationSpeedType {
4690
- /** Slow charging (below 43 kWh) */
5345
+ /** Slow charging (below 43 kWh). */
4691
5346
  SLOW = "slow",
4692
- /** Fast charging stations (above 43 kWh and below 150 kWh) */
5347
+ /** Fast charging stations (above 43 kWh and below 150 kWh). */
4693
5348
  FAST = "fast",
4694
- /** Ultra fast charging stations (above 150 kWh) */
5349
+ /** Ultra fast charging stations (above 150 kWh). */
4695
5350
  TURBO = "turbo"
4696
5351
  }
4697
5352
 
@@ -4705,19 +5360,19 @@ export type StationStats = {
4705
5360
  amenities?: Maybe<Array<Maybe<AmenityStats>>>;
4706
5361
  };
4707
5362
 
4708
- /** Types of a route step */
5363
+ /** Types of a route step. */
4709
5364
  export enum StepType {
4710
- /** This step is a road */
5365
+ /** This step is a road. */
4711
5366
  ROAD = "road",
4712
- /** This step is a highway */
5367
+ /** This step is a highway. */
4713
5368
  HIGHWAY = "highway",
4714
- /** This step is a toll road */
5369
+ /** This step is a toll road. */
4715
5370
  TOLL = "toll",
4716
- /** This step is a ferry */
5371
+ /** This step is a ferry. */
4717
5372
  FERRY = "ferry",
4718
- /** This step is reachable by walking */
5373
+ /** This step is reachable by walking. */
4719
5374
  WALKING = "walking",
4720
- /** This step is a crossborder */
5375
+ /** This step is a crossborder. */
4721
5376
  CROSSBORDER = "crossborder"
4722
5377
  }
4723
5378
 
@@ -4749,49 +5404,49 @@ export type SubscriptionrouteUpdatedByIdArgs = {
4749
5404
  };
4750
5405
 
4751
5406
  export type Telemetry = {
4752
- /** Value of the auxiliary power consumption of the vehicle */
5407
+ /** Value of the auxiliary power consumption of the vehicle. */
4753
5408
  auxiliary_consumption?: Maybe<Scalars["Float"]>;
4754
- /** Battery current in ampere */
5409
+ /** Battery current in ampere. */
4755
5410
  battery_current?: Maybe<Scalars["Float"]>;
4756
- /** Value of the temperature of the battery */
5411
+ /** Value of the temperature of the battery. */
4757
5412
  battery_temperature?: Maybe<Scalars["Float"]>;
4758
- /** Battery voltage in volts */
5413
+ /** Battery voltage in volts. */
4759
5414
  battery_voltage?: Maybe<Scalars["Float"]>;
4760
- /** Is the vehicle currently charging */
5415
+ /** Is the vehicle currently charging. */
4761
5416
  is_charging?: Maybe<Scalars["Boolean"]>;
4762
- /** Value of the rate of charge of the battery */
5417
+ /** Value of the rate of charge of the battery. */
4763
5418
  charge_speed?: Maybe<Scalars["Float"]>;
4764
- /** Value of the amount of battery charged */
5419
+ /** Value of the amount of battery charged. */
4765
5420
  charge_total?: Maybe<Scalars["Float"]>;
4766
- /** Value of the current weight of the occupants */
5421
+ /** Value of the current weight of the occupants. */
4767
5422
  total_occupant_weight?: Maybe<Scalars["Float"]>;
4768
- /** Value of the current weight of the cargo */
5423
+ /** Value of the current weight of the cargo. */
4769
5424
  total_cargo_weight?: Maybe<Scalars["Float"]>;
4770
- /** Value of the current elevation */
5425
+ /** Value of the current elevation. */
4771
5426
  elevation?: Maybe<Scalars["Float"]>;
4772
- /** Current heading in degrees */
5427
+ /** Current heading in degrees. */
4773
5428
  heading?: Maybe<Scalars["Float"]>;
4774
- /** RPM of the motor */
5429
+ /** RPM of the motor. */
4775
5430
  motor_rpm?: Maybe<Scalars["Int"]>;
4776
- /** Number of occupants present in the vehicle */
5431
+ /** Number of occupants present in the vehicle. */
4777
5432
  occupants?: Maybe<Scalars["Int"]>;
4778
- /** Value of the vehicle's odometer */
5433
+ /** Value of the vehicle's odometer. */
4779
5434
  odometer?: Maybe<Scalars["Float"]>;
4780
- /** Value of the outside temperature */
5435
+ /** Value of the outside temperature. */
4781
5436
  outside_temperature?: Maybe<Scalars["Float"]>;
4782
- /** Vehicle is in park, neutral or turned off */
5437
+ /** Vehicle is in park, neutral or turned off. */
4783
5438
  is_parked?: Maybe<Scalars["Boolean"]>;
4784
- /** 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. */
4785
5440
  power?: Maybe<Scalars["Float"]>;
4786
- /** Value of the state of charge of the vehicle */
5441
+ /** Value of the state of charge of the vehicle. */
4787
5442
  state_of_charge?: Maybe<Scalars["Float"]>;
4788
- /** 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. */
4789
5444
  tire_pressure?: Maybe<Array<Scalars["Float"]>>;
4790
- /** UNIX timestamp in seconds */
5445
+ /** UNIX timestamp in seconds. */
4791
5446
  timestamp?: Maybe<Scalars["Int"]>;
4792
- /** Value of the vehicle speed */
5447
+ /** Value of the vehicle speed. */
4793
5448
  vehicle_speed?: Maybe<Scalars["Float"]>;
4794
- /** Custom input fields can be added based on telemetry architecture */
5449
+ /** Custom input fields can be added based on telemetry architecture. */
4795
5450
  custom?: Maybe<Scalars["JSON"]>;
4796
5451
  };
4797
5452
 
@@ -4848,104 +5503,104 @@ export type Telemetryvehicle_speedArgs = {
4848
5503
  };
4849
5504
 
4850
5505
  export type TelemetryInput = {
4851
- /** Average auxiliary power consumption */
5506
+ /** Average auxiliary power consumption. */
4852
5507
  auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;
4853
- /** Battery current in ampere */
5508
+ /** Battery current in ampere. */
4854
5509
  battery_current?: Maybe<Scalars["Float"]>;
4855
- /** Battery temperature */
5510
+ /** Battery temperature. */
4856
5511
  battery_temperature?: Maybe<BatteryTemperatureInput>;
4857
- /** Battery voltage in volts */
5512
+ /** Battery voltage in volts. */
4858
5513
  battery_voltage?: Maybe<Scalars["Float"]>;
4859
- /** Is the vehicle currently charging */
5514
+ /** Is the vehicle currently charging. */
4860
5515
  is_charging?: Maybe<Scalars["Boolean"]>;
4861
- /** Rate of charge */
5516
+ /** Rate of charge. */
4862
5517
  charge_speed?: Maybe<ChargeSpeedInput>;
4863
- /** Amount charged */
5518
+ /** Amount charged. */
4864
5519
  charge_total?: Maybe<ChargeTotalInput>;
4865
- /** Cumulated weight of the occupants */
5520
+ /** Cumulated weight of the occupants. */
4866
5521
  total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
4867
- /** Weight of the cargo */
5522
+ /** Weight of the cargo. */
4868
5523
  total_cargo_weight?: Maybe<TotalCargoWeightInput>;
4869
- /** Current elevation */
5524
+ /** Current elevation. */
4870
5525
  elevation?: Maybe<ElevationInput>;
4871
- /** Current heading in degrees */
5526
+ /** Current heading in degrees. */
4872
5527
  heading?: Maybe<Scalars["Float"]>;
4873
- /** RPM of the motor */
5528
+ /** RPM of the motor. */
4874
5529
  motor_rpm?: Maybe<Scalars["Int"]>;
4875
- /** Number of occupants in the vehicle */
5530
+ /** Number of occupants in the vehicle. */
4876
5531
  occupants?: Maybe<Scalars["Int"]>;
4877
- /** Mileage or odometer reading */
5532
+ /** Mileage or odometer reading. */
4878
5533
  odometer?: Maybe<OdometerInput>;
4879
- /** Outside temperature */
5534
+ /** Outside temperature. */
4880
5535
  outside_temperature?: Maybe<OutsideTempInput>;
4881
- /** Vehicle is in park, neutral or turned off */
5536
+ /** Vehicle is in park, neutral or turned off. */
4882
5537
  is_parked?: Maybe<Scalars["Boolean"]>;
4883
- /** Vehicle power */
5538
+ /** Vehicle power. */
4884
5539
  power?: Maybe<PowerInput>;
4885
- /** Battery state of charge */
5540
+ /** Battery state of charge. */
4886
5541
  state_of_charge?: Maybe<StateOfChargeInput>;
4887
- /** 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. */
4888
5543
  tire_pressure?: Maybe<TirePressureInput>;
4889
- /** UNIX timestamp in seconds */
5544
+ /** UNIX timestamp in seconds. */
4890
5545
  timestamp?: Maybe<Scalars["Int"]>;
4891
- /** Vehicle speed */
5546
+ /** Vehicle speed. */
4892
5547
  vehicle_speed?: Maybe<VehicleSpeedInput>;
4893
- /** Custom input fields can be added based on telemetry architecture */
5548
+ /** Custom input fields can be added based on telemetry architecture. */
4894
5549
  custom?: Maybe<Scalars["JSON"]>;
4895
5550
  };
4896
5551
 
4897
5552
  export enum TelemetryInputSource {
4898
- /** Manually inputted value */
5553
+ /** Manually inputted value. */
4899
5554
  MANUAL = "manual",
4900
- /** Value from the vehicle's telemetry */
5555
+ /** Value from the vehicle's telemetry. */
4901
5556
  TELEMETRY = "telemetry"
4902
5557
  }
4903
5558
 
4904
5559
  export enum TemperatureUnit {
4905
- /** Return the temperature in Celsius */
5560
+ /** Return the temperature in Celsius. */
4906
5561
  CELSIUS = "Celsius",
4907
- /** Return the temperature in Fahrenheit */
5562
+ /** Return the temperature in Fahrenheit. */
4908
5563
  FAHRENHEIT = "Fahrenheit"
4909
5564
  }
4910
5565
 
4911
5566
  export type TirePressureInput = {
4912
- /** 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. */
4913
5568
  value: Array<Scalars["Float"]>;
4914
- /** Type of the value of pressure */
5569
+ /** Type of the value of pressure. */
4915
5570
  type: PressureUnit;
4916
- /** Source of inputted data, defaults to 'manual' */
5571
+ /** Source of inputted data, defaults to 'manual'. */
4917
5572
  source?: Maybe<TelemetryInputSource>;
4918
5573
  };
4919
5574
 
4920
5575
  export enum TorqueUnit {
4921
- /** Return the torque in newton meters */
5576
+ /** Return the torque in newton meters. */
4922
5577
  NEWTON_METER = "newton_meter",
4923
- /** Return the torque in foot pounds */
5578
+ /** Return the torque in foot pounds. */
4924
5579
  FOOT_POUND = "foot_pound"
4925
5580
  }
4926
5581
 
4927
5582
  export type TotalCargoWeightInput = {
4928
- /** Value of the current weight of the cargo */
5583
+ /** Value of the current weight of the cargo. */
4929
5584
  value: Scalars["Float"];
4930
- /** Type of the current weight of the cargo */
5585
+ /** Type of the current weight of the cargo. */
4931
5586
  type: WeightUnit;
4932
- /** Source of inputted data, defaults to 'manual' */
5587
+ /** Source of inputted data, defaults to 'manual'. */
4933
5588
  source?: Maybe<TelemetryInputSource>;
4934
5589
  };
4935
5590
 
4936
5591
  export type TotalOccupantWeightInput = {
4937
- /** Value of the current weight of the occupants */
5592
+ /** Value of the current weight of the occupants. */
4938
5593
  value: Scalars["Float"];
4939
- /** Type of the current weight of the occupants */
5594
+ /** Type of the current weight of the occupants. */
4940
5595
  type: WeightUnit;
4941
- /** Source of inputted data, defaults to 'manual' */
5596
+ /** Source of inputted data, defaults to 'manual'. */
4942
5597
  source?: Maybe<TelemetryInputSource>;
4943
5598
  };
4944
5599
 
4945
5600
  export enum TurningCircleUnit {
4946
- /** Return the turning circle in meters */
5601
+ /** Return the turning circle in meters. */
4947
5602
  METER = "meter",
4948
- /** Return the turning circle in feet */
5603
+ /** Return the turning circle in feet. */
4949
5604
  FOOT = "foot"
4950
5605
  }
4951
5606
 
@@ -5181,9 +5836,9 @@ export enum VehicleImageType {
5181
5836
  IMAGE_PREMIUM = "image_premium",
5182
5837
  /** Thumbnail of a premium image. */
5183
5838
  PREMIUM_IMAGE_THUMBNAIL = "premium_image_thumbnail",
5184
- /** Full-sized brand (maker) logo at 768x432 px. */
5839
+ /** Full-sized brand (make) logo at 768x432 px. */
5185
5840
  BRAND = "brand",
5186
- /** Thumbnail of a full-sized brand logo at 56x24 px. */
5841
+ /** Thumbnail of a full-sized brand (make) logo at 56x24 px. */
5187
5842
  BRAND_THUMBNAIL = "brand_thumbnail",
5188
5843
  /** Placeholder image at 1536x864 px. */
5189
5844
  PLACEHOLDER = "placeholder"
@@ -5266,8 +5921,13 @@ export type VehicleListFilter = {
5266
5921
  export type VehicleListMedia = {
5267
5922
  /** Featured image of the vehicle from a 45-degree angle. */
5268
5923
  image: VehicleImage;
5269
- /** Latest maker logo of the vehicle. */
5924
+ /**
5925
+ * Latest make logo of the vehicle.
5926
+ * @deprecated In favor of make.
5927
+ */
5270
5928
  brand: VehicleImage;
5929
+ /** Latest make logo of the vehicle. */
5930
+ make: VehicleImage;
5271
5931
  /** Latest video of the vehicle. */
5272
5932
  video?: Maybe<VehicleVideo>;
5273
5933
  };
@@ -5302,8 +5962,13 @@ export type VehicleListRouting = {
5302
5962
  export type VehicleMedia = {
5303
5963
  /** Featured image of the vehicle from a 45-degree angle. */
5304
5964
  image: VehicleImage;
5305
- /** Latest maker logo. */
5965
+ /**
5966
+ * Latest make logo.
5967
+ * @deprecated In favor of make.
5968
+ */
5306
5969
  brand: VehicleImage;
5970
+ /** Latest make logo. */
5971
+ make: VehicleImage;
5307
5972
  /** All images of the vehicle. */
5308
5973
  image_list: Array<VehicleImage>;
5309
5974
  /** Latest video. */
@@ -5372,8 +6037,13 @@ export type VehiclePremium = {
5372
6037
  body: VehiclePremiumBody;
5373
6038
  /** Availability of the vehicle. */
5374
6039
  availability: VehiclePremiumAvailability;
5375
- /** Pricing of the vehicle. */
6040
+ /**
6041
+ * Pricing of the vehicle.
6042
+ * @deprecated In favor of pricing.
6043
+ */
5376
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;
5377
6047
  /** Drivetrain of the vehicle. */
5378
6048
  drivetrain: VehiclePremiumDrivetrain;
5379
6049
  /** Performance of the vehicle. */
@@ -5463,7 +6133,10 @@ export type VehiclePremiumBody = {
5463
6133
  weight_is_estimated?: Maybe<Scalars["Boolean"]>;
5464
6134
  /** Maximum payload allowed for the vehicle, default in kg. */
5465
6135
  weight_max_payload?: Maybe<Scalars["Float"]>;
5466
- /** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg. */
6136
+ /**
6137
+ * Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg.
6138
+ * @deprecated In favor of weight_gvwr.nominal
6139
+ */
5467
6140
  max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
5468
6141
  /** Standard luggage capacity, default in l. */
5469
6142
  boot_capacity?: Maybe<Scalars["Float"]>;
@@ -5903,8 +6576,13 @@ export type VehiclePremiumMedia = {
5903
6576
  provider_details_url?: Maybe<Scalars["String"]>;
5904
6577
  /** Featured image of the vehicle from a 45-degree angle. */
5905
6578
  image: VehicleImage;
5906
- /** Latest maker logo. */
6579
+ /**
6580
+ * Latest make logo.
6581
+ * @deprecated In favor of make.
6582
+ */
5907
6583
  brand: VehicleImage;
6584
+ /** Latest make logo. */
6585
+ make: VehicleImage;
5908
6586
  /** All images of the vehicle. */
5909
6587
  image_list: Array<VehicleImage>;
5910
6588
  /** Latest video. */
@@ -5965,9 +6643,9 @@ export type VehiclePremiumPriceValueWithGrant = {
5965
6643
  value?: Maybe<Scalars["Float"]>;
5966
6644
  /** Currency in which the value without optional field conversion is expressed. */
5967
6645
  currency?: Maybe<CurrencyUnit>;
5968
- /** Indicates if price value is based on estimates. */
6646
+ /** Indicates if the starting price is based on an estimate. */
5969
6647
  is_estimated?: Maybe<Scalars["Boolean"]>;
5970
- /** Grant is applied to value. */
6648
+ /** Grant that is applied to the starting price. */
5971
6649
  grant_applied?: Maybe<Scalars["Int"]>;
5972
6650
  };
5973
6651
 
@@ -6188,11 +6866,11 @@ export type VehicleRouting = {
6188
6866
  };
6189
6867
 
6190
6868
  export type VehicleSpeedInput = {
6191
- /** Value of the vehicle speed */
6869
+ /** Value of the vehicle speed. */
6192
6870
  value: Scalars["Float"];
6193
- /** Type of the vehicle speed */
6871
+ /** Type of the vehicle speed. */
6194
6872
  type: SpeedUnit;
6195
- /** Source of inputted data, defaults to 'manual' */
6873
+ /** Source of inputted data, defaults to 'manual'. */
6196
6874
  source?: Maybe<TelemetryInputSource>;
6197
6875
  };
6198
6876
 
@@ -6247,17 +6925,17 @@ export type VehicleVideo = {
6247
6925
  };
6248
6926
 
6249
6927
  export enum VolumeUnit {
6250
- /** Return the volume in liters */
6928
+ /** Return the volume in liters. */
6251
6929
  LITER = "liter",
6252
- /** Return the volume in cubic meters */
6930
+ /** Return the volume in cubic meters. */
6253
6931
  CUBIC_METER = "cubic_meter",
6254
- /** Return the volume in cubic feet */
6932
+ /** Return the volume in cubic feet. */
6255
6933
  CUBIC_FOOT = "cubic_foot"
6256
6934
  }
6257
6935
 
6258
6936
  export enum WeightUnit {
6259
- /** Return the weight in kilograms */
6937
+ /** Return the weight in kilograms. */
6260
6938
  KILOGRAM = "kilogram",
6261
- /** Return the weight in pounds */
6939
+ /** Return the weight in pounds. */
6262
6940
  POUND = "pound"
6263
6941
  }