@chargetrip/types 1.44.0 → 1.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -100,6 +100,22 @@ export declare enum AdhocAuthorisationMethod {
100
100
  QR_CODE = "QR_CODE",
101
101
  SMS = "SMS"
102
102
  }
103
+ export declare type AlternativeStationRadius = {
104
+ /** Value of the alternative station radius. */
105
+ value: Scalars["Float"];
106
+ /** Type of the alternative station radius. */
107
+ type: DistanceUnit;
108
+ /** Source of inputted data. */
109
+ source: TelemetryInputSource;
110
+ };
111
+ export declare type AlternativeStationRadiusInput = {
112
+ /** Value of the alternative station radius. */
113
+ value: Scalars["Float"];
114
+ /** Type of the alternative station radius. */
115
+ type: DistanceUnit;
116
+ /** Source of inputted data. */
117
+ source?: Maybe<TelemetryInputSource>;
118
+ };
103
119
  /** Amenities available near a station */
104
120
  export declare enum Amenities {
105
121
  PARK = "park",
@@ -145,13 +161,6 @@ export declare type AmenityPreferencesInput = {
145
161
  /** Scheduled charge stops, with a specified amenity and timeline. */
146
162
  scheduled_charge_stops?: Maybe<Array<ScheduledChargeStopInput>>;
147
163
  };
148
- /** Amenities stats model */
149
- export declare type AmenityStats = {
150
- /** The amenity type */
151
- type?: Maybe<Scalars["String"]>;
152
- /** The total number of stations with the specified amenity */
153
- total?: Maybe<Scalars["Int"]>;
154
- };
155
164
  /** A list of amenity types. */
156
165
  export declare enum AmenityType {
157
166
  PARK = "park",
@@ -189,1229 +198,44 @@ export declare type AuxiliaryConsumptionInput = {
189
198
  /** Type of auxiliary power consumption of the vehicle. */
190
199
  type: AuxiliaryConsumptionUnit;
191
200
  /** Source of inputted data, defaults to 'manual'. */
192
- source?: TelemetryInputSource;
193
- };
194
- /** Auxiliary consumption units. */
195
- export declare enum AuxiliaryConsumptionUnit {
196
- /** Return the auxiliary consumption in kilowatt hours. */
197
- KILOWATT_HOUR = "kilowatt_hour"
198
- }
199
- /** The type of the battery value. */
200
- export declare enum BatteryInputType {
201
- KWH = "kwh",
202
- KM = "km",
203
- MILES = "miles",
204
- PERCENTAGE = "percentage"
205
- }
206
- export declare type BatteryTemperatureInput = {
207
- /** Value of the temperature of the battery. */
208
- value: Scalars["Float"];
209
- /** Type of temperature of the battery. */
210
- type: TemperatureUnit;
211
- /** Source of inputted data, defaults to 'manual'. */
212
201
  source?: Maybe<TelemetryInputSource>;
213
202
  };
214
- /** Deprecated: In favour of Vehicle. */
215
- export declare type Car = {
216
- /** Cars unique ID. */
217
- id?: Maybe<Scalars["ID"]>;
218
- /** Naming of a car. */
219
- naming?: Maybe<CarNaming>;
220
- /** Available connectors for a car. */
221
- connectors?: Maybe<Array<Maybe<CarPlug>>>;
222
- /** List of adapters of connectors available for a car. */
223
- adapters?: Maybe<Array<Maybe<CarPlug>>>;
224
- /** Battery of a car. */
225
- battery?: Maybe<CarBattery>;
226
- /** Body of a car. */
227
- body?: Maybe<CarBody>;
228
- /** Availability of a car. */
229
- availability?: Maybe<CarAvailability>;
230
- /** Performance of a car. */
231
- performance?: Maybe<CarPerformance>;
232
- /** Range of a car. */
233
- range?: Maybe<CarRange>;
234
- /** Media of a car. */
235
- media?: Maybe<CarMedia>;
236
- /** Routing of a car. */
237
- routing?: Maybe<CarRouting>;
238
- /** Information about vehicle connectivity. */
239
- connect?: Maybe<Connect>;
240
- /**
241
- * ID provided by a car data source as the row ID.
242
- * @deprecated Will be removed in the future
243
- */
244
- externalId?: Maybe<Scalars["String"]>;
245
- /**
246
- * Car manufacturer.
247
- * @deprecated In favor of naming.make
248
- */
249
- make?: Maybe<Scalars["String"]>;
250
- /**
251
- * Car model.
252
- * @deprecated In favor of naming.model
253
- */
254
- carModel?: Maybe<Scalars["String"]>;
255
- /**
256
- * Car edition.
257
- * @deprecated In favor of naming.version
258
- */
259
- edition?: Maybe<Scalars["String"]>;
260
- /**
261
- * 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.
262
- * @deprecated In favor of naming.chargetrip_version
263
- */
264
- chargetripEdition?: Maybe<Scalars["String"]>;
265
- /**
266
- * Car version.
267
- * @deprecated In favor of naming.edition
268
- */
269
- version?: Maybe<Scalars["String"]>;
270
- /**
271
- * 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.
272
- * @deprecated In favor of range.chargetrip_range
273
- */
274
- chargetripRange?: Maybe<ChargetripRange>;
275
- /**
276
- * Cars that support fast charging have a minimum charging speed of 43 kWh.
277
- * @deprecated In favor of routing.fast_charging_support
278
- */
279
- fastChargingSupport?: Maybe<Scalars["Boolean"]>;
280
- /**
281
- * Current production mode of a car.
282
- * @deprecated In favor of availability.status
283
- */
284
- mode?: Maybe<CarMode>;
285
- /**
286
- * Number of seats.
287
- * @deprecated In favor of body.seats
288
- */
289
- seats?: Maybe<Scalars["Int"]>;
290
- /**
291
- * Weight in kg.
292
- * @deprecated In favor of body.weight
293
- */
294
- weight?: Maybe<Scalars["Float"]>;
295
- /**
296
- * Height in mm.
297
- * @deprecated In favor of body.height
298
- */
299
- height?: Maybe<Scalars["Int"]>;
300
- /**
301
- * Width in mm.
302
- * @deprecated In favor of body.width
303
- */
304
- width?: Maybe<Scalars["Int"]>;
305
- /**
306
- * Usable battery capacity in kWh.
307
- * @deprecated In favor of battery.usable_kwh
308
- */
309
- batteryUsableKwh?: Maybe<Scalars["Float"]>;
310
- /**
311
- * Full battery capacity in kWh.
312
- * @deprecated In favor of battery.full_kwh
313
- */
314
- batteryFullKwh?: Maybe<Scalars["Float"]>;
315
- /**
316
- * Battery efficiency in the city, highway and combined depending on weather conditions.
317
- * @deprecated In favor of efficiency
318
- */
319
- batteryEfficiency?: Maybe<CarBatteryEfficiency>;
320
- /**
321
- * Acceleration time from 0 to 100 km/h.
322
- * @deprecated In favor of performance.acceleration
323
- */
324
- acceleration?: Maybe<Scalars["Float"]>;
325
- /**
326
- * Maximum car speed in km/h.
327
- * @deprecated In favor of performance.top_speed
328
- */
329
- topSpeed?: Maybe<Scalars["Float"]>;
330
- /**
331
- * Power of a car in Kw.
332
- * @deprecated In favor of drivetrain.power
333
- */
334
- power?: Maybe<Scalars["Float"]>;
335
- /**
336
- * Engine torque.
337
- * @deprecated In favor of drivetrain.torque
338
- */
339
- torque?: Maybe<Scalars["Float"]>;
340
- /**
341
- * Extra consumption model.
342
- * @deprecated In favor of routing.consumption
343
- */
344
- consumption?: Maybe<CarExtraConsumption>;
345
- /**
346
- * Amount of petrol a similar petrol car would consume per 100 km.
347
- * @deprecated In favor of routing.petrol_consumption
348
- */
349
- petrolConsumption?: Maybe<Scalars["Float"]>;
350
- /**
351
- * A list of offset data for different charging speeds.
352
- * @deprecated You will receive null values
353
- */
354
- chargingOffset?: Maybe<Scalars["JSON"]>;
355
- /**
356
- * Images of a car.
357
- * @deprecated In favor of media.image_list
358
- */
359
- images?: Maybe<Array<Maybe<CarImage>>>;
360
- /**
361
- * Images of a car in structured data.
362
- * @deprecated In favor of media.image or media.brand
363
- */
364
- imagesData?: Maybe<CarImageData>;
365
- };
366
- /** Deprecated: In favour of VehicleAvailability. */
367
- export declare type CarAvailability = {
368
- /**
369
- * Availability of car.
370
- *
371
- * Values:
372
- * - 0 = Car no longer for sale in any market / region.
373
- * - 1 = Car currently for sale in at least one market / region.
374
- * - 2 = Car expected in market from Date_From (estimated), pre-order open.
375
- * - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
376
- * - 12 = Concept car, nearing production and/or confirmed, pre-order open.
377
- * - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
378
- * - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
379
- * - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
380
- * - 91 = Status uncertain, introduction date and/or pricing unclear.
381
- */
382
- status?: Maybe<Scalars["Int"]>;
383
- };
384
- /** Deprecated: In favour of VehicleBattery. */
385
- export declare type CarBattery = {
386
- /** Usable battery capacity in kWh. */
387
- usable_kwh?: Maybe<Scalars["Float"]>;
388
- /** Full battery capacity in kWh. */
389
- full_kwh?: Maybe<Scalars["Float"]>;
390
- };
391
- /** Deprecated. */
392
- export declare type CarBatteryEfficiency = {
393
- /** Average efficiency measured in kWh/100 km. */
394
- average?: Maybe<Scalars["Float"]>;
395
- /** Worst conditions are based on -10°C and use of heating, measured in kWh/100 km. */
396
- worst?: Maybe<CarEstimationData>;
397
- /** Best conditions are based on 23°C and no use of A/C, measured in kWh/100 km. */
398
- best?: Maybe<CarEstimationData>;
399
- };
400
- /** Deprecated: In favour of VehicleBatteryFieldEstimations. */
401
- export declare enum CarBatteryFieldEstimations {
402
- /** Both of the battery kWh fields are estimations. */
403
- B = "B",
404
- /** full_kwh field is estimated. */
405
- F = "F",
406
- /** None of the battery kWh fields are estimations. */
407
- N = "N",
408
- /** usable_kwh field is estimated. */
409
- U = "U"
410
- }
411
- /** Deprecated: In favour of VehicleBody. */
412
- export declare type CarBody = {
413
- /** Width with folded mirrors in mm. */
414
- width?: Maybe<Scalars["Int"]>;
415
- /** Height (average height for adjustable suspensions) in mm. */
416
- height?: Maybe<Scalars["Int"]>;
417
- /** Weight Unladen EU) in kg. */
418
- weight?: Maybe<Scalars["Int"]>;
419
- /** Number of seats. */
420
- seats?: Maybe<Scalars["Int"]>;
421
- };
422
- export declare enum CarConnectivityProvider {
423
- ENODE = "Enode"
424
- }
425
- /** Deprecated. */
426
- export declare type CarConsumption = {
427
- /** Worst conditions are based on -10°C and use of heating. */
428
- worst?: Maybe<Scalars["Float"]>;
429
- /** Best conditions are based on 23°C and no use of A/C. */
430
- best?: Maybe<Scalars["Float"]>;
431
- };
432
- /** Deprecated: In favour of VehicleConsumptionInput. */
433
- export declare type CarConsumptionInput = {
434
- /** Worst conditions are based on -10°C and use of heating. */
435
- worst?: Maybe<Scalars["Float"]>;
436
- /** Best conditions are based on 23°C and no use of A/C. */
437
- best?: Maybe<Scalars["Float"]>;
438
- };
439
- /** Deprecated: In favour of VehicleDrivetrain. */
440
- export declare enum CarDrivetrain {
441
- /** Battery Electric Car.. */
442
- BEV = "BEV",
443
- /** Extended Range Electric Car. */
444
- EREV = "EREV"
445
- }
446
- /** Deprecated. */
447
- export declare type CarEstimationData = {
448
- /** Estimated battery efficiency on a highway or express roads, in km. */
449
- highway?: Maybe<Scalars["Float"]>;
450
- /** Estimated battery efficiency on city roads, in km. */
451
- city?: Maybe<Scalars["Float"]>;
452
- /** Estimated battery efficiency on highway and city roads combined, in km. */
453
- combined?: Maybe<Scalars["Float"]>;
454
- };
455
- /** Deprecated. */
456
- export declare type CarExtraConsumption = {
457
- /** Consumption, in kWh, of the auxiliaries. */
458
- aux?: Maybe<CarConsumption>;
459
- /** Consumption, in kWh, of the battery management system. */
460
- bms?: Maybe<CarConsumption>;
461
- /** Consumption, in kWh, of a car in idle mode. */
462
- idle?: Maybe<CarConsumption>;
463
- };
464
- /** Deprecated: In favour of VehicleFuel. */
465
- export declare enum CarFuel {
466
- /** Electricity only. Full electric car. */
467
- E = "E"
468
- }
469
- /** Deprecated: In favour of VehicleImage */
470
- export declare type CarImage = {
471
- /** Image id. */
472
- id?: Maybe<Scalars["ID"]>;
473
- /** Image type. */
474
- type?: Maybe<CarImageType>;
475
- /** Full path URL of a large image. */
476
- url?: Maybe<Scalars["String"]>;
477
- /** Height of a large image in pixels. */
478
- height?: Maybe<Scalars["Int"]>;
479
- /** Width of a large image in pixels. */
480
- width?: Maybe<Scalars["Int"]>;
481
- /** Full path URL of a thumbnail image. */
482
- thumbnail_url?: Maybe<Scalars["String"]>;
483
- /** Height of a thumbnail image in pixels. */
484
- thumbnail_height?: Maybe<Scalars["Int"]>;
485
- /** Width of a thumbnail image in pixels. */
486
- thumbnail_width?: Maybe<Scalars["Int"]>;
487
- };
488
- /** Deprecated. */
489
- export declare type CarImageData = {
490
- /** Full size image of a car. */
491
- image?: Maybe<CarImage>;
492
- /** Thumbnail of a full size image. */
493
- image_thumbnail?: Maybe<CarImage>;
494
- /** Full size logo of the make of a car. */
495
- brand?: Maybe<CarImage>;
496
- /** Thumbnail of a full size logo of the make of a car. */
497
- brand_thumbnail?: Maybe<CarImage>;
498
- };
499
- /** Deprecated: In favour of VehicleImageType. */
500
- export declare enum CarImageType {
501
- /** Images provided by a Car Datasource. */
502
- PROVIDER = "provider",
503
- /** Full-sized image at 1536x864 px. */
504
- IMAGE = "image",
505
- /** Thumbnail of a full-sized image at 131x72 px. */
506
- IMAGE_THUMBNAIL = "image_thumbnail",
507
- /** Full-sized brand (make) logo at 768x432 px. */
508
- BRAND = "brand",
509
- /** Thumbnail of a full-sized brand (make) logo at 56x24 px. */
510
- BRAND_THUMBNAIL = "brand_thumbnail",
511
- /** Placeholder image at 1536x864 px. */
512
- PLACEHOLDER = "placeholder"
513
- }
514
- /** Deprecated: In favour of VehicleImageTypeUploadable. */
515
- export declare enum CarImageTypeUploadable {
516
- /** Full size image with a resolution at least 1536x864 px. */
517
- IMAGE = "image"
518
- }
519
- /** Deprecated: In favour of VehicleList. */
520
- export declare type CarList = {
521
- /** Cars unique ID. */
522
- id?: Maybe<Scalars["ID"]>;
523
- /** Naming of a car. */
524
- naming?: Maybe<CarListNaming>;
525
- /** Connectors available for a car. */
526
- connectors?: Maybe<Array<Maybe<CarPlug>>>;
527
- /** Adapters of connectors available for a car. */
528
- adapters?: Maybe<Array<Maybe<CarPlug>>>;
529
- /** Battery of a car. */
530
- battery?: Maybe<CarListBattery>;
531
- /** Body of a car. */
532
- body?: Maybe<CarListBody>;
533
- /** Availability of a car. */
534
- availability?: Maybe<CarListAvailability>;
535
- /** Range of a car. */
536
- range?: Maybe<CarListRange>;
537
- /** Media of a car. */
538
- media?: Maybe<CarListMedia>;
539
- /** Routing of a car. */
540
- routing?: Maybe<CarListRouting>;
541
- /** Information about vehicle connectivity. */
542
- connect?: Maybe<Connect>;
543
- /**
544
- * ID provided by a car data source as the row ID.
545
- * @deprecated Will be removed in the future
546
- */
547
- externalId?: Maybe<Scalars["String"]>;
548
- /**
549
- * Car manufacturer.
550
- * @deprecated In favor of naming.make
551
- */
552
- make?: Maybe<Scalars["String"]>;
553
- /**
554
- * Car model.
555
- * @deprecated In favor of naming.model
556
- */
557
- carModel?: Maybe<Scalars["String"]>;
558
- /**
559
- * Car edition.
560
- * @deprecated In favor of naming.version
561
- */
562
- edition?: Maybe<Scalars["String"]>;
563
- /**
564
- * 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.
565
- * @deprecated In favor of naming.chargetrip_version
566
- */
567
- chargetripEdition?: Maybe<Scalars["String"]>;
568
- /**
569
- * Car version.
570
- * @deprecated In favor of naming.edition
571
- */
572
- version?: Maybe<Scalars["String"]>;
573
- /**
574
- * 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.
575
- * @deprecated In favor of range.chargetrip_range
576
- */
577
- chargetripRange?: Maybe<ChargetripRange>;
578
- /**
579
- * Cars that support fast charging have a minimum charging speed of 43 kWh.
580
- * @deprecated In favor of routing.fast_charging_support
581
- */
582
- fastChargingSupport?: Maybe<Scalars["Boolean"]>;
583
- /**
584
- * Current production mode of a car.
585
- * @deprecated In favor of availability.status
586
- */
587
- mode?: Maybe<CarMode>;
588
- /**
589
- * Number of seats.
590
- * @deprecated In favor of body.seats
591
- */
592
- seats?: Maybe<Scalars["Int"]>;
593
- /**
594
- * Usable battery capacity in kWh.
595
- * @deprecated In favor of battery.usable_kwh
596
- */
597
- batteryUsableKwh?: Maybe<Scalars["Float"]>;
598
- /**
599
- * Full battery capacity in kWh.
600
- * @deprecated In favor of battery.full_kwh
601
- */
602
- batteryFullKwh?: Maybe<Scalars["Float"]>;
603
- /**
604
- * Images of a car in structured data.
605
- * @deprecated In favor of media.image and media.brand
606
- */
607
- imagesData?: Maybe<CarImageData>;
608
- /** @deprecated You will receive null values */
609
- power?: Maybe<Scalars["Float"]>;
610
- /** @deprecated You will receive null values */
611
- acceleration?: Maybe<Scalars["Float"]>;
612
- /** @deprecated You will receive null values */
613
- topSpeed?: Maybe<Scalars["Float"]>;
614
- /** @deprecated You will receive null values */
615
- torque?: Maybe<Scalars["Float"]>;
616
- /** @deprecated You will receive null values */
617
- batteryEfficiency?: Maybe<CarBatteryEfficiency>;
618
- /** @deprecated You will receive null values */
619
- weight?: Maybe<Scalars["Float"]>;
620
- /** @deprecated You will receive null values */
621
- height?: Maybe<Scalars["Int"]>;
622
- /** @deprecated You will receive null values */
623
- width?: Maybe<Scalars["Int"]>;
624
- /** @deprecated You will receive null values */
625
- consumption?: Maybe<CarExtraConsumption>;
626
- /** @deprecated You will receive null values */
627
- petrolConsumption?: Maybe<Scalars["Float"]>;
628
- /** @deprecated You will receive null values */
629
- chargingOffset?: Maybe<Scalars["JSON"]>;
630
- /** @deprecated You will receive null values */
631
- auxConsumption?: Maybe<Scalars["Float"]>;
632
- /** @deprecated You will receive null values */
633
- bmsConsumption?: Maybe<Scalars["Float"]>;
634
- /** @deprecated You will receive null values */
635
- dragCoefficient?: Maybe<Scalars["Float"]>;
636
- /** @deprecated You will receive null values */
637
- tirePressure?: Maybe<Scalars["Float"]>;
638
- /** @deprecated You will receive null values */
639
- motorEfficiency?: Maybe<Scalars["Float"]>;
640
- /** @deprecated You will receive null values */
641
- drivelineEfficiency?: Maybe<Scalars["Float"]>;
642
- /** @deprecated You will receive null values */
643
- regenEfficiency?: Maybe<Scalars["Float"]>;
644
- /** @deprecated You will receive null values */
645
- images?: Maybe<Array<Maybe<CarImage>>>;
646
- };
647
- /** Deprecated: In favour of VehicleListAvailability. */
648
- export declare type CarListAvailability = {
649
- /**
650
- * Availability of car.
651
- *
652
- * Values:
653
- * - 0 = Car no longer for sale in any market / region.
654
- * - 1 = Car currently for sale in at least one market / region.
655
- * - 2 = Car expected in market from Date_From (estimated), pre-order open.
656
- * - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
657
- * - 12 = Concept car, nearing production and/or confirmed, pre-order open.
658
- * - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
659
- * - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
660
- * - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
661
- * - 91 = Status uncertain, introduction date and/or pricing unclear.
662
- */
663
- status?: Maybe<Scalars["Int"]>;
664
- };
665
- /** Deprecated: In favour of VehicleListBattery. */
666
- export declare type CarListBattery = {
667
- /** Usable battery capacity in kWh. */
668
- usable_kwh?: Maybe<Scalars["Float"]>;
669
- /** Full battery capacity in kWh. */
670
- full_kwh?: Maybe<Scalars["Float"]>;
671
- };
672
- /** Deprecated: In favour of VehicleListBody. */
673
- export declare type CarListBody = {
674
- /** Number of seats in car. */
675
- seats?: Maybe<Scalars["Int"]>;
676
- };
677
- /** Deprecated: In favour of VehicleListFilter. */
678
- export declare type CarListFilter = {
679
- /**
680
- * Availability of car.
681
- *
682
- * Values:
683
- * - 0 = Car no longer for sale in any market / region.
684
- * - 1 = Car currently for sale in at least one market / region.
685
- * - 2 = Car expected in market from Date_From (estimated), pre-order open.
686
- * - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open.
687
- * - 12 = Concept car, nearing production and/or confirmed, pre-order open.
688
- * - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
689
- * - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
690
- * - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
691
- * - 91 = Status uncertain, introduction date and/or pricing unclear.
692
- */
693
- availability?: Maybe<Array<Maybe<Scalars["Int"]>>>;
694
- /** Information about vehicle connectivity. */
695
- connect?: Maybe<ConnectFilter>;
696
- };
697
- /** Deprecated: In favour of VehicleListMedia. */
698
- export declare type CarListMedia = {
699
- /** Latest image of the car. */
700
- image?: Maybe<CarImage>;
701
- /** Latest make logo of the car. */
702
- brand?: Maybe<CarImage>;
703
- /** Latest video of the car. */
704
- video?: Maybe<CarVideo>;
705
- };
706
- /** Deprecated: In favour of VehicleListNaming. */
707
- export declare type CarListNaming = {
708
- /** Car manufacturer name. */
709
- make?: Maybe<Scalars["String"]>;
710
- /** Car model name. */
711
- model?: Maybe<Scalars["String"]>;
712
- /** Version, edition or submodel of car. */
713
- version?: Maybe<Scalars["String"]>;
714
- /** Another submodel level of car. */
715
- edition?: Maybe<Scalars["String"]>;
716
- /** 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. */
717
- chargetrip_version?: Maybe<Scalars["String"]>;
718
- };
719
- /** Deprecated. */
720
- export declare type CarListQuery = {
721
- /** Deprecated: Not used anymore. */
722
- make?: Maybe<Scalars["String"]>;
723
- /** Deprecated: Not used anymore. */
724
- model?: Maybe<Scalars["String"]>;
725
- /** Deprecated: Not used anymore. */
726
- version?: Maybe<Scalars["String"]>;
727
- /** Deprecated: Not used anymore. */
728
- chargetrip_version?: Maybe<Scalars["String"]>;
729
- /** Deprecated: Not used anymore. */
730
- mode?: Maybe<CarMode>;
731
- };
732
- /** Deprecated: In favour of VehicleListRange. */
733
- export declare type CarListRange = {
734
- /**
735
- * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
736
- * Chargetrip range is based on the theoretical distance driven using only the electric engine.
737
- * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
738
- * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
739
- */
740
- chargetrip_range?: Maybe<ChargetripRange>;
741
- /** @deprecated You will receive null values */
742
- wltp?: Maybe<Scalars["Float"]>;
743
- /** @deprecated You will receive null values */
744
- worst?: Maybe<CarEstimationData>;
745
- /** @deprecated You will receive null values */
746
- best?: Maybe<CarEstimationData>;
747
- };
748
- /** Deprecated: In favour of VehicleListRouting. */
749
- export declare type CarListRouting = {
750
- /** Cars that support fast charging have a minimum charging speed of 43 kWh. */
751
- fast_charging_support?: Maybe<Scalars["Boolean"]>;
752
- };
753
- /** Deprecated: In favour of VehicleMedia. */
754
- export declare type CarMedia = {
755
- /** URL to detail page on EV database. */
756
- evdb_details_url?: Maybe<Scalars["String"]>;
757
- /** Latest image. */
758
- image?: Maybe<CarImage>;
759
- /** Latest make logo. */
760
- brand?: Maybe<CarImage>;
761
- /** All images. */
762
- image_list?: Maybe<Array<Maybe<CarImage>>>;
763
- /** Latest video. */
764
- video?: Maybe<CarVideo>;
765
- /** All videos. */
766
- video_list?: Maybe<Array<Maybe<CarVideo>>>;
767
- /**
768
- * URL to detail page on EV database.
769
- * @deprecated Will be removed in the future. Please use evdb_details_url
770
- */
771
- evdb_detail_url?: Maybe<Scalars["String"]>;
772
- };
773
- /** Deprecated: In favour of VehicleMode. */
774
- export declare enum CarMode {
775
- /** Old car that is no longer manufactured. */
776
- INDEX_ONLY = "index_only",
777
- /** Car is in production and has been released. */
778
- PRODUCTION = "production",
779
- /** Future releases of a car, a concept of the car, specs may change over time. */
780
- CONCEPT = "concept"
781
- }
782
- /** Deprecated: In favour of VehicleNaming. */
783
- export declare type CarNaming = {
784
- /** Car manufacturer name. */
785
- make?: Maybe<Scalars["String"]>;
786
- /** Car model name. */
787
- model?: Maybe<Scalars["String"]>;
788
- /** Version, edition or submodel of car. */
789
- version?: Maybe<Scalars["String"]>;
790
- /** Another submodel level of car. */
791
- edition?: Maybe<Scalars["String"]>;
792
- /** 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. */
793
- chargetrip_version?: Maybe<Scalars["String"]>;
794
- };
795
- /** Deprecated: In favour of VehiclePerformance. */
796
- export declare type CarPerformance = {
797
- /** Acceleration 0-100 km/h in seconds. */
798
- acceleration?: Maybe<Scalars["Float"]>;
799
- /** Top speed of car in km/h. */
800
- top_speed?: Maybe<Scalars["Int"]>;
801
- };
802
- /** Deprecated: In favour of VehicleConnector. */
803
- export declare type CarPlug = {
804
- /** Plug type, known as connector standard in OCPI. */
805
- standard?: Maybe<ConnectorType>;
806
- /** Usable electric power in kW. */
807
- power?: Maybe<Scalars["Float"]>;
808
- /** Maximum electric power in kW. */
809
- max_electric_power?: Maybe<Scalars["Float"]>;
810
- /** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */
811
- time?: Maybe<Scalars["Int"]>;
812
- /** Charging speed in km/h. */
813
- speed?: Maybe<Scalars["Int"]>;
814
- };
815
- /** Deprecated: In favour of VehiclePremium. */
816
- export declare type CarPremium = {
817
- /** Unique ID of a car. */
818
- id?: Maybe<Scalars["ID"]>;
819
- /** Internal ID of the successor car trim. */
820
- succesor_id?: Maybe<Scalars["String"]>;
821
- /** Naming of a car. */
822
- naming?: Maybe<CarPremiumNaming>;
823
- /** Connectors available for a car. */
824
- connectors?: Maybe<Array<Maybe<CarPlug>>>;
825
- /** Charge details. */
826
- charge?: Maybe<CarPremiumCharge>;
827
- /** Fast charge details. */
828
- fast_charge?: Maybe<CarPremiumFastCharge>;
829
- /** Adapters of connectors available for a car. */
830
- adapters?: Maybe<Array<Maybe<CarPlug>>>;
831
- /** Battery of a car. */
832
- battery?: Maybe<CarPremiumBattery>;
833
- /** Body of a car. */
834
- body?: Maybe<CarPremiumBody>;
835
- /** Availability of a car. */
836
- availability?: Maybe<CarPremiumAvailability>;
837
- /** Pricing of a car. */
838
- price?: Maybe<CarPremiumPrice>;
839
- /** Drivetrain of a car. */
840
- drivetrain?: Maybe<CarPremiumDrivetrain>;
841
- /** Performance of a car. */
842
- performance?: Maybe<CarPremiumPerformance>;
843
- /** Range of a car. */
844
- range?: Maybe<CarPremiumRange>;
845
- /** Efficiency of a car. */
846
- efficiency?: Maybe<CarPremiumEfficiency>;
847
- /** Safety of a car. */
848
- safety?: Maybe<CarPremiumSafety>;
849
- /** Media of a car. */
850
- media?: Maybe<CarPremiumMedia>;
851
- /** Routing of a car. */
852
- routing?: Maybe<CarPremiumRouting>;
853
- /** Information about vehicle connectivity. */
854
- connect?: Maybe<Connect>;
855
- };
856
- /** Deprecated: In favour of VehiclePremiumAvailability. */
857
- export declare type CarPremiumAvailability = {
858
- /**
859
- * Availability of car.
860
- *
861
- * Values:
862
- * - 0 = Car no longer for sale in any market/region.
863
- * - 1 = Car currently for sale in at least one market/region.
864
- * - 2 = Car expected in market from Date_From (estimated), pre-order open.
865
- * - 3 = Car expected in market from Date_From (estimated), pre-order unknown or not open.
866
- * - 12 = Concept car, nearing production and/or confirmed, pre-order open.
867
- * - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open.
868
- * - 22 = Concept car, not close to production and/or unconfirmed, pre-order open.
869
- * - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown.
870
- * - 91 = Status uncertain, introduction date and/or pricing unclear.
871
- */
872
- status?: Maybe<Scalars["Int"]>;
873
- /** Date of introduction, mm-yyyy. */
874
- date_from?: Maybe<Scalars["String"]>;
875
- /** Indicates if date from field is estimated. */
876
- date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
877
- /** Date last available, mm-yyyy. */
878
- date_to?: Maybe<Scalars["String"]>;
879
- };
880
- /** Deprecated: In favour of VehiclePremiumBattery. */
881
- export declare type CarPremiumBattery = {
882
- /** Usable battery capacity in kWh. */
883
- usable_kwh?: Maybe<Scalars["Float"]>;
884
- /** Full battery capacity in kWh. */
885
- full_kwh?: Maybe<Scalars["Float"]>;
886
- /** Indicates which battery fields are estimated. */
887
- estimated_fields?: Maybe<CarBatteryFieldEstimations>;
888
- /** Battery thermal management system (active/passive, air/liquid). */
889
- thermal_management_system?: Maybe<Scalars["String"]>;
890
- /** Duration of battery warranty. */
891
- warranty_period?: Maybe<Scalars["Float"]>;
892
- /** Mileage of battery warranty. */
893
- warranty_mileage?: Maybe<Scalars["Float"]>;
894
- };
895
- /** Deprecated: In favour of VehiclePremiumBody. */
896
- export declare type CarPremiumBody = {
897
- /** Length in mm. */
898
- length?: Maybe<Scalars["Int"]>;
899
- /** Width with folded mirrors in mm. */
900
- width?: Maybe<Scalars["Int"]>;
901
- /** Width of vehicle in mm, including mirrors. */
902
- full_width?: Maybe<Scalars["Int"]>;
903
- /** Height (average height for adjustable suspensions) in mm. */
904
- height?: Maybe<Scalars["Int"]>;
905
- /** Indicates if length/width/height fields are estimations. */
906
- size_is_estimated?: Maybe<Scalars["Boolean"]>;
907
- /** Wheelbase in mm. */
908
- wheelbase?: Maybe<Scalars["Int"]>;
909
- /** Indicates if wheelbase field is estimated. */
910
- wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
911
- /** Weight (unladen EU) in kg. */
912
- weight?: Maybe<Scalars["Int"]>;
913
- /** Indicates if weight field is estimated. */
914
- weight_is_estimated?: Maybe<Scalars["Boolean"]>;
915
- /** Maximum payload allowed for vehicle in kg. */
916
- weight_max_payload?: Maybe<Scalars["Int"]>;
917
- /** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload) in kg. */
918
- max_gross_vehicle_weight?: Maybe<Scalars["Int"]>;
919
- /** Standard luggage capacity in l. */
920
- boot_capacity?: Maybe<Scalars["Int"]>;
921
- /** Storage capacity of front trunk/under the hood (frunk). */
922
- boot_front_capacity?: Maybe<Scalars["Int"]>;
923
- /** Maximum luggage capacity in l. */
924
- boot_capacity_max?: Maybe<Scalars["Int"]>;
925
- /** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */
926
- tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
927
- /** Maximum unbraked towing weight in kg. */
928
- tow_weight_unbraked?: Maybe<Scalars["Int"]>;
929
- /** Maximum braked towing weight in kg. */
930
- tow_weight_braked?: Maybe<Scalars["Int"]>;
931
- /** Indicates if tow weight fields are estimations. */
932
- tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
933
- /** Maximum vertical load / noseweight on tow hitch according to vehicle homologation. */
934
- tow_weight_vertical_load?: Maybe<Scalars["Int"]>;
935
- /** Maximum load on roof of car in kg. */
936
- roof_load_max?: Maybe<Scalars["Int"]>;
937
- /** Body type, listed in local naming convention where applicable. */
938
- body_type?: Maybe<Scalars["String"]>;
939
- /** Segment, listed in local naming convention where applicable. */
940
- segment?: Maybe<Scalars["String"]>;
941
- /** Number of seats. */
942
- seats?: Maybe<Scalars["Int"]>;
943
- /** Indicates whether a car has roof rails as a standard. */
944
- has_roofrails?: Maybe<Scalars["Boolean"]>;
945
- /** Turning circle of vehicle kerb-to-kerb. */
946
- turning_circle?: Maybe<Scalars["Float"]>;
947
- /** Name of vehicle platform used for vehicle (often abbreviated to indicate group platforms). */
948
- vehicle_platform?: Maybe<Scalars["String"]>;
949
- /** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform. */
950
- vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
951
- /**
952
- * Indicates whether a car has roof rails as a standard.
953
- * @deprecated In favor of has_roofrails
954
- */
955
- rooftrails?: Maybe<Scalars["Boolean"]>;
956
- };
957
- /** Deprecated: In favour of VehiclePremiumCharge. */
958
- export declare type CarPremiumCharge = {
959
- /** Location of charge port. */
960
- plug?: Maybe<CarPremiumChargePlug>;
961
- /** Location of second charge port. */
962
- second_plug?: Maybe<CarPremiumChargeSecondPlug>;
963
- /** The car standard charge. */
964
- standard?: Maybe<CarPremiumChargeStandardOBC>;
965
- /** The car alternative charge. */
966
- alternative?: Maybe<CarPremiumChargeAlternativeOBC>;
967
- /** The car option charge. */
968
- option?: Maybe<CarPremiumChargeOptionOBC>;
969
- };
970
- /** Deprecated: In favour of VehiclePremiumChargeAlternativeOBC. */
971
- export declare type CarPremiumChargeAlternativeOBC = {
972
- /** Maximum power OBC can accept to charge a battery (standard OBC). */
973
- power?: Maybe<Scalars["Float"]>;
974
- /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
975
- phases?: Maybe<Scalars["Int"]>;
976
- /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
977
- phase_amperage?: Maybe<Scalars["Float"]>;
978
- /** Minutes needed to charge from 0% to 100% (standard OBC). */
979
- charge_time?: Maybe<Scalars["Int"]>;
980
- /** Charging speed when charging at maximum power (standard OBC). */
981
- charge_speed?: Maybe<Scalars["Int"]>;
982
- /** Charging details for the standard OBC at several charging points. */
983
- table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
984
- };
985
- /** Deprecated: In favour of VehiclePremiumChargeOBCTable. */
986
- export declare type CarPremiumChargeOBCTable = {
987
- /** Voltage between phase and neutral for this EVSE (phase voltage). */
988
- evse_phase_voltage?: Maybe<Scalars["Int"]>;
989
- /** Current per phase for this EVSE (phase current). */
990
- evse_phase_amperage?: Maybe<Scalars["Int"]>;
991
- /** Number of phases for this EVSE. */
992
- evse_phases?: Maybe<Scalars["Int"]>;
993
- /** Voltage between phase and neutral used by standard OBC (phase voltage). */
994
- charge_phase_voltage?: Maybe<Scalars["Int"]>;
995
- /** Current per phase used by standard OBC (phase current). */
996
- charge_phase_amperage?: Maybe<Scalars["Float"]>;
997
- /** Number of phases used by standard OBC. */
998
- charge_phases?: Maybe<Scalars["Int"]>;
999
- /** Power used by standard OBC (before OBC losses). */
1000
- charge_power?: Maybe<Scalars["Float"]>;
1001
- /** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */
1002
- charge_time?: Maybe<Scalars["Int"]>;
1003
- /** Charging speed when charging at maximum power (standard OBC with this EVSE). */
1004
- charge_speed?: Maybe<Scalars["Int"]>;
1005
- };
1006
- /** Deprecated: In favour of VehiclePremiumChargeOptionOBC. */
1007
- export declare type CarPremiumChargeOptionOBC = {
1008
- /** Maximum power OBC can accept to charge a battery (standard OBC). */
1009
- power?: Maybe<Scalars["Float"]>;
1010
- /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
1011
- phases?: Maybe<Scalars["Int"]>;
1012
- /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
1013
- phase_amperage?: Maybe<Scalars["Float"]>;
1014
- /** Minutes needed to charge from 0% to 100% (standard OBC). */
1015
- charge_time?: Maybe<Scalars["Int"]>;
1016
- /** Charging speed when charging at maximum power (standard OBC). */
1017
- charge_speed?: Maybe<Scalars["Int"]>;
1018
- /** Charging details for the standard OBC at several charging points. */
1019
- table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
1020
- };
1021
- /** Deprecated: In favour of VehiclePremiumChargePlug. */
1022
- export declare type CarPremiumChargePlug = {
1023
- /** Type of charge port on vehicle. */
1024
- value?: Maybe<ConnectorType>;
1025
- /** Indicates if value is an estimate. */
1026
- is_estimated?: Maybe<Scalars["Boolean"]>;
1027
- /** Location of charge port. */
1028
- location?: Maybe<Scalars["String"]>;
1029
- };
1030
- /** Deprecated: In favour of VehiclePremiumChargePower. */
1031
- export declare type CarPremiumChargePower = {
1032
- /** Maximum value. */
1033
- max?: Maybe<Scalars["Float"]>;
1034
- /** Average value. */
1035
- average?: Maybe<Scalars["Float"]>;
1036
- };
1037
- /** Deprecated: In favour of VehiclePremiumChargeSecondPlug. */
1038
- export declare type CarPremiumChargeSecondPlug = {
1039
- /** Location of charge port. */
1040
- location?: Maybe<Scalars["String"]>;
1041
- /** Indicates if second charge port is optional. */
1042
- is_optional?: Maybe<Scalars["Boolean"]>;
1043
- };
1044
- /** Deprecated: In favour of VehiclePremiumChargeStandardOBC. */
1045
- export declare type CarPremiumChargeStandardOBC = {
1046
- /** Maximum power OBC can accept to charge a battery (standard OBC). */
1047
- power?: Maybe<Scalars["Float"]>;
1048
- /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
1049
- phases?: Maybe<Scalars["Int"]>;
1050
- /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
1051
- phase_amperage?: Maybe<Scalars["Float"]>;
1052
- /** Minutes needed to charge from 0% to 100% (standard OBC). */
1053
- charge_time?: Maybe<Scalars["Int"]>;
1054
- /** Charging speed when charging at maximum power (standard OBC). */
1055
- charge_speed?: Maybe<Scalars["Int"]>;
1056
- /** Indicates if Charge_Standard fields are estimated. */
1057
- is_estimated?: Maybe<Scalars["Boolean"]>;
1058
- /** Charging details for the standard OBC at several charging points. */
1059
- table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
1060
- };
1061
- /** Deprecated: In favour of VehiclePremiumDrivetrain. */
1062
- export declare type CarPremiumDrivetrain = {
1063
- /** Type of drivetrain. */
1064
- type?: Maybe<CarDrivetrain>;
1065
- /** Fuel type. */
1066
- fuel?: Maybe<CarFuel>;
1067
- /** Propulsion type. */
1068
- propulsion?: Maybe<CarPropulsion>;
1069
- /** Indicates if propulsion field is estimated. */
1070
- propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
1071
- /** Maximum (combined) power output in kw. */
1072
- power?: Maybe<Scalars["Int"]>;
1073
- /** Indicates if power field is estimated. */
1074
- power_is_estimated?: Maybe<Scalars["Boolean"]>;
1075
- /** Maximum (combined) power output in horsepower (PS). */
1076
- power_hp?: Maybe<Scalars["Int"]>;
1077
- /** Maximum (combined) torque output in newton meter. */
1078
- torque?: Maybe<Scalars["Int"]>;
1079
- /** Indicates if torque field is estimated. */
1080
- torque_is_estimated?: Maybe<Scalars["Boolean"]>;
1081
- };
1082
- /** Deprecated: In favour of VehiclePremiumEfficiency. */
1083
- export declare type CarPremiumEfficiency = {
1084
- /** Rated efficiency in WLTP combined cycle. */
1085
- wltp?: Maybe<CarPremiumEfficiencyWLTP>;
1086
- /** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */
1087
- wltp_teh?: Maybe<CarPremiumEfficiencyWLTPTEH>;
1088
- /** Rated efficiency in NEDC combined cycle. */
1089
- nedc?: Maybe<CarPremiumEfficiencyNEDC>;
1090
- /** Car efficiency based on RealRange. */
1091
- real?: Maybe<CarPremiumEfficiencyReal>;
1092
- };
1093
- /** Deprecated: In favour of VehiclePremiumEfficiencyNEDC. */
1094
- export declare type CarPremiumEfficiencyNEDC = {
1095
- /** Rated efficiency in NEDC combined cycle in kWh/100 km. */
1096
- value?: Maybe<Scalars["Float"]>;
1097
- /** Rated efficiency in NEDC combined cycle presented in gas equivalent, in l/100 km. */
1098
- fuel_equivalent?: Maybe<Scalars["Float"]>;
1099
- /** Rated vehicle efficiency in NEDC combined cycle (based on value) in kWh/100 km. */
1100
- vehicle?: Maybe<Scalars["Float"]>;
1101
- /** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent in l/100 km. */
1102
- vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
1103
- /** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated) in gr/km. */
1104
- co2?: Maybe<Scalars["Int"]>;
1105
- };
1106
- /** Deprecated: In favour of VehiclePremiumEfficiencyProvider. */
1107
- export declare type CarPremiumEfficiencyReal = {
1108
- /** Car efficiency based on RealRange (useable battery/range) in kWh/100 km. */
1109
- value?: Maybe<Scalars["Float"]>;
1110
- /** Car efficiency based on RealRange presented in gas equivalent, in l/100 km. */
1111
- fuel_equivalent?: Maybe<Scalars["Float"]>;
1112
- /** Worst conditions are based on -10°C and use of heating. */
1113
- worst?: Maybe<CarPremiumEfficiencyRealValue>;
1114
- /** Best conditions are based on 23°C and no use of A/C. */
1115
- best?: Maybe<CarPremiumEfficiencyRealValue>;
1116
- };
1117
- /** Deprecated: In favour of VehiclePremiumEfficiencyProviderValue. */
1118
- export declare type CarPremiumEfficiencyRealValue = {
1119
- /** Estimated value on highway or express roads. */
1120
- highway?: Maybe<Scalars["Float"]>;
1121
- /** Estimated value on city roads. */
1122
- city?: Maybe<Scalars["Float"]>;
1123
- /** Estimated combined value. */
1124
- combined?: Maybe<Scalars["Float"]>;
1125
- };
1126
- /** Deprecated: In favour of VehiclePremiumEfficiencyWLTP. */
1127
- export declare type CarPremiumEfficiencyWLTP = {
1128
- /** Rated efficiency in WLTP combined cycle in kWh/100 km. */
1129
- value?: Maybe<Scalars["Float"]>;
1130
- /** Rated efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km. */
1131
- fuel_equivalent?: Maybe<Scalars["Float"]>;
1132
- /** Rated vehicle efficiency in WLTP combined cycle (based on value) in kWh/100 km. */
1133
- vehicle?: Maybe<Scalars["Float"]>;
1134
- /** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km. */
1135
- vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
1136
- /** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated) in gr/km. */
1137
- co2?: Maybe<Scalars["Int"]>;
1138
- };
1139
- /** Deprecated: In favour of VehiclePremiumEfficiencyWLTPTEH. */
1140
- export declare type CarPremiumEfficiencyWLTPTEH = {
1141
- /** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
1142
- value?: Maybe<Scalars["Float"]>;
1143
- /** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km. */
1144
- fuel_equivalent?: Maybe<Scalars["Float"]>;
1145
- /** Rated vehicle efficiency in WLTP TEH combined cycle (based on value) in kWh/100 km. */
1146
- vehicle?: Maybe<Scalars["Float"]>;
1147
- /** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km. */
1148
- vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
1149
- /** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated) in gr/km. */
1150
- co2?: Maybe<Scalars["Int"]>;
1151
- };
1152
- /** Deprecated: In favour of VehiclePremiumChargePlug. */
1153
- export declare type CarPremiumFastCharge = {
1154
- /** Location of charge port. */
1155
- plug?: Maybe<CarPremiumChargePlug>;
1156
- /** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger). */
1157
- power?: Maybe<CarPremiumChargePower>;
1158
- /** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */
1159
- charge_time?: Maybe<Scalars["Float"]>;
1160
- /** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger). */
1161
- charge_speed?: Maybe<Scalars["Float"]>;
1162
- /** Indicates if fast charge is optional in some markets/regions. */
1163
- is_optional?: Maybe<Scalars["Boolean"]>;
1164
- /** Indicates what fields are estimated. */
1165
- is_estimated?: Maybe<Scalars["Boolean"]>;
1166
- /** Charging details for fast charging. */
1167
- table?: Maybe<Array<Maybe<CarPremiumFastChargeTable>>>;
1168
- };
1169
- /** Deprecated: In favour of VehiclePremiumFastChargeTable. */
1170
- export declare type CarPremiumFastChargeTable = {
1171
- /** Charging details for fast charging (format: ChargerPlug-ChargerPower-AC/DC). */
1172
- format?: Maybe<Scalars["String"]>;
1173
- /** Fast charge power. */
1174
- power?: Maybe<CarPremiumChargePower>;
1175
- /** Minutes needed to charge from 10% to 80% (optimal conditions). */
1176
- charge_time?: Maybe<Scalars["Int"]>;
1177
- /** Charging speed during fast charging from 10% to 80% (optimal conditions). */
1178
- charge_speed?: Maybe<Scalars["Int"]>;
1179
- /** Indicates if maximum power during fast charging is limited by the vehicle. */
1180
- is_limited?: Maybe<Scalars["Boolean"]>;
1181
- /** Indicates if average power during fast charging is limited by the vehicle. */
1182
- average_is_limited?: Maybe<Scalars["Boolean"]>;
1183
- };
1184
- /** Deprecated: In favour of VehiclePremiumMedia. */
1185
- export declare type CarPremiumMedia = {
1186
- /** URL to detail page on EV database. */
1187
- evdb_details_url?: Maybe<Scalars["String"]>;
1188
- /** Latest image. */
1189
- image?: Maybe<CarImage>;
1190
- /** Latest make logo. */
1191
- brand?: Maybe<CarImage>;
1192
- /** All images. */
1193
- image_list?: Maybe<Array<Maybe<CarImage>>>;
1194
- /** Latest video. */
1195
- video?: Maybe<CarVideo>;
1196
- /** All videos. */
1197
- video_list?: Maybe<Array<Maybe<CarVideo>>>;
1198
- /**
1199
- * URL to detail page on EV database.
1200
- * @deprecated Will be removed in the future. Please use evdb_details_url
1201
- */
1202
- evdb_detail_url?: Maybe<Scalars["String"]>;
1203
- };
1204
- /** Deprecated: In favour of VehiclePremiumNaming. */
1205
- export declare type CarPremiumNaming = {
1206
- /** Car manufacturer name. */
1207
- make?: Maybe<Scalars["String"]>;
1208
- /** Car model name. */
1209
- model?: Maybe<Scalars["String"]>;
1210
- /** Version, edition or submodel of car. */
1211
- version?: Maybe<Scalars["String"]>;
1212
- /** Another submodel level of car. */
1213
- edition?: Maybe<Scalars["String"]>;
1214
- /** 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. */
1215
- chargetrip_version?: Maybe<Scalars["String"]>;
1216
- };
1217
- /** Deprecated: In favour of VehiclePremiumPerformance. */
1218
- export declare type CarPremiumPerformance = {
1219
- /** Acceleration 0-100 km/h in seconds. */
1220
- acceleration?: Maybe<Scalars["Float"]>;
1221
- /** Indicates if acceleration field is estimated. */
1222
- acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
1223
- /** Top speed of car in km/h. */
1224
- top_speed?: Maybe<Scalars["Int"]>;
1225
- /** Indicates if top_speed field is estimated. */
1226
- top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
1227
- };
1228
- /** Deprecated: In favour of VehiclePremiumPrice. */
1229
- export declare type CarPremiumPrice = {
1230
- /** Starting price for German market. */
1231
- de?: Maybe<CarPremiumPriceValue>;
1232
- /** Starting price for Dutch market. */
1233
- nl?: Maybe<CarPremiumPriceValue>;
1234
- /** Starting price for British market. */
1235
- uk?: Maybe<CarPremiumPriceValueWithGrant>;
1236
- };
1237
- /** Deprecated: In favour of VehiclePremiumPrice.value */
1238
- export declare type CarPremiumPriceValue = {
1239
- /** Starting price for local market. */
1240
- value?: Maybe<Scalars["Int"]>;
1241
- /** Currency name for local market. */
1242
- currency?: Maybe<Scalars["String"]>;
1243
- /** Indicates if price value is based on estimates. */
1244
- is_estimated?: Maybe<Scalars["Boolean"]>;
1245
- /**
1246
- * Indicates if price value is based on estimates.
1247
- * @deprecated In favor of is_estimated
1248
- */
1249
- estimated?: Maybe<Scalars["Boolean"]>;
1250
- };
1251
- /** Deprecated: In favour of VehiclePremiumPriceValueWithGrant. */
1252
- export declare type CarPremiumPriceValueWithGrant = {
1253
- /** Starting price for local market. */
1254
- value?: Maybe<Scalars["Int"]>;
1255
- /** Currency name for local market. */
1256
- currency?: Maybe<Scalars["String"]>;
1257
- /** Indicates if the starting price is based on an estimate. */
1258
- is_estimated?: Maybe<Scalars["Boolean"]>;
1259
- /** Grant that is applied to the starting price. */
1260
- grant_applied?: Maybe<Scalars["Int"]>;
1261
- /**
1262
- * Indicates if price value is based on estimates.
1263
- * @deprecated In favor of is_estimated
1264
- */
1265
- estimated?: Maybe<Scalars["Boolean"]>;
1266
- };
1267
- /** Deprecated: In favour of VehiclePremiumRange. */
1268
- export declare type CarPremiumRange = {
1269
- /** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km. */
1270
- wltp?: Maybe<Scalars["Int"]>;
1271
- /** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
1272
- wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
1273
- /** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */
1274
- wltp_teh?: Maybe<Scalars["Int"]>;
1275
- /** Rated range in NEDC combined cycle (NULL if not NEDC rated) in km. */
1276
- nedc?: Maybe<Scalars["Int"]>;
1277
- /** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
1278
- nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
1279
- /** Index range in EV Database RealRange model in km. */
1280
- real?: Maybe<Scalars["Int"]>;
1281
- /** Indicates if real is estimated. */
1282
- real_is_estimated?: Maybe<Scalars["Boolean"]>;
1283
- /** Worst conditions are based on -10°C and use of heating. */
1284
- worst?: Maybe<CarPremiumRangeValue>;
1285
- /** Best conditions are based on 23°C and no use of A/C. */
1286
- best?: Maybe<CarPremiumRangeValue>;
1287
- /**
1288
- * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
1289
- * Chargetrip range is based on the theoretical distance driven using only the electric engine.
1290
- * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
1291
- * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
1292
- */
1293
- chargetrip_range?: Maybe<ChargetripRange>;
1294
- };
1295
- /** Deprecated: In favour of VehiclePremiumRangeValue. */
1296
- export declare type CarPremiumRangeValue = {
1297
- /** Estimated value on highway or express roads. */
1298
- highway?: Maybe<Scalars["Int"]>;
1299
- /** Estimated value on city roads. */
1300
- city?: Maybe<Scalars["Int"]>;
1301
- /** Estimated combined value. */
1302
- combined?: Maybe<Scalars["Int"]>;
1303
- };
1304
- /** Deprecated: In favour of VehiclePremiumRouting. */
1305
- export declare type CarPremiumRouting = {
1306
- /** Cars that support fast charging have a minimum charging speed of 43 kWh. */
1307
- fast_charging_support?: Maybe<Scalars["Boolean"]>;
1308
- /** Drag coefficient. */
1309
- drag_coefficient?: Maybe<Scalars["Float"]>;
1310
- /** Tire pressure recommended by manufacturer. */
1311
- tire_pressure?: Maybe<Scalars["Float"]>;
1312
- /** Extra consumption model. */
1313
- consumption?: Maybe<CarPremiumRoutingConsumption>;
1314
- /** Amount of petrol that an equivalent petrol car would consume in l/100 km. */
1315
- petrol_consumption?: Maybe<Scalars["Float"]>;
1316
- };
1317
- /** Deprecated: In favour of VehiclePremiumRoutingConsumption. */
1318
- export declare type CarPremiumRoutingConsumption = {
1319
- /** Consumption, in kWh, of the auxiliaries. */
1320
- aux?: Maybe<CarPremiumRoutingConsumptionValue>;
1321
- /** Consumption, in kWh, of the battery management system. */
1322
- bms?: Maybe<CarPremiumRoutingConsumptionValue>;
1323
- /** Consumption, in kWh, of the car in idle mode. */
1324
- idle?: Maybe<CarPremiumRoutingConsumptionValue>;
1325
- };
1326
- /** Deprecated: In favour of VehiclePremiumRoutingConsumptionValue. */
1327
- export declare type CarPremiumRoutingConsumptionValue = {
1328
- /** Best (lowest) consumption in summer. */
1329
- best?: Maybe<Scalars["Float"]>;
1330
- /** Best (lowest) consumption in winter. */
1331
- worst?: Maybe<Scalars["Float"]>;
1332
- };
1333
- /** Deprecated: In favour of VehiclePremiumSafety. */
1334
- export declare type CarPremiumSafety = {
1335
- /** Number of seats equipped with ISOFIX. */
1336
- isofix_seats?: Maybe<Scalars["Int"]>;
1337
- /** EuroNCAP results. */
1338
- euro_ncap?: Maybe<CarPremiumSafetyEuroNcap>;
1339
- };
1340
- /** Deprecated: In favour of VehiclePremiumSafetyEuroNcap. */
1341
- export declare type CarPremiumSafetyEuroNcap = {
1342
- /** EuroNCAP rating (out of 5 stars). */
1343
- rating?: Maybe<Scalars["Int"]>;
1344
- /** EuroNCAP year of rating. */
1345
- year?: Maybe<Scalars["Int"]>;
1346
- /** EuroNCAP rating of adult protection (out of 100%). */
1347
- adult?: Maybe<Scalars["Int"]>;
1348
- /** EuroNCAP rating of child protection (out of 100%). */
1349
- child?: Maybe<Scalars["Int"]>;
1350
- /** EuroNCAP rating of vulnerable road users (out of 100%). */
1351
- vru?: Maybe<Scalars["Int"]>;
1352
- /** EuroNCAP rating of safety assists (out of 100%). */
1353
- sa?: Maybe<Scalars["Int"]>;
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>;
1354
222
  };
1355
- /** Deprecated: In favour of VehiclePropulsion. */
1356
- export declare enum CarPropulsion {
1357
- /** All-wheel drive car. */
1358
- AWD = "AWD",
1359
- /** Front-wheel drive car. */
1360
- FRONT = "Front",
1361
- /** Rear-wheel drive car. */
1362
- REAR = "Rear"
223
+ export declare enum CarConnectivityProvider {
224
+ ENODE = "Enode"
1363
225
  }
1364
- /** Deprecated: In favour of VehicleRange. */
1365
- export declare type CarRange = {
1366
- /** Index range in EV Database RealRange model in km. */
1367
- real?: Maybe<Scalars["Int"]>;
1368
- /** Indicates if real is estimated. */
1369
- real_is_estimated?: Maybe<Scalars["Boolean"]>;
226
+ /** Deprecated. */
227
+ export declare type CarConsumption = {
1370
228
  /** Worst conditions are based on -10°C and use of heating. */
1371
- worst?: Maybe<CarRangeValue>;
229
+ worst?: Maybe<Scalars["Float"]>;
1372
230
  /** Best conditions are based on 23°C and no use of A/C. */
1373
- best?: Maybe<CarRangeValue>;
1374
- /**
1375
- * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
1376
- * Chargetrip range is based on the theoretical distance driven using only the electric engine.
1377
- * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
1378
- * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
1379
- */
1380
- chargetrip_range?: Maybe<ChargetripRange>;
1381
- /** @deprecated You will receive null values */
1382
- wltp?: Maybe<Scalars["Float"]>;
1383
- };
1384
- /** Deprecated: In favour of VehicleRangeValue. */
1385
- export declare type CarRangeValue = {
1386
- /** Estimated value on the highway or express roads. */
1387
- highway?: Maybe<Scalars["Int"]>;
1388
- /** Estimated value on the cities road. */
1389
- city?: Maybe<Scalars["Int"]>;
1390
- /** Estimated combined value. */
1391
- combined?: Maybe<Scalars["Int"]>;
1392
- };
1393
- /** Deprecated: In favour of VehicleRouting. */
1394
- export declare type CarRouting = {
1395
- /** Cars that support fast charging have a minimum charging speed of 43 kWh. */
1396
- fast_charging_support?: Maybe<Scalars["Boolean"]>;
231
+ best?: Maybe<Scalars["Float"]>;
1397
232
  };
1398
- /** Deprecated: In favour of VehicleStatus. */
1399
- export declare enum CarStatus {
1400
- /** Was just imported. */
1401
- NEW = "new",
1402
- /** Is being reviewed by a human operator. */
1403
- REVIEW = "review",
1404
- /** Is public and can be used by a customer. */
1405
- PUBLIC = "public",
1406
- /** Is removed and can not be used. */
1407
- REMOVED = "removed"
1408
- }
1409
- /** Deprecated: In favour of VehicleVideo. */
1410
- export declare type CarVideo = {
1411
- /** Video id. */
1412
- id?: Maybe<Scalars["ID"]>;
1413
- /** Full path URL of a video. */
1414
- url?: Maybe<Scalars["String"]>;
233
+ /** Deprecated: In favour of VehicleConsumptionInput. */
234
+ export declare type CarConsumptionInput = {
235
+ /** Worst conditions are based on -10°C and use of heating. */
236
+ worst?: Maybe<Scalars["Float"]>;
237
+ /** Best conditions are based on 23°C and no use of A/C. */
238
+ best?: Maybe<Scalars["Float"]>;
1415
239
  };
1416
240
  /** Charging mode used at charging stations. */
1417
241
  export declare enum ChargeMode {
@@ -1434,7 +258,7 @@ export declare type ChargeSpeedInput = {
1434
258
  /** Type of the charge speed of the battery. */
1435
259
  type: ChargeSpeedUnit;
1436
260
  /** Source of inputted data, defaults to 'manual'. */
1437
- source?: TelemetryInputSource;
261
+ source?: Maybe<TelemetryInputSource>;
1438
262
  };
1439
263
  /** Charge speed unit. */
1440
264
  export declare enum ChargeSpeedUnit {
@@ -2266,8 +1090,8 @@ export declare type CreateRoute = {
2266
1090
  operators?: Maybe<RouteOperatorPreferences>;
2267
1091
  /** Season of a route. */
2268
1092
  season: RouteSeason;
2269
- /** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
2270
- alternative_station_radius?: Maybe<Scalars["Int"]>;
1093
+ /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */
1094
+ alternative_station_radius?: Maybe<AlternativeStationRadius>;
2271
1095
  /** Departure time of a route. */
2272
1096
  departure_time?: Maybe<Scalars["DateTime"]>;
2273
1097
  };
@@ -2285,11 +1109,193 @@ export declare type CreateRouteInput = {
2285
1109
  operators?: Maybe<RouteOperatorPreferencesInput>;
2286
1110
  /** Optional flag to specify the season. */
2287
1111
  season?: Maybe<RouteSeason>;
2288
- /** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
2289
- alternative_station_radius?: Maybe<Scalars["Int"]>;
1112
+ /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */
1113
+ alternative_station_radius?: Maybe<AlternativeStationRadiusInput>;
2290
1114
  /** Route departure time. */
2291
1115
  departure_time?: Maybe<Scalars["DateTime"]>;
2292
1116
  };
1117
+ /** Currency in the ISO 4217 format. */
1118
+ export declare enum Currency {
1119
+ AED = "AED",
1120
+ AFN = "AFN",
1121
+ ALL = "ALL",
1122
+ AMD = "AMD",
1123
+ ANG = "ANG",
1124
+ AOA = "AOA",
1125
+ ARS = "ARS",
1126
+ AUD = "AUD",
1127
+ AWG = "AWG",
1128
+ AZN = "AZN",
1129
+ BAM = "BAM",
1130
+ BBD = "BBD",
1131
+ BDT = "BDT",
1132
+ BGN = "BGN",
1133
+ BHD = "BHD",
1134
+ BIF = "BIF",
1135
+ BMD = "BMD",
1136
+ BND = "BND",
1137
+ BOB = "BOB",
1138
+ BRL = "BRL",
1139
+ BSD = "BSD",
1140
+ BTN = "BTN",
1141
+ BWP = "BWP",
1142
+ BYN = "BYN",
1143
+ BYR = "BYR",
1144
+ BZD = "BZD",
1145
+ CAD = "CAD",
1146
+ CDF = "CDF",
1147
+ CHF = "CHF",
1148
+ CLF = "CLF",
1149
+ CLP = "CLP",
1150
+ CNY = "CNY",
1151
+ COP = "COP",
1152
+ CRC = "CRC",
1153
+ CUC = "CUC",
1154
+ CUP = "CUP",
1155
+ CVE = "CVE",
1156
+ CZK = "CZK",
1157
+ DJF = "DJF",
1158
+ DKK = "DKK",
1159
+ DOP = "DOP",
1160
+ DZD = "DZD",
1161
+ EGP = "EGP",
1162
+ ERN = "ERN",
1163
+ ETB = "ETB",
1164
+ EUR = "EUR",
1165
+ FJD = "FJD",
1166
+ FKP = "FKP",
1167
+ GBP = "GBP",
1168
+ GEL = "GEL",
1169
+ GGP = "GGP",
1170
+ GHS = "GHS",
1171
+ GIP = "GIP",
1172
+ GMD = "GMD",
1173
+ GNF = "GNF",
1174
+ GTQ = "GTQ",
1175
+ GYD = "GYD",
1176
+ HKD = "HKD",
1177
+ HNL = "HNL",
1178
+ HRK = "HRK",
1179
+ HTG = "HTG",
1180
+ HUF = "HUF",
1181
+ IDR = "IDR",
1182
+ ILS = "ILS",
1183
+ IMP = "IMP",
1184
+ INR = "INR",
1185
+ IQD = "IQD",
1186
+ IRR = "IRR",
1187
+ ISK = "ISK",
1188
+ JEP = "JEP",
1189
+ JMD = "JMD",
1190
+ JOD = "JOD",
1191
+ JPY = "JPY",
1192
+ KES = "KES",
1193
+ KGS = "KGS",
1194
+ KHR = "KHR",
1195
+ KMF = "KMF",
1196
+ KPW = "KPW",
1197
+ KRW = "KRW",
1198
+ KWD = "KWD",
1199
+ KYD = "KYD",
1200
+ KZT = "KZT",
1201
+ LAK = "LAK",
1202
+ LBP = "LBP",
1203
+ LKR = "LKR",
1204
+ LRD = "LRD",
1205
+ LSL = "LSL",
1206
+ LTL = "LTL",
1207
+ LVL = "LVL",
1208
+ LYD = "LYD",
1209
+ MAD = "MAD",
1210
+ MDL = "MDL",
1211
+ MGA = "MGA",
1212
+ MKD = "MKD",
1213
+ MMK = "MMK",
1214
+ MNT = "MNT",
1215
+ MOP = "MOP",
1216
+ MRO = "MRO",
1217
+ MUR = "MUR",
1218
+ MVR = "MVR",
1219
+ MWK = "MWK",
1220
+ MXN = "MXN",
1221
+ MYR = "MYR",
1222
+ MZN = "MZN",
1223
+ NAD = "NAD",
1224
+ NGN = "NGN",
1225
+ NIO = "NIO",
1226
+ NOK = "NOK",
1227
+ NPR = "NPR",
1228
+ NZD = "NZD",
1229
+ OMR = "OMR",
1230
+ PAB = "PAB",
1231
+ PEN = "PEN",
1232
+ PGK = "PGK",
1233
+ PHP = "PHP",
1234
+ PKR = "PKR",
1235
+ PLN = "PLN",
1236
+ PYG = "PYG",
1237
+ QAR = "QAR",
1238
+ RON = "RON",
1239
+ RSD = "RSD",
1240
+ RUB = "RUB",
1241
+ RWF = "RWF",
1242
+ SAR = "SAR",
1243
+ SBD = "SBD",
1244
+ SCR = "SCR",
1245
+ SDG = "SDG",
1246
+ SEK = "SEK",
1247
+ SGD = "SGD",
1248
+ SHP = "SHP",
1249
+ SLL = "SLL",
1250
+ SOS = "SOS",
1251
+ SRD = "SRD",
1252
+ STD = "STD",
1253
+ SVC = "SVC",
1254
+ SYP = "SYP",
1255
+ SZL = "SZL",
1256
+ THB = "THB",
1257
+ TJS = "TJS",
1258
+ TMT = "TMT",
1259
+ TND = "TND",
1260
+ TOP = "TOP",
1261
+ TRY = "TRY",
1262
+ TTD = "TTD",
1263
+ TWD = "TWD",
1264
+ TZS = "TZS",
1265
+ UAH = "UAH",
1266
+ UGX = "UGX",
1267
+ USD = "USD",
1268
+ UYU = "UYU",
1269
+ UZS = "UZS",
1270
+ VEF = "VEF",
1271
+ VND = "VND",
1272
+ VUV = "VUV",
1273
+ WST = "WST",
1274
+ XAF = "XAF",
1275
+ XAG = "XAG",
1276
+ XAU = "XAU",
1277
+ XCD = "XCD",
1278
+ XDR = "XDR",
1279
+ XOF = "XOF",
1280
+ XPF = "XPF",
1281
+ YER = "YER",
1282
+ ZAR = "ZAR",
1283
+ ZMK = "ZMK",
1284
+ ZMW = "ZMW",
1285
+ ZWL = "ZWL",
1286
+ XPT = "XPT",
1287
+ XPD = "XPD",
1288
+ BTC = "BTC",
1289
+ ETH = "ETH",
1290
+ BNB = "BNB",
1291
+ XRP = "XRP",
1292
+ SOL = "SOL",
1293
+ DOT = "DOT",
1294
+ AVAX = "AVAX",
1295
+ MATIC = "MATIC",
1296
+ LTC = "LTC",
1297
+ ADA = "ADA"
1298
+ }
2293
1299
  /** Currency according to the ISO 4217 standard. */
2294
1300
  export declare enum CurrencyUnit {
2295
1301
  /** Return the currency in EUR. */
@@ -3680,7 +2686,7 @@ export declare type OdometerInput = {
3680
2686
  /** Type of the value of the vehicle's odometer. */
3681
2687
  type: DistanceUnit;
3682
2688
  /** Source of inputted data, defaults to 'manual'. */
3683
- source?: TelemetryInputSource;
2689
+ source?: Maybe<TelemetryInputSource>;
3684
2690
  };
3685
2691
  /** Operator data which extends OCPI BusinessDetails. */
3686
2692
  export declare type Operator = {
@@ -3742,6 +2748,22 @@ export declare type OutsideTempInput = {
3742
2748
  /** Source of inputted data, defaults to 'manual'. */
3743
2749
  source?: Maybe<TelemetryInputSource>;
3744
2750
  };
2751
+ export declare type OutsideTemperature = {
2752
+ /** Value of the temperature. */
2753
+ value: Scalars["Float"];
2754
+ /** Type of the temperature. */
2755
+ type: TemperatureUnit;
2756
+ /** Source of inputted data. */
2757
+ source: TelemetryInputSource;
2758
+ };
2759
+ export declare type OutsideTemperatureInput = {
2760
+ /** Value of the outside temperature. */
2761
+ value: Scalars["Float"];
2762
+ /** Type of the value of the outside temperature. */
2763
+ type: TemperatureUnit;
2764
+ /** Source of inputted data. */
2765
+ source?: Maybe<TelemetryInputSource>;
2766
+ };
3745
2767
  export declare enum ParkingCost {
3746
2768
  /** Parking is free. */
3747
2769
  FREE = "free",
@@ -3800,20 +2822,6 @@ export declare type PowerInput = {
3800
2822
  /** Source of inputted data, defaults to 'manual'. */
3801
2823
  source?: Maybe<TelemetryInputSource>;
3802
2824
  };
3803
- /** The list of powers for the speed type */
3804
- export declare type PowerList = {
3805
- /** The maximum power the plug provides in kW */
3806
- power?: Maybe<Scalars["Float"]>;
3807
- /** The total number of stations with the specified power */
3808
- total?: Maybe<Scalars["Int"]>;
3809
- };
3810
- /** Power stats model */
3811
- export declare type PowerStats = {
3812
- /** The charging speed type for the specified power */
3813
- type?: Maybe<StationSpeedType>;
3814
- /** The list of powers for the speed type */
3815
- powers?: Maybe<Array<Maybe<PowerList>>>;
3816
- };
3817
2825
  export declare enum PowerSupported {
3818
2826
  /** Power is supported. */
3819
2827
  AVAILABLE = "available",
@@ -3882,12 +2890,6 @@ export declare type PricingListProduct = {
3882
2890
  export declare type Query = {
3883
2891
  /** Get a full list of amenities around a station */
3884
2892
  amenityList?: Maybe<Array<Maybe<Amenity>>>;
3885
- /** Deprecated: In favor of vehicle. */
3886
- car?: Maybe<Car>;
3887
- /** Deprecated: In favor of VehiclePremium. */
3888
- carPremium?: Maybe<CarPremium>;
3889
- /** Deprecated: In favor of VehicleList. */
3890
- carList?: Maybe<Array<Maybe<CarList>>>;
3891
2893
  /** [BETA] Get a connected vehicles by id */
3892
2894
  connectedVehicle?: Maybe<ConnectedVehicle>;
3893
2895
  /** [BETA] Get the connected vehicles for the current user */
@@ -3920,8 +2922,6 @@ export declare type Query = {
3920
2922
  routeEmissions: RouteEmissions;
3921
2923
  /** Retrieve information about a route path segment */
3922
2924
  routePath?: Maybe<RoutePath>;
3923
- /** Get the station statistics */
3924
- stationStats?: Maybe<StationStats>;
3925
2925
  /** Get information about a station by its ID. */
3926
2926
  station?: Maybe<Station>;
3927
2927
  /** Get a full list of stations. */
@@ -3942,20 +2942,6 @@ export declare type Query = {
3942
2942
  export declare type QueryamenityListArgs = {
3943
2943
  stationId: Scalars["ID"];
3944
2944
  };
3945
- export declare type QuerycarArgs = {
3946
- id?: Maybe<Scalars["ID"]>;
3947
- externalId?: Maybe<Scalars["Int"]>;
3948
- };
3949
- export declare type QuerycarPremiumArgs = {
3950
- id?: Maybe<Scalars["ID"]>;
3951
- };
3952
- export declare type QuerycarListArgs = {
3953
- query?: Maybe<CarListQuery>;
3954
- search?: Maybe<Scalars["String"]>;
3955
- filter?: Maybe<CarListFilter>;
3956
- size?: Maybe<Scalars["Int"]>;
3957
- page?: Maybe<Scalars["Int"]>;
3958
- };
3959
2945
  export declare type QueryconnectedVehicleArgs = {
3960
2946
  id: Scalars["ID"];
3961
2947
  };
@@ -4413,7 +3399,7 @@ export declare type RouteAlternative = {
4413
3399
  id?: Maybe<Scalars["ID"]>;
4414
3400
  /** Type of alternative route. */
4415
3401
  type?: Maybe<RouteAlternativeType>;
4416
- /** Number of charges along a route. */
3402
+ /** Number of charging stops required for this route. */
4417
3403
  charges?: Maybe<Scalars["Int"]>;
4418
3404
  /** Number of available charges along a route. */
4419
3405
  chargesAvailable?: Maybe<Scalars["Int"]>;
@@ -4556,8 +3542,6 @@ export declare type RouteDetails = {
4556
3542
  range_at_origin: Scalars["Float"];
4557
3543
  /** Range available at the end of a trip. */
4558
3544
  range_at_destination: Scalars["Float"];
4559
- /** Text information about a route direction. */
4560
- via?: Maybe<Scalars["String"]>;
4561
3545
  /** Polyline containing encoded coordinates. */
4562
3546
  polyline?: Maybe<Scalars["String"]>;
4563
3547
  /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */
@@ -4568,10 +3552,11 @@ export declare type RouteDetails = {
4568
3552
  savings?: Maybe<RouteDetailsSavings>;
4569
3553
  /** Legs of a route. */
4570
3554
  legs: Array<RouteDetailsLeg>;
3555
+ /** Alternative stations along a route within specified radius. */
4571
3556
  alternative_stations: Array<RouteDetailsAlternativeStation>;
4572
3557
  /** Aggregation of tags over the current RouteDetails. Tags are available on legs and further subdivided over individual sections and maneuvers. */
4573
3558
  tags: Array<RouteDetailsTag>;
4574
- /** Number of charges along a route. */
3559
+ /** Number of charging stops required for this route. */
4575
3560
  charges: Scalars["Int"];
4576
3561
  };
4577
3562
  export declare type RouteDetailsdistanceArgs = {
@@ -4584,7 +3569,7 @@ export declare type RouteDetailsrange_at_destinationArgs = {
4584
3569
  unit?: Maybe<StateOfChargeUnit>;
4585
3570
  };
4586
3571
  export declare type RouteDetailspolylineArgs = {
4587
- decimals: PolylineInputDecimals;
3572
+ decimals?: Maybe<PolylineInputDecimals>;
4588
3573
  };
4589
3574
  export declare type RouteDetailsAlternativeStation = {
4590
3575
  /** ID of a station. */
@@ -4669,8 +3654,6 @@ export declare type RouteDetailsLeg = {
4669
3654
  range_after_charge?: Maybe<Scalars["Float"]>;
4670
3655
  /** Type of a leg. */
4671
3656
  type: RouteDetailsLegType;
4672
- /** Name of a destination. This is the station name in case a user should charge or the name of the location in case this was provided. */
4673
- name?: Maybe<Scalars["String"]>;
4674
3657
  /** Information about the station at the origin of this leg. */
4675
3658
  station?: Maybe<RouteDetailsLegStation>;
4676
3659
  /** Polyline containing encoded coordinates. */
@@ -4700,7 +3683,7 @@ export declare type RouteDetailsLegrange_after_chargeArgs = {
4700
3683
  };
4701
3684
  /** Leg of a route detail. */
4702
3685
  export declare type RouteDetailsLegpolylineArgs = {
4703
- decimals: PolylineInputDecimals;
3686
+ decimals?: Maybe<PolylineInputDecimals>;
4704
3687
  };
4705
3688
  export declare type RouteDetailsLegFeaturePoint = {
4706
3689
  /** ID of the feature. */
@@ -4729,7 +3712,7 @@ export declare type RouteDetailsLegFeatureProperties = {
4729
3712
  duration?: Maybe<Scalars["Int"]>;
4730
3713
  /** Number of occupants present in the vehicle. */
4731
3714
  occupants?: Maybe<Scalars["Int"]>;
4732
- /** Value of the current weight of the occupants. */
3715
+ /** Value of the combined weight of the occupants. */
4733
3716
  total_occupant_weight?: Maybe<Scalars["Float"]>;
4734
3717
  /** Value of the current weight of the cargo. */
4735
3718
  total_cargo_weight?: Maybe<Scalars["Float"]>;
@@ -4787,13 +3770,13 @@ export declare type RouteDetailsLegSection = {
4787
3770
  polyline?: Maybe<Scalars["String"]>;
4788
3771
  /** Distance from the start to the end of a section. */
4789
3772
  distance: Scalars["Float"];
4790
- /** Total drive time from the start to the end of a section, in seconds. */
3773
+ /** Total duration of a section, in seconds. The value will be 0 for walking sections. */
4791
3774
  duration: Scalars["Float"];
4792
- /** Total energy used in a section in kilowatt-hours. */
3775
+ /** Total energy used in a section in kilowatt-hours. The value will be 0 for walking sections. */
4793
3776
  consumption: Scalars["Float"];
4794
3777
  };
4795
3778
  export declare type RouteDetailsLegSectionpolylineArgs = {
4796
- decimals: PolylineInputDecimals;
3779
+ decimals?: Maybe<PolylineInputDecimals>;
4797
3780
  };
4798
3781
  export declare type RouteDetailsLegSectiondistanceArgs = {
4799
3782
  unit?: Maybe<DistanceUnit>;
@@ -4811,7 +3794,7 @@ export declare type RouteDetailsLegSectionFeaturePoint = {
4811
3794
  export declare type RouteDetailsLegSectionFeaturePointProperties = {
4812
3795
  /** Number of occupants present in the vehicle. */
4813
3796
  occupants: Scalars["Int"];
4814
- /** Value of the current weight of the occupants. */
3797
+ /** Value of the combined weight of the occupants. */
4815
3798
  total_occupant_weight?: Maybe<Scalars["Float"]>;
4816
3799
  /** Value of the current weight of the cargo. */
4817
3800
  total_cargo_weight?: Maybe<Scalars["Float"]>;
@@ -4849,7 +3832,7 @@ export declare type RouteDetailsManeuver = {
4849
3832
  /** Type of instruction. */
4850
3833
  type: RouteDetailsLegManeuverType;
4851
3834
  /** Location of the maneuver. */
4852
- location?: Maybe<RouteDetailsLegFeaturePoint>;
3835
+ location?: Maybe<RouteDetailsLegSectionFeaturePoint>;
4853
3836
  /** Name of the street on which an instruction is. */
4854
3837
  name?: Maybe<Scalars["String"]>;
4855
3838
  /** Distance, in meters, of a route instruction. */
@@ -4882,7 +3865,7 @@ export declare type RouteDetailsPathSegment = {
4882
3865
  /** State of charge, in kilowatt hours, of a route path segment. */
4883
3866
  state_of_charge?: Maybe<Scalars["Float"]>;
4884
3867
  /** Maximum vehicle speed of a route path segment. */
4885
- max_speed: Scalars["Float"];
3868
+ maximum_speed: Scalars["Float"];
4886
3869
  };
4887
3870
  export declare type RouteDetailsPathSegmentelevationArgs = {
4888
3871
  unit?: Maybe<DistanceUnit>;
@@ -4896,7 +3879,7 @@ export declare type RouteDetailsPathSegmentdistanceArgs = {
4896
3879
  export declare type RouteDetailsPathSegmentstate_of_chargeArgs = {
4897
3880
  unit?: Maybe<StateOfChargeUnit>;
4898
3881
  };
4899
- export declare type RouteDetailsPathSegmentmax_speedArgs = {
3882
+ export declare type RouteDetailsPathSegmentmaximum_speedArgs = {
4900
3883
  unit?: Maybe<SpeedUnit>;
4901
3884
  };
4902
3885
  /** Money saving information. */
@@ -4904,9 +3887,21 @@ export declare type RouteDetailsSavings = {
4904
3887
  /** Money saved by a user driving this route with an electric vehicle. */
4905
3888
  money?: Maybe<Scalars["Float"]>;
4906
3889
  /** Average gas price with which the calculation was made. */
4907
- average_gas_price?: Maybe<Scalars["Float"]>;
3890
+ average_gas_price: Scalars["Float"];
4908
3891
  /** Average energy price with which the calculation was made. */
4909
- average_energy_price?: Maybe<Scalars["Float"]>;
3892
+ average_energy_price: Scalars["Float"];
3893
+ };
3894
+ /** Money saving information. */
3895
+ export declare type RouteDetailsSavingsmoneyArgs = {
3896
+ currency?: Maybe<Currency>;
3897
+ };
3898
+ /** Money saving information. */
3899
+ export declare type RouteDetailsSavingsaverage_gas_priceArgs = {
3900
+ currency?: Maybe<Currency>;
3901
+ };
3902
+ /** Money saving information. */
3903
+ export declare type RouteDetailsSavingsaverage_energy_priceArgs = {
3904
+ currency?: Maybe<Currency>;
4910
3905
  };
4911
3906
  /** Tags of a route. */
4912
3907
  export declare enum RouteDetailsTag {
@@ -5467,7 +4462,7 @@ export declare type RouteOperationalElectricityEnergySources = {
5467
4462
  solar: ElectricityGenerationMethod;
5468
4463
  /** Electricity produced by wind power. */
5469
4464
  wind: ElectricityGenerationMethod;
5470
- /** Electricity produced by oil power plants. */
4465
+ /** Electricity produced by oil and other miscellaneous fossil fuel power plants. */
5471
4466
  oil: ElectricityGenerationMethod;
5472
4467
  /** Electricity produced by nuclear power plants. */
5473
4468
  nuclear: ElectricityGenerationMethod;
@@ -5768,14 +4763,10 @@ export declare type RoutePath = {
5768
4763
  export declare type RoutePropertiesLocation = {
5769
4764
  /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
5770
4765
  name?: Maybe<Scalars["String"]>;
5771
- /** Duration to stay at this point. */
5772
- stop_duration?: Maybe<Scalars["Int"]>;
5773
4766
  };
5774
4767
  export declare type RoutePropertiesLocationInput = {
5775
4768
  /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
5776
4769
  name?: Maybe<Scalars["String"]>;
5777
- /** Duration to stay at this point. */
5778
- stop_duration?: Maybe<Scalars["Int"]>;
5779
4770
  };
5780
4771
  export declare type RoutePropertiesStation = {
5781
4772
  /** ID of the station. When provided and valid, the coordinates of this station will be used. */
@@ -5792,7 +4783,7 @@ export declare type RoutePropertiesStationInput = {
5792
4783
  export declare type RoutePropertiesVehicle = {
5793
4784
  /** Number of occupants present in the vehicle. */
5794
4785
  occupants?: Maybe<Scalars["Int"]>;
5795
- /** Combined weight of the occupants. */
4786
+ /** Combined weight of the occupants. This can only be used in combination with occupants. */
5796
4787
  total_occupant_weight?: Maybe<TotalOccupantWeight>;
5797
4788
  /** Weight of the cargo. */
5798
4789
  total_cargo_weight?: Maybe<TotalCargoWeight>;
@@ -5800,11 +4791,23 @@ export declare type RoutePropertiesVehicle = {
5800
4791
  export declare type RoutePropertiesVehicleInput = {
5801
4792
  /** Number of occupants present in the vehicle. */
5802
4793
  occupants?: Maybe<Scalars["Int"]>;
5803
- /** Combined weight of the occupants. */
4794
+ /** Combined weight of the occupants. This can only be used in combination with occupants. */
5804
4795
  total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
5805
4796
  /** Weight of the cargo. */
5806
4797
  total_cargo_weight?: Maybe<TotalCargoWeightInput>;
5807
4798
  };
4799
+ export declare type RoutePropertiesViaLocation = {
4800
+ /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
4801
+ name?: Maybe<Scalars["String"]>;
4802
+ /** Duration to stay at this point, in seconds. */
4803
+ stop_duration?: Maybe<Scalars["Int"]>;
4804
+ };
4805
+ export declare type RoutePropertiesViaLocationInput = {
4806
+ /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
4807
+ name?: Maybe<Scalars["String"]>;
4808
+ /** Duration to stay at this point, in seconds. */
4809
+ stop_duration?: Maybe<Scalars["Int"]>;
4810
+ };
5808
4811
  export declare type RouteResponse = {
5809
4812
  /** ID of a route calculation. */
5810
4813
  id: Scalars["ID"];
@@ -5816,8 +4819,6 @@ export declare type RouteResponse = {
5816
4819
  meta: RouteMetadata;
5817
4820
  /** Route request. */
5818
4821
  request_input: CreateRoute;
5819
- /** Region of a route calculation. */
5820
- region: Scalars["String"];
5821
4822
  };
5822
4823
  /** Scheduled charge stop along a route. */
5823
4824
  export declare type RouteScheduledChargeStop = {
@@ -5916,8 +4917,8 @@ export declare type RouteVehicle = {
5916
4917
  /** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */
5917
4918
  motor_rpm?: Maybe<Scalars["Int"]>;
5918
4919
  /** Value of the outside temperature. */
5919
- outside_temperature?: Maybe<Temperature>;
5920
- /** Vehicle is in park, neutral or turned off. */
4920
+ outside_temperature?: Maybe<OutsideTemperature>;
4921
+ /** Flag which indicates if vehicle is in park, neutral or turned off. */
5921
4922
  is_parked?: Maybe<Scalars["Boolean"]>;
5922
4923
  /** Value of the vehicle's speed. */
5923
4924
  vehicle_speed?: Maybe<VehicleSpeed>;
@@ -5929,7 +4930,7 @@ export declare type RouteVehicleBattery = {
5929
4930
  capacity: StateOfCharge;
5930
4931
  /** State of charge. */
5931
4932
  state_of_charge: StateOfCharge;
5932
- /** Minimum final battery state of charge. */
4933
+ /** Minimum final battery state of charge. The value should be between 0 and 60% of the battery capacity. */
5933
4934
  final_state_of_charge: StateOfCharge;
5934
4935
  /** Temperature of the battery. */
5935
4936
  temperature?: Maybe<Temperature>;
@@ -5937,9 +4938,9 @@ export declare type RouteVehicleBattery = {
5937
4938
  current?: Maybe<Scalars["Float"]>;
5938
4939
  /** Battery voltage in volts. */
5939
4940
  voltage?: Maybe<Scalars["Float"]>;
5940
- /** Value of the positive or negative power. When negative, the vehicle is charging. */
4941
+ /** Value of the positive or negative power, in kWh. When negative, the vehicle is charging. */
5941
4942
  power?: Maybe<Scalars["Float"]>;
5942
- /** Indicates if the vehicle is charging. */
4943
+ /** Flag which indicates if the vehicle is charging. */
5943
4944
  is_charging?: Maybe<Scalars["Boolean"]>;
5944
4945
  };
5945
4946
  /** EV battery specific configuration for a create route mutation. */
@@ -5948,7 +4949,7 @@ export declare type RouteVehicleBatteryInput = {
5948
4949
  capacity?: Maybe<StateOfChargeInput>;
5949
4950
  /** Battery state of charge. */
5950
4951
  state_of_charge?: Maybe<StateOfChargeInput>;
5951
- /** Minimum battery state of charge. */
4952
+ /** Minimum final battery state of charge. The value should be between 0 and 60% of the battery capacity. */
5952
4953
  final_state_of_charge?: Maybe<StateOfChargeInput>;
5953
4954
  /** Battery temperature. */
5954
4955
  temperature?: Maybe<TemperatureInput>;
@@ -5956,9 +4957,9 @@ export declare type RouteVehicleBatteryInput = {
5956
4957
  current?: Maybe<Scalars["Float"]>;
5957
4958
  /** Battery voltage in volts. */
5958
4959
  voltage?: Maybe<Scalars["Float"]>;
5959
- /** Vehicle power. */
4960
+ /** Value of the positive or negative power, in kWh. When negative, the vehicle is charging. */
5960
4961
  power?: Maybe<Scalars["Float"]>;
5961
- /** Vehicle is currently charging. */
4962
+ /** Flag which indicates if the vehicle is charging. */
5962
4963
  is_charging?: Maybe<Scalars["Boolean"]>;
5963
4964
  };
5964
4965
  export declare type RouteVehicleCabin = {
@@ -5969,15 +4970,15 @@ export declare type RouteVehicleCabin = {
5969
4970
  };
5970
4971
  export declare type RouteVehicleCabinInput = {
5971
4972
  /** Flag which indicates if the vehicle cabin was preconditioned for the desired temperature. */
5972
- is_preconditioned?: Scalars["Boolean"];
4973
+ is_preconditioned?: Maybe<Scalars["Boolean"]>;
5973
4974
  /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
5974
- desired_temperature: TemperatureInput;
4975
+ desired_temperature?: Maybe<TemperatureInput>;
5975
4976
  };
5976
4977
  export declare type RouteVehicleCharging = {
5977
4978
  /** Mode that indicates if the charging time is optimized or if always charged to the maximum capacity. */
5978
4979
  mode: ChargeMode;
5979
- /** Minimum desired power of chargers. */
5980
- minimum_power: Scalars["Int"];
4980
+ /** Minimum desired power of chargers, in kWh. */
4981
+ minimum_power: Scalars["Float"];
5981
4982
  /** Percentage for the minimum limit of the battery's capacity before a recharge. The value should be between 0 and 60. Defaults to 10. */
5982
4983
  risk_margin: Scalars["Int"];
5983
4984
  /** Supported connectors. */
@@ -5989,18 +4990,18 @@ export declare type RouteVehicleChargingConnector = {
5989
4990
  /** Type of the plug. */
5990
4991
  standard: ConnectorType;
5991
4992
  /** Maximum charging speed for the plug. */
5992
- max_charge_speed: ChargeSpeed;
4993
+ maximum_charge_speed: ChargeSpeed;
5993
4994
  };
5994
4995
  export declare type RouteVehicleChargingConnectorInput = {
5995
4996
  /** Plug type. */
5996
4997
  standard: ConnectorType;
5997
4998
  /** Maximum charging speed for this plug. */
5998
- max_charge_speed: ChargeSpeedInput;
4999
+ maximum_charge_speed: ChargeSpeedInput;
5999
5000
  };
6000
5001
  export declare type RouteVehicleChargingInput = {
6001
5002
  /** Mode that indicates if the charging time is optimized or if always charged to the maximum capacity. */
6002
5003
  mode?: Maybe<ChargeMode>;
6003
- /** Minimum desired power of chargers. */
5004
+ /** Minimum desired power of chargers, in kWh. */
6004
5005
  minimum_power?: Maybe<Scalars["Float"]>;
6005
5006
  /** Percentage representing the minimum value of the state of charge at a next charge stop. The value should be between 0 and 60. */
6006
5007
  risk_margin?: Maybe<Scalars["Int"]>;
@@ -6052,8 +5053,8 @@ export declare type RouteVehicleInput = {
6052
5053
  /** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */
6053
5054
  motor_rpm?: Maybe<Scalars["Int"]>;
6054
5055
  /** Outside temperature. */
6055
- outside_temperature?: Maybe<TemperatureInput>;
6056
- /** Vehicle is in park, neutral or turned off. */
5056
+ outside_temperature?: Maybe<OutsideTemperatureInput>;
5057
+ /** Flag which indicates if vehicle is in park, neutral or turned off. */
6057
5058
  is_parked?: Maybe<Scalars["Boolean"]>;
6058
5059
  /** Vehicle speed. */
6059
5060
  vehicle_speed?: Maybe<VehicleSpeedInput>;
@@ -6126,7 +5127,7 @@ export declare type RouteViaFeaturePointInput = {
6126
5127
  };
6127
5128
  export declare type RouteViaProperties = {
6128
5129
  /** Location data of the via point. */
6129
- location?: Maybe<RoutePropertiesLocation>;
5130
+ location?: Maybe<RoutePropertiesViaLocation>;
6130
5131
  /** Vehicle data of the via point. */
6131
5132
  vehicle?: Maybe<RoutePropertiesVehicle>;
6132
5133
  /** Station data of the via point. */
@@ -6134,7 +5135,7 @@ export declare type RouteViaProperties = {
6134
5135
  };
6135
5136
  export declare type RouteViaPropertiesInput = {
6136
5137
  /** Location data of the via point. */
6137
- location?: Maybe<RoutePropertiesLocationInput>;
5138
+ location?: Maybe<RoutePropertiesViaLocationInput>;
6138
5139
  /** Vehicle data of the via point. */
6139
5140
  vehicle?: Maybe<RoutePropertiesVehicleInput>;
6140
5141
  /** Station data of the via point. */
@@ -6164,13 +5165,6 @@ export declare enum SpeedUnit {
6164
5165
  /** Return the speed in miles per hour. */
6165
5166
  MILES_PER_HOUR = "miles_per_hour"
6166
5167
  }
6167
- /** Standards(plug type) stats model */
6168
- export declare type StandardStats = {
6169
- /** The plug type */
6170
- type?: Maybe<ConnectorType>;
6171
- /** The total number of stations with the specified plug */
6172
- total?: Maybe<Scalars["Int"]>;
6173
- };
6174
5168
  export declare type StateOfCharge = {
6175
5169
  /** Value of the state of charge of the vehicle. */
6176
5170
  value: Scalars["Float"];
@@ -6185,7 +5179,7 @@ export declare type StateOfChargeInput = {
6185
5179
  /** Type of the state of charge of the vehicle. */
6186
5180
  type: StateOfChargeUnit;
6187
5181
  /** Source of inputted data, defaults to 'manual'. */
6188
- source?: TelemetryInputSource;
5182
+ source?: Maybe<TelemetryInputSource>;
6189
5183
  };
6190
5184
  /** State of charge unit. */
6191
5185
  export declare enum StateOfChargeUnit {
@@ -6536,15 +5530,6 @@ export declare enum StationSpeedType {
6536
5530
  /** Ultra fast charging stations (above 150 kW). */
6537
5531
  TURBO = "turbo"
6538
5532
  }
6539
- /** The station stats model */
6540
- export declare type StationStats = {
6541
- /** Stations count grouped by standards */
6542
- standards?: Maybe<Array<Maybe<StandardStats>>>;
6543
- /** Stations count grouped by power */
6544
- power?: Maybe<Array<Maybe<PowerStats>>>;
6545
- /** Stations count grouped by amenities */
6546
- amenities?: Maybe<Array<Maybe<AmenityStats>>>;
6547
- };
6548
5533
  /** Describes the vehicle restrictions at the location. */
6549
5534
  export declare type StationVehicleRestrictions = {
6550
5535
  /** Maximum weight for a vehicle that is allowed at the location. */
@@ -6750,7 +5735,9 @@ export declare enum TelemetryInputSource {
6750
5735
  /** Manually inputted value. */
6751
5736
  MANUAL = "manual",
6752
5737
  /** Value from the vehicle's telemetry. */
6753
- TELEMETRY = "telemetry"
5738
+ TELEMETRY = "telemetry",
5739
+ /** Default value. */
5740
+ DEFAULT = "default"
6754
5741
  }
6755
5742
  export declare type Temperature = {
6756
5743
  /** Value of the temperature. */
@@ -6785,7 +5772,7 @@ export declare type TirePressureInput = {
6785
5772
  /** Type of the value of pressure. */
6786
5773
  type: PressureUnit;
6787
5774
  /** Source of inputted data, defaults to 'manual'. */
6788
- source?: TelemetryInputSource;
5775
+ source?: Maybe<TelemetryInputSource>;
6789
5776
  };
6790
5777
  export declare enum TorqueUnit {
6791
5778
  /** Return the torque in newton meters. */
@@ -6807,10 +5794,10 @@ export declare type TotalCargoWeightInput = {
6807
5794
  /** Type of the current weight of the cargo. */
6808
5795
  type: WeightUnit;
6809
5796
  /** Source of inputted data, defaults to 'manual'. */
6810
- source?: TelemetryInputSource;
5797
+ source?: Maybe<TelemetryInputSource>;
6811
5798
  };
6812
5799
  export declare type TotalOccupantWeight = {
6813
- /** Value of the current weight of the occupants. */
5800
+ /** Value of the combined weight of the occupants. */
6814
5801
  value: Scalars["Float"];
6815
5802
  /** Type of the current weight of the occupants. */
6816
5803
  type: WeightUnit;
@@ -6818,12 +5805,12 @@ export declare type TotalOccupantWeight = {
6818
5805
  source: TelemetryInputSource;
6819
5806
  };
6820
5807
  export declare type TotalOccupantWeightInput = {
6821
- /** Value of the current weight of the occupants. */
5808
+ /** Value of the combined weight of the occupants. */
6822
5809
  value: Scalars["Float"];
6823
5810
  /** Type of the current weight of the occupants. */
6824
5811
  type: WeightUnit;
6825
5812
  /** Source of inputted data, defaults to 'manual'. */
6826
- source?: TelemetryInputSource;
5813
+ source?: Maybe<TelemetryInputSource>;
6827
5814
  };
6828
5815
  export declare enum TurningCircleUnit {
6829
5816
  /** Return the turning circle in meters. */
@@ -8089,7 +7076,7 @@ export declare type VehicleSpeedInput = {
8089
7076
  /** Type of the vehicle speed. */
8090
7077
  type: SpeedUnit;
8091
7078
  /** Source of inputted data, defaults to 'manual'. */
8092
- source?: TelemetryInputSource;
7079
+ source?: Maybe<TelemetryInputSource>;
8093
7080
  };
8094
7081
  export declare type VehicleToEverything = {
8095
7082
  /** Information about Vehicle-to-Load. */