@chargetrip/types 1.45.0 → 1.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +1 -81
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +1 -81
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +65 -1309
- package/graphql.schema.json +131 -5860
- package/package.json +6 -3
- package/src/graphql.ts +65 -1386
package/src/graphql.ts
CHANGED
|
@@ -165,1353 +165,91 @@ export type AmenityPreferencesInput = {
|
|
|
165
165
|
scheduled_charge_stops?: Maybe<Array<ScheduledChargeStopInput>>;
|
|
166
166
|
};
|
|
167
167
|
|
|
168
|
-
/**
|
|
169
|
-
export
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
COFFEE = "coffee",
|
|
182
|
-
HOTEL = "hotel",
|
|
183
|
-
SHOPPING = "shopping",
|
|
184
|
-
BATHROOM = "bathroom",
|
|
185
|
-
SUPERMARKET = "supermarket",
|
|
186
|
-
PLAYGROUND = "playground",
|
|
187
|
-
PHARMACY = "pharmacy"
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
export type AuthorizeConnectedVehicleInput = {
|
|
191
|
-
/** Id from the connected vehicle */
|
|
192
|
-
id: Scalars["ID"];
|
|
193
|
-
/** Provider specific options. See the developer portal for more details */
|
|
194
|
-
options: AuthorizeConnectedVehicleOptions;
|
|
195
|
-
};
|
|
196
|
-
|
|
197
|
-
export type AuthorizeConnectedVehicleOptions = {
|
|
198
|
-
/** OAuth code returned as a query parameter on the OAuth callback */
|
|
199
|
-
code?: Maybe<Scalars["PlainString"]>;
|
|
200
|
-
};
|
|
201
|
-
|
|
202
|
-
export type AuxiliaryConsumption = {
|
|
203
|
-
/** Value of the auxiliary power consumption of the vehicle. */
|
|
204
|
-
value: Scalars["Float"];
|
|
205
|
-
/** Type of auxiliary power consumption of the vehicle. */
|
|
206
|
-
type: AuxiliaryConsumptionUnit;
|
|
207
|
-
/** Source of inputted data. */
|
|
208
|
-
source: TelemetryInputSource;
|
|
209
|
-
};
|
|
210
|
-
|
|
211
|
-
export type AuxiliaryConsumptionInput = {
|
|
212
|
-
/** Value of the auxiliary power consumption of the vehicle. */
|
|
213
|
-
value: Scalars["Float"];
|
|
214
|
-
/** Type of auxiliary power consumption of the vehicle. */
|
|
215
|
-
type: AuxiliaryConsumptionUnit;
|
|
216
|
-
/** Source of inputted data, defaults to 'manual'. */
|
|
217
|
-
source?: Maybe<TelemetryInputSource>;
|
|
218
|
-
};
|
|
219
|
-
|
|
220
|
-
/** Auxiliary consumption units. */
|
|
221
|
-
export enum AuxiliaryConsumptionUnit {
|
|
222
|
-
/** Return the auxiliary consumption in kilowatt hours. */
|
|
223
|
-
KILOWATT_HOUR = "kilowatt_hour"
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
/** The type of the battery value. */
|
|
227
|
-
export enum BatteryInputType {
|
|
228
|
-
KWH = "kwh",
|
|
229
|
-
KM = "km",
|
|
230
|
-
MILES = "miles",
|
|
231
|
-
PERCENTAGE = "percentage"
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
export type BatteryTemperatureInput = {
|
|
235
|
-
/** Value of the temperature of the battery. */
|
|
236
|
-
value: Scalars["Float"];
|
|
237
|
-
/** Type of temperature of the battery. */
|
|
238
|
-
type: TemperatureUnit;
|
|
239
|
-
/** Source of inputted data, defaults to 'manual'. */
|
|
240
|
-
source?: Maybe<TelemetryInputSource>;
|
|
241
|
-
};
|
|
242
|
-
|
|
243
|
-
/** Deprecated: In favour of Vehicle. */
|
|
244
|
-
export type Car = {
|
|
245
|
-
/** Cars unique ID. */
|
|
246
|
-
id?: Maybe<Scalars["ID"]>;
|
|
247
|
-
/** Naming of a car. */
|
|
248
|
-
naming?: Maybe<CarNaming>;
|
|
249
|
-
/** Available connectors for a car. */
|
|
250
|
-
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
251
|
-
/** List of adapters of connectors available for a car. */
|
|
252
|
-
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
253
|
-
/** Battery of a car. */
|
|
254
|
-
battery?: Maybe<CarBattery>;
|
|
255
|
-
/** Body of a car. */
|
|
256
|
-
body?: Maybe<CarBody>;
|
|
257
|
-
/** Availability of a car. */
|
|
258
|
-
availability?: Maybe<CarAvailability>;
|
|
259
|
-
/** Performance of a car. */
|
|
260
|
-
performance?: Maybe<CarPerformance>;
|
|
261
|
-
/** Range of a car. */
|
|
262
|
-
range?: Maybe<CarRange>;
|
|
263
|
-
/** Media of a car. */
|
|
264
|
-
media?: Maybe<CarMedia>;
|
|
265
|
-
/** Routing of a car. */
|
|
266
|
-
routing?: Maybe<CarRouting>;
|
|
267
|
-
/** Information about vehicle connectivity. */
|
|
268
|
-
connect?: Maybe<Connect>;
|
|
269
|
-
/**
|
|
270
|
-
* ID provided by a car data source as the row ID.
|
|
271
|
-
* @deprecated Will be removed in the future
|
|
272
|
-
*/
|
|
273
|
-
externalId?: Maybe<Scalars["String"]>;
|
|
274
|
-
/**
|
|
275
|
-
* Car manufacturer.
|
|
276
|
-
* @deprecated In favor of naming.make
|
|
277
|
-
*/
|
|
278
|
-
make?: Maybe<Scalars["String"]>;
|
|
279
|
-
/**
|
|
280
|
-
* Car model.
|
|
281
|
-
* @deprecated In favor of naming.model
|
|
282
|
-
*/
|
|
283
|
-
carModel?: Maybe<Scalars["String"]>;
|
|
284
|
-
/**
|
|
285
|
-
* Car edition.
|
|
286
|
-
* @deprecated In favor of naming.version
|
|
287
|
-
*/
|
|
288
|
-
edition?: Maybe<Scalars["String"]>;
|
|
289
|
-
/**
|
|
290
|
-
* 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.
|
|
291
|
-
* @deprecated In favor of naming.chargetrip_version
|
|
292
|
-
*/
|
|
293
|
-
chargetripEdition?: Maybe<Scalars["String"]>;
|
|
294
|
-
/**
|
|
295
|
-
* Car version.
|
|
296
|
-
* @deprecated In favor of naming.edition
|
|
297
|
-
*/
|
|
298
|
-
version?: Maybe<Scalars["String"]>;
|
|
299
|
-
/**
|
|
300
|
-
* 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.
|
|
301
|
-
* @deprecated In favor of range.chargetrip_range
|
|
302
|
-
*/
|
|
303
|
-
chargetripRange?: Maybe<ChargetripRange>;
|
|
304
|
-
/**
|
|
305
|
-
* Cars that support fast charging have a minimum charging speed of 43 kWh.
|
|
306
|
-
* @deprecated In favor of routing.fast_charging_support
|
|
307
|
-
*/
|
|
308
|
-
fastChargingSupport?: Maybe<Scalars["Boolean"]>;
|
|
309
|
-
/**
|
|
310
|
-
* Current production mode of a car.
|
|
311
|
-
* @deprecated In favor of availability.status
|
|
312
|
-
*/
|
|
313
|
-
mode?: Maybe<CarMode>;
|
|
314
|
-
/**
|
|
315
|
-
* Number of seats.
|
|
316
|
-
* @deprecated In favor of body.seats
|
|
317
|
-
*/
|
|
318
|
-
seats?: Maybe<Scalars["Int"]>;
|
|
319
|
-
/**
|
|
320
|
-
* Weight in kg.
|
|
321
|
-
* @deprecated In favor of body.weight
|
|
322
|
-
*/
|
|
323
|
-
weight?: Maybe<Scalars["Float"]>;
|
|
324
|
-
/**
|
|
325
|
-
* Height in mm.
|
|
326
|
-
* @deprecated In favor of body.height
|
|
327
|
-
*/
|
|
328
|
-
height?: Maybe<Scalars["Int"]>;
|
|
329
|
-
/**
|
|
330
|
-
* Width in mm.
|
|
331
|
-
* @deprecated In favor of body.width
|
|
332
|
-
*/
|
|
333
|
-
width?: Maybe<Scalars["Int"]>;
|
|
334
|
-
/**
|
|
335
|
-
* Usable battery capacity in kWh.
|
|
336
|
-
* @deprecated In favor of battery.usable_kwh
|
|
337
|
-
*/
|
|
338
|
-
batteryUsableKwh?: Maybe<Scalars["Float"]>;
|
|
339
|
-
/**
|
|
340
|
-
* Full battery capacity in kWh.
|
|
341
|
-
* @deprecated In favor of battery.full_kwh
|
|
342
|
-
*/
|
|
343
|
-
batteryFullKwh?: Maybe<Scalars["Float"]>;
|
|
344
|
-
/**
|
|
345
|
-
* Battery efficiency in the city, highway and combined depending on weather conditions.
|
|
346
|
-
* @deprecated In favor of efficiency
|
|
347
|
-
*/
|
|
348
|
-
batteryEfficiency?: Maybe<CarBatteryEfficiency>;
|
|
349
|
-
/**
|
|
350
|
-
* Acceleration time from 0 to 100 km/h.
|
|
351
|
-
* @deprecated In favor of performance.acceleration
|
|
352
|
-
*/
|
|
353
|
-
acceleration?: Maybe<Scalars["Float"]>;
|
|
354
|
-
/**
|
|
355
|
-
* Maximum car speed in km/h.
|
|
356
|
-
* @deprecated In favor of performance.top_speed
|
|
357
|
-
*/
|
|
358
|
-
topSpeed?: Maybe<Scalars["Float"]>;
|
|
359
|
-
/**
|
|
360
|
-
* Power of a car in Kw.
|
|
361
|
-
* @deprecated In favor of drivetrain.power
|
|
362
|
-
*/
|
|
363
|
-
power?: Maybe<Scalars["Float"]>;
|
|
364
|
-
/**
|
|
365
|
-
* Engine torque.
|
|
366
|
-
* @deprecated In favor of drivetrain.torque
|
|
367
|
-
*/
|
|
368
|
-
torque?: Maybe<Scalars["Float"]>;
|
|
369
|
-
/**
|
|
370
|
-
* Extra consumption model.
|
|
371
|
-
* @deprecated In favor of routing.consumption
|
|
372
|
-
*/
|
|
373
|
-
consumption?: Maybe<CarExtraConsumption>;
|
|
374
|
-
/**
|
|
375
|
-
* Amount of petrol a similar petrol car would consume per 100 km.
|
|
376
|
-
* @deprecated In favor of routing.petrol_consumption
|
|
377
|
-
*/
|
|
378
|
-
petrolConsumption?: Maybe<Scalars["Float"]>;
|
|
379
|
-
/**
|
|
380
|
-
* A list of offset data for different charging speeds.
|
|
381
|
-
* @deprecated You will receive null values
|
|
382
|
-
*/
|
|
383
|
-
chargingOffset?: Maybe<Scalars["JSON"]>;
|
|
384
|
-
/**
|
|
385
|
-
* Images of a car.
|
|
386
|
-
* @deprecated In favor of media.image_list
|
|
387
|
-
*/
|
|
388
|
-
images?: Maybe<Array<Maybe<CarImage>>>;
|
|
389
|
-
/**
|
|
390
|
-
* Images of a car in structured data.
|
|
391
|
-
* @deprecated In favor of media.image or media.brand
|
|
392
|
-
*/
|
|
393
|
-
imagesData?: Maybe<CarImageData>;
|
|
394
|
-
};
|
|
395
|
-
|
|
396
|
-
/** Deprecated: In favour of VehicleAvailability. */
|
|
397
|
-
export type CarAvailability = {
|
|
398
|
-
/**
|
|
399
|
-
* Availability of car.
|
|
400
|
-
*
|
|
401
|
-
* Values:
|
|
402
|
-
* - 0 = Car no longer for sale in any market / region.
|
|
403
|
-
* - 1 = Car currently for sale in at least one market / region.
|
|
404
|
-
* - 2 = Car expected in market from Date_From (estimated), pre-order open.
|
|
405
|
-
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
|
|
406
|
-
* - 12 = Concept car, nearing production and/or confirmed, pre-order open.
|
|
407
|
-
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
|
|
408
|
-
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
|
|
409
|
-
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
|
|
410
|
-
* - 91 = Status uncertain, introduction date and/or pricing unclear.
|
|
411
|
-
*/
|
|
412
|
-
status?: Maybe<Scalars["Int"]>;
|
|
413
|
-
};
|
|
414
|
-
|
|
415
|
-
/** Deprecated: In favour of VehicleBattery. */
|
|
416
|
-
export type CarBattery = {
|
|
417
|
-
/** Usable battery capacity in kWh. */
|
|
418
|
-
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
419
|
-
/** Full battery capacity in kWh. */
|
|
420
|
-
full_kwh?: Maybe<Scalars["Float"]>;
|
|
421
|
-
};
|
|
422
|
-
|
|
423
|
-
/** Deprecated. */
|
|
424
|
-
export type CarBatteryEfficiency = {
|
|
425
|
-
/** Average efficiency measured in kWh/100 km. */
|
|
426
|
-
average?: Maybe<Scalars["Float"]>;
|
|
427
|
-
/** Worst conditions are based on -10°C and use of heating, measured in kWh/100 km. */
|
|
428
|
-
worst?: Maybe<CarEstimationData>;
|
|
429
|
-
/** Best conditions are based on 23°C and no use of A/C, measured in kWh/100 km. */
|
|
430
|
-
best?: Maybe<CarEstimationData>;
|
|
431
|
-
};
|
|
432
|
-
|
|
433
|
-
/** Deprecated: In favour of VehicleBatteryFieldEstimations. */
|
|
434
|
-
export enum CarBatteryFieldEstimations {
|
|
435
|
-
/** Both of the battery kWh fields are estimations. */
|
|
436
|
-
B = "B",
|
|
437
|
-
/** full_kwh field is estimated. */
|
|
438
|
-
F = "F",
|
|
439
|
-
/** None of the battery kWh fields are estimations. */
|
|
440
|
-
N = "N",
|
|
441
|
-
/** usable_kwh field is estimated. */
|
|
442
|
-
U = "U"
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
/** Deprecated: In favour of VehicleBody. */
|
|
446
|
-
export type CarBody = {
|
|
447
|
-
/** Width with folded mirrors in mm. */
|
|
448
|
-
width?: Maybe<Scalars["Int"]>;
|
|
449
|
-
/** Height (average height for adjustable suspensions) in mm. */
|
|
450
|
-
height?: Maybe<Scalars["Int"]>;
|
|
451
|
-
/** Weight Unladen EU) in kg. */
|
|
452
|
-
weight?: Maybe<Scalars["Int"]>;
|
|
453
|
-
/** Number of seats. */
|
|
454
|
-
seats?: Maybe<Scalars["Int"]>;
|
|
455
|
-
};
|
|
456
|
-
|
|
457
|
-
export enum CarConnectivityProvider {
|
|
458
|
-
ENODE = "Enode"
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
/** Deprecated. */
|
|
462
|
-
export type CarConsumption = {
|
|
463
|
-
/** Worst conditions are based on -10°C and use of heating. */
|
|
464
|
-
worst?: Maybe<Scalars["Float"]>;
|
|
465
|
-
/** Best conditions are based on 23°C and no use of A/C. */
|
|
466
|
-
best?: Maybe<Scalars["Float"]>;
|
|
467
|
-
};
|
|
468
|
-
|
|
469
|
-
/** Deprecated: In favour of VehicleConsumptionInput. */
|
|
470
|
-
export type CarConsumptionInput = {
|
|
471
|
-
/** Worst conditions are based on -10°C and use of heating. */
|
|
472
|
-
worst?: Maybe<Scalars["Float"]>;
|
|
473
|
-
/** Best conditions are based on 23°C and no use of A/C. */
|
|
474
|
-
best?: Maybe<Scalars["Float"]>;
|
|
475
|
-
};
|
|
476
|
-
|
|
477
|
-
/** Deprecated: In favour of VehicleDrivetrain. */
|
|
478
|
-
export enum CarDrivetrain {
|
|
479
|
-
/** Battery Electric Car.. */
|
|
480
|
-
BEV = "BEV",
|
|
481
|
-
/** Extended Range Electric Car. */
|
|
482
|
-
EREV = "EREV"
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
/** Deprecated. */
|
|
486
|
-
export type CarEstimationData = {
|
|
487
|
-
/** Estimated battery efficiency on a highway or express roads, in km. */
|
|
488
|
-
highway?: Maybe<Scalars["Float"]>;
|
|
489
|
-
/** Estimated battery efficiency on city roads, in km. */
|
|
490
|
-
city?: Maybe<Scalars["Float"]>;
|
|
491
|
-
/** Estimated battery efficiency on highway and city roads combined, in km. */
|
|
492
|
-
combined?: Maybe<Scalars["Float"]>;
|
|
493
|
-
};
|
|
494
|
-
|
|
495
|
-
/** Deprecated. */
|
|
496
|
-
export type CarExtraConsumption = {
|
|
497
|
-
/** Consumption, in kWh, of the auxiliaries. */
|
|
498
|
-
aux?: Maybe<CarConsumption>;
|
|
499
|
-
/** Consumption, in kWh, of the battery management system. */
|
|
500
|
-
bms?: Maybe<CarConsumption>;
|
|
501
|
-
/** Consumption, in kWh, of a car in idle mode. */
|
|
502
|
-
idle?: Maybe<CarConsumption>;
|
|
503
|
-
};
|
|
504
|
-
|
|
505
|
-
/** Deprecated: In favour of VehicleFuel. */
|
|
506
|
-
export enum CarFuel {
|
|
507
|
-
/** Electricity only. Full electric car. */
|
|
508
|
-
E = "E"
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
/** Deprecated: In favour of VehicleImage */
|
|
512
|
-
export type CarImage = {
|
|
513
|
-
/** Image id. */
|
|
514
|
-
id?: Maybe<Scalars["ID"]>;
|
|
515
|
-
/** Image type. */
|
|
516
|
-
type?: Maybe<CarImageType>;
|
|
517
|
-
/** Full path URL of a large image. */
|
|
518
|
-
url?: Maybe<Scalars["String"]>;
|
|
519
|
-
/** Height of a large image in pixels. */
|
|
520
|
-
height?: Maybe<Scalars["Int"]>;
|
|
521
|
-
/** Width of a large image in pixels. */
|
|
522
|
-
width?: Maybe<Scalars["Int"]>;
|
|
523
|
-
/** Full path URL of a thumbnail image. */
|
|
524
|
-
thumbnail_url?: Maybe<Scalars["String"]>;
|
|
525
|
-
/** Height of a thumbnail image in pixels. */
|
|
526
|
-
thumbnail_height?: Maybe<Scalars["Int"]>;
|
|
527
|
-
/** Width of a thumbnail image in pixels. */
|
|
528
|
-
thumbnail_width?: Maybe<Scalars["Int"]>;
|
|
529
|
-
};
|
|
530
|
-
|
|
531
|
-
/** Deprecated. */
|
|
532
|
-
export type CarImageData = {
|
|
533
|
-
/** Full size image of a car. */
|
|
534
|
-
image?: Maybe<CarImage>;
|
|
535
|
-
/** Thumbnail of a full size image. */
|
|
536
|
-
image_thumbnail?: Maybe<CarImage>;
|
|
537
|
-
/** Full size logo of the make of a car. */
|
|
538
|
-
brand?: Maybe<CarImage>;
|
|
539
|
-
/** Thumbnail of a full size logo of the make of a car. */
|
|
540
|
-
brand_thumbnail?: Maybe<CarImage>;
|
|
541
|
-
};
|
|
542
|
-
|
|
543
|
-
/** Deprecated: In favour of VehicleImageType. */
|
|
544
|
-
export enum CarImageType {
|
|
545
|
-
/** Images provided by a Car Datasource. */
|
|
546
|
-
PROVIDER = "provider",
|
|
547
|
-
/** Full-sized image at 1536x864 px. */
|
|
548
|
-
IMAGE = "image",
|
|
549
|
-
/** Thumbnail of a full-sized image at 131x72 px. */
|
|
550
|
-
IMAGE_THUMBNAIL = "image_thumbnail",
|
|
551
|
-
/** Full-sized brand (make) logo at 768x432 px. */
|
|
552
|
-
BRAND = "brand",
|
|
553
|
-
/** Thumbnail of a full-sized brand (make) logo at 56x24 px. */
|
|
554
|
-
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
555
|
-
/** Placeholder image at 1536x864 px. */
|
|
556
|
-
PLACEHOLDER = "placeholder"
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
/** Deprecated: In favour of VehicleImageTypeUploadable. */
|
|
560
|
-
export enum CarImageTypeUploadable {
|
|
561
|
-
/** Full size image with a resolution at least 1536x864 px. */
|
|
562
|
-
IMAGE = "image"
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
/** Deprecated: In favour of VehicleList. */
|
|
566
|
-
export type CarList = {
|
|
567
|
-
/** Cars unique ID. */
|
|
568
|
-
id?: Maybe<Scalars["ID"]>;
|
|
569
|
-
/** Naming of a car. */
|
|
570
|
-
naming?: Maybe<CarListNaming>;
|
|
571
|
-
/** Connectors available for a car. */
|
|
572
|
-
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
573
|
-
/** Adapters of connectors available for a car. */
|
|
574
|
-
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
575
|
-
/** Battery of a car. */
|
|
576
|
-
battery?: Maybe<CarListBattery>;
|
|
577
|
-
/** Body of a car. */
|
|
578
|
-
body?: Maybe<CarListBody>;
|
|
579
|
-
/** Availability of a car. */
|
|
580
|
-
availability?: Maybe<CarListAvailability>;
|
|
581
|
-
/** Range of a car. */
|
|
582
|
-
range?: Maybe<CarListRange>;
|
|
583
|
-
/** Media of a car. */
|
|
584
|
-
media?: Maybe<CarListMedia>;
|
|
585
|
-
/** Routing of a car. */
|
|
586
|
-
routing?: Maybe<CarListRouting>;
|
|
587
|
-
/** Information about vehicle connectivity. */
|
|
588
|
-
connect?: Maybe<Connect>;
|
|
589
|
-
/**
|
|
590
|
-
* ID provided by a car data source as the row ID.
|
|
591
|
-
* @deprecated Will be removed in the future
|
|
592
|
-
*/
|
|
593
|
-
externalId?: Maybe<Scalars["String"]>;
|
|
594
|
-
/**
|
|
595
|
-
* Car manufacturer.
|
|
596
|
-
* @deprecated In favor of naming.make
|
|
597
|
-
*/
|
|
598
|
-
make?: Maybe<Scalars["String"]>;
|
|
599
|
-
/**
|
|
600
|
-
* Car model.
|
|
601
|
-
* @deprecated In favor of naming.model
|
|
602
|
-
*/
|
|
603
|
-
carModel?: Maybe<Scalars["String"]>;
|
|
604
|
-
/**
|
|
605
|
-
* Car edition.
|
|
606
|
-
* @deprecated In favor of naming.version
|
|
607
|
-
*/
|
|
608
|
-
edition?: Maybe<Scalars["String"]>;
|
|
609
|
-
/**
|
|
610
|
-
* 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.
|
|
611
|
-
* @deprecated In favor of naming.chargetrip_version
|
|
612
|
-
*/
|
|
613
|
-
chargetripEdition?: Maybe<Scalars["String"]>;
|
|
614
|
-
/**
|
|
615
|
-
* Car version.
|
|
616
|
-
* @deprecated In favor of naming.edition
|
|
617
|
-
*/
|
|
618
|
-
version?: Maybe<Scalars["String"]>;
|
|
619
|
-
/**
|
|
620
|
-
* 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.
|
|
621
|
-
* @deprecated In favor of range.chargetrip_range
|
|
622
|
-
*/
|
|
623
|
-
chargetripRange?: Maybe<ChargetripRange>;
|
|
624
|
-
/**
|
|
625
|
-
* Cars that support fast charging have a minimum charging speed of 43 kWh.
|
|
626
|
-
* @deprecated In favor of routing.fast_charging_support
|
|
627
|
-
*/
|
|
628
|
-
fastChargingSupport?: Maybe<Scalars["Boolean"]>;
|
|
629
|
-
/**
|
|
630
|
-
* Current production mode of a car.
|
|
631
|
-
* @deprecated In favor of availability.status
|
|
632
|
-
*/
|
|
633
|
-
mode?: Maybe<CarMode>;
|
|
634
|
-
/**
|
|
635
|
-
* Number of seats.
|
|
636
|
-
* @deprecated In favor of body.seats
|
|
637
|
-
*/
|
|
638
|
-
seats?: Maybe<Scalars["Int"]>;
|
|
639
|
-
/**
|
|
640
|
-
* Usable battery capacity in kWh.
|
|
641
|
-
* @deprecated In favor of battery.usable_kwh
|
|
642
|
-
*/
|
|
643
|
-
batteryUsableKwh?: Maybe<Scalars["Float"]>;
|
|
644
|
-
/**
|
|
645
|
-
* Full battery capacity in kWh.
|
|
646
|
-
* @deprecated In favor of battery.full_kwh
|
|
647
|
-
*/
|
|
648
|
-
batteryFullKwh?: Maybe<Scalars["Float"]>;
|
|
649
|
-
/**
|
|
650
|
-
* Images of a car in structured data.
|
|
651
|
-
* @deprecated In favor of media.image and media.brand
|
|
652
|
-
*/
|
|
653
|
-
imagesData?: Maybe<CarImageData>;
|
|
654
|
-
/** @deprecated You will receive null values */
|
|
655
|
-
power?: Maybe<Scalars["Float"]>;
|
|
656
|
-
/** @deprecated You will receive null values */
|
|
657
|
-
acceleration?: Maybe<Scalars["Float"]>;
|
|
658
|
-
/** @deprecated You will receive null values */
|
|
659
|
-
topSpeed?: Maybe<Scalars["Float"]>;
|
|
660
|
-
/** @deprecated You will receive null values */
|
|
661
|
-
torque?: Maybe<Scalars["Float"]>;
|
|
662
|
-
/** @deprecated You will receive null values */
|
|
663
|
-
batteryEfficiency?: Maybe<CarBatteryEfficiency>;
|
|
664
|
-
/** @deprecated You will receive null values */
|
|
665
|
-
weight?: Maybe<Scalars["Float"]>;
|
|
666
|
-
/** @deprecated You will receive null values */
|
|
667
|
-
height?: Maybe<Scalars["Int"]>;
|
|
668
|
-
/** @deprecated You will receive null values */
|
|
669
|
-
width?: Maybe<Scalars["Int"]>;
|
|
670
|
-
/** @deprecated You will receive null values */
|
|
671
|
-
consumption?: Maybe<CarExtraConsumption>;
|
|
672
|
-
/** @deprecated You will receive null values */
|
|
673
|
-
petrolConsumption?: Maybe<Scalars["Float"]>;
|
|
674
|
-
/** @deprecated You will receive null values */
|
|
675
|
-
chargingOffset?: Maybe<Scalars["JSON"]>;
|
|
676
|
-
/** @deprecated You will receive null values */
|
|
677
|
-
auxConsumption?: Maybe<Scalars["Float"]>;
|
|
678
|
-
/** @deprecated You will receive null values */
|
|
679
|
-
bmsConsumption?: Maybe<Scalars["Float"]>;
|
|
680
|
-
/** @deprecated You will receive null values */
|
|
681
|
-
dragCoefficient?: Maybe<Scalars["Float"]>;
|
|
682
|
-
/** @deprecated You will receive null values */
|
|
683
|
-
tirePressure?: Maybe<Scalars["Float"]>;
|
|
684
|
-
/** @deprecated You will receive null values */
|
|
685
|
-
motorEfficiency?: Maybe<Scalars["Float"]>;
|
|
686
|
-
/** @deprecated You will receive null values */
|
|
687
|
-
drivelineEfficiency?: Maybe<Scalars["Float"]>;
|
|
688
|
-
/** @deprecated You will receive null values */
|
|
689
|
-
regenEfficiency?: Maybe<Scalars["Float"]>;
|
|
690
|
-
/** @deprecated You will receive null values */
|
|
691
|
-
images?: Maybe<Array<Maybe<CarImage>>>;
|
|
692
|
-
};
|
|
693
|
-
|
|
694
|
-
/** Deprecated: In favour of VehicleListAvailability. */
|
|
695
|
-
export type CarListAvailability = {
|
|
696
|
-
/**
|
|
697
|
-
* Availability of car.
|
|
698
|
-
*
|
|
699
|
-
* Values:
|
|
700
|
-
* - 0 = Car no longer for sale in any market / region.
|
|
701
|
-
* - 1 = Car currently for sale in at least one market / region.
|
|
702
|
-
* - 2 = Car expected in market from Date_From (estimated), pre-order open.
|
|
703
|
-
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
|
|
704
|
-
* - 12 = Concept car, nearing production and/or confirmed, pre-order open.
|
|
705
|
-
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
|
|
706
|
-
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
|
|
707
|
-
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
|
|
708
|
-
* - 91 = Status uncertain, introduction date and/or pricing unclear.
|
|
709
|
-
*/
|
|
710
|
-
status?: Maybe<Scalars["Int"]>;
|
|
711
|
-
};
|
|
712
|
-
|
|
713
|
-
/** Deprecated: In favour of VehicleListBattery. */
|
|
714
|
-
export type CarListBattery = {
|
|
715
|
-
/** Usable battery capacity in kWh. */
|
|
716
|
-
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
717
|
-
/** Full battery capacity in kWh. */
|
|
718
|
-
full_kwh?: Maybe<Scalars["Float"]>;
|
|
719
|
-
};
|
|
720
|
-
|
|
721
|
-
/** Deprecated: In favour of VehicleListBody. */
|
|
722
|
-
export type CarListBody = {
|
|
723
|
-
/** Number of seats in car. */
|
|
724
|
-
seats?: Maybe<Scalars["Int"]>;
|
|
725
|
-
};
|
|
726
|
-
|
|
727
|
-
/** Deprecated: In favour of VehicleListFilter. */
|
|
728
|
-
export type CarListFilter = {
|
|
729
|
-
/**
|
|
730
|
-
* Availability of car.
|
|
731
|
-
*
|
|
732
|
-
* Values:
|
|
733
|
-
* - 0 = Car no longer for sale in any market / region.
|
|
734
|
-
* - 1 = Car currently for sale in at least one market / region.
|
|
735
|
-
* - 2 = Car expected in market from Date_From (estimated), pre-order open.
|
|
736
|
-
* - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
|
|
737
|
-
* - 12 = Concept car, nearing production and/or confirmed, pre-order open.
|
|
738
|
-
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
|
|
739
|
-
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
|
|
740
|
-
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
|
|
741
|
-
* - 91 = Status uncertain, introduction date and/or pricing unclear.
|
|
742
|
-
*/
|
|
743
|
-
availability?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
744
|
-
/** Information about vehicle connectivity. */
|
|
745
|
-
connect?: Maybe<ConnectFilter>;
|
|
746
|
-
};
|
|
747
|
-
|
|
748
|
-
/** Deprecated: In favour of VehicleListMedia. */
|
|
749
|
-
export type CarListMedia = {
|
|
750
|
-
/** Latest image of the car. */
|
|
751
|
-
image?: Maybe<CarImage>;
|
|
752
|
-
/** Latest make logo of the car. */
|
|
753
|
-
brand?: Maybe<CarImage>;
|
|
754
|
-
/** Latest video of the car. */
|
|
755
|
-
video?: Maybe<CarVideo>;
|
|
756
|
-
};
|
|
757
|
-
|
|
758
|
-
/** Deprecated: In favour of VehicleListNaming. */
|
|
759
|
-
export type CarListNaming = {
|
|
760
|
-
/** Car manufacturer name. */
|
|
761
|
-
make?: Maybe<Scalars["String"]>;
|
|
762
|
-
/** Car model name. */
|
|
763
|
-
model?: Maybe<Scalars["String"]>;
|
|
764
|
-
/** Version, edition or submodel of car. */
|
|
765
|
-
version?: Maybe<Scalars["String"]>;
|
|
766
|
-
/** Another submodel level of car. */
|
|
767
|
-
edition?: Maybe<Scalars["String"]>;
|
|
768
|
-
/** 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. */
|
|
769
|
-
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
770
|
-
};
|
|
771
|
-
|
|
772
|
-
/** Deprecated. */
|
|
773
|
-
export type CarListQuery = {
|
|
774
|
-
/** Deprecated: Not used anymore. */
|
|
775
|
-
make?: Maybe<Scalars["String"]>;
|
|
776
|
-
/** Deprecated: Not used anymore. */
|
|
777
|
-
model?: Maybe<Scalars["String"]>;
|
|
778
|
-
/** Deprecated: Not used anymore. */
|
|
779
|
-
version?: Maybe<Scalars["String"]>;
|
|
780
|
-
/** Deprecated: Not used anymore. */
|
|
781
|
-
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
782
|
-
/** Deprecated: Not used anymore. */
|
|
783
|
-
mode?: Maybe<CarMode>;
|
|
784
|
-
};
|
|
785
|
-
|
|
786
|
-
/** Deprecated: In favour of VehicleListRange. */
|
|
787
|
-
export type CarListRange = {
|
|
788
|
-
/**
|
|
789
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
790
|
-
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
791
|
-
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
792
|
-
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
793
|
-
*/
|
|
794
|
-
chargetrip_range?: Maybe<ChargetripRange>;
|
|
795
|
-
/** @deprecated You will receive null values */
|
|
796
|
-
wltp?: Maybe<Scalars["Float"]>;
|
|
797
|
-
/** @deprecated You will receive null values */
|
|
798
|
-
worst?: Maybe<CarEstimationData>;
|
|
799
|
-
/** @deprecated You will receive null values */
|
|
800
|
-
best?: Maybe<CarEstimationData>;
|
|
801
|
-
};
|
|
802
|
-
|
|
803
|
-
/** Deprecated: In favour of VehicleListRouting. */
|
|
804
|
-
export type CarListRouting = {
|
|
805
|
-
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
806
|
-
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
807
|
-
};
|
|
808
|
-
|
|
809
|
-
/** Deprecated: In favour of VehicleMedia. */
|
|
810
|
-
export type CarMedia = {
|
|
811
|
-
/** URL to detail page on EV database. */
|
|
812
|
-
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
813
|
-
/** Latest image. */
|
|
814
|
-
image?: Maybe<CarImage>;
|
|
815
|
-
/** Latest make logo. */
|
|
816
|
-
brand?: Maybe<CarImage>;
|
|
817
|
-
/** All images. */
|
|
818
|
-
image_list?: Maybe<Array<Maybe<CarImage>>>;
|
|
819
|
-
/** Latest video. */
|
|
820
|
-
video?: Maybe<CarVideo>;
|
|
821
|
-
/** All videos. */
|
|
822
|
-
video_list?: Maybe<Array<Maybe<CarVideo>>>;
|
|
823
|
-
/**
|
|
824
|
-
* URL to detail page on EV database.
|
|
825
|
-
* @deprecated Will be removed in the future. Please use evdb_details_url
|
|
826
|
-
*/
|
|
827
|
-
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
828
|
-
};
|
|
829
|
-
|
|
830
|
-
/** Deprecated: In favour of VehicleMode. */
|
|
831
|
-
export enum CarMode {
|
|
832
|
-
/** Old car that is no longer manufactured. */
|
|
833
|
-
INDEX_ONLY = "index_only",
|
|
834
|
-
/** Car is in production and has been released. */
|
|
835
|
-
PRODUCTION = "production",
|
|
836
|
-
/** Future releases of a car, a concept of the car, specs may change over time. */
|
|
837
|
-
CONCEPT = "concept"
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
/** Deprecated: In favour of VehicleNaming. */
|
|
841
|
-
export type CarNaming = {
|
|
842
|
-
/** Car manufacturer name. */
|
|
843
|
-
make?: Maybe<Scalars["String"]>;
|
|
844
|
-
/** Car model name. */
|
|
845
|
-
model?: Maybe<Scalars["String"]>;
|
|
846
|
-
/** Version, edition or submodel of car. */
|
|
847
|
-
version?: Maybe<Scalars["String"]>;
|
|
848
|
-
/** Another submodel level of car. */
|
|
849
|
-
edition?: Maybe<Scalars["String"]>;
|
|
850
|
-
/** 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. */
|
|
851
|
-
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
852
|
-
};
|
|
853
|
-
|
|
854
|
-
/** Deprecated: In favour of VehiclePerformance. */
|
|
855
|
-
export type CarPerformance = {
|
|
856
|
-
/** Acceleration 0-100 km/h in seconds. */
|
|
857
|
-
acceleration?: Maybe<Scalars["Float"]>;
|
|
858
|
-
/** Top speed of car in km/h. */
|
|
859
|
-
top_speed?: Maybe<Scalars["Int"]>;
|
|
860
|
-
};
|
|
861
|
-
|
|
862
|
-
/** Deprecated: In favour of VehicleConnector. */
|
|
863
|
-
export type CarPlug = {
|
|
864
|
-
/** Plug type, known as connector standard in OCPI. */
|
|
865
|
-
standard?: Maybe<ConnectorType>;
|
|
866
|
-
/** Usable electric power in kW. */
|
|
867
|
-
power?: Maybe<Scalars["Float"]>;
|
|
868
|
-
/** Maximum electric power in kW. */
|
|
869
|
-
max_electric_power?: Maybe<Scalars["Float"]>;
|
|
870
|
-
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */
|
|
871
|
-
time?: Maybe<Scalars["Int"]>;
|
|
872
|
-
/** Charging speed in km/h. */
|
|
873
|
-
speed?: Maybe<Scalars["Int"]>;
|
|
874
|
-
};
|
|
875
|
-
|
|
876
|
-
/** Deprecated: In favour of VehiclePremium. */
|
|
877
|
-
export type CarPremium = {
|
|
878
|
-
/** Unique ID of a car. */
|
|
879
|
-
id?: Maybe<Scalars["ID"]>;
|
|
880
|
-
/** Internal ID of the successor car trim. */
|
|
881
|
-
succesor_id?: Maybe<Scalars["String"]>;
|
|
882
|
-
/** Naming of a car. */
|
|
883
|
-
naming?: Maybe<CarPremiumNaming>;
|
|
884
|
-
/** Connectors available for a car. */
|
|
885
|
-
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
886
|
-
/** Charge details. */
|
|
887
|
-
charge?: Maybe<CarPremiumCharge>;
|
|
888
|
-
/** Fast charge details. */
|
|
889
|
-
fast_charge?: Maybe<CarPremiumFastCharge>;
|
|
890
|
-
/** Adapters of connectors available for a car. */
|
|
891
|
-
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
892
|
-
/** Battery of a car. */
|
|
893
|
-
battery?: Maybe<CarPremiumBattery>;
|
|
894
|
-
/** Body of a car. */
|
|
895
|
-
body?: Maybe<CarPremiumBody>;
|
|
896
|
-
/** Availability of a car. */
|
|
897
|
-
availability?: Maybe<CarPremiumAvailability>;
|
|
898
|
-
/** Pricing of a car. */
|
|
899
|
-
price?: Maybe<CarPremiumPrice>;
|
|
900
|
-
/** Drivetrain of a car. */
|
|
901
|
-
drivetrain?: Maybe<CarPremiumDrivetrain>;
|
|
902
|
-
/** Performance of a car. */
|
|
903
|
-
performance?: Maybe<CarPremiumPerformance>;
|
|
904
|
-
/** Range of a car. */
|
|
905
|
-
range?: Maybe<CarPremiumRange>;
|
|
906
|
-
/** Efficiency of a car. */
|
|
907
|
-
efficiency?: Maybe<CarPremiumEfficiency>;
|
|
908
|
-
/** Safety of a car. */
|
|
909
|
-
safety?: Maybe<CarPremiumSafety>;
|
|
910
|
-
/** Media of a car. */
|
|
911
|
-
media?: Maybe<CarPremiumMedia>;
|
|
912
|
-
/** Routing of a car. */
|
|
913
|
-
routing?: Maybe<CarPremiumRouting>;
|
|
914
|
-
/** Information about vehicle connectivity. */
|
|
915
|
-
connect?: Maybe<Connect>;
|
|
916
|
-
};
|
|
917
|
-
|
|
918
|
-
/** Deprecated: In favour of VehiclePremiumAvailability. */
|
|
919
|
-
export type CarPremiumAvailability = {
|
|
920
|
-
/**
|
|
921
|
-
* Availability of car.
|
|
922
|
-
*
|
|
923
|
-
* Values:
|
|
924
|
-
* - 0 = Car no longer for sale in any market/region.
|
|
925
|
-
* - 1 = Car currently for sale in at least one market/region.
|
|
926
|
-
* - 2 = Car expected in market from Date_From (estimated), pre-order open.
|
|
927
|
-
* - 3 = Car expected in market from Date_From (estimated), pre-order unknown or not open.
|
|
928
|
-
* - 12 = Concept car, nearing production and/or confirmed, pre-order open.
|
|
929
|
-
* - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
|
|
930
|
-
* - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
|
|
931
|
-
* - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
|
|
932
|
-
* - 91 = Status uncertain, introduction date and/or pricing unclear.
|
|
933
|
-
*/
|
|
934
|
-
status?: Maybe<Scalars["Int"]>;
|
|
935
|
-
/** Date of introduction, mm-yyyy. */
|
|
936
|
-
date_from?: Maybe<Scalars["String"]>;
|
|
937
|
-
/** Indicates if date from field is estimated. */
|
|
938
|
-
date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
939
|
-
/** Date last available, mm-yyyy. */
|
|
940
|
-
date_to?: Maybe<Scalars["String"]>;
|
|
941
|
-
};
|
|
942
|
-
|
|
943
|
-
/** Deprecated: In favour of VehiclePremiumBattery. */
|
|
944
|
-
export type CarPremiumBattery = {
|
|
945
|
-
/** Usable battery capacity in kWh. */
|
|
946
|
-
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
947
|
-
/** Full battery capacity in kWh. */
|
|
948
|
-
full_kwh?: Maybe<Scalars["Float"]>;
|
|
949
|
-
/** Indicates which battery fields are estimated. */
|
|
950
|
-
estimated_fields?: Maybe<CarBatteryFieldEstimations>;
|
|
951
|
-
/** Battery thermal management system (active/passive, air/liquid). */
|
|
952
|
-
thermal_management_system?: Maybe<Scalars["String"]>;
|
|
953
|
-
/** Duration of battery warranty. */
|
|
954
|
-
warranty_period?: Maybe<Scalars["Float"]>;
|
|
955
|
-
/** Mileage of battery warranty. */
|
|
956
|
-
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
957
|
-
};
|
|
958
|
-
|
|
959
|
-
/** Deprecated: In favour of VehiclePremiumBody. */
|
|
960
|
-
export type CarPremiumBody = {
|
|
961
|
-
/** Length in mm. */
|
|
962
|
-
length?: Maybe<Scalars["Int"]>;
|
|
963
|
-
/** Width with folded mirrors in mm. */
|
|
964
|
-
width?: Maybe<Scalars["Int"]>;
|
|
965
|
-
/** Width of vehicle in mm, including mirrors. */
|
|
966
|
-
full_width?: Maybe<Scalars["Int"]>;
|
|
967
|
-
/** Height (average height for adjustable suspensions) in mm. */
|
|
968
|
-
height?: Maybe<Scalars["Int"]>;
|
|
969
|
-
/** Indicates if length/width/height fields are estimations. */
|
|
970
|
-
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
971
|
-
/** Wheelbase in mm. */
|
|
972
|
-
wheelbase?: Maybe<Scalars["Int"]>;
|
|
973
|
-
/** Indicates if wheelbase field is estimated. */
|
|
974
|
-
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
975
|
-
/** Weight (unladen EU) in kg. */
|
|
976
|
-
weight?: Maybe<Scalars["Int"]>;
|
|
977
|
-
/** Indicates if weight field is estimated. */
|
|
978
|
-
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
979
|
-
/** Maximum payload allowed for vehicle in kg. */
|
|
980
|
-
weight_max_payload?: Maybe<Scalars["Int"]>;
|
|
981
|
-
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload) in kg. */
|
|
982
|
-
max_gross_vehicle_weight?: Maybe<Scalars["Int"]>;
|
|
983
|
-
/** Standard luggage capacity in l. */
|
|
984
|
-
boot_capacity?: Maybe<Scalars["Int"]>;
|
|
985
|
-
/** Storage capacity of front trunk/under the hood (frunk). */
|
|
986
|
-
boot_front_capacity?: Maybe<Scalars["Int"]>;
|
|
987
|
-
/** Maximum luggage capacity in l. */
|
|
988
|
-
boot_capacity_max?: Maybe<Scalars["Int"]>;
|
|
989
|
-
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */
|
|
990
|
-
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
991
|
-
/** Maximum unbraked towing weight in kg. */
|
|
992
|
-
tow_weight_unbraked?: Maybe<Scalars["Int"]>;
|
|
993
|
-
/** Maximum braked towing weight in kg. */
|
|
994
|
-
tow_weight_braked?: Maybe<Scalars["Int"]>;
|
|
995
|
-
/** Indicates if tow weight fields are estimations. */
|
|
996
|
-
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
997
|
-
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation. */
|
|
998
|
-
tow_weight_vertical_load?: Maybe<Scalars["Int"]>;
|
|
999
|
-
/** Maximum load on roof of car in kg. */
|
|
1000
|
-
roof_load_max?: Maybe<Scalars["Int"]>;
|
|
1001
|
-
/** Body type, listed in local naming convention where applicable. */
|
|
1002
|
-
body_type?: Maybe<Scalars["String"]>;
|
|
1003
|
-
/** Segment, listed in local naming convention where applicable. */
|
|
1004
|
-
segment?: Maybe<Scalars["String"]>;
|
|
1005
|
-
/** Number of seats. */
|
|
1006
|
-
seats?: Maybe<Scalars["Int"]>;
|
|
1007
|
-
/** Indicates whether a car has roof rails as a standard. */
|
|
1008
|
-
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
1009
|
-
/** Turning circle of vehicle kerb-to-kerb. */
|
|
1010
|
-
turning_circle?: Maybe<Scalars["Float"]>;
|
|
1011
|
-
/** Name of vehicle platform used for vehicle (often abbreviated to indicate group platforms). */
|
|
1012
|
-
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
1013
|
-
/** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform. */
|
|
1014
|
-
vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
1015
|
-
/**
|
|
1016
|
-
* Indicates whether a car has roof rails as a standard.
|
|
1017
|
-
* @deprecated In favor of has_roofrails
|
|
1018
|
-
*/
|
|
1019
|
-
rooftrails?: Maybe<Scalars["Boolean"]>;
|
|
1020
|
-
};
|
|
1021
|
-
|
|
1022
|
-
/** Deprecated: In favour of VehiclePremiumCharge. */
|
|
1023
|
-
export type CarPremiumCharge = {
|
|
1024
|
-
/** Location of charge port. */
|
|
1025
|
-
plug?: Maybe<CarPremiumChargePlug>;
|
|
1026
|
-
/** Location of second charge port. */
|
|
1027
|
-
second_plug?: Maybe<CarPremiumChargeSecondPlug>;
|
|
1028
|
-
/** The car standard charge. */
|
|
1029
|
-
standard?: Maybe<CarPremiumChargeStandardOBC>;
|
|
1030
|
-
/** The car alternative charge. */
|
|
1031
|
-
alternative?: Maybe<CarPremiumChargeAlternativeOBC>;
|
|
1032
|
-
/** The car option charge. */
|
|
1033
|
-
option?: Maybe<CarPremiumChargeOptionOBC>;
|
|
1034
|
-
};
|
|
1035
|
-
|
|
1036
|
-
/** Deprecated: In favour of VehiclePremiumChargeAlternativeOBC. */
|
|
1037
|
-
export type CarPremiumChargeAlternativeOBC = {
|
|
1038
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
1039
|
-
power?: Maybe<Scalars["Float"]>;
|
|
1040
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
1041
|
-
phases?: Maybe<Scalars["Int"]>;
|
|
1042
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
1043
|
-
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
1044
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
1045
|
-
charge_time?: Maybe<Scalars["Int"]>;
|
|
1046
|
-
/** Charging speed when charging at maximum power (standard OBC). */
|
|
1047
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1048
|
-
/** Charging details for the standard OBC at several charging points. */
|
|
1049
|
-
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
1050
|
-
};
|
|
1051
|
-
|
|
1052
|
-
/** Deprecated: In favour of VehiclePremiumChargeOBCTable. */
|
|
1053
|
-
export type CarPremiumChargeOBCTable = {
|
|
1054
|
-
/** Voltage between phase and neutral for this EVSE (phase voltage). */
|
|
1055
|
-
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
1056
|
-
/** Current per phase for this EVSE (phase current). */
|
|
1057
|
-
evse_phase_amperage?: Maybe<Scalars["Int"]>;
|
|
1058
|
-
/** Number of phases for this EVSE. */
|
|
1059
|
-
evse_phases?: Maybe<Scalars["Int"]>;
|
|
1060
|
-
/** Voltage between phase and neutral used by standard OBC (phase voltage). */
|
|
1061
|
-
charge_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
1062
|
-
/** Current per phase used by standard OBC (phase current). */
|
|
1063
|
-
charge_phase_amperage?: Maybe<Scalars["Float"]>;
|
|
1064
|
-
/** Number of phases used by standard OBC. */
|
|
1065
|
-
charge_phases?: Maybe<Scalars["Int"]>;
|
|
1066
|
-
/** Power used by standard OBC (before OBC losses). */
|
|
1067
|
-
charge_power?: Maybe<Scalars["Float"]>;
|
|
1068
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */
|
|
1069
|
-
charge_time?: Maybe<Scalars["Int"]>;
|
|
1070
|
-
/** Charging speed when charging at maximum power (standard OBC with this EVSE). */
|
|
1071
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1072
|
-
};
|
|
1073
|
-
|
|
1074
|
-
/** Deprecated: In favour of VehiclePremiumChargeOptionOBC. */
|
|
1075
|
-
export type CarPremiumChargeOptionOBC = {
|
|
1076
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
1077
|
-
power?: Maybe<Scalars["Float"]>;
|
|
1078
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
1079
|
-
phases?: Maybe<Scalars["Int"]>;
|
|
1080
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
1081
|
-
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
1082
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
1083
|
-
charge_time?: Maybe<Scalars["Int"]>;
|
|
1084
|
-
/** Charging speed when charging at maximum power (standard OBC). */
|
|
1085
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1086
|
-
/** Charging details for the standard OBC at several charging points. */
|
|
1087
|
-
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
1088
|
-
};
|
|
1089
|
-
|
|
1090
|
-
/** Deprecated: In favour of VehiclePremiumChargePlug. */
|
|
1091
|
-
export type CarPremiumChargePlug = {
|
|
1092
|
-
/** Type of charge port on vehicle. */
|
|
1093
|
-
value?: Maybe<ConnectorType>;
|
|
1094
|
-
/** Indicates if value is an estimate. */
|
|
1095
|
-
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1096
|
-
/** Location of charge port. */
|
|
1097
|
-
location?: Maybe<Scalars["String"]>;
|
|
1098
|
-
};
|
|
1099
|
-
|
|
1100
|
-
/** Deprecated: In favour of VehiclePremiumChargePower. */
|
|
1101
|
-
export type CarPremiumChargePower = {
|
|
1102
|
-
/** Maximum value. */
|
|
1103
|
-
max?: Maybe<Scalars["Float"]>;
|
|
1104
|
-
/** Average value. */
|
|
1105
|
-
average?: Maybe<Scalars["Float"]>;
|
|
1106
|
-
};
|
|
1107
|
-
|
|
1108
|
-
/** Deprecated: In favour of VehiclePremiumChargeSecondPlug. */
|
|
1109
|
-
export type CarPremiumChargeSecondPlug = {
|
|
1110
|
-
/** Location of charge port. */
|
|
1111
|
-
location?: Maybe<Scalars["String"]>;
|
|
1112
|
-
/** Indicates if second charge port is optional. */
|
|
1113
|
-
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
1114
|
-
};
|
|
1115
|
-
|
|
1116
|
-
/** Deprecated: In favour of VehiclePremiumChargeStandardOBC. */
|
|
1117
|
-
export type CarPremiumChargeStandardOBC = {
|
|
1118
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
1119
|
-
power?: Maybe<Scalars["Float"]>;
|
|
1120
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
1121
|
-
phases?: Maybe<Scalars["Int"]>;
|
|
1122
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
1123
|
-
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
1124
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
1125
|
-
charge_time?: Maybe<Scalars["Int"]>;
|
|
1126
|
-
/** Charging speed when charging at maximum power (standard OBC). */
|
|
1127
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1128
|
-
/** Indicates if Charge_Standard fields are estimated. */
|
|
1129
|
-
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1130
|
-
/** Charging details for the standard OBC at several charging points. */
|
|
1131
|
-
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
1132
|
-
};
|
|
1133
|
-
|
|
1134
|
-
/** Deprecated: In favour of VehiclePremiumDrivetrain. */
|
|
1135
|
-
export type CarPremiumDrivetrain = {
|
|
1136
|
-
/** Type of drivetrain. */
|
|
1137
|
-
type?: Maybe<CarDrivetrain>;
|
|
1138
|
-
/** Fuel type. */
|
|
1139
|
-
fuel?: Maybe<CarFuel>;
|
|
1140
|
-
/** Propulsion type. */
|
|
1141
|
-
propulsion?: Maybe<CarPropulsion>;
|
|
1142
|
-
/** Indicates if propulsion field is estimated. */
|
|
1143
|
-
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1144
|
-
/** Maximum (combined) power output in kw. */
|
|
1145
|
-
power?: Maybe<Scalars["Int"]>;
|
|
1146
|
-
/** Indicates if power field is estimated. */
|
|
1147
|
-
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1148
|
-
/** Maximum (combined) power output in horsepower (PS). */
|
|
1149
|
-
power_hp?: Maybe<Scalars["Int"]>;
|
|
1150
|
-
/** Maximum (combined) torque output in newton meter. */
|
|
1151
|
-
torque?: Maybe<Scalars["Int"]>;
|
|
1152
|
-
/** Indicates if torque field is estimated. */
|
|
1153
|
-
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1154
|
-
};
|
|
1155
|
-
|
|
1156
|
-
/** Deprecated: In favour of VehiclePremiumEfficiency. */
|
|
1157
|
-
export type CarPremiumEfficiency = {
|
|
1158
|
-
/** Rated efficiency in WLTP combined cycle. */
|
|
1159
|
-
wltp?: Maybe<CarPremiumEfficiencyWLTP>;
|
|
1160
|
-
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */
|
|
1161
|
-
wltp_teh?: Maybe<CarPremiumEfficiencyWLTPTEH>;
|
|
1162
|
-
/** Rated efficiency in NEDC combined cycle. */
|
|
1163
|
-
nedc?: Maybe<CarPremiumEfficiencyNEDC>;
|
|
1164
|
-
/** Car efficiency based on RealRange. */
|
|
1165
|
-
real?: Maybe<CarPremiumEfficiencyReal>;
|
|
1166
|
-
};
|
|
1167
|
-
|
|
1168
|
-
/** Deprecated: In favour of VehiclePremiumEfficiencyNEDC. */
|
|
1169
|
-
export type CarPremiumEfficiencyNEDC = {
|
|
1170
|
-
/** Rated efficiency in NEDC combined cycle in kWh/100 km. */
|
|
1171
|
-
value?: Maybe<Scalars["Float"]>;
|
|
1172
|
-
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, in l/100 km. */
|
|
1173
|
-
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1174
|
-
/** Rated vehicle efficiency in NEDC combined cycle (based on value) in kWh/100 km. */
|
|
1175
|
-
vehicle?: Maybe<Scalars["Float"]>;
|
|
1176
|
-
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent in l/100 km. */
|
|
1177
|
-
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1178
|
-
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated) in gr/km. */
|
|
1179
|
-
co2?: Maybe<Scalars["Int"]>;
|
|
1180
|
-
};
|
|
1181
|
-
|
|
1182
|
-
/** Deprecated: In favour of VehiclePremiumEfficiencyProvider. */
|
|
1183
|
-
export type CarPremiumEfficiencyReal = {
|
|
1184
|
-
/** Car efficiency based on RealRange (useable battery/range) in kWh/100 km. */
|
|
1185
|
-
value?: Maybe<Scalars["Float"]>;
|
|
1186
|
-
/** Car efficiency based on RealRange presented in gas equivalent, in l/100 km. */
|
|
1187
|
-
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1188
|
-
/** Worst conditions are based on -10°C and use of heating. */
|
|
1189
|
-
worst?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
1190
|
-
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1191
|
-
best?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
1192
|
-
};
|
|
1193
|
-
|
|
1194
|
-
/** Deprecated: In favour of VehiclePremiumEfficiencyProviderValue. */
|
|
1195
|
-
export type CarPremiumEfficiencyRealValue = {
|
|
1196
|
-
/** Estimated value on highway or express roads. */
|
|
1197
|
-
highway?: Maybe<Scalars["Float"]>;
|
|
1198
|
-
/** Estimated value on city roads. */
|
|
1199
|
-
city?: Maybe<Scalars["Float"]>;
|
|
1200
|
-
/** Estimated combined value. */
|
|
1201
|
-
combined?: Maybe<Scalars["Float"]>;
|
|
1202
|
-
};
|
|
1203
|
-
|
|
1204
|
-
/** Deprecated: In favour of VehiclePremiumEfficiencyWLTP. */
|
|
1205
|
-
export type CarPremiumEfficiencyWLTP = {
|
|
1206
|
-
/** Rated efficiency in WLTP combined cycle in kWh/100 km. */
|
|
1207
|
-
value?: Maybe<Scalars["Float"]>;
|
|
1208
|
-
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km. */
|
|
1209
|
-
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1210
|
-
/** Rated vehicle efficiency in WLTP combined cycle (based on value) in kWh/100 km. */
|
|
1211
|
-
vehicle?: Maybe<Scalars["Float"]>;
|
|
1212
|
-
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km. */
|
|
1213
|
-
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1214
|
-
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated) in gr/km. */
|
|
1215
|
-
co2?: Maybe<Scalars["Int"]>;
|
|
1216
|
-
};
|
|
1217
|
-
|
|
1218
|
-
/** Deprecated: In favour of VehiclePremiumEfficiencyWLTPTEH. */
|
|
1219
|
-
export type CarPremiumEfficiencyWLTPTEH = {
|
|
1220
|
-
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
|
|
1221
|
-
value?: Maybe<Scalars["Float"]>;
|
|
1222
|
-
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km. */
|
|
1223
|
-
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1224
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value) in kWh/100 km. */
|
|
1225
|
-
vehicle?: Maybe<Scalars["Float"]>;
|
|
1226
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km. */
|
|
1227
|
-
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1228
|
-
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated) in gr/km. */
|
|
1229
|
-
co2?: Maybe<Scalars["Int"]>;
|
|
1230
|
-
};
|
|
168
|
+
/** A list of amenity types. */
|
|
169
|
+
export enum AmenityType {
|
|
170
|
+
PARK = "park",
|
|
171
|
+
RESTAURANT = "restaurant",
|
|
172
|
+
MUSEUM = "museum",
|
|
173
|
+
COFFEE = "coffee",
|
|
174
|
+
HOTEL = "hotel",
|
|
175
|
+
SHOPPING = "shopping",
|
|
176
|
+
BATHROOM = "bathroom",
|
|
177
|
+
SUPERMARKET = "supermarket",
|
|
178
|
+
PLAYGROUND = "playground",
|
|
179
|
+
PHARMACY = "pharmacy"
|
|
180
|
+
}
|
|
1231
181
|
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
power?: Maybe<CarPremiumChargePower>;
|
|
1238
|
-
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */
|
|
1239
|
-
charge_time?: Maybe<Scalars["Float"]>;
|
|
1240
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger). */
|
|
1241
|
-
charge_speed?: Maybe<Scalars["Float"]>;
|
|
1242
|
-
/** Indicates if fast charge is optional in some markets/regions. */
|
|
1243
|
-
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
1244
|
-
/** Indicates what fields are estimated. */
|
|
1245
|
-
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1246
|
-
/** Charging details for fast charging. */
|
|
1247
|
-
table?: Maybe<Array<Maybe<CarPremiumFastChargeTable>>>;
|
|
182
|
+
export type AuthorizeConnectedVehicleInput = {
|
|
183
|
+
/** Id from the connected vehicle */
|
|
184
|
+
id: Scalars["ID"];
|
|
185
|
+
/** Provider specific options. See the developer portal for more details */
|
|
186
|
+
options: AuthorizeConnectedVehicleOptions;
|
|
1248
187
|
};
|
|
1249
188
|
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
format?: Maybe<Scalars["String"]>;
|
|
1254
|
-
/** Fast charge power. */
|
|
1255
|
-
power?: Maybe<CarPremiumChargePower>;
|
|
1256
|
-
/** Minutes needed to charge from 10% to 80% (optimal conditions). */
|
|
1257
|
-
charge_time?: Maybe<Scalars["Int"]>;
|
|
1258
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions). */
|
|
1259
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1260
|
-
/** Indicates if maximum power during fast charging is limited by the vehicle. */
|
|
1261
|
-
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1262
|
-
/** Indicates if average power during fast charging is limited by the vehicle. */
|
|
1263
|
-
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
189
|
+
export type AuthorizeConnectedVehicleOptions = {
|
|
190
|
+
/** OAuth code returned as a query parameter on the OAuth callback */
|
|
191
|
+
code?: Maybe<Scalars["PlainString"]>;
|
|
1264
192
|
};
|
|
1265
193
|
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
brand?: Maybe<CarImage>;
|
|
1274
|
-
/** All images. */
|
|
1275
|
-
image_list?: Maybe<Array<Maybe<CarImage>>>;
|
|
1276
|
-
/** Latest video. */
|
|
1277
|
-
video?: Maybe<CarVideo>;
|
|
1278
|
-
/** All videos. */
|
|
1279
|
-
video_list?: Maybe<Array<Maybe<CarVideo>>>;
|
|
1280
|
-
/**
|
|
1281
|
-
* URL to detail page on EV database.
|
|
1282
|
-
* @deprecated Will be removed in the future. Please use evdb_details_url
|
|
1283
|
-
*/
|
|
1284
|
-
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
194
|
+
export type AuxiliaryConsumption = {
|
|
195
|
+
/** Value of the auxiliary power consumption of the vehicle. */
|
|
196
|
+
value: Scalars["Float"];
|
|
197
|
+
/** Type of auxiliary power consumption of the vehicle. */
|
|
198
|
+
type: AuxiliaryConsumptionUnit;
|
|
199
|
+
/** Source of inputted data. */
|
|
200
|
+
source: TelemetryInputSource;
|
|
1285
201
|
};
|
|
1286
202
|
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
version?: Maybe<Scalars["String"]>;
|
|
1295
|
-
/** Another submodel level of car. */
|
|
1296
|
-
edition?: Maybe<Scalars["String"]>;
|
|
1297
|
-
/** 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. */
|
|
1298
|
-
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
203
|
+
export type AuxiliaryConsumptionInput = {
|
|
204
|
+
/** Value of the auxiliary power consumption of the vehicle. */
|
|
205
|
+
value: Scalars["Float"];
|
|
206
|
+
/** Type of auxiliary power consumption of the vehicle. */
|
|
207
|
+
type: AuxiliaryConsumptionUnit;
|
|
208
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
209
|
+
source?: Maybe<TelemetryInputSource>;
|
|
1299
210
|
};
|
|
1300
211
|
|
|
1301
|
-
/**
|
|
1302
|
-
export
|
|
1303
|
-
/**
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1307
|
-
/** Top speed of car in km/h. */
|
|
1308
|
-
top_speed?: Maybe<Scalars["Int"]>;
|
|
1309
|
-
/** Indicates if top_speed field is estimated. */
|
|
1310
|
-
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1311
|
-
};
|
|
212
|
+
/** Auxiliary consumption units. */
|
|
213
|
+
export enum AuxiliaryConsumptionUnit {
|
|
214
|
+
/** Return the auxiliary consumption in kilowatt hours. */
|
|
215
|
+
KILOWATT_HOUR = "kilowatt_hour"
|
|
216
|
+
}
|
|
1312
217
|
|
|
1313
|
-
/**
|
|
1314
|
-
export
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
uk?: Maybe<CarPremiumPriceValueWithGrant>;
|
|
1321
|
-
};
|
|
218
|
+
/** The type of the battery value. */
|
|
219
|
+
export enum BatteryInputType {
|
|
220
|
+
KWH = "kwh",
|
|
221
|
+
KM = "km",
|
|
222
|
+
MILES = "miles",
|
|
223
|
+
PERCENTAGE = "percentage"
|
|
224
|
+
}
|
|
1322
225
|
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1331
|
-
/**
|
|
1332
|
-
* Indicates if price value is based on estimates.
|
|
1333
|
-
* @deprecated In favor of is_estimated
|
|
1334
|
-
*/
|
|
1335
|
-
estimated?: Maybe<Scalars["Boolean"]>;
|
|
226
|
+
export type BatteryTemperatureInput = {
|
|
227
|
+
/** Value of the temperature of the battery. */
|
|
228
|
+
value: Scalars["Float"];
|
|
229
|
+
/** Type of temperature of the battery. */
|
|
230
|
+
type: TemperatureUnit;
|
|
231
|
+
/** Source of inputted data, defaults to 'manual'. */
|
|
232
|
+
source?: Maybe<TelemetryInputSource>;
|
|
1336
233
|
};
|
|
1337
234
|
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
value?: Maybe<Scalars["Int"]>;
|
|
1342
|
-
/** Currency name for local market. */
|
|
1343
|
-
currency?: Maybe<Scalars["String"]>;
|
|
1344
|
-
/** Indicates if the starting price is based on an estimate. */
|
|
1345
|
-
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1346
|
-
/** Grant that is applied to the starting price. */
|
|
1347
|
-
grant_applied?: Maybe<Scalars["Int"]>;
|
|
1348
|
-
/**
|
|
1349
|
-
* Indicates if price value is based on estimates.
|
|
1350
|
-
* @deprecated In favor of is_estimated
|
|
1351
|
-
*/
|
|
1352
|
-
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1353
|
-
};
|
|
235
|
+
export enum CarConnectivityProvider {
|
|
236
|
+
ENODE = "Enode"
|
|
237
|
+
}
|
|
1354
238
|
|
|
1355
|
-
/** Deprecated
|
|
1356
|
-
export type
|
|
1357
|
-
/** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km. */
|
|
1358
|
-
wltp?: Maybe<Scalars["Int"]>;
|
|
1359
|
-
/** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
|
|
1360
|
-
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1361
|
-
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */
|
|
1362
|
-
wltp_teh?: Maybe<Scalars["Int"]>;
|
|
1363
|
-
/** Rated range in NEDC combined cycle (NULL if not NEDC rated) in km. */
|
|
1364
|
-
nedc?: Maybe<Scalars["Int"]>;
|
|
1365
|
-
/** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
|
|
1366
|
-
nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1367
|
-
/** Index range in EV Database RealRange model in km. */
|
|
1368
|
-
real?: Maybe<Scalars["Int"]>;
|
|
1369
|
-
/** Indicates if real is estimated. */
|
|
1370
|
-
real_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
239
|
+
/** Deprecated. */
|
|
240
|
+
export type CarConsumption = {
|
|
1371
241
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
1372
|
-
worst?: Maybe<
|
|
242
|
+
worst?: Maybe<Scalars["Float"]>;
|
|
1373
243
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1374
|
-
best?: Maybe<CarPremiumRangeValue>;
|
|
1375
|
-
/**
|
|
1376
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1377
|
-
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1378
|
-
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1379
|
-
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1380
|
-
*/
|
|
1381
|
-
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1382
|
-
};
|
|
1383
|
-
|
|
1384
|
-
/** Deprecated: In favour of VehiclePremiumRangeValue. */
|
|
1385
|
-
export type CarPremiumRangeValue = {
|
|
1386
|
-
/** Estimated value on highway or express roads. */
|
|
1387
|
-
highway?: Maybe<Scalars["Int"]>;
|
|
1388
|
-
/** Estimated value on city roads. */
|
|
1389
|
-
city?: Maybe<Scalars["Int"]>;
|
|
1390
|
-
/** Estimated combined value. */
|
|
1391
|
-
combined?: Maybe<Scalars["Int"]>;
|
|
1392
|
-
};
|
|
1393
|
-
|
|
1394
|
-
/** Deprecated: In favour of VehiclePremiumRouting. */
|
|
1395
|
-
export type CarPremiumRouting = {
|
|
1396
|
-
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
1397
|
-
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
1398
|
-
/** Drag coefficient. */
|
|
1399
|
-
drag_coefficient?: Maybe<Scalars["Float"]>;
|
|
1400
|
-
/** Tire pressure recommended by manufacturer. */
|
|
1401
|
-
tire_pressure?: Maybe<Scalars["Float"]>;
|
|
1402
|
-
/** Extra consumption model. */
|
|
1403
|
-
consumption?: Maybe<CarPremiumRoutingConsumption>;
|
|
1404
|
-
/** Amount of petrol that an equivalent petrol car would consume in l/100 km. */
|
|
1405
|
-
petrol_consumption?: Maybe<Scalars["Float"]>;
|
|
1406
|
-
};
|
|
1407
|
-
|
|
1408
|
-
/** Deprecated: In favour of VehiclePremiumRoutingConsumption. */
|
|
1409
|
-
export type CarPremiumRoutingConsumption = {
|
|
1410
|
-
/** Consumption, in kWh, of the auxiliaries. */
|
|
1411
|
-
aux?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
1412
|
-
/** Consumption, in kWh, of the battery management system. */
|
|
1413
|
-
bms?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
1414
|
-
/** Consumption, in kWh, of the car in idle mode. */
|
|
1415
|
-
idle?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
1416
|
-
};
|
|
1417
|
-
|
|
1418
|
-
/** Deprecated: In favour of VehiclePremiumRoutingConsumptionValue. */
|
|
1419
|
-
export type CarPremiumRoutingConsumptionValue = {
|
|
1420
|
-
/** Best (lowest) consumption in summer. */
|
|
1421
244
|
best?: Maybe<Scalars["Float"]>;
|
|
1422
|
-
/** Best (lowest) consumption in winter. */
|
|
1423
|
-
worst?: Maybe<Scalars["Float"]>;
|
|
1424
|
-
};
|
|
1425
|
-
|
|
1426
|
-
/** Deprecated: In favour of VehiclePremiumSafety. */
|
|
1427
|
-
export type CarPremiumSafety = {
|
|
1428
|
-
/** Number of seats equipped with ISOFIX. */
|
|
1429
|
-
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
1430
|
-
/** EuroNCAP results. */
|
|
1431
|
-
euro_ncap?: Maybe<CarPremiumSafetyEuroNcap>;
|
|
1432
|
-
};
|
|
1433
|
-
|
|
1434
|
-
/** Deprecated: In favour of VehiclePremiumSafetyEuroNcap. */
|
|
1435
|
-
export type CarPremiumSafetyEuroNcap = {
|
|
1436
|
-
/** EuroNCAP rating (out of 5 stars). */
|
|
1437
|
-
rating?: Maybe<Scalars["Int"]>;
|
|
1438
|
-
/** EuroNCAP year of rating. */
|
|
1439
|
-
year?: Maybe<Scalars["Int"]>;
|
|
1440
|
-
/** EuroNCAP rating of adult protection (out of 100%). */
|
|
1441
|
-
adult?: Maybe<Scalars["Int"]>;
|
|
1442
|
-
/** EuroNCAP rating of child protection (out of 100%). */
|
|
1443
|
-
child?: Maybe<Scalars["Int"]>;
|
|
1444
|
-
/** EuroNCAP rating of vulnerable road users (out of 100%). */
|
|
1445
|
-
vru?: Maybe<Scalars["Int"]>;
|
|
1446
|
-
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
1447
|
-
sa?: Maybe<Scalars["Int"]>;
|
|
1448
245
|
};
|
|
1449
246
|
|
|
1450
|
-
/** Deprecated: In favour of
|
|
1451
|
-
export
|
|
1452
|
-
/** All-wheel drive car. */
|
|
1453
|
-
AWD = "AWD",
|
|
1454
|
-
/** Front-wheel drive car. */
|
|
1455
|
-
FRONT = "Front",
|
|
1456
|
-
/** Rear-wheel drive car. */
|
|
1457
|
-
REAR = "Rear"
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
/** Deprecated: In favour of VehicleRange. */
|
|
1461
|
-
export type CarRange = {
|
|
1462
|
-
/** Index range in EV Database RealRange model in km. */
|
|
1463
|
-
real?: Maybe<Scalars["Int"]>;
|
|
1464
|
-
/** Indicates if real is estimated. */
|
|
1465
|
-
real_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
247
|
+
/** Deprecated: In favour of VehicleConsumptionInput. */
|
|
248
|
+
export type CarConsumptionInput = {
|
|
1466
249
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
1467
|
-
worst?: Maybe<
|
|
250
|
+
worst?: Maybe<Scalars["Float"]>;
|
|
1468
251
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1469
|
-
best?: Maybe<
|
|
1470
|
-
/**
|
|
1471
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1472
|
-
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1473
|
-
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1474
|
-
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1475
|
-
*/
|
|
1476
|
-
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1477
|
-
/** @deprecated You will receive null values */
|
|
1478
|
-
wltp?: Maybe<Scalars["Float"]>;
|
|
1479
|
-
};
|
|
1480
|
-
|
|
1481
|
-
/** Deprecated: In favour of VehicleRangeValue. */
|
|
1482
|
-
export type CarRangeValue = {
|
|
1483
|
-
/** Estimated value on the highway or express roads. */
|
|
1484
|
-
highway?: Maybe<Scalars["Int"]>;
|
|
1485
|
-
/** Estimated value on the cities road. */
|
|
1486
|
-
city?: Maybe<Scalars["Int"]>;
|
|
1487
|
-
/** Estimated combined value. */
|
|
1488
|
-
combined?: Maybe<Scalars["Int"]>;
|
|
1489
|
-
};
|
|
1490
|
-
|
|
1491
|
-
/** Deprecated: In favour of VehicleRouting. */
|
|
1492
|
-
export type CarRouting = {
|
|
1493
|
-
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
1494
|
-
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
1495
|
-
};
|
|
1496
|
-
|
|
1497
|
-
/** Deprecated: In favour of VehicleStatus. */
|
|
1498
|
-
export enum CarStatus {
|
|
1499
|
-
/** Was just imported. */
|
|
1500
|
-
NEW = "new",
|
|
1501
|
-
/** Is being reviewed by a human operator. */
|
|
1502
|
-
REVIEW = "review",
|
|
1503
|
-
/** Is public and can be used by a customer. */
|
|
1504
|
-
PUBLIC = "public",
|
|
1505
|
-
/** Is removed and can not be used. */
|
|
1506
|
-
REMOVED = "removed"
|
|
1507
|
-
}
|
|
1508
|
-
|
|
1509
|
-
/** Deprecated: In favour of VehicleVideo. */
|
|
1510
|
-
export type CarVideo = {
|
|
1511
|
-
/** Video id. */
|
|
1512
|
-
id?: Maybe<Scalars["ID"]>;
|
|
1513
|
-
/** Full path URL of a video. */
|
|
1514
|
-
url?: Maybe<Scalars["String"]>;
|
|
252
|
+
best?: Maybe<Scalars["Float"]>;
|
|
1515
253
|
};
|
|
1516
254
|
|
|
1517
255
|
/** Charging mode used at charging stations. */
|
|
@@ -4294,22 +3032,6 @@ export type PowerInput = {
|
|
|
4294
3032
|
source?: Maybe<TelemetryInputSource>;
|
|
4295
3033
|
};
|
|
4296
3034
|
|
|
4297
|
-
/** The list of powers for the speed type */
|
|
4298
|
-
export type PowerList = {
|
|
4299
|
-
/** The maximum power the plug provides in kW */
|
|
4300
|
-
power?: Maybe<Scalars["Float"]>;
|
|
4301
|
-
/** The total number of stations with the specified power */
|
|
4302
|
-
total?: Maybe<Scalars["Int"]>;
|
|
4303
|
-
};
|
|
4304
|
-
|
|
4305
|
-
/** Power stats model */
|
|
4306
|
-
export type PowerStats = {
|
|
4307
|
-
/** The charging speed type for the specified power */
|
|
4308
|
-
type?: Maybe<StationSpeedType>;
|
|
4309
|
-
/** The list of powers for the speed type */
|
|
4310
|
-
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
4311
|
-
};
|
|
4312
|
-
|
|
4313
3035
|
export enum PowerSupported {
|
|
4314
3036
|
/** Power is supported. */
|
|
4315
3037
|
AVAILABLE = "available",
|
|
@@ -4386,12 +3108,6 @@ export type PricingListProduct = {
|
|
|
4386
3108
|
export type Query = {
|
|
4387
3109
|
/** Get a full list of amenities around a station */
|
|
4388
3110
|
amenityList?: Maybe<Array<Maybe<Amenity>>>;
|
|
4389
|
-
/** Deprecated: In favor of vehicle. */
|
|
4390
|
-
car?: Maybe<Car>;
|
|
4391
|
-
/** Deprecated: In favor of VehiclePremium. */
|
|
4392
|
-
carPremium?: Maybe<CarPremium>;
|
|
4393
|
-
/** Deprecated: In favor of VehicleList. */
|
|
4394
|
-
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
4395
3111
|
/** [BETA] Get a connected vehicles by id */
|
|
4396
3112
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
4397
3113
|
/** [BETA] Get the connected vehicles for the current user */
|
|
@@ -4424,8 +3140,6 @@ export type Query = {
|
|
|
4424
3140
|
routeEmissions: RouteEmissions;
|
|
4425
3141
|
/** Retrieve information about a route path segment */
|
|
4426
3142
|
routePath?: Maybe<RoutePath>;
|
|
4427
|
-
/** Get the station statistics */
|
|
4428
|
-
stationStats?: Maybe<StationStats>;
|
|
4429
3143
|
/** Get information about a station by its ID. */
|
|
4430
3144
|
station?: Maybe<Station>;
|
|
4431
3145
|
/** Get a full list of stations. */
|
|
@@ -4448,23 +3162,6 @@ export type QueryamenityListArgs = {
|
|
|
4448
3162
|
stationId: Scalars["ID"];
|
|
4449
3163
|
};
|
|
4450
3164
|
|
|
4451
|
-
export type QuerycarArgs = {
|
|
4452
|
-
id?: Maybe<Scalars["ID"]>;
|
|
4453
|
-
externalId?: Maybe<Scalars["Int"]>;
|
|
4454
|
-
};
|
|
4455
|
-
|
|
4456
|
-
export type QuerycarPremiumArgs = {
|
|
4457
|
-
id?: Maybe<Scalars["ID"]>;
|
|
4458
|
-
};
|
|
4459
|
-
|
|
4460
|
-
export type QuerycarListArgs = {
|
|
4461
|
-
query?: Maybe<CarListQuery>;
|
|
4462
|
-
search?: Maybe<Scalars["String"]>;
|
|
4463
|
-
filter?: Maybe<CarListFilter>;
|
|
4464
|
-
size?: Maybe<Scalars["Int"]>;
|
|
4465
|
-
page?: Maybe<Scalars["Int"]>;
|
|
4466
|
-
};
|
|
4467
|
-
|
|
4468
3165
|
export type QueryconnectedVehicleArgs = {
|
|
4469
3166
|
id: Scalars["ID"];
|
|
4470
3167
|
};
|
|
@@ -6160,7 +4857,7 @@ export type RouteOperationalElectricityEnergySources = {
|
|
|
6160
4857
|
solar: ElectricityGenerationMethod;
|
|
6161
4858
|
/** Electricity produced by wind power. */
|
|
6162
4859
|
wind: ElectricityGenerationMethod;
|
|
6163
|
-
/** Electricity produced by oil power plants. */
|
|
4860
|
+
/** Electricity produced by oil and other miscellaneous fossil fuel power plants. */
|
|
6164
4861
|
oil: ElectricityGenerationMethod;
|
|
6165
4862
|
/** Electricity produced by nuclear power plants. */
|
|
6166
4863
|
nuclear: ElectricityGenerationMethod;
|
|
@@ -6944,14 +5641,6 @@ export enum SpeedUnit {
|
|
|
6944
5641
|
MILES_PER_HOUR = "miles_per_hour"
|
|
6945
5642
|
}
|
|
6946
5643
|
|
|
6947
|
-
/** Standards(plug type) stats model */
|
|
6948
|
-
export type StandardStats = {
|
|
6949
|
-
/** The plug type */
|
|
6950
|
-
type?: Maybe<ConnectorType>;
|
|
6951
|
-
/** The total number of stations with the specified plug */
|
|
6952
|
-
total?: Maybe<Scalars["Int"]>;
|
|
6953
|
-
};
|
|
6954
|
-
|
|
6955
5644
|
export type StateOfCharge = {
|
|
6956
5645
|
/** Value of the state of charge of the vehicle. */
|
|
6957
5646
|
value: Scalars["Float"];
|
|
@@ -7339,16 +6028,6 @@ export enum StationSpeedType {
|
|
|
7339
6028
|
TURBO = "turbo"
|
|
7340
6029
|
}
|
|
7341
6030
|
|
|
7342
|
-
/** The station stats model */
|
|
7343
|
-
export type StationStats = {
|
|
7344
|
-
/** Stations count grouped by standards */
|
|
7345
|
-
standards?: Maybe<Array<Maybe<StandardStats>>>;
|
|
7346
|
-
/** Stations count grouped by power */
|
|
7347
|
-
power?: Maybe<Array<Maybe<PowerStats>>>;
|
|
7348
|
-
/** Stations count grouped by amenities */
|
|
7349
|
-
amenities?: Maybe<Array<Maybe<AmenityStats>>>;
|
|
7350
|
-
};
|
|
7351
|
-
|
|
7352
6031
|
/** Describes the vehicle restrictions at the location. */
|
|
7353
6032
|
export type StationVehicleRestrictions = {
|
|
7354
6033
|
/** Maximum weight for a vehicle that is allowed at the location. */
|