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