@chargetrip/types 1.41.0 → 1.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +253 -13
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +253 -13
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +1744 -462
- package/graphql.schema.json +17616 -9582
- package/package.json +1 -1
- package/src/graphql.ts +1857 -445
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -17,18 +17,20 @@ export declare type Scalars = {
|
|
|
17
17
|
Boolean: boolean;
|
|
18
18
|
Int: number;
|
|
19
19
|
Float: number;
|
|
20
|
-
/** Returns 'OK' */
|
|
20
|
+
/** Acknowledgement scalar. Returns 'OK'. */
|
|
21
21
|
Acknowledgement: any;
|
|
22
|
-
/** The date and time scalar */
|
|
22
|
+
/** The date and time scalar. */
|
|
23
23
|
DateTime: string;
|
|
24
24
|
/** Email address scalar, email regex with HTML sanitization. */
|
|
25
25
|
Email: any;
|
|
26
|
-
/** Any JSON object */
|
|
26
|
+
/** Any JSON object or array. */
|
|
27
27
|
JSON: {
|
|
28
28
|
[key: string]: number | string | boolean | null | Scalars["JSON"];
|
|
29
29
|
};
|
|
30
30
|
/** The non empty string scalar. */
|
|
31
31
|
NonEmptyString: any;
|
|
32
|
+
/** The `PlainID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The `PlainID` type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID. */
|
|
33
|
+
PlainID: any;
|
|
32
34
|
/**
|
|
33
35
|
* The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.
|
|
34
36
|
* The PlainString type represents free-form human-readable text with HTML sanitization.
|
|
@@ -173,14 +175,23 @@ export declare type AuthorizeConnectedVehicleOptions = {
|
|
|
173
175
|
/** OAuth code returned as a query parameter on the OAuth callback */
|
|
174
176
|
code?: Maybe<Scalars["PlainString"]>;
|
|
175
177
|
};
|
|
178
|
+
export declare type AuxiliaryConsumption = {
|
|
179
|
+
/** Value of the auxiliary power consumption of the vehicle. */
|
|
180
|
+
value: Scalars["Float"];
|
|
181
|
+
/** Type of auxiliary power consumption of the vehicle. */
|
|
182
|
+
type: AuxiliaryConsumptionUnit;
|
|
183
|
+
/** Source of inputted data. */
|
|
184
|
+
source: TelemetryInputSource;
|
|
185
|
+
};
|
|
176
186
|
export declare type AuxiliaryConsumptionInput = {
|
|
177
187
|
/** Value of the auxiliary power consumption of the vehicle. */
|
|
178
188
|
value: Scalars["Float"];
|
|
179
189
|
/** Type of auxiliary power consumption of the vehicle. */
|
|
180
190
|
type: AuxiliaryConsumptionUnit;
|
|
181
191
|
/** Source of inputted data, defaults to 'manual'. */
|
|
182
|
-
source?:
|
|
192
|
+
source?: TelemetryInputSource;
|
|
183
193
|
};
|
|
194
|
+
/** Auxiliary consumption units. */
|
|
184
195
|
export declare enum AuxiliaryConsumptionUnit {
|
|
185
196
|
/** Return the auxiliary consumption in kilowatt hours. */
|
|
186
197
|
KILOWATT_HOUR = "kilowatt_hour"
|
|
@@ -198,9 +209,9 @@ export declare type BatteryTemperatureInput = {
|
|
|
198
209
|
/** Type of temperature of the battery. */
|
|
199
210
|
type: TemperatureUnit;
|
|
200
211
|
/** Source of inputted data, defaults to 'manual'. */
|
|
201
|
-
source?:
|
|
212
|
+
source?: TelemetryInputSource;
|
|
202
213
|
};
|
|
203
|
-
/**
|
|
214
|
+
/** Deprecated: In favour of Vehicle. */
|
|
204
215
|
export declare type Car = {
|
|
205
216
|
/** Cars unique ID. */
|
|
206
217
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -352,6 +363,7 @@ export declare type Car = {
|
|
|
352
363
|
*/
|
|
353
364
|
imagesData?: Maybe<CarImageData>;
|
|
354
365
|
};
|
|
366
|
+
/** Deprecated: In favour of VehicleAvailability. */
|
|
355
367
|
export declare type CarAvailability = {
|
|
356
368
|
/**
|
|
357
369
|
* Availability of car.
|
|
@@ -369,6 +381,7 @@ export declare type CarAvailability = {
|
|
|
369
381
|
*/
|
|
370
382
|
status?: Maybe<Scalars["Int"]>;
|
|
371
383
|
};
|
|
384
|
+
/** Deprecated: In favour of VehicleBattery. */
|
|
372
385
|
export declare type CarBattery = {
|
|
373
386
|
/** Usable battery capacity in kWh. */
|
|
374
387
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
@@ -384,7 +397,7 @@ export declare type CarBatteryEfficiency = {
|
|
|
384
397
|
/** Best conditions are based on 23°C and no use of A/C, measured in kWh/100 km. */
|
|
385
398
|
best?: Maybe<CarEstimationData>;
|
|
386
399
|
};
|
|
387
|
-
/**
|
|
400
|
+
/** Deprecated: In favour of VehicleBatteryFieldEstimations. */
|
|
388
401
|
export declare enum CarBatteryFieldEstimations {
|
|
389
402
|
/** Both of the battery kWh fields are estimations. */
|
|
390
403
|
B = "B",
|
|
@@ -395,6 +408,7 @@ export declare enum CarBatteryFieldEstimations {
|
|
|
395
408
|
/** usable_kwh field is estimated. */
|
|
396
409
|
U = "U"
|
|
397
410
|
}
|
|
411
|
+
/** Deprecated: In favour of VehicleBody. */
|
|
398
412
|
export declare type CarBody = {
|
|
399
413
|
/** Width with folded mirrors in mm. */
|
|
400
414
|
width?: Maybe<Scalars["Int"]>;
|
|
@@ -415,14 +429,14 @@ export declare type CarConsumption = {
|
|
|
415
429
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
416
430
|
best?: Maybe<Scalars["Float"]>;
|
|
417
431
|
};
|
|
418
|
-
/**
|
|
432
|
+
/** Deprecated: In favour of VehicleConsumptionInput. */
|
|
419
433
|
export declare type CarConsumptionInput = {
|
|
420
434
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
421
435
|
worst?: Maybe<Scalars["Float"]>;
|
|
422
436
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
423
437
|
best?: Maybe<Scalars["Float"]>;
|
|
424
438
|
};
|
|
425
|
-
/**
|
|
439
|
+
/** Deprecated: In favour of VehicleDrivetrain. */
|
|
426
440
|
export declare enum CarDrivetrain {
|
|
427
441
|
/** Battery Electric Car.. */
|
|
428
442
|
BEV = "BEV",
|
|
@@ -447,11 +461,12 @@ export declare type CarExtraConsumption = {
|
|
|
447
461
|
/** Consumption, in kWh, of a car in idle mode. */
|
|
448
462
|
idle?: Maybe<CarConsumption>;
|
|
449
463
|
};
|
|
450
|
-
/**
|
|
464
|
+
/** Deprecated: In favour of VehicleFuel. */
|
|
451
465
|
export declare enum CarFuel {
|
|
452
466
|
/** Electricity only. Full electric car. */
|
|
453
467
|
E = "E"
|
|
454
468
|
}
|
|
469
|
+
/** Deprecated: In favour of VehicleImage */
|
|
455
470
|
export declare type CarImage = {
|
|
456
471
|
/** Image id. */
|
|
457
472
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -481,7 +496,7 @@ export declare type CarImageData = {
|
|
|
481
496
|
/** Thumbnail of a full size logo of the make of a car. */
|
|
482
497
|
brand_thumbnail?: Maybe<CarImage>;
|
|
483
498
|
};
|
|
484
|
-
/**
|
|
499
|
+
/** Deprecated: In favour of VehicleImageType. */
|
|
485
500
|
export declare enum CarImageType {
|
|
486
501
|
/** Images provided by a Car Datasource. */
|
|
487
502
|
PROVIDER = "provider",
|
|
@@ -496,12 +511,12 @@ export declare enum CarImageType {
|
|
|
496
511
|
/** Placeholder image at 1536x864 px. */
|
|
497
512
|
PLACEHOLDER = "placeholder"
|
|
498
513
|
}
|
|
499
|
-
/**
|
|
514
|
+
/** Deprecated: In favour of VehicleImageTypeUploadable. */
|
|
500
515
|
export declare enum CarImageTypeUploadable {
|
|
501
516
|
/** Full size image with a resolution at least 1536x864 px. */
|
|
502
517
|
IMAGE = "image"
|
|
503
518
|
}
|
|
504
|
-
/**
|
|
519
|
+
/** Deprecated: In favour of VehicleList. */
|
|
505
520
|
export declare type CarList = {
|
|
506
521
|
/** Cars unique ID. */
|
|
507
522
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -629,6 +644,7 @@ export declare type CarList = {
|
|
|
629
644
|
/** @deprecated You will receive null values */
|
|
630
645
|
images?: Maybe<Array<Maybe<CarImage>>>;
|
|
631
646
|
};
|
|
647
|
+
/** Deprecated: In favour of VehicleListAvailability. */
|
|
632
648
|
export declare type CarListAvailability = {
|
|
633
649
|
/**
|
|
634
650
|
* Availability of car.
|
|
@@ -646,16 +662,19 @@ export declare type CarListAvailability = {
|
|
|
646
662
|
*/
|
|
647
663
|
status?: Maybe<Scalars["Int"]>;
|
|
648
664
|
};
|
|
665
|
+
/** Deprecated: In favour of VehicleListBattery. */
|
|
649
666
|
export declare type CarListBattery = {
|
|
650
667
|
/** Usable battery capacity in kWh. */
|
|
651
668
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
652
669
|
/** Full battery capacity in kWh. */
|
|
653
670
|
full_kwh?: Maybe<Scalars["Float"]>;
|
|
654
671
|
};
|
|
672
|
+
/** Deprecated: In favour of VehicleListBody. */
|
|
655
673
|
export declare type CarListBody = {
|
|
656
674
|
/** Number of seats in car. */
|
|
657
675
|
seats?: Maybe<Scalars["Int"]>;
|
|
658
676
|
};
|
|
677
|
+
/** Deprecated: In favour of VehicleListFilter. */
|
|
659
678
|
export declare type CarListFilter = {
|
|
660
679
|
/**
|
|
661
680
|
* Availability of car.
|
|
@@ -675,6 +694,7 @@ export declare type CarListFilter = {
|
|
|
675
694
|
/** Information about vehicle connectivity. */
|
|
676
695
|
connect?: Maybe<ConnectFilter>;
|
|
677
696
|
};
|
|
697
|
+
/** Deprecated: In favour of VehicleListMedia. */
|
|
678
698
|
export declare type CarListMedia = {
|
|
679
699
|
/** Latest image of the car. */
|
|
680
700
|
image?: Maybe<CarImage>;
|
|
@@ -683,6 +703,7 @@ export declare type CarListMedia = {
|
|
|
683
703
|
/** Latest video of the car. */
|
|
684
704
|
video?: Maybe<CarVideo>;
|
|
685
705
|
};
|
|
706
|
+
/** Deprecated: In favour of VehicleListNaming. */
|
|
686
707
|
export declare type CarListNaming = {
|
|
687
708
|
/** Car manufacturer name. */
|
|
688
709
|
make?: Maybe<Scalars["String"]>;
|
|
@@ -708,10 +729,13 @@ export declare type CarListQuery = {
|
|
|
708
729
|
/** Deprecated: Not used anymore. */
|
|
709
730
|
mode?: Maybe<CarMode>;
|
|
710
731
|
};
|
|
732
|
+
/** Deprecated: In favour of VehicleListRange. */
|
|
711
733
|
export declare type CarListRange = {
|
|
712
734
|
/**
|
|
713
|
-
*
|
|
714
|
-
*
|
|
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
|
|
715
739
|
*/
|
|
716
740
|
chargetrip_range?: Maybe<ChargetripRange>;
|
|
717
741
|
/** @deprecated You will receive null values */
|
|
@@ -721,10 +745,12 @@ export declare type CarListRange = {
|
|
|
721
745
|
/** @deprecated You will receive null values */
|
|
722
746
|
best?: Maybe<CarEstimationData>;
|
|
723
747
|
};
|
|
748
|
+
/** Deprecated: In favour of VehicleListRouting. */
|
|
724
749
|
export declare type CarListRouting = {
|
|
725
750
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
726
751
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
727
752
|
};
|
|
753
|
+
/** Deprecated: In favour of VehicleMedia. */
|
|
728
754
|
export declare type CarMedia = {
|
|
729
755
|
/** URL to detail page on EV database. */
|
|
730
756
|
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
@@ -744,7 +770,7 @@ export declare type CarMedia = {
|
|
|
744
770
|
*/
|
|
745
771
|
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
746
772
|
};
|
|
747
|
-
/**
|
|
773
|
+
/** Deprecated: In favour of VehicleMode. */
|
|
748
774
|
export declare enum CarMode {
|
|
749
775
|
/** Old car that is no longer manufactured. */
|
|
750
776
|
INDEX_ONLY = "index_only",
|
|
@@ -753,6 +779,7 @@ export declare enum CarMode {
|
|
|
753
779
|
/** Future releases of a car, a concept of the car, specs may change over time. */
|
|
754
780
|
CONCEPT = "concept"
|
|
755
781
|
}
|
|
782
|
+
/** Deprecated: In favour of VehicleNaming. */
|
|
756
783
|
export declare type CarNaming = {
|
|
757
784
|
/** Car manufacturer name. */
|
|
758
785
|
make?: Maybe<Scalars["String"]>;
|
|
@@ -765,13 +792,14 @@ export declare type CarNaming = {
|
|
|
765
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. */
|
|
766
793
|
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
767
794
|
};
|
|
795
|
+
/** Deprecated: In favour of VehiclePerformance. */
|
|
768
796
|
export declare type CarPerformance = {
|
|
769
797
|
/** Acceleration 0-100 km/h in seconds. */
|
|
770
798
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
771
799
|
/** Top speed of car in km/h. */
|
|
772
800
|
top_speed?: Maybe<Scalars["Int"]>;
|
|
773
801
|
};
|
|
774
|
-
/**
|
|
802
|
+
/** Deprecated: In favour of VehicleConnector. */
|
|
775
803
|
export declare type CarPlug = {
|
|
776
804
|
/** Plug type, known as connector standard in OCPI. */
|
|
777
805
|
standard?: Maybe<ConnectorType>;
|
|
@@ -784,7 +812,7 @@ export declare type CarPlug = {
|
|
|
784
812
|
/** Charging speed in km/h. */
|
|
785
813
|
speed?: Maybe<Scalars["Int"]>;
|
|
786
814
|
};
|
|
787
|
-
/**
|
|
815
|
+
/** Deprecated: In favour of VehiclePremium. */
|
|
788
816
|
export declare type CarPremium = {
|
|
789
817
|
/** Unique ID of a car. */
|
|
790
818
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -825,6 +853,7 @@ export declare type CarPremium = {
|
|
|
825
853
|
/** Information about vehicle connectivity. */
|
|
826
854
|
connect?: Maybe<Connect>;
|
|
827
855
|
};
|
|
856
|
+
/** Deprecated: In favour of VehiclePremiumAvailability. */
|
|
828
857
|
export declare type CarPremiumAvailability = {
|
|
829
858
|
/**
|
|
830
859
|
* Availability of car.
|
|
@@ -848,6 +877,7 @@ export declare type CarPremiumAvailability = {
|
|
|
848
877
|
/** Date last available, mm-yyyy. */
|
|
849
878
|
date_to?: Maybe<Scalars["String"]>;
|
|
850
879
|
};
|
|
880
|
+
/** Deprecated: In favour of VehiclePremiumBattery. */
|
|
851
881
|
export declare type CarPremiumBattery = {
|
|
852
882
|
/** Usable battery capacity in kWh. */
|
|
853
883
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
@@ -862,6 +892,7 @@ export declare type CarPremiumBattery = {
|
|
|
862
892
|
/** Mileage of battery warranty. */
|
|
863
893
|
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
864
894
|
};
|
|
895
|
+
/** Deprecated: In favour of VehiclePremiumBody. */
|
|
865
896
|
export declare type CarPremiumBody = {
|
|
866
897
|
/** Length in mm. */
|
|
867
898
|
length?: Maybe<Scalars["Int"]>;
|
|
@@ -923,6 +954,7 @@ export declare type CarPremiumBody = {
|
|
|
923
954
|
*/
|
|
924
955
|
rooftrails?: Maybe<Scalars["Boolean"]>;
|
|
925
956
|
};
|
|
957
|
+
/** Deprecated: In favour of VehiclePremiumCharge. */
|
|
926
958
|
export declare type CarPremiumCharge = {
|
|
927
959
|
/** Location of charge port. */
|
|
928
960
|
plug?: Maybe<CarPremiumChargePlug>;
|
|
@@ -935,6 +967,7 @@ export declare type CarPremiumCharge = {
|
|
|
935
967
|
/** The car option charge. */
|
|
936
968
|
option?: Maybe<CarPremiumChargeOptionOBC>;
|
|
937
969
|
};
|
|
970
|
+
/** Deprecated: In favour of VehiclePremiumChargeAlternativeOBC. */
|
|
938
971
|
export declare type CarPremiumChargeAlternativeOBC = {
|
|
939
972
|
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
940
973
|
power?: Maybe<Scalars["Float"]>;
|
|
@@ -949,6 +982,7 @@ export declare type CarPremiumChargeAlternativeOBC = {
|
|
|
949
982
|
/** Charging details for the standard OBC at several charging points. */
|
|
950
983
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
951
984
|
};
|
|
985
|
+
/** Deprecated: In favour of VehiclePremiumChargeOBCTable. */
|
|
952
986
|
export declare type CarPremiumChargeOBCTable = {
|
|
953
987
|
/** Voltage between phase and neutral for this EVSE (phase voltage). */
|
|
954
988
|
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
@@ -969,6 +1003,7 @@ export declare type CarPremiumChargeOBCTable = {
|
|
|
969
1003
|
/** Charging speed when charging at maximum power (standard OBC with this EVSE). */
|
|
970
1004
|
charge_speed?: Maybe<Scalars["Int"]>;
|
|
971
1005
|
};
|
|
1006
|
+
/** Deprecated: In favour of VehiclePremiumChargeOptionOBC. */
|
|
972
1007
|
export declare type CarPremiumChargeOptionOBC = {
|
|
973
1008
|
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
974
1009
|
power?: Maybe<Scalars["Float"]>;
|
|
@@ -983,6 +1018,7 @@ export declare type CarPremiumChargeOptionOBC = {
|
|
|
983
1018
|
/** Charging details for the standard OBC at several charging points. */
|
|
984
1019
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
985
1020
|
};
|
|
1021
|
+
/** Deprecated: In favour of VehiclePremiumChargePlug. */
|
|
986
1022
|
export declare type CarPremiumChargePlug = {
|
|
987
1023
|
/** Type of charge port on vehicle. */
|
|
988
1024
|
value?: Maybe<ConnectorType>;
|
|
@@ -991,18 +1027,21 @@ export declare type CarPremiumChargePlug = {
|
|
|
991
1027
|
/** Location of charge port. */
|
|
992
1028
|
location?: Maybe<Scalars["String"]>;
|
|
993
1029
|
};
|
|
1030
|
+
/** Deprecated: In favour of VehiclePremiumChargePower. */
|
|
994
1031
|
export declare type CarPremiumChargePower = {
|
|
995
1032
|
/** Maximum value. */
|
|
996
1033
|
max?: Maybe<Scalars["Float"]>;
|
|
997
1034
|
/** Average value. */
|
|
998
1035
|
average?: Maybe<Scalars["Float"]>;
|
|
999
1036
|
};
|
|
1037
|
+
/** Deprecated: In favour of VehiclePremiumChargeSecondPlug. */
|
|
1000
1038
|
export declare type CarPremiumChargeSecondPlug = {
|
|
1001
1039
|
/** Location of charge port. */
|
|
1002
1040
|
location?: Maybe<Scalars["String"]>;
|
|
1003
1041
|
/** Indicates if second charge port is optional. */
|
|
1004
1042
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
1005
1043
|
};
|
|
1044
|
+
/** Deprecated: In favour of VehiclePremiumChargeStandardOBC. */
|
|
1006
1045
|
export declare type CarPremiumChargeStandardOBC = {
|
|
1007
1046
|
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
1008
1047
|
power?: Maybe<Scalars["Float"]>;
|
|
@@ -1019,6 +1058,7 @@ export declare type CarPremiumChargeStandardOBC = {
|
|
|
1019
1058
|
/** Charging details for the standard OBC at several charging points. */
|
|
1020
1059
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
1021
1060
|
};
|
|
1061
|
+
/** Deprecated: In favour of VehiclePremiumDrivetrain. */
|
|
1022
1062
|
export declare type CarPremiumDrivetrain = {
|
|
1023
1063
|
/** Type of drivetrain. */
|
|
1024
1064
|
type?: Maybe<CarDrivetrain>;
|
|
@@ -1039,6 +1079,7 @@ export declare type CarPremiumDrivetrain = {
|
|
|
1039
1079
|
/** Indicates if torque field is estimated. */
|
|
1040
1080
|
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1041
1081
|
};
|
|
1082
|
+
/** Deprecated: In favour of VehiclePremiumEfficiency. */
|
|
1042
1083
|
export declare type CarPremiumEfficiency = {
|
|
1043
1084
|
/** Rated efficiency in WLTP combined cycle. */
|
|
1044
1085
|
wltp?: Maybe<CarPremiumEfficiencyWLTP>;
|
|
@@ -1049,6 +1090,7 @@ export declare type CarPremiumEfficiency = {
|
|
|
1049
1090
|
/** Car efficiency based on RealRange. */
|
|
1050
1091
|
real?: Maybe<CarPremiumEfficiencyReal>;
|
|
1051
1092
|
};
|
|
1093
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyNEDC. */
|
|
1052
1094
|
export declare type CarPremiumEfficiencyNEDC = {
|
|
1053
1095
|
/** Rated efficiency in NEDC combined cycle in kWh/100 km. */
|
|
1054
1096
|
value?: Maybe<Scalars["Float"]>;
|
|
@@ -1061,6 +1103,7 @@ export declare type CarPremiumEfficiencyNEDC = {
|
|
|
1061
1103
|
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated) in gr/km. */
|
|
1062
1104
|
co2?: Maybe<Scalars["Int"]>;
|
|
1063
1105
|
};
|
|
1106
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyProvider. */
|
|
1064
1107
|
export declare type CarPremiumEfficiencyReal = {
|
|
1065
1108
|
/** Car efficiency based on RealRange (useable battery/range) in kWh/100 km. */
|
|
1066
1109
|
value?: Maybe<Scalars["Float"]>;
|
|
@@ -1071,6 +1114,7 @@ export declare type CarPremiumEfficiencyReal = {
|
|
|
1071
1114
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1072
1115
|
best?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
1073
1116
|
};
|
|
1117
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyProviderValue. */
|
|
1074
1118
|
export declare type CarPremiumEfficiencyRealValue = {
|
|
1075
1119
|
/** Estimated value on highway or express roads. */
|
|
1076
1120
|
highway?: Maybe<Scalars["Float"]>;
|
|
@@ -1079,6 +1123,7 @@ export declare type CarPremiumEfficiencyRealValue = {
|
|
|
1079
1123
|
/** Estimated combined value. */
|
|
1080
1124
|
combined?: Maybe<Scalars["Float"]>;
|
|
1081
1125
|
};
|
|
1126
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyWLTP. */
|
|
1082
1127
|
export declare type CarPremiumEfficiencyWLTP = {
|
|
1083
1128
|
/** Rated efficiency in WLTP combined cycle in kWh/100 km. */
|
|
1084
1129
|
value?: Maybe<Scalars["Float"]>;
|
|
@@ -1091,6 +1136,7 @@ export declare type CarPremiumEfficiencyWLTP = {
|
|
|
1091
1136
|
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated) in gr/km. */
|
|
1092
1137
|
co2?: Maybe<Scalars["Int"]>;
|
|
1093
1138
|
};
|
|
1139
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyWLTPTEH. */
|
|
1094
1140
|
export declare type CarPremiumEfficiencyWLTPTEH = {
|
|
1095
1141
|
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
|
|
1096
1142
|
value?: Maybe<Scalars["Float"]>;
|
|
@@ -1103,6 +1149,7 @@ export declare type CarPremiumEfficiencyWLTPTEH = {
|
|
|
1103
1149
|
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated) in gr/km. */
|
|
1104
1150
|
co2?: Maybe<Scalars["Int"]>;
|
|
1105
1151
|
};
|
|
1152
|
+
/** Deprecated: In favour of VehiclePremiumChargePlug. */
|
|
1106
1153
|
export declare type CarPremiumFastCharge = {
|
|
1107
1154
|
/** Location of charge port. */
|
|
1108
1155
|
plug?: Maybe<CarPremiumChargePlug>;
|
|
@@ -1119,6 +1166,7 @@ export declare type CarPremiumFastCharge = {
|
|
|
1119
1166
|
/** Charging details for fast charging. */
|
|
1120
1167
|
table?: Maybe<Array<Maybe<CarPremiumFastChargeTable>>>;
|
|
1121
1168
|
};
|
|
1169
|
+
/** Deprecated: In favour of VehiclePremiumFastChargeTable. */
|
|
1122
1170
|
export declare type CarPremiumFastChargeTable = {
|
|
1123
1171
|
/** Charging details for fast charging (format: ChargerPlug-ChargerPower-AC/DC). */
|
|
1124
1172
|
format?: Maybe<Scalars["String"]>;
|
|
@@ -1133,6 +1181,7 @@ export declare type CarPremiumFastChargeTable = {
|
|
|
1133
1181
|
/** Indicates if average power during fast charging is limited by the vehicle. */
|
|
1134
1182
|
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1135
1183
|
};
|
|
1184
|
+
/** Deprecated: In favour of VehiclePremiumMedia. */
|
|
1136
1185
|
export declare type CarPremiumMedia = {
|
|
1137
1186
|
/** URL to detail page on EV database. */
|
|
1138
1187
|
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
@@ -1152,6 +1201,7 @@ export declare type CarPremiumMedia = {
|
|
|
1152
1201
|
*/
|
|
1153
1202
|
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
1154
1203
|
};
|
|
1204
|
+
/** Deprecated: In favour of VehiclePremiumNaming. */
|
|
1155
1205
|
export declare type CarPremiumNaming = {
|
|
1156
1206
|
/** Car manufacturer name. */
|
|
1157
1207
|
make?: Maybe<Scalars["String"]>;
|
|
@@ -1164,6 +1214,7 @@ export declare type CarPremiumNaming = {
|
|
|
1164
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. */
|
|
1165
1215
|
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
1166
1216
|
};
|
|
1217
|
+
/** Deprecated: In favour of VehiclePremiumPerformance. */
|
|
1167
1218
|
export declare type CarPremiumPerformance = {
|
|
1168
1219
|
/** Acceleration 0-100 km/h in seconds. */
|
|
1169
1220
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
@@ -1174,6 +1225,7 @@ export declare type CarPremiumPerformance = {
|
|
|
1174
1225
|
/** Indicates if top_speed field is estimated. */
|
|
1175
1226
|
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1176
1227
|
};
|
|
1228
|
+
/** Deprecated: In favour of VehiclePremiumPrice. */
|
|
1177
1229
|
export declare type CarPremiumPrice = {
|
|
1178
1230
|
/** Starting price for German market. */
|
|
1179
1231
|
de?: Maybe<CarPremiumPriceValue>;
|
|
@@ -1182,6 +1234,7 @@ export declare type CarPremiumPrice = {
|
|
|
1182
1234
|
/** Starting price for British market. */
|
|
1183
1235
|
uk?: Maybe<CarPremiumPriceValueWithGrant>;
|
|
1184
1236
|
};
|
|
1237
|
+
/** Deprecated: In favour of VehiclePremiumPrice.value */
|
|
1185
1238
|
export declare type CarPremiumPriceValue = {
|
|
1186
1239
|
/** Starting price for local market. */
|
|
1187
1240
|
value?: Maybe<Scalars["Int"]>;
|
|
@@ -1195,6 +1248,7 @@ export declare type CarPremiumPriceValue = {
|
|
|
1195
1248
|
*/
|
|
1196
1249
|
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1197
1250
|
};
|
|
1251
|
+
/** Deprecated: In favour of VehiclePremiumPriceValueWithGrant. */
|
|
1198
1252
|
export declare type CarPremiumPriceValueWithGrant = {
|
|
1199
1253
|
/** Starting price for local market. */
|
|
1200
1254
|
value?: Maybe<Scalars["Int"]>;
|
|
@@ -1210,6 +1264,7 @@ export declare type CarPremiumPriceValueWithGrant = {
|
|
|
1210
1264
|
*/
|
|
1211
1265
|
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1212
1266
|
};
|
|
1267
|
+
/** Deprecated: In favour of VehiclePremiumRange. */
|
|
1213
1268
|
export declare type CarPremiumRange = {
|
|
1214
1269
|
/** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km. */
|
|
1215
1270
|
wltp?: Maybe<Scalars["Int"]>;
|
|
@@ -1229,9 +1284,15 @@ export declare type CarPremiumRange = {
|
|
|
1229
1284
|
worst?: Maybe<CarPremiumRangeValue>;
|
|
1230
1285
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1231
1286
|
best?: Maybe<CarPremiumRangeValue>;
|
|
1232
|
-
/**
|
|
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
|
+
*/
|
|
1233
1293
|
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1234
1294
|
};
|
|
1295
|
+
/** Deprecated: In favour of VehiclePremiumRangeValue. */
|
|
1235
1296
|
export declare type CarPremiumRangeValue = {
|
|
1236
1297
|
/** Estimated value on highway or express roads. */
|
|
1237
1298
|
highway?: Maybe<Scalars["Int"]>;
|
|
@@ -1240,6 +1301,7 @@ export declare type CarPremiumRangeValue = {
|
|
|
1240
1301
|
/** Estimated combined value. */
|
|
1241
1302
|
combined?: Maybe<Scalars["Int"]>;
|
|
1242
1303
|
};
|
|
1304
|
+
/** Deprecated: In favour of VehiclePremiumRouting. */
|
|
1243
1305
|
export declare type CarPremiumRouting = {
|
|
1244
1306
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
1245
1307
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
@@ -1252,6 +1314,7 @@ export declare type CarPremiumRouting = {
|
|
|
1252
1314
|
/** Amount of petrol that an equivalent petrol car would consume in l/100 km. */
|
|
1253
1315
|
petrol_consumption?: Maybe<Scalars["Float"]>;
|
|
1254
1316
|
};
|
|
1317
|
+
/** Deprecated: In favour of VehiclePremiumRoutingConsumption. */
|
|
1255
1318
|
export declare type CarPremiumRoutingConsumption = {
|
|
1256
1319
|
/** Consumption, in kWh, of the auxiliaries. */
|
|
1257
1320
|
aux?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
@@ -1260,18 +1323,21 @@ export declare type CarPremiumRoutingConsumption = {
|
|
|
1260
1323
|
/** Consumption, in kWh, of the car in idle mode. */
|
|
1261
1324
|
idle?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
1262
1325
|
};
|
|
1326
|
+
/** Deprecated: In favour of VehiclePremiumRoutingConsumptionValue. */
|
|
1263
1327
|
export declare type CarPremiumRoutingConsumptionValue = {
|
|
1264
1328
|
/** Best (lowest) consumption in summer. */
|
|
1265
1329
|
best?: Maybe<Scalars["Float"]>;
|
|
1266
1330
|
/** Best (lowest) consumption in winter. */
|
|
1267
1331
|
worst?: Maybe<Scalars["Float"]>;
|
|
1268
1332
|
};
|
|
1333
|
+
/** Deprecated: In favour of VehiclePremiumSafety. */
|
|
1269
1334
|
export declare type CarPremiumSafety = {
|
|
1270
1335
|
/** Number of seats equipped with ISOFIX. */
|
|
1271
1336
|
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
1272
1337
|
/** EuroNCAP results. */
|
|
1273
1338
|
euro_ncap?: Maybe<CarPremiumSafetyEuroNcap>;
|
|
1274
1339
|
};
|
|
1340
|
+
/** Deprecated: In favour of VehiclePremiumSafetyEuroNcap. */
|
|
1275
1341
|
export declare type CarPremiumSafetyEuroNcap = {
|
|
1276
1342
|
/** EuroNCAP rating (out of 5 stars). */
|
|
1277
1343
|
rating?: Maybe<Scalars["Int"]>;
|
|
@@ -1286,7 +1352,7 @@ export declare type CarPremiumSafetyEuroNcap = {
|
|
|
1286
1352
|
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
1287
1353
|
sa?: Maybe<Scalars["Int"]>;
|
|
1288
1354
|
};
|
|
1289
|
-
/**
|
|
1355
|
+
/** Deprecated: In favour of VehiclePropulsion. */
|
|
1290
1356
|
export declare enum CarPropulsion {
|
|
1291
1357
|
/** All-wheel drive car. */
|
|
1292
1358
|
AWD = "AWD",
|
|
@@ -1295,6 +1361,7 @@ export declare enum CarPropulsion {
|
|
|
1295
1361
|
/** Rear-wheel drive car. */
|
|
1296
1362
|
REAR = "Rear"
|
|
1297
1363
|
}
|
|
1364
|
+
/** Deprecated: In favour of VehicleRange. */
|
|
1298
1365
|
export declare type CarRange = {
|
|
1299
1366
|
/** Index range in EV Database RealRange model in km. */
|
|
1300
1367
|
real?: Maybe<Scalars["Int"]>;
|
|
@@ -1304,11 +1371,17 @@ export declare type CarRange = {
|
|
|
1304
1371
|
worst?: Maybe<CarRangeValue>;
|
|
1305
1372
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1306
1373
|
best?: Maybe<CarRangeValue>;
|
|
1307
|
-
/**
|
|
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
|
+
*/
|
|
1308
1380
|
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1309
1381
|
/** @deprecated You will receive null values */
|
|
1310
1382
|
wltp?: Maybe<Scalars["Float"]>;
|
|
1311
1383
|
};
|
|
1384
|
+
/** Deprecated: In favour of VehicleRangeValue. */
|
|
1312
1385
|
export declare type CarRangeValue = {
|
|
1313
1386
|
/** Estimated value on the highway or express roads. */
|
|
1314
1387
|
highway?: Maybe<Scalars["Int"]>;
|
|
@@ -1317,11 +1390,12 @@ export declare type CarRangeValue = {
|
|
|
1317
1390
|
/** Estimated combined value. */
|
|
1318
1391
|
combined?: Maybe<Scalars["Int"]>;
|
|
1319
1392
|
};
|
|
1393
|
+
/** Deprecated: In favour of VehicleRouting. */
|
|
1320
1394
|
export declare type CarRouting = {
|
|
1321
1395
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
1322
1396
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
1323
1397
|
};
|
|
1324
|
-
/**
|
|
1398
|
+
/** Deprecated: In favour of VehicleStatus. */
|
|
1325
1399
|
export declare enum CarStatus {
|
|
1326
1400
|
/** Was just imported. */
|
|
1327
1401
|
NEW = "new",
|
|
@@ -1332,6 +1406,7 @@ export declare enum CarStatus {
|
|
|
1332
1406
|
/** Is removed and can not be used. */
|
|
1333
1407
|
REMOVED = "removed"
|
|
1334
1408
|
}
|
|
1409
|
+
/** Deprecated: In favour of VehicleVideo. */
|
|
1335
1410
|
export declare type CarVideo = {
|
|
1336
1411
|
/** Video id. */
|
|
1337
1412
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -1345,14 +1420,23 @@ export declare enum ChargeMode {
|
|
|
1345
1420
|
/** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80%. */
|
|
1346
1421
|
ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE"
|
|
1347
1422
|
}
|
|
1423
|
+
export declare type ChargeSpeed = {
|
|
1424
|
+
/** Value of the charge speed of the battery. */
|
|
1425
|
+
value: Scalars["Float"];
|
|
1426
|
+
/** Type of the charge speed of the battery. */
|
|
1427
|
+
type: ChargeSpeedUnit;
|
|
1428
|
+
/** Source of inputted data */
|
|
1429
|
+
source: TelemetryInputSource;
|
|
1430
|
+
};
|
|
1348
1431
|
export declare type ChargeSpeedInput = {
|
|
1349
1432
|
/** Value of the charge speed of the battery. */
|
|
1350
1433
|
value: Scalars["Float"];
|
|
1351
1434
|
/** Type of the charge speed of the battery. */
|
|
1352
1435
|
type: ChargeSpeedUnit;
|
|
1353
1436
|
/** Source of inputted data, defaults to 'manual'. */
|
|
1354
|
-
source?:
|
|
1437
|
+
source?: TelemetryInputSource;
|
|
1355
1438
|
};
|
|
1439
|
+
/** Charge speed unit. */
|
|
1356
1440
|
export declare enum ChargeSpeedUnit {
|
|
1357
1441
|
/** Return the charge speed in kilowatt hours. */
|
|
1358
1442
|
KILOWATT_HOUR = "kilowatt_hour",
|
|
@@ -1373,7 +1457,7 @@ export declare type ChargeTotalInput = {
|
|
|
1373
1457
|
export declare type Charger = {
|
|
1374
1458
|
/** Type of a charger. */
|
|
1375
1459
|
standard?: Maybe<ConnectorType>;
|
|
1376
|
-
/** Power of a charger. */
|
|
1460
|
+
/** Power of a charger, in kW. */
|
|
1377
1461
|
power?: Maybe<Scalars["Float"]>;
|
|
1378
1462
|
/** Price of a charger. */
|
|
1379
1463
|
price?: Maybe<Scalars["String"]>;
|
|
@@ -1384,6 +1468,7 @@ export declare type Charger = {
|
|
|
1384
1468
|
/** Total number of EVSEs grouped in a charger. */
|
|
1385
1469
|
total?: Maybe<Scalars["Int"]>;
|
|
1386
1470
|
};
|
|
1471
|
+
/** Status of a charger. */
|
|
1387
1472
|
export declare enum ChargerStatus {
|
|
1388
1473
|
/** The charger is free. */
|
|
1389
1474
|
FREE = "free",
|
|
@@ -1406,28 +1491,39 @@ export declare type ChargerStatuses = {
|
|
|
1406
1491
|
error?: Maybe<Scalars["Int"]>;
|
|
1407
1492
|
};
|
|
1408
1493
|
/**
|
|
1409
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
1410
|
-
*
|
|
1411
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
1494
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1495
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1496
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1497
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1412
1498
|
*/
|
|
1413
1499
|
export declare type ChargetripRange = {
|
|
1414
|
-
/**
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1500
|
+
/**
|
|
1501
|
+
* Range calculated using the worst conditions.
|
|
1502
|
+
* Worst conditions are based on -0°C, including use of heating.
|
|
1503
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1504
|
+
*/
|
|
1505
|
+
worst?: Maybe<Scalars["Float"]>;
|
|
1506
|
+
/**
|
|
1507
|
+
* Range calculated using the best conditions.
|
|
1508
|
+
* Best conditions are based on 25°C, including use of A/C.
|
|
1509
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1510
|
+
*/
|
|
1511
|
+
best?: Maybe<Scalars["Float"]>;
|
|
1418
1512
|
};
|
|
1419
1513
|
/**
|
|
1420
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
1421
|
-
*
|
|
1422
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
1514
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1515
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1516
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1517
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1423
1518
|
*/
|
|
1424
1519
|
export declare type ChargetripRangeworstArgs = {
|
|
1425
1520
|
unit?: Maybe<DistanceUnit>;
|
|
1426
1521
|
};
|
|
1427
1522
|
/**
|
|
1428
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
1429
|
-
*
|
|
1430
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
1523
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1524
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1525
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1526
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1431
1527
|
*/
|
|
1432
1528
|
export declare type ChargetripRangebestArgs = {
|
|
1433
1529
|
unit?: Maybe<DistanceUnit>;
|
|
@@ -1984,6 +2080,45 @@ export declare type CreateConnectedVehicleOptions = {
|
|
|
1984
2080
|
/** Scope */
|
|
1985
2081
|
scope?: Maybe<Array<ConnectScope>>;
|
|
1986
2082
|
};
|
|
2083
|
+
export declare type CreateRoute = {
|
|
2084
|
+
/** Vehicle used on a route. */
|
|
2085
|
+
vehicle: RouteVehicle;
|
|
2086
|
+
/** Origin of a route. */
|
|
2087
|
+
origin: RouteOriginFeaturePoint;
|
|
2088
|
+
/** Destination of a route. */
|
|
2089
|
+
destination: RouteDestinationFeaturePoint;
|
|
2090
|
+
/** Via points of a route. */
|
|
2091
|
+
via?: Maybe<Array<RouteViaFeaturePoint>>;
|
|
2092
|
+
/** Operator preferences for a route. When provided, prefers routes that use higher order operators. */
|
|
2093
|
+
operators?: Maybe<RouteOperatorPreferences>;
|
|
2094
|
+
/** Season of a route. */
|
|
2095
|
+
season: RouteSeason;
|
|
2096
|
+
/** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
|
|
2097
|
+
alternative_station_radius?: Maybe<Scalars["Int"]>;
|
|
2098
|
+
/** Departure time of a route. */
|
|
2099
|
+
departure_time?: Maybe<Scalars["DateTime"]>;
|
|
2100
|
+
};
|
|
2101
|
+
/** Input for the create route mutation. */
|
|
2102
|
+
export declare type CreateRouteInput = {
|
|
2103
|
+
/** Vehicle specific input. */
|
|
2104
|
+
vehicle: RouteVehicleInput;
|
|
2105
|
+
/** Origin of a route. */
|
|
2106
|
+
origin: RouteOriginFeaturePointInput;
|
|
2107
|
+
/** Destination of a route. */
|
|
2108
|
+
destination: RouteDestinationFeaturePointInput;
|
|
2109
|
+
/** Optional via points of a route. */
|
|
2110
|
+
via?: Maybe<Array<RouteViaFeaturePointInput>>;
|
|
2111
|
+
/** Prioritized operators for a route calculation. */
|
|
2112
|
+
operators?: Maybe<RouteOperatorPreferencesInput>;
|
|
2113
|
+
/** Optional flag to specify the season. */
|
|
2114
|
+
season?: Maybe<RouteSeason>;
|
|
2115
|
+
/** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
|
|
2116
|
+
alternative_station_radius?: Maybe<Scalars["Int"]>;
|
|
2117
|
+
/** Current elevation. */
|
|
2118
|
+
elevation?: Maybe<ElevationInput>;
|
|
2119
|
+
/** Route departure time. */
|
|
2120
|
+
departure_time?: Maybe<Scalars["DateTime"]>;
|
|
2121
|
+
};
|
|
1987
2122
|
/** Currency according to the ISO 4217 standard. */
|
|
1988
2123
|
export declare enum CurrencyUnit {
|
|
1989
2124
|
/** Return the currency in EUR. */
|
|
@@ -1991,7 +2126,138 @@ export declare enum CurrencyUnit {
|
|
|
1991
2126
|
/** Return the currency in USD. */
|
|
1992
2127
|
USD = "USD",
|
|
1993
2128
|
/** Return the currency in GBP. */
|
|
1994
|
-
GBP = "GBP"
|
|
2129
|
+
GBP = "GBP",
|
|
2130
|
+
AED = "AED",
|
|
2131
|
+
AFN = "AFN",
|
|
2132
|
+
ALL = "ALL",
|
|
2133
|
+
AMD = "AMD",
|
|
2134
|
+
ANG = "ANG",
|
|
2135
|
+
AOA = "AOA",
|
|
2136
|
+
ARS = "ARS",
|
|
2137
|
+
AUD = "AUD",
|
|
2138
|
+
AWG = "AWG",
|
|
2139
|
+
AZN = "AZN",
|
|
2140
|
+
BAM = "BAM",
|
|
2141
|
+
BBD = "BBD",
|
|
2142
|
+
BDT = "BDT",
|
|
2143
|
+
BGN = "BGN",
|
|
2144
|
+
BIF = "BIF",
|
|
2145
|
+
BMD = "BMD",
|
|
2146
|
+
BND = "BND",
|
|
2147
|
+
BOB = "BOB",
|
|
2148
|
+
BRL = "BRL",
|
|
2149
|
+
BSD = "BSD",
|
|
2150
|
+
BWP = "BWP",
|
|
2151
|
+
BYN = "BYN",
|
|
2152
|
+
BZD = "BZD",
|
|
2153
|
+
CAD = "CAD",
|
|
2154
|
+
CDF = "CDF",
|
|
2155
|
+
CHF = "CHF",
|
|
2156
|
+
CLP = "CLP",
|
|
2157
|
+
CNY = "CNY",
|
|
2158
|
+
COP = "COP",
|
|
2159
|
+
CRC = "CRC",
|
|
2160
|
+
CVE = "CVE",
|
|
2161
|
+
CZK = "CZK",
|
|
2162
|
+
DJF = "DJF",
|
|
2163
|
+
DKK = "DKK",
|
|
2164
|
+
DOP = "DOP",
|
|
2165
|
+
DZD = "DZD",
|
|
2166
|
+
EGP = "EGP",
|
|
2167
|
+
ETB = "ETB",
|
|
2168
|
+
FJD = "FJD",
|
|
2169
|
+
FKP = "FKP",
|
|
2170
|
+
GEL = "GEL",
|
|
2171
|
+
GIP = "GIP",
|
|
2172
|
+
GMD = "GMD",
|
|
2173
|
+
GNF = "GNF",
|
|
2174
|
+
GTQ = "GTQ",
|
|
2175
|
+
GYD = "GYD",
|
|
2176
|
+
HKD = "HKD",
|
|
2177
|
+
HNL = "HNL",
|
|
2178
|
+
HTG = "HTG",
|
|
2179
|
+
HUF = "HUF",
|
|
2180
|
+
IDR = "IDR",
|
|
2181
|
+
ILS = "ILS",
|
|
2182
|
+
INR = "INR",
|
|
2183
|
+
ISK = "ISK",
|
|
2184
|
+
JMD = "JMD",
|
|
2185
|
+
JPY = "JPY",
|
|
2186
|
+
KES = "KES",
|
|
2187
|
+
KGS = "KGS",
|
|
2188
|
+
KHR = "KHR",
|
|
2189
|
+
KMF = "KMF",
|
|
2190
|
+
KRW = "KRW",
|
|
2191
|
+
KYD = "KYD",
|
|
2192
|
+
KZT = "KZT",
|
|
2193
|
+
LAK = "LAK",
|
|
2194
|
+
LBP = "LBP",
|
|
2195
|
+
LKR = "LKR",
|
|
2196
|
+
LRD = "LRD",
|
|
2197
|
+
LSL = "LSL",
|
|
2198
|
+
MAD = "MAD",
|
|
2199
|
+
MDL = "MDL",
|
|
2200
|
+
MGA = "MGA",
|
|
2201
|
+
MKD = "MKD",
|
|
2202
|
+
MMK = "MMK",
|
|
2203
|
+
MNT = "MNT",
|
|
2204
|
+
MOP = "MOP",
|
|
2205
|
+
MUR = "MUR",
|
|
2206
|
+
MVR = "MVR",
|
|
2207
|
+
MWK = "MWK",
|
|
2208
|
+
MXN = "MXN",
|
|
2209
|
+
MYR = "MYR",
|
|
2210
|
+
MZN = "MZN",
|
|
2211
|
+
NAD = "NAD",
|
|
2212
|
+
NGN = "NGN",
|
|
2213
|
+
NIO = "NIO",
|
|
2214
|
+
NOK = "NOK",
|
|
2215
|
+
NPR = "NPR",
|
|
2216
|
+
NZD = "NZD",
|
|
2217
|
+
PAB = "PAB",
|
|
2218
|
+
PEN = "PEN",
|
|
2219
|
+
PGK = "PGK",
|
|
2220
|
+
PHP = "PHP",
|
|
2221
|
+
PKR = "PKR",
|
|
2222
|
+
PLN = "PLN",
|
|
2223
|
+
PYG = "PYG",
|
|
2224
|
+
QAR = "QAR",
|
|
2225
|
+
RON = "RON",
|
|
2226
|
+
RSD = "RSD",
|
|
2227
|
+
RUB = "RUB",
|
|
2228
|
+
RWF = "RWF",
|
|
2229
|
+
SAR = "SAR",
|
|
2230
|
+
SBD = "SBD",
|
|
2231
|
+
SCR = "SCR",
|
|
2232
|
+
SEK = "SEK",
|
|
2233
|
+
SGD = "SGD",
|
|
2234
|
+
SHP = "SHP",
|
|
2235
|
+
SLE = "SLE",
|
|
2236
|
+
SOS = "SOS",
|
|
2237
|
+
SRD = "SRD",
|
|
2238
|
+
STD = "STD",
|
|
2239
|
+
SZL = "SZL",
|
|
2240
|
+
THB = "THB",
|
|
2241
|
+
TJS = "TJS",
|
|
2242
|
+
TOP = "TOP",
|
|
2243
|
+
TRY = "TRY",
|
|
2244
|
+
TTD = "TTD",
|
|
2245
|
+
TWD = "TWD",
|
|
2246
|
+
TZS = "TZS",
|
|
2247
|
+
UAH = "UAH",
|
|
2248
|
+
UGX = "UGX",
|
|
2249
|
+
UYU = "UYU",
|
|
2250
|
+
UZS = "UZS",
|
|
2251
|
+
VND = "VND",
|
|
2252
|
+
VUV = "VUV",
|
|
2253
|
+
WST = "WST",
|
|
2254
|
+
XAF = "XAF",
|
|
2255
|
+
XCD = "XCD",
|
|
2256
|
+
XOF = "XOF",
|
|
2257
|
+
XPF = "XPF",
|
|
2258
|
+
YER = "YER",
|
|
2259
|
+
ZAR = "ZAR",
|
|
2260
|
+
ZMW = "ZMW"
|
|
1995
2261
|
}
|
|
1996
2262
|
export declare enum DimensionUnit {
|
|
1997
2263
|
/** Return the dimension in meters. */
|
|
@@ -2003,6 +2269,7 @@ export declare enum DimensionUnit {
|
|
|
2003
2269
|
/** Return the dimension in miles. */
|
|
2004
2270
|
MILE = "mile"
|
|
2005
2271
|
}
|
|
2272
|
+
/** Distance unit */
|
|
2006
2273
|
export declare enum DistanceUnit {
|
|
2007
2274
|
/** Return the distance in meters. */
|
|
2008
2275
|
METER = "meter",
|
|
@@ -2051,13 +2318,22 @@ export declare type EVSE = {
|
|
|
2051
2318
|
/** Custom properties of an EVSE. */
|
|
2052
2319
|
custom_properties?: Maybe<EvseCustomProperties>;
|
|
2053
2320
|
};
|
|
2321
|
+
export declare type ElectricityGenerationMethod = {
|
|
2322
|
+
/** Fraction of total electricity production. */
|
|
2323
|
+
fraction: Scalars["Float"];
|
|
2324
|
+
/** Emissions per kWh of the generation method. */
|
|
2325
|
+
intensity: Scalars["Float"];
|
|
2326
|
+
};
|
|
2327
|
+
export declare type ElectricityGenerationMethodintensityArgs = {
|
|
2328
|
+
unit?: Maybe<EmissionUnit>;
|
|
2329
|
+
};
|
|
2054
2330
|
export declare type ElevationInput = {
|
|
2055
2331
|
/** Value of the elevation. */
|
|
2056
2332
|
value: Scalars["Float"];
|
|
2057
2333
|
/** Type of the value of elevation. */
|
|
2058
2334
|
type: DistanceUnit;
|
|
2059
2335
|
/** Source of inputted data, defaults to 'manual'. */
|
|
2060
|
-
source?:
|
|
2336
|
+
source?: TelemetryInputSource;
|
|
2061
2337
|
};
|
|
2062
2338
|
export declare enum ElevationUnit {
|
|
2063
2339
|
/** Return the elevation in meters. */
|
|
@@ -2077,6 +2353,20 @@ export declare enum EmissionUnit {
|
|
|
2077
2353
|
/** Return the emissions in ounces. */
|
|
2078
2354
|
OUNCE = "ounce"
|
|
2079
2355
|
}
|
|
2356
|
+
export declare type EmissionsFactor = {
|
|
2357
|
+
/** The name of the area for which the emissions factor was calculated. */
|
|
2358
|
+
name: Scalars["String"];
|
|
2359
|
+
/** The type of area for which the emissions factor was calculated. */
|
|
2360
|
+
type: EmissionsFactorType;
|
|
2361
|
+
/** The base regional emissions factor in CO2e/kWh. */
|
|
2362
|
+
value: Scalars["Float"];
|
|
2363
|
+
};
|
|
2364
|
+
/** Emissions factor type. */
|
|
2365
|
+
export declare enum EmissionsFactorType {
|
|
2366
|
+
COUNTRY = "country",
|
|
2367
|
+
SUBREGION = "subregion",
|
|
2368
|
+
REGION = "region"
|
|
2369
|
+
}
|
|
2080
2370
|
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
2081
2371
|
export declare type EvseCustomProperties = {
|
|
2082
2372
|
/** OICP standard custom properties. */
|
|
@@ -2148,10 +2438,42 @@ export declare type FeaturePointPolygonPropertiesInput = {
|
|
|
2148
2438
|
/** Name of the location. */
|
|
2149
2439
|
name?: Maybe<Scalars["String"]>;
|
|
2150
2440
|
};
|
|
2151
|
-
/** GeoJSON Feature type */
|
|
2441
|
+
/** GeoJSON Feature type. */
|
|
2152
2442
|
export declare enum FeatureType {
|
|
2153
2443
|
FEATURE = "Feature"
|
|
2154
2444
|
}
|
|
2445
|
+
export declare type FluidEmissions = {
|
|
2446
|
+
/** Total fluid emissions. */
|
|
2447
|
+
total: Scalars["Float"];
|
|
2448
|
+
/** Wiper fluid maintenance emissions. */
|
|
2449
|
+
wiper: Scalars["Float"];
|
|
2450
|
+
/** Brake fluid maintenance emissions. */
|
|
2451
|
+
brake: Scalars["Float"];
|
|
2452
|
+
/** Powertrain coolant fluid maintenance emissions. */
|
|
2453
|
+
powertrain_coolant: Scalars["Float"];
|
|
2454
|
+
/** Transmission fluid maintenance emissions. */
|
|
2455
|
+
transmission: Scalars["Float"];
|
|
2456
|
+
/** Motor oil maintenance emissions. */
|
|
2457
|
+
motor_oil?: Maybe<Scalars["Float"]>;
|
|
2458
|
+
};
|
|
2459
|
+
export declare type FluidEmissionstotalArgs = {
|
|
2460
|
+
unit?: Maybe<EmissionUnit>;
|
|
2461
|
+
};
|
|
2462
|
+
export declare type FluidEmissionswiperArgs = {
|
|
2463
|
+
unit?: Maybe<EmissionUnit>;
|
|
2464
|
+
};
|
|
2465
|
+
export declare type FluidEmissionsbrakeArgs = {
|
|
2466
|
+
unit?: Maybe<EmissionUnit>;
|
|
2467
|
+
};
|
|
2468
|
+
export declare type FluidEmissionspowertrain_coolantArgs = {
|
|
2469
|
+
unit?: Maybe<EmissionUnit>;
|
|
2470
|
+
};
|
|
2471
|
+
export declare type FluidEmissionstransmissionArgs = {
|
|
2472
|
+
unit?: Maybe<EmissionUnit>;
|
|
2473
|
+
};
|
|
2474
|
+
export declare type FluidEmissionsmotor_oilArgs = {
|
|
2475
|
+
unit?: Maybe<EmissionUnit>;
|
|
2476
|
+
};
|
|
2155
2477
|
export declare enum FuelConsumptionUnit {
|
|
2156
2478
|
/** Return the fuel consumption in liters per 100 kilometers. */
|
|
2157
2479
|
LITERS_PER_100_KILOMETERS = "liters_per_100_kilometers",
|
|
@@ -2169,6 +2491,7 @@ export declare type GeometryPoint = {
|
|
|
2169
2491
|
type: PointType;
|
|
2170
2492
|
coordinates: Array<Scalars["Float"]>;
|
|
2171
2493
|
};
|
|
2494
|
+
/** Mode of heat pump. */
|
|
2172
2495
|
export declare enum HeatPumpMode {
|
|
2173
2496
|
/** Default to the vehicle configuration. */
|
|
2174
2497
|
DEFAULT = "default",
|
|
@@ -2267,9 +2590,9 @@ export declare type IsolineInput = {
|
|
|
2267
2590
|
quality?: Maybe<IsolineQuality>;
|
|
2268
2591
|
/** Include ferry connections. Single and multiple ferry connections increase the calculation time and the number of polygons. */
|
|
2269
2592
|
ferry_connections?: Maybe<IsolineFerryConnectionsType>;
|
|
2270
|
-
/** Battery state of charge.
|
|
2593
|
+
/** Battery state of charge. Default is usable battery kwh of the inputted vehicle. */
|
|
2271
2594
|
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
2272
|
-
/** Minimum final battery state of charge.
|
|
2595
|
+
/** Minimum final battery state of charge. Default is 0 */
|
|
2273
2596
|
final_state_of_charge?: Maybe<StateOfChargeInput>;
|
|
2274
2597
|
};
|
|
2275
2598
|
/** Granularity of the isoline. */
|
|
@@ -2419,6 +2742,8 @@ export declare type Mutation = {
|
|
|
2419
2742
|
* This is a premium feature, contact Chargetrip for more information.
|
|
2420
2743
|
*/
|
|
2421
2744
|
deleteUserReview: Review;
|
|
2745
|
+
/** [BETA] Create a new route from the route input and its ID. */
|
|
2746
|
+
createRoute: Scalars["ID"];
|
|
2422
2747
|
/** Create a new route from the route input and its ID */
|
|
2423
2748
|
newRoute?: Maybe<Scalars["ID"]>;
|
|
2424
2749
|
};
|
|
@@ -2455,6 +2780,9 @@ export declare type MutationaddReviewArgs = {
|
|
|
2455
2780
|
export declare type MutationdeleteUserReviewArgs = {
|
|
2456
2781
|
id: Scalars["ID"];
|
|
2457
2782
|
};
|
|
2783
|
+
export declare type MutationcreateRouteArgs = {
|
|
2784
|
+
input: CreateRouteInput;
|
|
2785
|
+
};
|
|
2458
2786
|
export declare type MutationnewRouteArgs = {
|
|
2459
2787
|
input?: Maybe<RequestInput>;
|
|
2460
2788
|
};
|
|
@@ -2497,7 +2825,7 @@ export declare type NavigationInstructionsInput = {
|
|
|
2497
2825
|
instructions_format: InstructionsFormat;
|
|
2498
2826
|
/** Preferred navigation instructions language. Default: en */
|
|
2499
2827
|
language?: Maybe<MappingLanguage>;
|
|
2500
|
-
/** Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6
|
|
2828
|
+
/** Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6. */
|
|
2501
2829
|
precision?: Maybe<Scalars["Int"]>;
|
|
2502
2830
|
};
|
|
2503
2831
|
/** Navigation meta information. */
|
|
@@ -2776,9 +3104,9 @@ export declare type OCPIEnvironmentalImpact = {
|
|
|
2776
3104
|
};
|
|
2777
3105
|
/** Categories of environmental impact values. */
|
|
2778
3106
|
export declare enum OCPIEnvironmentalImpactCategory {
|
|
2779
|
-
/** Produced nuclear waste in
|
|
3107
|
+
/** Produced nuclear waste in g/kWh. */
|
|
2780
3108
|
NUCLEAR_WASTE = "NUCLEAR_WASTE",
|
|
2781
|
-
/** Exhausted carbon dioxide in
|
|
3109
|
+
/** Exhausted carbon dioxide in g/kWh. */
|
|
2782
3110
|
CARBON_DIOXIDE = "CARBON_DIOXIDE"
|
|
2783
3111
|
}
|
|
2784
3112
|
/** Specifies one exceptional period for opening or access hours. */
|
|
@@ -3149,7 +3477,7 @@ export declare type OdometerInput = {
|
|
|
3149
3477
|
/** Type of the value of the vehicle's odometer. */
|
|
3150
3478
|
type: DistanceUnit;
|
|
3151
3479
|
/** Source of inputted data, defaults to 'manual'. */
|
|
3152
|
-
source?:
|
|
3480
|
+
source?: TelemetryInputSource;
|
|
3153
3481
|
};
|
|
3154
3482
|
/** Operator data which extends OCPI BusinessDetails. */
|
|
3155
3483
|
export declare type Operator = {
|
|
@@ -3205,6 +3533,14 @@ export declare type OutsideTempInput = {
|
|
|
3205
3533
|
/** Source of inputted data, defaults to 'manual'. */
|
|
3206
3534
|
source?: Maybe<TelemetryInputSource>;
|
|
3207
3535
|
};
|
|
3536
|
+
export declare type OutsideTemperatureInput = {
|
|
3537
|
+
/** Value of the outside temperature. */
|
|
3538
|
+
value: Scalars["Float"];
|
|
3539
|
+
/** Type of the value of the outside temperature. */
|
|
3540
|
+
type: TemperatureUnit;
|
|
3541
|
+
/** Source of inputted data. */
|
|
3542
|
+
source?: TelemetryInputSource;
|
|
3543
|
+
};
|
|
3208
3544
|
export declare enum ParkingCost {
|
|
3209
3545
|
/** Parking is free. */
|
|
3210
3546
|
FREE = "free",
|
|
@@ -3227,11 +3563,11 @@ export declare type PathSegment = {
|
|
|
3227
3563
|
/** State of charge, in kWh, of a route path segment. */
|
|
3228
3564
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
3229
3565
|
};
|
|
3230
|
-
/** A GeoJSON Point */
|
|
3566
|
+
/** A GeoJSON Point. */
|
|
3231
3567
|
export declare type Point = {
|
|
3232
|
-
/** Point type */
|
|
3568
|
+
/** Point type. */
|
|
3233
3569
|
type: PointType;
|
|
3234
|
-
/** The coordinates array with longitude as first value and latitude as second one */
|
|
3570
|
+
/** The coordinates array with longitude as first value and latitude as second one. */
|
|
3235
3571
|
coordinates: Array<Scalars["Float"]>;
|
|
3236
3572
|
};
|
|
3237
3573
|
/** A GeoJSON Point input. */
|
|
@@ -3241,7 +3577,7 @@ export declare type PointInput = {
|
|
|
3241
3577
|
/** Coordinates [longitude, latitude]. */
|
|
3242
3578
|
coordinates: Array<Scalars["Float"]>;
|
|
3243
3579
|
};
|
|
3244
|
-
/** GeoJSON Point type */
|
|
3580
|
+
/** GeoJSON Point type. */
|
|
3245
3581
|
export declare enum PointType {
|
|
3246
3582
|
POINT = "Point"
|
|
3247
3583
|
}
|
|
@@ -3250,6 +3586,11 @@ export declare type PolygonProperties = {
|
|
|
3250
3586
|
/** Index of the feature inside the list. */
|
|
3251
3587
|
index?: Maybe<Scalars["Int"]>;
|
|
3252
3588
|
};
|
|
3589
|
+
/** Number of decimals for a polyline. */
|
|
3590
|
+
export declare enum PolylineInputDecimals {
|
|
3591
|
+
FIVE = "five",
|
|
3592
|
+
SIX = "six"
|
|
3593
|
+
}
|
|
3253
3594
|
export declare type PowerInput = {
|
|
3254
3595
|
/** Value of the positive or negative power. When negative the vehicle is charging. */
|
|
3255
3596
|
value: Scalars["Float"];
|
|
@@ -3286,23 +3627,13 @@ export declare enum PowerUnit {
|
|
|
3286
3627
|
/** Return the power in horsepower. */
|
|
3287
3628
|
HORSEPOWER = "horsepower"
|
|
3288
3629
|
}
|
|
3630
|
+
/** Pressure units. */
|
|
3289
3631
|
export declare enum PressureUnit {
|
|
3290
3632
|
/** Return the pressure in bar. */
|
|
3291
3633
|
BAR = "bar",
|
|
3292
3634
|
/** Return the pressure in pounds per square inch. */
|
|
3293
3635
|
POUNDS_PER_SQUARE_INCH = "pounds_per_square_inch"
|
|
3294
3636
|
}
|
|
3295
|
-
/** The price model. */
|
|
3296
|
-
export declare type Price = {
|
|
3297
|
-
/** The value of the price. */
|
|
3298
|
-
value?: Maybe<Scalars["String"]>;
|
|
3299
|
-
/** The currency of the price. */
|
|
3300
|
-
currency?: Maybe<Scalars["String"]>;
|
|
3301
|
-
/** The pricing model. */
|
|
3302
|
-
model?: Maybe<Scalars["String"]>;
|
|
3303
|
-
/** The value of the price which should be display by the frontend. */
|
|
3304
|
-
displayValue?: Maybe<Scalars["String"]>;
|
|
3305
|
-
};
|
|
3306
3637
|
export declare type Pricing = {
|
|
3307
3638
|
/** Unique ID of a price. */
|
|
3308
3639
|
id?: Maybe<Scalars["String"]>;
|
|
@@ -3350,11 +3681,11 @@ export declare type PricingListProduct = {
|
|
|
3350
3681
|
export declare type Query = {
|
|
3351
3682
|
/** Get a full list of amenities around a station */
|
|
3352
3683
|
amenityList?: Maybe<Array<Maybe<Amenity>>>;
|
|
3353
|
-
/**
|
|
3684
|
+
/** Deprecated: In favor of vehicle. */
|
|
3354
3685
|
car?: Maybe<Car>;
|
|
3355
|
-
/**
|
|
3686
|
+
/** Deprecated: In favor of VehiclePremium. */
|
|
3356
3687
|
carPremium?: Maybe<CarPremium>;
|
|
3357
|
-
/**
|
|
3688
|
+
/** Deprecated: In favor of VehicleList. */
|
|
3358
3689
|
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
3359
3690
|
/** [BETA] Get a connected vehicles by id */
|
|
3360
3691
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
@@ -3366,11 +3697,11 @@ export declare type Query = {
|
|
|
3366
3697
|
isoline?: Maybe<Isoline>;
|
|
3367
3698
|
/** [BETA] Get a navigation session by ID */
|
|
3368
3699
|
navigation?: Maybe<Navigation>;
|
|
3369
|
-
/** Get a full list of operators */
|
|
3700
|
+
/** Get a full list of operators. */
|
|
3370
3701
|
operatorList?: Maybe<Array<Maybe<Operator>>>;
|
|
3371
|
-
/** Get information about an operator by its ID */
|
|
3702
|
+
/** Get information about an operator by its ID. */
|
|
3372
3703
|
operator?: Maybe<Operator>;
|
|
3373
|
-
/** Get all reviews of a station by the station ID */
|
|
3704
|
+
/** Get all reviews of a station by the station ID. */
|
|
3374
3705
|
reviewList?: Maybe<Array<Review>>;
|
|
3375
3706
|
/**
|
|
3376
3707
|
* Get all reviews of stations that were added by an authenticated user.
|
|
@@ -3380,6 +3711,10 @@ export declare type Query = {
|
|
|
3380
3711
|
userReviewList?: Maybe<Array<Review>>;
|
|
3381
3712
|
/** Get a route by ID */
|
|
3382
3713
|
route?: Maybe<Route>;
|
|
3714
|
+
/** [BETA] Get a route by ID. */
|
|
3715
|
+
getRoute: RouteResponse;
|
|
3716
|
+
/** [BETA] Get emissions for a route. */
|
|
3717
|
+
getRouteEmissions: RouteDetailsEmissions;
|
|
3383
3718
|
/** [BETA] Emissions profile for route. */
|
|
3384
3719
|
routeEmissions: RouteEmissions;
|
|
3385
3720
|
/** Retrieve information about a route path segment */
|
|
@@ -3392,17 +3727,17 @@ export declare type Query = {
|
|
|
3392
3727
|
stationList?: Maybe<Array<Maybe<Station>>>;
|
|
3393
3728
|
/** Search for stations around a GeoJSON point with a specific distance in meters. */
|
|
3394
3729
|
stationAround?: Maybe<Array<Maybe<Station>>>;
|
|
3395
|
-
/** Get information about a tariff by the tariff ID */
|
|
3730
|
+
/** Get information about a tariff by the tariff ID. */
|
|
3396
3731
|
tariff?: Maybe<OCPITariff>;
|
|
3397
|
-
/** Get the full list of tariffs */
|
|
3732
|
+
/** Get the full list of tariffs. */
|
|
3398
3733
|
tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
3399
3734
|
/** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
|
|
3400
3735
|
navigationMapping?: Maybe<Scalars["JSON"]>;
|
|
3401
|
-
/**
|
|
3736
|
+
/** Get information about a vehicle by its ID. */
|
|
3402
3737
|
vehicle?: Maybe<Vehicle>;
|
|
3403
|
-
/**
|
|
3738
|
+
/** Vehicle premium data provides even more information about your vehicle: tire pressure, prices, drivetrain data, and more. Please contact us for access to premium data. */
|
|
3404
3739
|
vehiclePremium?: Maybe<VehiclePremium>;
|
|
3405
|
-
/**
|
|
3740
|
+
/** Get a full list of vehicles. */
|
|
3406
3741
|
vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
|
|
3407
3742
|
};
|
|
3408
3743
|
export declare type QueryamenityListArgs = {
|
|
@@ -3461,6 +3796,13 @@ export declare type QueryuserReviewListArgs = {
|
|
|
3461
3796
|
export declare type QueryrouteArgs = {
|
|
3462
3797
|
id: Scalars["ID"];
|
|
3463
3798
|
};
|
|
3799
|
+
export declare type QuerygetRouteArgs = {
|
|
3800
|
+
id: Scalars["ID"];
|
|
3801
|
+
};
|
|
3802
|
+
export declare type QuerygetRouteEmissionsArgs = {
|
|
3803
|
+
route_id: Scalars["ID"];
|
|
3804
|
+
route_details_id: Scalars["ID"];
|
|
3805
|
+
};
|
|
3464
3806
|
export declare type QueryrouteEmissionsArgs = {
|
|
3465
3807
|
route_id: Scalars["ID"];
|
|
3466
3808
|
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
@@ -3532,7 +3874,7 @@ export declare type RequestEv = {
|
|
|
3532
3874
|
adapters?: Maybe<Array<Maybe<RequestEvPlug>>>;
|
|
3533
3875
|
/** Minimum desired power of chargers. */
|
|
3534
3876
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3535
|
-
/** Climate is on.
|
|
3877
|
+
/** Climate is on. */
|
|
3536
3878
|
climate?: Maybe<Scalars["Boolean"]>;
|
|
3537
3879
|
/** Vehicle Heat Pump configuration. */
|
|
3538
3880
|
heatPump?: Maybe<HeatPumpMode>;
|
|
@@ -3603,7 +3945,7 @@ export declare type RequestEvCabinInput = {
|
|
|
3603
3945
|
desiredTemperature?: Maybe<TemperatureInput>;
|
|
3604
3946
|
};
|
|
3605
3947
|
export declare type RequestEvConsumption = {
|
|
3606
|
-
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in
|
|
3948
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc */
|
|
3607
3949
|
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3608
3950
|
/**
|
|
3609
3951
|
* Consumption, in kWh, of the auxiliaries.
|
|
@@ -3622,7 +3964,7 @@ export declare type RequestEvConsumption = {
|
|
|
3622
3964
|
idle?: Maybe<CarConsumption>;
|
|
3623
3965
|
};
|
|
3624
3966
|
export declare type RequestEvConsumptionInput = {
|
|
3625
|
-
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in
|
|
3967
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc. */
|
|
3626
3968
|
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3627
3969
|
/** Deprecated in favor of auxiliary. */
|
|
3628
3970
|
aux?: Maybe<CarConsumptionInput>;
|
|
@@ -3642,7 +3984,7 @@ export declare type RequestEvInput = {
|
|
|
3642
3984
|
adapters?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
|
|
3643
3985
|
/** Minimum desired power of chargers. */
|
|
3644
3986
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3645
|
-
/** Flag which indicates if the climate is on.
|
|
3987
|
+
/** Flag which indicates if the climate is on. */
|
|
3646
3988
|
climate?: Maybe<Scalars["Boolean"]>;
|
|
3647
3989
|
/** Vehicle Heat Pump configuration. */
|
|
3648
3990
|
heatPump?: Maybe<HeatPumpMode>;
|
|
@@ -3706,7 +4048,7 @@ export declare type RequestRoute = {
|
|
|
3706
4048
|
operators?: Maybe<RouteOperators>;
|
|
3707
4049
|
/** Season. */
|
|
3708
4050
|
season?: Maybe<RouteSeason>;
|
|
3709
|
-
/** Percentage for the minimum limit of the battery capacity before a recharge. The value should be between 0 and 60,
|
|
4051
|
+
/** Percentage for the minimum limit of the battery capacity before a recharge. The value should be between 0 and 60. When omitted, the project configuration is used. */
|
|
3710
4052
|
safeRiskMargin?: Maybe<Scalars["Int"]>;
|
|
3711
4053
|
/** Origin of a route. */
|
|
3712
4054
|
origin?: Maybe<FeaturePoint>;
|
|
@@ -3736,7 +4078,7 @@ export declare type RequestRouteInput = {
|
|
|
3736
4078
|
operators?: Maybe<RouteOperatorsInput>;
|
|
3737
4079
|
/** Optional flag to specify the season. */
|
|
3738
4080
|
season?: Maybe<RouteSeason>;
|
|
3739
|
-
/** Percentage for a minimum limit of a battery capacity before a recharge. The value should be between 0 and 60,
|
|
4081
|
+
/** Percentage for a minimum limit of a battery capacity before a recharge. The value should be between 0 and 60. When omitted, the project configuration is used. */
|
|
3740
4082
|
safeRiskMargin?: Maybe<Scalars["Int"]>;
|
|
3741
4083
|
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */
|
|
3742
4084
|
chargeMode?: Maybe<ChargeMode>;
|
|
@@ -3770,7 +4112,7 @@ export declare type Review = {
|
|
|
3770
4112
|
/** Locale of a message. */
|
|
3771
4113
|
locale?: Maybe<Scalars["String"]>;
|
|
3772
4114
|
/** Vehicle that was provided/selected by a user. */
|
|
3773
|
-
ev?: Maybe<
|
|
4115
|
+
ev?: Maybe<Vehicle>;
|
|
3774
4116
|
/** Plug type that was provided/selected by a user. */
|
|
3775
4117
|
plugType?: Maybe<ConnectorType>;
|
|
3776
4118
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
@@ -3976,183 +4318,589 @@ export declare type RouteApp = {
|
|
|
3976
4318
|
/** ID of the app who requested a route. */
|
|
3977
4319
|
id?: Maybe<Scalars["ID"]>;
|
|
3978
4320
|
};
|
|
3979
|
-
export declare type
|
|
3980
|
-
/**
|
|
3981
|
-
|
|
3982
|
-
/**
|
|
3983
|
-
|
|
3984
|
-
/**
|
|
3985
|
-
|
|
3986
|
-
/** Distribution sea segment emissions. */
|
|
3987
|
-
maritime: RouteEmbeddedMaritimeEmissions;
|
|
3988
|
-
/** Distribution land segment emissions. */
|
|
3989
|
-
land: RouteEmbeddedLandEmissions;
|
|
3990
|
-
};
|
|
3991
|
-
export declare type RouteEmbeddedEmissionstotalArgs = {
|
|
3992
|
-
unit?: Maybe<EmissionUnit>;
|
|
3993
|
-
};
|
|
3994
|
-
export declare type RouteEmbeddedEmissionsdistributionArgs = {
|
|
3995
|
-
unit?: Maybe<EmissionUnit>;
|
|
3996
|
-
};
|
|
3997
|
-
export declare type RouteEmbeddedLandEmissions = {
|
|
3998
|
-
/** Total embedded land emissions. */
|
|
3999
|
-
total: Scalars["Float"];
|
|
4000
|
-
/** Distribution land segment emissions from fuel consumption. */
|
|
4001
|
-
fuel: Scalars["Float"];
|
|
4002
|
-
/** Distribution land segment lifecycle emissions. */
|
|
4003
|
-
lifecycle: Scalars["Float"];
|
|
4004
|
-
};
|
|
4005
|
-
export declare type RouteEmbeddedLandEmissionstotalArgs = {
|
|
4006
|
-
unit?: Maybe<EmissionUnit>;
|
|
4007
|
-
};
|
|
4008
|
-
export declare type RouteEmbeddedLandEmissionsfuelArgs = {
|
|
4009
|
-
unit?: Maybe<EmissionUnit>;
|
|
4010
|
-
};
|
|
4011
|
-
export declare type RouteEmbeddedLandEmissionslifecycleArgs = {
|
|
4012
|
-
unit?: Maybe<EmissionUnit>;
|
|
4013
|
-
};
|
|
4014
|
-
export declare type RouteEmbeddedManufacturingEmissions = {
|
|
4015
|
-
/** Total embedded manufacturing emissions. */
|
|
4016
|
-
total: Scalars["Float"];
|
|
4017
|
-
/** Body manufacturing emissions. */
|
|
4018
|
-
body: Scalars["Float"];
|
|
4019
|
-
/** Lithium ion battery manufacturing emissions. */
|
|
4020
|
-
battery?: Maybe<Scalars["Float"]>;
|
|
4321
|
+
export declare type RouteDestinationFeaturePoint = {
|
|
4322
|
+
/** Feature type. */
|
|
4323
|
+
type: FeatureType;
|
|
4324
|
+
/** Geometry of the feature. */
|
|
4325
|
+
geometry: Point;
|
|
4326
|
+
/** Optional object where additional properties can be specified. */
|
|
4327
|
+
properties?: Maybe<RouteDestinationProperties>;
|
|
4021
4328
|
};
|
|
4022
|
-
export declare type
|
|
4023
|
-
|
|
4329
|
+
export declare type RouteDestinationFeaturePointInput = {
|
|
4330
|
+
/** Feature type. */
|
|
4331
|
+
type: FeatureType;
|
|
4332
|
+
/** Geometry of the feature. */
|
|
4333
|
+
geometry: PointInput;
|
|
4334
|
+
/** Optional object where additional properties can be specified. */
|
|
4335
|
+
properties?: Maybe<RouteDestinationPropertiesInput>;
|
|
4336
|
+
};
|
|
4337
|
+
export declare type RouteDestinationProperties = {
|
|
4338
|
+
/** Data about the destination location. */
|
|
4339
|
+
location?: Maybe<RoutePropertiesLocation>;
|
|
4340
|
+
/** Data about the destination station. */
|
|
4341
|
+
station?: Maybe<RoutePropertiesStation>;
|
|
4342
|
+
};
|
|
4343
|
+
export declare type RouteDestinationPropertiesInput = {
|
|
4344
|
+
/** Data about the destination location. */
|
|
4345
|
+
location?: Maybe<RoutePropertiesLocationInput>;
|
|
4346
|
+
/** Data about the destination station. */
|
|
4347
|
+
station?: Maybe<RoutePropertiesStationInput>;
|
|
4348
|
+
};
|
|
4349
|
+
export declare type RouteDetails = {
|
|
4350
|
+
/** ID of a route computation. */
|
|
4351
|
+
id: Scalars["ID"];
|
|
4352
|
+
/** Type of a computed route. */
|
|
4353
|
+
type: RouteDetailsType;
|
|
4354
|
+
/** Aggregation of the connectors. */
|
|
4355
|
+
connectors: RouteDetailsConnectors;
|
|
4356
|
+
/** Total distance of a route. */
|
|
4357
|
+
distance: Scalars["Float"];
|
|
4358
|
+
/** Aggregation of all durations of a route. */
|
|
4359
|
+
durations: RouteDetailsDurations;
|
|
4360
|
+
/** Total energy used for a route in kilowatt hours. */
|
|
4361
|
+
consumption: Scalars["Float"];
|
|
4362
|
+
/** Range available at the beginning of a trip. */
|
|
4363
|
+
range_at_origin: Scalars["Float"];
|
|
4364
|
+
/** Range available at the end of a trip. */
|
|
4365
|
+
range_at_destination: Scalars["Float"];
|
|
4366
|
+
/** Text information about a route direction. */
|
|
4367
|
+
via?: Maybe<Scalars["String"]>;
|
|
4368
|
+
/** Polyline containing encoded coordinates. */
|
|
4369
|
+
polyline?: Maybe<Scalars["String"]>;
|
|
4370
|
+
/** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */
|
|
4371
|
+
path_plot: Array<RouteDetailsPathSegment>;
|
|
4372
|
+
/** Details about elevation on a route. */
|
|
4373
|
+
elevation: RouteDetailsElevation;
|
|
4374
|
+
/** Money saving information. */
|
|
4375
|
+
savings?: Maybe<RouteDetailsSavings>;
|
|
4376
|
+
/** Legs of a route. */
|
|
4377
|
+
legs: Array<RouteDetailsLeg>;
|
|
4378
|
+
alternative_stations: Array<RouteDetailsAlternativeStation>;
|
|
4379
|
+
/** Aggregation of tags over the current RouteDetails. Tags are available on legs and further subdivided over individual sections and maneuvers. */
|
|
4380
|
+
tags: Array<RouteDetailsTag>;
|
|
4381
|
+
/** Number of charges along a route. */
|
|
4382
|
+
charges: Scalars["Int"];
|
|
4024
4383
|
};
|
|
4025
|
-
export declare type
|
|
4026
|
-
unit?: Maybe<
|
|
4384
|
+
export declare type RouteDetailsdistanceArgs = {
|
|
4385
|
+
unit?: Maybe<DistanceUnit>;
|
|
4027
4386
|
};
|
|
4028
|
-
export declare type
|
|
4029
|
-
unit?: Maybe<
|
|
4387
|
+
export declare type RouteDetailsrange_at_originArgs = {
|
|
4388
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4030
4389
|
};
|
|
4031
|
-
export declare type
|
|
4032
|
-
|
|
4033
|
-
total: Scalars["Float"];
|
|
4034
|
-
/** Fuel related sea segment emissions. */
|
|
4035
|
-
fuel: Scalars["Float"];
|
|
4036
|
-
/** Port facility related sea segment emissions. */
|
|
4037
|
-
port: Scalars["Float"];
|
|
4038
|
-
/** Idling related sea segment emissions. */
|
|
4039
|
-
idle: Scalars["Float"];
|
|
4040
|
-
/** Distributed lifecycle related sea segment emissions. */
|
|
4041
|
-
lifecycle: Scalars["Float"];
|
|
4390
|
+
export declare type RouteDetailsrange_at_destinationArgs = {
|
|
4391
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4042
4392
|
};
|
|
4043
|
-
export declare type
|
|
4044
|
-
|
|
4393
|
+
export declare type RouteDetailspolylineArgs = {
|
|
4394
|
+
decimals: PolylineInputDecimals;
|
|
4045
4395
|
};
|
|
4046
|
-
export declare type
|
|
4047
|
-
|
|
4396
|
+
export declare type RouteDetailsAlternativeStation = {
|
|
4397
|
+
/** ID of a station. */
|
|
4398
|
+
id: Scalars["ID"];
|
|
4399
|
+
/** GeoJSON location of a station. */
|
|
4400
|
+
location: Point;
|
|
4401
|
+
/** Speed of a station. A station along a route can be either fast or turbo. */
|
|
4402
|
+
speed: StationSpeedType;
|
|
4403
|
+
/** Status of a station. */
|
|
4404
|
+
status: ChargerStatus;
|
|
4405
|
+
/** Ranking of an operator. */
|
|
4406
|
+
operator_ranking?: Maybe<Scalars["Int"]>;
|
|
4407
|
+
};
|
|
4408
|
+
/** Aggregation of the connectors on a route. */
|
|
4409
|
+
export declare type RouteDetailsConnectors = {
|
|
4410
|
+
/** Aggregation of every connector on a route. */
|
|
4411
|
+
all: RouteDetailsConnectorsValues;
|
|
4412
|
+
/** Aggregation of every usable connector on a route. */
|
|
4413
|
+
usable: RouteDetailsConnectorsValues;
|
|
4414
|
+
};
|
|
4415
|
+
/** Aggregation of the connectors on a route by status. */
|
|
4416
|
+
export declare type RouteDetailsConnectorsValues = {
|
|
4417
|
+
/** Total numbers of connectors. */
|
|
4418
|
+
total: Scalars["Int"];
|
|
4419
|
+
/** Number of connectors with status available. */
|
|
4420
|
+
available: Scalars["Int"];
|
|
4421
|
+
/** Number of connectors with status occupied. */
|
|
4422
|
+
occupied: Scalars["Int"];
|
|
4423
|
+
/** Number of connectors with status unknown. */
|
|
4424
|
+
unknown: Scalars["Int"];
|
|
4425
|
+
/** Number of connectors with status out of order. */
|
|
4426
|
+
out_of_order: Scalars["Int"];
|
|
4427
|
+
};
|
|
4428
|
+
/** Aggregation of all durations of a route. */
|
|
4429
|
+
export declare type RouteDetailsDurations = {
|
|
4430
|
+
/** Total duration, in seconds. */
|
|
4431
|
+
total: Scalars["Int"];
|
|
4432
|
+
/** Total duration charging, in seconds. */
|
|
4433
|
+
charging: Scalars["Int"];
|
|
4434
|
+
/** Total duration driving, in seconds. */
|
|
4435
|
+
driving: Scalars["Int"];
|
|
4436
|
+
/** Total duration stopped for a short stay, for example at a via point, in seconds. */
|
|
4437
|
+
stopover: Scalars["Int"];
|
|
4438
|
+
/** Total duration of ferry rides, in seconds. */
|
|
4439
|
+
ferry?: Maybe<Scalars["Int"]>;
|
|
4440
|
+
};
|
|
4441
|
+
export declare type RouteDetailsElevation = {
|
|
4442
|
+
/** Total value driving uphill on a route. */
|
|
4443
|
+
up: Scalars["Float"];
|
|
4444
|
+
/** Total value driving downhill on a route. */
|
|
4445
|
+
down: Scalars["Float"];
|
|
4446
|
+
/** Maximum elevation on a route. */
|
|
4447
|
+
maximum: Scalars["Float"];
|
|
4448
|
+
/** Minimum elevation on a route. */
|
|
4449
|
+
minimum: Scalars["Float"];
|
|
4450
|
+
};
|
|
4451
|
+
export declare type RouteDetailsElevationupArgs = {
|
|
4452
|
+
unit?: Maybe<DistanceUnit>;
|
|
4048
4453
|
};
|
|
4049
|
-
export declare type
|
|
4050
|
-
unit?: Maybe<
|
|
4454
|
+
export declare type RouteDetailsElevationdownArgs = {
|
|
4455
|
+
unit?: Maybe<DistanceUnit>;
|
|
4051
4456
|
};
|
|
4052
|
-
export declare type
|
|
4053
|
-
unit?: Maybe<
|
|
4457
|
+
export declare type RouteDetailsElevationmaximumArgs = {
|
|
4458
|
+
unit?: Maybe<DistanceUnit>;
|
|
4054
4459
|
};
|
|
4055
|
-
export declare type
|
|
4056
|
-
unit?: Maybe<
|
|
4460
|
+
export declare type RouteDetailsElevationminimumArgs = {
|
|
4461
|
+
unit?: Maybe<DistanceUnit>;
|
|
4057
4462
|
};
|
|
4058
|
-
export declare type
|
|
4463
|
+
export declare type RouteDetailsEmissions = {
|
|
4059
4464
|
/** ID of the route for which we retrieve the emissions profile. */
|
|
4060
4465
|
route_id: Scalars["ID"];
|
|
4061
|
-
/** ID of the route alternative for which we retrieve the emissions profile. */
|
|
4062
4466
|
route_alternative_id: Scalars["ID"];
|
|
4063
4467
|
/** Emissions profile for the vehicle used in route. */
|
|
4064
4468
|
route_vehicle: RouteVehicleEmissions;
|
|
4065
|
-
/** Emissions profile for an equivalent internal combustion engine vehicle. */
|
|
4066
4469
|
internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;
|
|
4470
|
+
/** Estimated GHG emissions saved by a user driving this route with the electric vehicle in grams of CO2e. */
|
|
4471
|
+
co2e_saved: Scalars["Float"];
|
|
4067
4472
|
};
|
|
4068
|
-
export declare type
|
|
4473
|
+
export declare type RouteDetailsEmissionsinternal_combustion_vehicleArgs = {
|
|
4069
4474
|
fuel_type?: Maybe<RouteOperationalFuelType>;
|
|
4070
4475
|
};
|
|
4071
|
-
export declare type
|
|
4072
|
-
/** Total end of life emissions. */
|
|
4073
|
-
total: Scalars["Float"];
|
|
4074
|
-
/** Total fluid related end of life emissions. */
|
|
4075
|
-
fluids: RouteEndOfLifeFluidsEmissions;
|
|
4076
|
-
/** Battery related end of life emissions. */
|
|
4077
|
-
battery: Scalars["Float"];
|
|
4078
|
-
/** Tire related end of life emissions. */
|
|
4079
|
-
tires: Scalars["Float"];
|
|
4080
|
-
/** Body end of life emissions. */
|
|
4081
|
-
body: Scalars["Float"];
|
|
4082
|
-
/** Transport end of life emissions. */
|
|
4083
|
-
transport: Scalars["Float"];
|
|
4084
|
-
};
|
|
4085
|
-
export declare type RouteEndOfLifeEmissionstotalArgs = {
|
|
4086
|
-
unit?: Maybe<EmissionUnit>;
|
|
4087
|
-
};
|
|
4088
|
-
export declare type RouteEndOfLifeEmissionsbatteryArgs = {
|
|
4089
|
-
unit?: Maybe<EmissionUnit>;
|
|
4090
|
-
};
|
|
4091
|
-
export declare type RouteEndOfLifeEmissionstiresArgs = {
|
|
4476
|
+
export declare type RouteDetailsEmissionsco2e_savedArgs = {
|
|
4092
4477
|
unit?: Maybe<EmissionUnit>;
|
|
4093
4478
|
};
|
|
4094
|
-
|
|
4095
|
-
|
|
4479
|
+
/** Leg of a route detail. */
|
|
4480
|
+
export declare type RouteDetailsLeg = {
|
|
4481
|
+
/** Distance from the start to the end of a leg. */
|
|
4482
|
+
distance: Scalars["Float"];
|
|
4483
|
+
/** Aggregation of all durations of a route leg. */
|
|
4484
|
+
durations: RouteDetailsDurations;
|
|
4485
|
+
/** Total energy used in a leg in kilowatt hours. */
|
|
4486
|
+
consumption: Scalars["Float"];
|
|
4487
|
+
/** Origin point location. */
|
|
4488
|
+
origin: RouteDetailsLegFeaturePoint;
|
|
4489
|
+
/** Destination point location. */
|
|
4490
|
+
destination: RouteDetailsLegFeaturePoint;
|
|
4491
|
+
/** Range at the origin of the leg. */
|
|
4492
|
+
range_at_origin: Scalars["Float"];
|
|
4493
|
+
/** Range at the destination of the leg. */
|
|
4494
|
+
range_at_destination: Scalars["Float"];
|
|
4495
|
+
/** Range after charging on the leg. */
|
|
4496
|
+
range_after_charge?: Maybe<Scalars["Float"]>;
|
|
4497
|
+
/** Type of a leg. */
|
|
4498
|
+
type: RouteDetailsLegType;
|
|
4499
|
+
/** 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. */
|
|
4500
|
+
name?: Maybe<Scalars["String"]>;
|
|
4501
|
+
/** Information about the station at the origin of this leg. */
|
|
4502
|
+
station?: Maybe<RouteDetailsLegStation>;
|
|
4503
|
+
/** Aggregation of the connectors on the leg. */
|
|
4504
|
+
connectors: RouteDetailsConnectors;
|
|
4505
|
+
/** Polyline containing encoded coordinates. */
|
|
4506
|
+
polyline: Scalars["String"];
|
|
4507
|
+
/** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */
|
|
4508
|
+
tags: Array<RouteDetailsTag>;
|
|
4509
|
+
/** Maneuvers of a leg - used to generate turn-by-turn instructions. */
|
|
4510
|
+
maneuvers: Array<RouteDetailsManeuver>;
|
|
4511
|
+
/** Road sections of a leg - divided by means of transportation. */
|
|
4512
|
+
sections: Array<RouteDetailsLegSection>;
|
|
4513
|
+
};
|
|
4514
|
+
/** Leg of a route detail. */
|
|
4515
|
+
export declare type RouteDetailsLegdistanceArgs = {
|
|
4516
|
+
unit?: Maybe<DistanceUnit>;
|
|
4096
4517
|
};
|
|
4097
|
-
|
|
4098
|
-
|
|
4518
|
+
/** Leg of a route detail. */
|
|
4519
|
+
export declare type RouteDetailsLegrange_at_originArgs = {
|
|
4520
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4099
4521
|
};
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
/** Total wiper fluid end of life emissions. */
|
|
4104
|
-
wiper: Scalars["Float"];
|
|
4105
|
-
/** Total brake fluid end of life emissions. */
|
|
4106
|
-
brake: Scalars["Float"];
|
|
4107
|
-
/** Total powertrain coolant fluid end of life emissions. */
|
|
4108
|
-
coolant: Scalars["Float"];
|
|
4109
|
-
/** Total transmission fluid end of life emissions. */
|
|
4110
|
-
transmission: Scalars["Float"];
|
|
4111
|
-
/** Total motor oil end of life emissions. */
|
|
4112
|
-
motor_oil?: Maybe<Scalars["Float"]>;
|
|
4522
|
+
/** Leg of a route detail. */
|
|
4523
|
+
export declare type RouteDetailsLegrange_at_destinationArgs = {
|
|
4524
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4113
4525
|
};
|
|
4114
|
-
|
|
4115
|
-
|
|
4526
|
+
/** Leg of a route detail. */
|
|
4527
|
+
export declare type RouteDetailsLegrange_after_chargeArgs = {
|
|
4528
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4116
4529
|
};
|
|
4117
|
-
|
|
4118
|
-
|
|
4530
|
+
/** Leg of a route detail. */
|
|
4531
|
+
export declare type RouteDetailsLegpolylineArgs = {
|
|
4532
|
+
decimals: PolylineInputDecimals;
|
|
4119
4533
|
};
|
|
4120
|
-
export declare type
|
|
4121
|
-
|
|
4534
|
+
export declare type RouteDetailsLegFeaturePoint = {
|
|
4535
|
+
/** Feature type. */
|
|
4536
|
+
type: FeatureType;
|
|
4537
|
+
/** Geometry of the feature. */
|
|
4538
|
+
geometry: Point;
|
|
4539
|
+
/** Properties of the feature. */
|
|
4540
|
+
properties?: Maybe<RouteDetailsLegFeatureProperties>;
|
|
4122
4541
|
};
|
|
4123
|
-
export declare type
|
|
4124
|
-
|
|
4542
|
+
export declare type RouteDetailsLegFeatureProperties = {
|
|
4543
|
+
/** Name of the location. */
|
|
4544
|
+
name?: Maybe<Scalars["String"]>;
|
|
4545
|
+
/** ID of the station. */
|
|
4546
|
+
station_id?: Maybe<Scalars["ID"]>;
|
|
4547
|
+
/** External ID of the station. */
|
|
4548
|
+
external_station_id?: Maybe<Scalars["ID"]>;
|
|
4549
|
+
/** Temperature at the location. */
|
|
4550
|
+
temperature?: Maybe<Scalars["Float"]>;
|
|
4551
|
+
/** Air pressure at the location. */
|
|
4552
|
+
air_pressure?: Maybe<Scalars["Float"]>;
|
|
4553
|
+
/** Solar irradiance at the location. */
|
|
4554
|
+
solar_irradiance?: Maybe<Scalars["Float"]>;
|
|
4555
|
+
/** Duration, in seconds, of time spent at this location. */
|
|
4556
|
+
duration?: Maybe<Scalars["Int"]>;
|
|
4557
|
+
/** Number of occupants present in the vehicle. */
|
|
4558
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
4559
|
+
/** Value of the current weight of the occupants. */
|
|
4560
|
+
total_occupant_weight?: Maybe<Scalars["Float"]>;
|
|
4561
|
+
/** Value of the current weight of the cargo. */
|
|
4562
|
+
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
4125
4563
|
};
|
|
4126
|
-
export declare type
|
|
4127
|
-
unit?: Maybe<
|
|
4564
|
+
export declare type RouteDetailsLegFeaturePropertiestemperatureArgs = {
|
|
4565
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4128
4566
|
};
|
|
4129
|
-
export declare type
|
|
4130
|
-
unit?: Maybe<
|
|
4567
|
+
export declare type RouteDetailsLegFeaturePropertiestotal_occupant_weightArgs = {
|
|
4568
|
+
unit?: Maybe<WeightUnit>;
|
|
4131
4569
|
};
|
|
4132
|
-
export declare type
|
|
4133
|
-
|
|
4134
|
-
points?: Maybe<RouteInstructionPoints>;
|
|
4135
|
-
/** Sign of the instruction. See `RouteInstructionSign`. */
|
|
4136
|
-
sign?: Maybe<RouteInstructionSign>;
|
|
4137
|
-
/** Name of the street on which the instruction is. */
|
|
4138
|
-
name?: Maybe<Scalars["String"]>;
|
|
4139
|
-
/** Distance, in meters, of the current route instruction. */
|
|
4140
|
-
distance?: Maybe<Scalars["Int"]>;
|
|
4141
|
-
/** Duration, in seconds, of the current route instruction. */
|
|
4142
|
-
time?: Maybe<Scalars["Int"]>;
|
|
4143
|
-
/** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null. */
|
|
4144
|
-
exit_number?: Maybe<Scalars["Int"]>;
|
|
4145
|
-
/** Curvature angle between the roundabout and street you exit the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise is null. */
|
|
4146
|
-
turn_angle?: Maybe<Scalars["Float"]>;
|
|
4570
|
+
export declare type RouteDetailsLegFeaturePropertiestotal_cargo_weightArgs = {
|
|
4571
|
+
unit?: Maybe<WeightUnit>;
|
|
4147
4572
|
};
|
|
4148
|
-
export declare type
|
|
4573
|
+
export declare type RouteDetailsLegManeuverPoints = {
|
|
4149
4574
|
/** Number of polyline points which are included in this instruction. */
|
|
4150
|
-
size
|
|
4151
|
-
/**
|
|
4152
|
-
interval
|
|
4575
|
+
size: Scalars["Int"];
|
|
4576
|
+
/** Interval of points that are included in this instruction, an array with 2 values, where the first value is the index of the polyline where the interval starts. The second value is where it ends. */
|
|
4577
|
+
interval: Array<Scalars["Int"]>;
|
|
4153
4578
|
};
|
|
4154
|
-
/**
|
|
4155
|
-
export declare enum
|
|
4579
|
+
/** Type of a maneuver indicating the main action. */
|
|
4580
|
+
export declare enum RouteDetailsLegManeuverType {
|
|
4581
|
+
UNKNOWN = "UNKNOWN",
|
|
4582
|
+
U_TURN_UNKNOWN = "U_TURN_UNKNOWN",
|
|
4583
|
+
U_TURN_LEFT = "U_TURN_LEFT",
|
|
4584
|
+
KEEP_LEFT = "KEEP_LEFT",
|
|
4585
|
+
LEAVE_ROUNDABOUT = "LEAVE_ROUNDABOUT",
|
|
4586
|
+
TURN_SHARP_LEFT = "TURN_SHARP_LEFT",
|
|
4587
|
+
TURN_LEFT = "TURN_LEFT",
|
|
4588
|
+
TURN_SLIGHT_LEFT = "TURN_SLIGHT_LEFT",
|
|
4589
|
+
CONTINUE_ON_STREET = "CONTINUE_ON_STREET",
|
|
4590
|
+
TURN_SLIGHT_RIGHT = "TURN_SLIGHT_RIGHT",
|
|
4591
|
+
TURN_RIGHT = "TURN_RIGHT",
|
|
4592
|
+
TURN_SHARP_RIGHT = "TURN_SHARP_RIGHT",
|
|
4593
|
+
FINISH = "FINISH",
|
|
4594
|
+
REACHED_VIA = "REACHED_VIA",
|
|
4595
|
+
REACHED_CHARGING_STATION = "REACHED_CHARGING_STATION",
|
|
4596
|
+
USE_ROUNDABOUT = "USE_ROUNDABOUT",
|
|
4597
|
+
KEEP_RIGHT = "KEEP_RIGHT",
|
|
4598
|
+
U_TURN_RIGHT = "U_TURN_RIGHT",
|
|
4599
|
+
PT_START_TRIP = "PT_START_TRIP",
|
|
4600
|
+
PT_TRANSFER = "PT_TRANSFER",
|
|
4601
|
+
PT_END_TRIP = "PT_END_TRIP",
|
|
4602
|
+
IGNORE = "IGNORE"
|
|
4603
|
+
}
|
|
4604
|
+
export declare type RouteDetailsLegSection = {
|
|
4605
|
+
/** Section type. */
|
|
4606
|
+
type: RouteDetailsLegSectionType;
|
|
4607
|
+
/** Origin point. */
|
|
4608
|
+
origin: RouteDetailsLegSectionFeaturePoint;
|
|
4609
|
+
/** Destination point. */
|
|
4610
|
+
destination: RouteDetailsLegSectionFeaturePoint;
|
|
4611
|
+
/** Aggregation of tags over the current section. */
|
|
4612
|
+
tags: Array<RouteDetailsTag>;
|
|
4613
|
+
/** Polyline containing encoded coordinates. */
|
|
4614
|
+
polyline?: Maybe<Scalars["String"]>;
|
|
4615
|
+
/** Distance from the start to the end of a section. */
|
|
4616
|
+
distance: Scalars["Float"];
|
|
4617
|
+
/** Total drive time from the start to the end of a section, in seconds. */
|
|
4618
|
+
duration: Scalars["Float"];
|
|
4619
|
+
/** Total energy used in a section in kilowatt-hours. */
|
|
4620
|
+
consumption: Scalars["Float"];
|
|
4621
|
+
};
|
|
4622
|
+
export declare type RouteDetailsLegSectionpolylineArgs = {
|
|
4623
|
+
decimals: PolylineInputDecimals;
|
|
4624
|
+
};
|
|
4625
|
+
export declare type RouteDetailsLegSectiondistanceArgs = {
|
|
4626
|
+
unit?: Maybe<DistanceUnit>;
|
|
4627
|
+
};
|
|
4628
|
+
export declare type RouteDetailsLegSectionFeaturePoint = {
|
|
4629
|
+
/** Feature type. */
|
|
4630
|
+
type: FeatureType;
|
|
4631
|
+
/** Geometry of the feature. */
|
|
4632
|
+
geometry: Point;
|
|
4633
|
+
/** Properties of the feature. */
|
|
4634
|
+
properties: RouteDetailsLegSectionFeaturePointProperties;
|
|
4635
|
+
};
|
|
4636
|
+
export declare type RouteDetailsLegSectionFeaturePointProperties = {
|
|
4637
|
+
/** Number of occupants present in the vehicle. */
|
|
4638
|
+
occupants: Scalars["Int"];
|
|
4639
|
+
/** Value of the current weight of the occupants. */
|
|
4640
|
+
total_occupant_weight?: Maybe<Scalars["Float"]>;
|
|
4641
|
+
/** Value of the current weight of the cargo. */
|
|
4642
|
+
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
4643
|
+
};
|
|
4644
|
+
export declare type RouteDetailsLegSectionFeaturePointPropertiestotal_occupant_weightArgs = {
|
|
4645
|
+
unit?: Maybe<WeightUnit>;
|
|
4646
|
+
};
|
|
4647
|
+
export declare type RouteDetailsLegSectionFeaturePointPropertiestotal_cargo_weightArgs = {
|
|
4648
|
+
unit?: Maybe<WeightUnit>;
|
|
4649
|
+
};
|
|
4650
|
+
/** Type of a route details leg section. */
|
|
4651
|
+
export declare enum RouteDetailsLegSectionType {
|
|
4652
|
+
DRIVING = "driving",
|
|
4653
|
+
FERRY = "ferry",
|
|
4654
|
+
WALKING = "walking"
|
|
4655
|
+
}
|
|
4656
|
+
export declare type RouteDetailsLegStation = {
|
|
4657
|
+
/** ID of a station. */
|
|
4658
|
+
station_id: Scalars["ID"];
|
|
4659
|
+
/** Name of a station. */
|
|
4660
|
+
station_name?: Maybe<Scalars["String"]>;
|
|
4661
|
+
/** ID of an operator. */
|
|
4662
|
+
operator_id: Scalars["ID"];
|
|
4663
|
+
/** Name of an operator. */
|
|
4664
|
+
operator_name?: Maybe<Scalars["String"]>;
|
|
4665
|
+
/** ID of the EVSE that was selected in a route. */
|
|
4666
|
+
evse_uid?: Maybe<Scalars["ID"]>;
|
|
4667
|
+
/** ID of the connector that was selected in a route. */
|
|
4668
|
+
connector_id?: Maybe<Scalars["ID"]>;
|
|
4669
|
+
/** List of amenities present at the station. */
|
|
4670
|
+
amenities?: Maybe<Array<AmenityType>>;
|
|
4671
|
+
};
|
|
4672
|
+
/** Type of a leg. */
|
|
4673
|
+
export declare enum RouteDetailsLegType {
|
|
4674
|
+
STATION = "station",
|
|
4675
|
+
STATION_VIA = "station_via",
|
|
4676
|
+
STATION_FINAL = "station_final",
|
|
4677
|
+
STATION_AMENITY = "station_amenity",
|
|
4678
|
+
VIA = "via",
|
|
4679
|
+
FINAL = "final"
|
|
4680
|
+
}
|
|
4681
|
+
export declare type RouteDetailsManeuver = {
|
|
4682
|
+
/** Type of instruction. */
|
|
4683
|
+
type: RouteDetailsLegManeuverType;
|
|
4684
|
+
/** Location of the maneuver. */
|
|
4685
|
+
location?: Maybe<RouteDetailsLegFeaturePoint>;
|
|
4686
|
+
/** Name of the street on which an instruction is. */
|
|
4687
|
+
name?: Maybe<Scalars["String"]>;
|
|
4688
|
+
/** Distance, in meters, of a route instruction. */
|
|
4689
|
+
distance: Scalars["Float"];
|
|
4690
|
+
/** Duration, in seconds, of a route instruction. */
|
|
4691
|
+
duration: Scalars["Int"];
|
|
4692
|
+
/** Information about the points on a polyline. */
|
|
4693
|
+
points: RouteDetailsLegManeuverPoints;
|
|
4694
|
+
/** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise this value is null. */
|
|
4695
|
+
exit_number?: Maybe<Scalars["Int"]>;
|
|
4696
|
+
/** Curvature angle between the roundabout and the exit of the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise this value is `null`. */
|
|
4697
|
+
turn_angle?: Maybe<Scalars["Float"]>;
|
|
4698
|
+
/** Aggregation of tags over the current maneuver. */
|
|
4699
|
+
tags?: Maybe<Array<RouteDetailsTag>>;
|
|
4700
|
+
};
|
|
4701
|
+
export declare type RouteDetailsManeuverdistanceArgs = {
|
|
4702
|
+
unit?: Maybe<DistanceUnit>;
|
|
4703
|
+
};
|
|
4704
|
+
export declare type RouteDetailsPathSegment = {
|
|
4705
|
+
/** Elevation value of a route path segment. */
|
|
4706
|
+
elevation: Scalars["Float"];
|
|
4707
|
+
/** Average speed of a route path segment. */
|
|
4708
|
+
average_speed: Scalars["Float"];
|
|
4709
|
+
/** Consumption, in kilowatt hours, of a route path segment. */
|
|
4710
|
+
consumption: Scalars["Float"];
|
|
4711
|
+
/** Distance of a route path segment. */
|
|
4712
|
+
distance: Scalars["Float"];
|
|
4713
|
+
/** Duration, in seconds, of a route path segment. */
|
|
4714
|
+
duration: Scalars["Float"];
|
|
4715
|
+
/** State of charge, in kilowatt hours, of a route path segment. */
|
|
4716
|
+
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
4717
|
+
/** Maximum vehicle speed of a route path segment. */
|
|
4718
|
+
max_speed: Scalars["Float"];
|
|
4719
|
+
};
|
|
4720
|
+
export declare type RouteDetailsPathSegmentelevationArgs = {
|
|
4721
|
+
unit?: Maybe<DistanceUnit>;
|
|
4722
|
+
};
|
|
4723
|
+
export declare type RouteDetailsPathSegmentaverage_speedArgs = {
|
|
4724
|
+
unit?: Maybe<SpeedUnit>;
|
|
4725
|
+
};
|
|
4726
|
+
export declare type RouteDetailsPathSegmentdistanceArgs = {
|
|
4727
|
+
unit?: Maybe<DistanceUnit>;
|
|
4728
|
+
};
|
|
4729
|
+
export declare type RouteDetailsPathSegmentstate_of_chargeArgs = {
|
|
4730
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4731
|
+
};
|
|
4732
|
+
export declare type RouteDetailsPathSegmentmax_speedArgs = {
|
|
4733
|
+
unit?: Maybe<SpeedUnit>;
|
|
4734
|
+
};
|
|
4735
|
+
/** Money saving information. */
|
|
4736
|
+
export declare type RouteDetailsSavings = {
|
|
4737
|
+
/** Money saved by a user driving this route with an electric vehicle. */
|
|
4738
|
+
money?: Maybe<Scalars["Float"]>;
|
|
4739
|
+
/** Average gas price with which the calculation was made. */
|
|
4740
|
+
average_gas_price?: Maybe<Scalars["Float"]>;
|
|
4741
|
+
/** Average energy price with which the calculation was made. */
|
|
4742
|
+
average_energy_price?: Maybe<Scalars["Float"]>;
|
|
4743
|
+
};
|
|
4744
|
+
/** Tags of a route. */
|
|
4745
|
+
export declare enum RouteDetailsTag {
|
|
4746
|
+
ROAD = "road",
|
|
4747
|
+
HIGHWAY = "highway",
|
|
4748
|
+
TOLL = "toll",
|
|
4749
|
+
FERRY = "ferry",
|
|
4750
|
+
WALKING = "walking",
|
|
4751
|
+
CROSSBORDER = "crossborder"
|
|
4752
|
+
}
|
|
4753
|
+
/** Types of a route. */
|
|
4754
|
+
export declare enum RouteDetailsType {
|
|
4755
|
+
FASTEST = "fastest",
|
|
4756
|
+
BEST_MATCHING = "best_matching",
|
|
4757
|
+
ALTERNATIVE = "alternative"
|
|
4758
|
+
}
|
|
4759
|
+
export declare type RouteEmbeddedEmissions = {
|
|
4760
|
+
/** Total embedded emissions. */
|
|
4761
|
+
total: Scalars["Float"];
|
|
4762
|
+
/** Manufacturing emissions. */
|
|
4763
|
+
manufacturing: RouteEmbeddedManufacturingEmissions;
|
|
4764
|
+
/** Total distribution emissions. */
|
|
4765
|
+
distribution: Scalars["Float"];
|
|
4766
|
+
/** Distribution sea segment emissions. */
|
|
4767
|
+
maritime: RouteEmbeddedMaritimeEmissions;
|
|
4768
|
+
/** Distribution land segment emissions. */
|
|
4769
|
+
land: RouteEmbeddedLandEmissions;
|
|
4770
|
+
};
|
|
4771
|
+
export declare type RouteEmbeddedEmissionstotalArgs = {
|
|
4772
|
+
unit?: Maybe<EmissionUnit>;
|
|
4773
|
+
};
|
|
4774
|
+
export declare type RouteEmbeddedEmissionsdistributionArgs = {
|
|
4775
|
+
unit?: Maybe<EmissionUnit>;
|
|
4776
|
+
};
|
|
4777
|
+
export declare type RouteEmbeddedLandEmissions = {
|
|
4778
|
+
/** Total embedded land segment emissions. */
|
|
4779
|
+
total: Scalars["Float"];
|
|
4780
|
+
/** Distribution land segment emissions from fuel consumption. */
|
|
4781
|
+
fuel: Scalars["Float"];
|
|
4782
|
+
/** Distribution land segment lifecycle emissions. */
|
|
4783
|
+
lifecycle: Scalars["Float"];
|
|
4784
|
+
};
|
|
4785
|
+
export declare type RouteEmbeddedLandEmissionstotalArgs = {
|
|
4786
|
+
unit?: Maybe<EmissionUnit>;
|
|
4787
|
+
};
|
|
4788
|
+
export declare type RouteEmbeddedLandEmissionsfuelArgs = {
|
|
4789
|
+
unit?: Maybe<EmissionUnit>;
|
|
4790
|
+
};
|
|
4791
|
+
export declare type RouteEmbeddedLandEmissionslifecycleArgs = {
|
|
4792
|
+
unit?: Maybe<EmissionUnit>;
|
|
4793
|
+
};
|
|
4794
|
+
export declare type RouteEmbeddedManufacturingEmissions = {
|
|
4795
|
+
/** Total embedded manufacturing emissions. */
|
|
4796
|
+
total: Scalars["Float"];
|
|
4797
|
+
/** Vehicle body manufacturing emissions. */
|
|
4798
|
+
body: Scalars["Float"];
|
|
4799
|
+
/** Lithium ion battery manufacturing emissions. */
|
|
4800
|
+
battery?: Maybe<Scalars["Float"]>;
|
|
4801
|
+
};
|
|
4802
|
+
export declare type RouteEmbeddedManufacturingEmissionstotalArgs = {
|
|
4803
|
+
unit?: Maybe<EmissionUnit>;
|
|
4804
|
+
};
|
|
4805
|
+
export declare type RouteEmbeddedManufacturingEmissionsbodyArgs = {
|
|
4806
|
+
unit?: Maybe<EmissionUnit>;
|
|
4807
|
+
};
|
|
4808
|
+
export declare type RouteEmbeddedManufacturingEmissionsbatteryArgs = {
|
|
4809
|
+
unit?: Maybe<EmissionUnit>;
|
|
4810
|
+
};
|
|
4811
|
+
export declare type RouteEmbeddedMaritimeEmissions = {
|
|
4812
|
+
/** Total embedded maritime emissions. */
|
|
4813
|
+
total: Scalars["Float"];
|
|
4814
|
+
/** Fuel related maritime segment emissions. */
|
|
4815
|
+
fuel: Scalars["Float"];
|
|
4816
|
+
/** Port facility related maritime segment emissions. */
|
|
4817
|
+
port: Scalars["Float"];
|
|
4818
|
+
/** Idling related maritime segment emissions. */
|
|
4819
|
+
idle: Scalars["Float"];
|
|
4820
|
+
/** Distributed lifecycle related maritime segment emissions. */
|
|
4821
|
+
lifecycle: Scalars["Float"];
|
|
4822
|
+
};
|
|
4823
|
+
export declare type RouteEmbeddedMaritimeEmissionstotalArgs = {
|
|
4824
|
+
unit?: Maybe<EmissionUnit>;
|
|
4825
|
+
};
|
|
4826
|
+
export declare type RouteEmbeddedMaritimeEmissionsfuelArgs = {
|
|
4827
|
+
unit?: Maybe<EmissionUnit>;
|
|
4828
|
+
};
|
|
4829
|
+
export declare type RouteEmbeddedMaritimeEmissionsportArgs = {
|
|
4830
|
+
unit?: Maybe<EmissionUnit>;
|
|
4831
|
+
};
|
|
4832
|
+
export declare type RouteEmbeddedMaritimeEmissionsidleArgs = {
|
|
4833
|
+
unit?: Maybe<EmissionUnit>;
|
|
4834
|
+
};
|
|
4835
|
+
export declare type RouteEmbeddedMaritimeEmissionslifecycleArgs = {
|
|
4836
|
+
unit?: Maybe<EmissionUnit>;
|
|
4837
|
+
};
|
|
4838
|
+
export declare type RouteEmissions = {
|
|
4839
|
+
/** ID of the route for which we retrieve the emissions profile. */
|
|
4840
|
+
route_id: Scalars["ID"];
|
|
4841
|
+
/** ID of the route alternative for which we retrieve the emissions profile. */
|
|
4842
|
+
route_alternative_id: Scalars["ID"];
|
|
4843
|
+
/** Emissions profile for the vehicle used in route. */
|
|
4844
|
+
route_vehicle: RouteVehicleEmissions;
|
|
4845
|
+
/** Emissions profile for an equivalent internal combustion engine vehicle. */
|
|
4846
|
+
internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;
|
|
4847
|
+
};
|
|
4848
|
+
export declare type RouteEmissionsinternal_combustion_vehicleArgs = {
|
|
4849
|
+
fuel_type?: Maybe<RouteOperationalFuelType>;
|
|
4850
|
+
};
|
|
4851
|
+
export declare type RouteEndOfLifeEmissions = {
|
|
4852
|
+
/** Total end of life emissions. */
|
|
4853
|
+
total: Scalars["Float"];
|
|
4854
|
+
/** Fluid related end of life emissions. */
|
|
4855
|
+
fluids: FluidEmissions;
|
|
4856
|
+
/** Battery related end of life emissions. */
|
|
4857
|
+
battery: Scalars["Float"];
|
|
4858
|
+
/** Tire related end of life emissions. */
|
|
4859
|
+
tires: Scalars["Float"];
|
|
4860
|
+
/** Body end of life emissions. */
|
|
4861
|
+
body: Scalars["Float"];
|
|
4862
|
+
/** Transport end of life emissions. */
|
|
4863
|
+
transport: Scalars["Float"];
|
|
4864
|
+
};
|
|
4865
|
+
export declare type RouteEndOfLifeEmissionstotalArgs = {
|
|
4866
|
+
unit?: Maybe<EmissionUnit>;
|
|
4867
|
+
};
|
|
4868
|
+
export declare type RouteEndOfLifeEmissionsbatteryArgs = {
|
|
4869
|
+
unit?: Maybe<EmissionUnit>;
|
|
4870
|
+
};
|
|
4871
|
+
export declare type RouteEndOfLifeEmissionstiresArgs = {
|
|
4872
|
+
unit?: Maybe<EmissionUnit>;
|
|
4873
|
+
};
|
|
4874
|
+
export declare type RouteEndOfLifeEmissionsbodyArgs = {
|
|
4875
|
+
unit?: Maybe<EmissionUnit>;
|
|
4876
|
+
};
|
|
4877
|
+
export declare type RouteEndOfLifeEmissionstransportArgs = {
|
|
4878
|
+
unit?: Maybe<EmissionUnit>;
|
|
4879
|
+
};
|
|
4880
|
+
export declare type RouteInstruction = {
|
|
4881
|
+
/** Information about the points on the polyline. */
|
|
4882
|
+
points?: Maybe<RouteInstructionPoints>;
|
|
4883
|
+
/** Sign of the instruction. See `RouteInstructionSign`. */
|
|
4884
|
+
sign?: Maybe<RouteInstructionSign>;
|
|
4885
|
+
/** Name of the street on which the instruction is. */
|
|
4886
|
+
name?: Maybe<Scalars["String"]>;
|
|
4887
|
+
/** Distance, in meters, of the current route instruction. */
|
|
4888
|
+
distance?: Maybe<Scalars["Int"]>;
|
|
4889
|
+
/** Duration, in seconds, of the current route instruction. */
|
|
4890
|
+
time?: Maybe<Scalars["Int"]>;
|
|
4891
|
+
/** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null. */
|
|
4892
|
+
exit_number?: Maybe<Scalars["Int"]>;
|
|
4893
|
+
/** Curvature angle between the roundabout and street you exit the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise is null. */
|
|
4894
|
+
turn_angle?: Maybe<Scalars["Float"]>;
|
|
4895
|
+
};
|
|
4896
|
+
export declare type RouteInstructionPoints = {
|
|
4897
|
+
/** Number of polyline points which are included in this instruction. */
|
|
4898
|
+
size?: Maybe<Scalars["Int"]>;
|
|
4899
|
+
/** The interval of points that are included in this instruction, an array with 2 values, where the first value is the index of the polyline where the interval starts. The second value is where it ends. */
|
|
4900
|
+
interval?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
4901
|
+
};
|
|
4902
|
+
/** Sign belonging to the instruction indicating the main maneuver. */
|
|
4903
|
+
export declare enum RouteInstructionSign {
|
|
4156
4904
|
UNKNOWN = "UNKNOWN",
|
|
4157
4905
|
U_TURN_UNKNOWN = "U_TURN_UNKNOWN",
|
|
4158
4906
|
U_TURN_LEFT = "U_TURN_LEFT",
|
|
@@ -4179,39 +4927,49 @@ export declare enum RouteInstructionSign {
|
|
|
4179
4927
|
export declare type RouteInternalCombustionVehicleEmissions = {
|
|
4180
4928
|
/** Total co2e emissions. */
|
|
4181
4929
|
total: Scalars["Float"];
|
|
4182
|
-
/**
|
|
4930
|
+
/** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */
|
|
4931
|
+
iso_14083_2023: Scalars["Float"];
|
|
4932
|
+
/** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */
|
|
4183
4933
|
embedded: RouteEmbeddedEmissions;
|
|
4184
4934
|
/** Operational emissions. */
|
|
4185
4935
|
operational: RouteInternalCombustionVehicleOperationalEmissions;
|
|
4186
4936
|
/** End of life emissions. */
|
|
4187
4937
|
end_of_life: RouteEndOfLifeEmissions;
|
|
4188
|
-
/** Emissions info for the legs in the order as
|
|
4938
|
+
/** Emissions info for the legs in the same order as in the route. */
|
|
4189
4939
|
legs: Array<RouteInternalCombustionVehicleLegEmissions>;
|
|
4190
4940
|
};
|
|
4191
4941
|
export declare type RouteInternalCombustionVehicleEmissionstotalArgs = {
|
|
4192
4942
|
unit?: Maybe<EmissionUnit>;
|
|
4193
4943
|
};
|
|
4944
|
+
export declare type RouteInternalCombustionVehicleEmissionsiso_14083_2023Args = {
|
|
4945
|
+
unit?: Maybe<EmissionUnit>;
|
|
4946
|
+
};
|
|
4194
4947
|
export declare type RouteInternalCombustionVehicleLegEmissions = {
|
|
4195
|
-
/** Total co2e emissions
|
|
4948
|
+
/** Total co2e emissions. */
|
|
4196
4949
|
total: Scalars["Float"];
|
|
4197
|
-
/**
|
|
4950
|
+
/** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */
|
|
4951
|
+
iso_14083_2023: Scalars["Float"];
|
|
4952
|
+
/** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */
|
|
4198
4953
|
embedded: RouteEmbeddedEmissions;
|
|
4199
|
-
/** Operational emissions
|
|
4954
|
+
/** Operational emissions. */
|
|
4200
4955
|
operational: RouteInternalCombustionVehicleOperationalEmissions;
|
|
4201
|
-
/** End of life emissions
|
|
4956
|
+
/** End of life emissions. */
|
|
4202
4957
|
end_of_life: RouteEndOfLifeEmissions;
|
|
4203
4958
|
};
|
|
4204
4959
|
export declare type RouteInternalCombustionVehicleLegEmissionstotalArgs = {
|
|
4205
4960
|
unit?: Maybe<EmissionUnit>;
|
|
4206
4961
|
};
|
|
4962
|
+
export declare type RouteInternalCombustionVehicleLegEmissionsiso_14083_2023Args = {
|
|
4963
|
+
unit?: Maybe<EmissionUnit>;
|
|
4964
|
+
};
|
|
4207
4965
|
export declare type RouteInternalCombustionVehicleOperationalEmissions = {
|
|
4208
4966
|
/** Total operational emissions. */
|
|
4209
4967
|
total: Scalars["Float"];
|
|
4210
|
-
/** Fuel emissions
|
|
4968
|
+
/** Fuel emissions. */
|
|
4211
4969
|
fuel: RouteOperationalFuelEmissions;
|
|
4212
|
-
/**
|
|
4970
|
+
/** Road infrastructure emissions. */
|
|
4213
4971
|
infrastructure: RouteOperationalInfrastructureEmissions;
|
|
4214
|
-
/**
|
|
4972
|
+
/** Maintenance emissions. */
|
|
4215
4973
|
maintenance: RouteOperationalMaintenanceEmissions;
|
|
4216
4974
|
};
|
|
4217
4975
|
export declare type RouteInternalCombustionVehicleOperationalEmissionstotalArgs = {
|
|
@@ -4284,9 +5042,69 @@ export declare type RouteLeg = {
|
|
|
4284
5042
|
export declare type RouteLegpolylineArgs = {
|
|
4285
5043
|
decimals?: Maybe<Scalars["Int"]>;
|
|
4286
5044
|
};
|
|
4287
|
-
export declare type RouteLegMeta = {
|
|
4288
|
-
/** Warnings that certain conditions specified in a route mutation are not respected. */
|
|
4289
|
-
warnings: Array<RouteMetaWarning>;
|
|
5045
|
+
export declare type RouteLegMeta = {
|
|
5046
|
+
/** Warnings that certain conditions specified in a route mutation are not respected. */
|
|
5047
|
+
warnings: Array<RouteMetaWarning>;
|
|
5048
|
+
};
|
|
5049
|
+
export declare type RouteLegOperationalElectricityEmissions = {
|
|
5050
|
+
/** Total electricity emissions. */
|
|
5051
|
+
total: Scalars["Float"];
|
|
5052
|
+
/** Base emissions without efficiency losses. */
|
|
5053
|
+
base_value: Scalars["Float"];
|
|
5054
|
+
/** Emissions for electricity lost in the battery. */
|
|
5055
|
+
battery_losses: Scalars["Float"];
|
|
5056
|
+
/** Emissions for electricity lost in transmission. */
|
|
5057
|
+
transmission_losses: Scalars["Float"];
|
|
5058
|
+
/** Emissions for electricity lost during charging. */
|
|
5059
|
+
chargepoint_losses: Scalars["Float"];
|
|
5060
|
+
/** Electricity efficiency information. */
|
|
5061
|
+
efficiency: RouteOperationalElectricityEmissionsEfficiency;
|
|
5062
|
+
/** Electricity intensity information. */
|
|
5063
|
+
intensity: RouteLegOperationalElectricityEmissionsIntensity;
|
|
5064
|
+
};
|
|
5065
|
+
export declare type RouteLegOperationalElectricityEmissionstotalArgs = {
|
|
5066
|
+
unit?: Maybe<EmissionUnit>;
|
|
5067
|
+
};
|
|
5068
|
+
export declare type RouteLegOperationalElectricityEmissionsbase_valueArgs = {
|
|
5069
|
+
unit?: Maybe<EmissionUnit>;
|
|
5070
|
+
};
|
|
5071
|
+
export declare type RouteLegOperationalElectricityEmissionsbattery_lossesArgs = {
|
|
5072
|
+
unit?: Maybe<EmissionUnit>;
|
|
5073
|
+
};
|
|
5074
|
+
export declare type RouteLegOperationalElectricityEmissionstransmission_lossesArgs = {
|
|
5075
|
+
unit?: Maybe<EmissionUnit>;
|
|
5076
|
+
};
|
|
5077
|
+
export declare type RouteLegOperationalElectricityEmissionschargepoint_lossesArgs = {
|
|
5078
|
+
unit?: Maybe<EmissionUnit>;
|
|
5079
|
+
};
|
|
5080
|
+
/** Electricity emission intensity for a leg */
|
|
5081
|
+
export declare type RouteLegOperationalElectricityEmissionsIntensity = {
|
|
5082
|
+
/** Total average electricity emissions intensity in unit CO2e/kWh. */
|
|
5083
|
+
total: Scalars["Float"];
|
|
5084
|
+
/** Base regional electricity emissions intensity for the leg. */
|
|
5085
|
+
base_regional_value: EmissionsFactor;
|
|
5086
|
+
/** Base regional electricity intensity used for the ISO 14083:2023 emissions estimation. */
|
|
5087
|
+
base_iso_14083_2023_regional_value: EmissionsFactor;
|
|
5088
|
+
/** Electricity mix for the leg. */
|
|
5089
|
+
energy_sources: RouteOperationalElectricityEnergySources;
|
|
5090
|
+
/** Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc. in unit CO2e/kWh. */
|
|
5091
|
+
infrastructure: Scalars["Float"];
|
|
5092
|
+
/** Estimated electricity demand at the time and place the electricity for this leg was obtained as a fraction of the annual average demand. */
|
|
5093
|
+
average_demand: Scalars["Float"];
|
|
5094
|
+
/** Fraction of regional power generation that is not affected by demand (is assumed to always be on). */
|
|
5095
|
+
base_load_fraction: Scalars["Float"];
|
|
5096
|
+
/** Season for which the leg was calculated. */
|
|
5097
|
+
season: RouteOperationalElectricitySeason;
|
|
5098
|
+
/** Climate for which the leg was calculated. */
|
|
5099
|
+
climate: RouteOperationalElectricityClimate;
|
|
5100
|
+
};
|
|
5101
|
+
/** Electricity emission intensity for a leg */
|
|
5102
|
+
export declare type RouteLegOperationalElectricityEmissionsIntensitytotalArgs = {
|
|
5103
|
+
unit?: Maybe<EmissionUnit>;
|
|
5104
|
+
};
|
|
5105
|
+
/** Electricity emission intensity for a leg */
|
|
5106
|
+
export declare type RouteLegOperationalElectricityEmissionsIntensityinfrastructureArgs = {
|
|
5107
|
+
unit?: Maybe<EmissionUnit>;
|
|
4290
5108
|
};
|
|
4291
5109
|
export declare type RouteMeta = {
|
|
4292
5110
|
/** Warnings that certain conditions specified in a route mutation are not respected. */
|
|
@@ -4300,6 +5118,16 @@ export declare type RouteMetaWarning = {
|
|
|
4300
5118
|
/** Optional JSON object containing data explaining the warning, for development purposes. */
|
|
4301
5119
|
data?: Maybe<Scalars["JSON"]>;
|
|
4302
5120
|
};
|
|
5121
|
+
export declare type RouteMetadata = {
|
|
5122
|
+
/** Refers to the x-app-id specified in the headers. */
|
|
5123
|
+
app_id: Scalars["ID"];
|
|
5124
|
+
/** Date when a route was created by a createRoute mutation. */
|
|
5125
|
+
created_at: Scalars["DateTime"];
|
|
5126
|
+
/** Last updated date of a route. */
|
|
5127
|
+
updated_at: Scalars["DateTime"];
|
|
5128
|
+
/** Length of time required to successfully calculate a route, in milliseconds. */
|
|
5129
|
+
computation_time?: Maybe<Scalars["Int"]>;
|
|
5130
|
+
};
|
|
4303
5131
|
/** Köppen climate classification. */
|
|
4304
5132
|
export declare enum RouteOperationalElectricityClimate {
|
|
4305
5133
|
/** Tropical rain forest climate. */
|
|
@@ -4369,7 +5197,7 @@ export declare type RouteOperationalElectricityEmissions = {
|
|
|
4369
5197
|
/** Total electricity emissions. */
|
|
4370
5198
|
total: Scalars["Float"];
|
|
4371
5199
|
/** Base emissions without efficiency losses. */
|
|
4372
|
-
|
|
5200
|
+
base_value: Scalars["Float"];
|
|
4373
5201
|
/** Emissions for electricity lost in the battery. */
|
|
4374
5202
|
battery_losses: Scalars["Float"];
|
|
4375
5203
|
/** Emissions for electricity lost in transmission. */
|
|
@@ -4377,14 +5205,14 @@ export declare type RouteOperationalElectricityEmissions = {
|
|
|
4377
5205
|
/** Emissions for electricity lost during charging. */
|
|
4378
5206
|
chargepoint_losses: Scalars["Float"];
|
|
4379
5207
|
/** Electricity efficiency information. */
|
|
4380
|
-
|
|
5208
|
+
efficiency: RouteOperationalElectricityEmissionsEfficiency;
|
|
4381
5209
|
/** Electricity intensity information. */
|
|
4382
|
-
|
|
5210
|
+
intensity: RouteOperationalElectricityEmissionsIntensity;
|
|
4383
5211
|
};
|
|
4384
5212
|
export declare type RouteOperationalElectricityEmissionstotalArgs = {
|
|
4385
5213
|
unit?: Maybe<EmissionUnit>;
|
|
4386
5214
|
};
|
|
4387
|
-
export declare type
|
|
5215
|
+
export declare type RouteOperationalElectricityEmissionsbase_valueArgs = {
|
|
4388
5216
|
unit?: Maybe<EmissionUnit>;
|
|
4389
5217
|
};
|
|
4390
5218
|
export declare type RouteOperationalElectricityEmissionsbattery_lossesArgs = {
|
|
@@ -4398,28 +5226,28 @@ export declare type RouteOperationalElectricityEmissionschargepoint_lossesArgs =
|
|
|
4398
5226
|
};
|
|
4399
5227
|
export declare type RouteOperationalElectricityEmissionsEfficiency = {
|
|
4400
5228
|
/** Average total electricity efficiency. */
|
|
4401
|
-
|
|
5229
|
+
total: Scalars["Float"];
|
|
4402
5230
|
/** Average efficiency of the battery. */
|
|
4403
|
-
|
|
4404
|
-
/** Average efficiency
|
|
4405
|
-
|
|
4406
|
-
/** Average base regional grid efficiency. */
|
|
4407
|
-
|
|
5231
|
+
battery: Scalars["Float"];
|
|
5232
|
+
/** Average estimated transmission efficiency using the base transmission efficiency adjusting for temperature. */
|
|
5233
|
+
transmission: Scalars["Float"];
|
|
5234
|
+
/** Average base regional grid transmission efficiency. */
|
|
5235
|
+
base_transmission: Scalars["Float"];
|
|
4408
5236
|
/** Average transmission efficiency change due to temperature. */
|
|
4409
|
-
|
|
5237
|
+
transmission_temperature_modifier: Scalars["Float"];
|
|
4410
5238
|
/** Average efficiency of the chargepoint. */
|
|
4411
|
-
|
|
4412
|
-
/** Average evse efficiency. */
|
|
4413
|
-
|
|
4414
|
-
/** Average breaker efficiency. */
|
|
4415
|
-
|
|
4416
|
-
/** Average power electronics unit efficiency. */
|
|
4417
|
-
|
|
4418
|
-
/** Average transformer efficiency. */
|
|
4419
|
-
|
|
5239
|
+
chargepoint: Scalars["Float"];
|
|
5240
|
+
/** Average evse (electric vehicle supply equipment) efficiency of the chargepoint. */
|
|
5241
|
+
evse: Scalars["Float"];
|
|
5242
|
+
/** Average circuit breaker efficiency of the chargepoint. */
|
|
5243
|
+
breaker: Scalars["Float"];
|
|
5244
|
+
/** Average power electronics unit efficiency of the chargepoint. */
|
|
5245
|
+
power_electronics_unit: Scalars["Float"];
|
|
5246
|
+
/** Average transformer efficiency of the chargepoint. */
|
|
5247
|
+
transformer: Scalars["Float"];
|
|
4420
5248
|
/** Change in chargepoint efficiency due to temperature. */
|
|
4421
|
-
|
|
4422
|
-
/** Average charging current in
|
|
5249
|
+
chargepoint_temperature_modifier: Scalars["Float"];
|
|
5250
|
+
/** Average charging current in amperes. */
|
|
4423
5251
|
average_charging_current: Scalars["Float"];
|
|
4424
5252
|
/** Average charging voltage in volts. */
|
|
4425
5253
|
average_charging_voltage: Scalars["Float"];
|
|
@@ -4434,53 +5262,61 @@ export declare type RouteOperationalElectricityEmissionsEfficiencyaverage_temper
|
|
|
4434
5262
|
export declare type RouteOperationalElectricityEmissionsEfficiencyaverage_regional_temperatureArgs = {
|
|
4435
5263
|
unit?: Maybe<TemperatureUnit>;
|
|
4436
5264
|
};
|
|
4437
|
-
|
|
4438
|
-
/** Fraction of coal production. */
|
|
4439
|
-
coal: Scalars["Float"];
|
|
4440
|
-
/** Fraction of gas production. */
|
|
4441
|
-
gas: Scalars["Float"];
|
|
4442
|
-
/** Fraction of hydroelectric production. */
|
|
4443
|
-
hydro: Scalars["Float"];
|
|
4444
|
-
/** Fraction of solar production. */
|
|
4445
|
-
solar: Scalars["Float"];
|
|
4446
|
-
/** Fraction of wind production. */
|
|
4447
|
-
wind: Scalars["Float"];
|
|
4448
|
-
/** Fraction of oil production. */
|
|
4449
|
-
oil: Scalars["Float"];
|
|
4450
|
-
/** Fraction of nuclear production. */
|
|
4451
|
-
nuclear: Scalars["Float"];
|
|
4452
|
-
/** Fraction of biofuel production. */
|
|
4453
|
-
biofuel: Scalars["Float"];
|
|
4454
|
-
/** Fraction of other misc renewable production. */
|
|
4455
|
-
other: Scalars["Float"];
|
|
4456
|
-
};
|
|
5265
|
+
/** Electricity emission intensity for the route */
|
|
4457
5266
|
export declare type RouteOperationalElectricityEmissionsIntensity = {
|
|
4458
|
-
/**
|
|
4459
|
-
|
|
4460
|
-
/**
|
|
4461
|
-
|
|
4462
|
-
/**
|
|
4463
|
-
|
|
4464
|
-
/** Average
|
|
4465
|
-
|
|
4466
|
-
/**
|
|
4467
|
-
|
|
4468
|
-
/**
|
|
4469
|
-
|
|
4470
|
-
/**
|
|
4471
|
-
average_electricity_demand: Scalars["Float"];
|
|
4472
|
-
/** Fraction of regional power generation that is not affected by demand (always on). */
|
|
5267
|
+
/** Total average electricity emissions intensity in unit CO2e/kWh. */
|
|
5268
|
+
total: Scalars["Float"];
|
|
5269
|
+
/** Average base regional electricity emissions intensity in unit CO2e/kWh. */
|
|
5270
|
+
average_base_regional_value: Scalars["Float"];
|
|
5271
|
+
/** Total electricity intensity used for iso 14083:2023 scope emissions estimate in unit CO2e/kWh. */
|
|
5272
|
+
iso_14083_2023: Scalars["Float"];
|
|
5273
|
+
/** Average electricity mix for the route. */
|
|
5274
|
+
energy_sources: RouteOperationalElectricityEnergySources;
|
|
5275
|
+
/** Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc. in unit CO2e/kWh. */
|
|
5276
|
+
infrastructure: Scalars["Float"];
|
|
5277
|
+
/** Average electricity demand at the time of route charges as a fraction of the annual average demand. */
|
|
5278
|
+
average_demand: Scalars["Float"];
|
|
5279
|
+
/** Fraction of regional power generation that is not affected by demand (is assumed to always be on). */
|
|
4473
5280
|
base_load_fraction: Scalars["Float"];
|
|
4474
5281
|
};
|
|
4475
|
-
|
|
5282
|
+
/** Electricity emission intensity for the route */
|
|
5283
|
+
export declare type RouteOperationalElectricityEmissionsIntensitytotalArgs = {
|
|
4476
5284
|
unit?: Maybe<EmissionUnit>;
|
|
4477
5285
|
};
|
|
4478
|
-
|
|
5286
|
+
/** Electricity emission intensity for the route */
|
|
5287
|
+
export declare type RouteOperationalElectricityEmissionsIntensityaverage_base_regional_valueArgs = {
|
|
4479
5288
|
unit?: Maybe<EmissionUnit>;
|
|
4480
5289
|
};
|
|
4481
|
-
|
|
5290
|
+
/** Electricity emission intensity for the route */
|
|
5291
|
+
export declare type RouteOperationalElectricityEmissionsIntensityiso_14083_2023Args = {
|
|
4482
5292
|
unit?: Maybe<EmissionUnit>;
|
|
4483
5293
|
};
|
|
5294
|
+
/** Electricity emission intensity for the route */
|
|
5295
|
+
export declare type RouteOperationalElectricityEmissionsIntensityinfrastructureArgs = {
|
|
5296
|
+
unit?: Maybe<EmissionUnit>;
|
|
5297
|
+
};
|
|
5298
|
+
export declare type RouteOperationalElectricityEnergySources = {
|
|
5299
|
+
/** Electricity produced by coal power plants. */
|
|
5300
|
+
coal: ElectricityGenerationMethod;
|
|
5301
|
+
/** Electricity produced by natural gas power plants. */
|
|
5302
|
+
gas: ElectricityGenerationMethod;
|
|
5303
|
+
/** Electricity produced by hydroelectric power. */
|
|
5304
|
+
hydro: ElectricityGenerationMethod;
|
|
5305
|
+
/** Electricity produced by solar power. */
|
|
5306
|
+
solar: ElectricityGenerationMethod;
|
|
5307
|
+
/** Electricity produced by wind power. */
|
|
5308
|
+
wind: ElectricityGenerationMethod;
|
|
5309
|
+
/** Electricity produced by oil power plants. */
|
|
5310
|
+
oil: ElectricityGenerationMethod;
|
|
5311
|
+
/** Electricity produced by nuclear power plants. */
|
|
5312
|
+
nuclear: ElectricityGenerationMethod;
|
|
5313
|
+
/** Electricity produced by biofuel/biomass. */
|
|
5314
|
+
biofuel: ElectricityGenerationMethod;
|
|
5315
|
+
/** Electricity produced by geothermal power plants. */
|
|
5316
|
+
geothermal: ElectricityGenerationMethod;
|
|
5317
|
+
/** Electricity produced by other means. */
|
|
5318
|
+
other: ElectricityGenerationMethod;
|
|
5319
|
+
};
|
|
4484
5320
|
/** Yearly seasons. */
|
|
4485
5321
|
export declare enum RouteOperationalElectricitySeason {
|
|
4486
5322
|
/** Winter season. */
|
|
@@ -4492,49 +5328,17 @@ export declare enum RouteOperationalElectricitySeason {
|
|
|
4492
5328
|
/** Fall season. */
|
|
4493
5329
|
FALL = "fall"
|
|
4494
5330
|
}
|
|
4495
|
-
export declare type RouteOperationalFluidEmissions = {
|
|
4496
|
-
/** Total fluid. */
|
|
4497
|
-
total: Scalars["Float"];
|
|
4498
|
-
/** Total wiper fluid maintenance emissions. */
|
|
4499
|
-
wiper: Scalars["Float"];
|
|
4500
|
-
/** Total brake fluid maintenance emissions. */
|
|
4501
|
-
brake: Scalars["Float"];
|
|
4502
|
-
/** Total powertrain coolant fluid maintenance emissions. */
|
|
4503
|
-
coolant: Scalars["Float"];
|
|
4504
|
-
/** Total transmission fluid maintenance emissions. */
|
|
4505
|
-
transmission: Scalars["Float"];
|
|
4506
|
-
/** Total motor oil maintenance emissions. */
|
|
4507
|
-
motor_oil?: Maybe<Scalars["Float"]>;
|
|
4508
|
-
};
|
|
4509
|
-
export declare type RouteOperationalFluidEmissionstotalArgs = {
|
|
4510
|
-
unit?: Maybe<EmissionUnit>;
|
|
4511
|
-
};
|
|
4512
|
-
export declare type RouteOperationalFluidEmissionswiperArgs = {
|
|
4513
|
-
unit?: Maybe<EmissionUnit>;
|
|
4514
|
-
};
|
|
4515
|
-
export declare type RouteOperationalFluidEmissionsbrakeArgs = {
|
|
4516
|
-
unit?: Maybe<EmissionUnit>;
|
|
4517
|
-
};
|
|
4518
|
-
export declare type RouteOperationalFluidEmissionscoolantArgs = {
|
|
4519
|
-
unit?: Maybe<EmissionUnit>;
|
|
4520
|
-
};
|
|
4521
|
-
export declare type RouteOperationalFluidEmissionstransmissionArgs = {
|
|
4522
|
-
unit?: Maybe<EmissionUnit>;
|
|
4523
|
-
};
|
|
4524
|
-
export declare type RouteOperationalFluidEmissionsmotor_oilArgs = {
|
|
4525
|
-
unit?: Maybe<EmissionUnit>;
|
|
4526
|
-
};
|
|
4527
5331
|
export declare type RouteOperationalFuelEmissions = {
|
|
4528
|
-
/** Total fuel for the route. */
|
|
5332
|
+
/** Total fuel emissions for the route. */
|
|
4529
5333
|
total: Scalars["Float"];
|
|
4530
|
-
/** Direct (
|
|
4531
|
-
|
|
4532
|
-
/** Indirect (
|
|
4533
|
-
|
|
4534
|
-
/**
|
|
4535
|
-
|
|
5334
|
+
/** Direct (tank to wheels) fuel emissions for the route. */
|
|
5335
|
+
direct: Scalars["Float"];
|
|
5336
|
+
/** Indirect (well to tank) fuel emissions for the route. */
|
|
5337
|
+
indirect: Scalars["Float"];
|
|
5338
|
+
/** Total fuel consumption for the route. */
|
|
5339
|
+
consumption: Scalars["Float"];
|
|
4536
5340
|
/** Estimated internal combustion vehicle weight. */
|
|
4537
|
-
|
|
5341
|
+
vehicle_weight: Scalars["Float"];
|
|
4538
5342
|
/** Estimated internal combustion vehicle engine torque. */
|
|
4539
5343
|
engine_torque: Scalars["Float"];
|
|
4540
5344
|
/** Average powertrain efficiency. */
|
|
@@ -4549,16 +5353,16 @@ export declare type RouteOperationalFuelEmissions = {
|
|
|
4549
5353
|
export declare type RouteOperationalFuelEmissionstotalArgs = {
|
|
4550
5354
|
unit?: Maybe<EmissionUnit>;
|
|
4551
5355
|
};
|
|
4552
|
-
export declare type
|
|
5356
|
+
export declare type RouteOperationalFuelEmissionsdirectArgs = {
|
|
4553
5357
|
unit?: Maybe<EmissionUnit>;
|
|
4554
5358
|
};
|
|
4555
|
-
export declare type
|
|
5359
|
+
export declare type RouteOperationalFuelEmissionsindirectArgs = {
|
|
4556
5360
|
unit?: Maybe<EmissionUnit>;
|
|
4557
5361
|
};
|
|
4558
|
-
export declare type
|
|
5362
|
+
export declare type RouteOperationalFuelEmissionsconsumptionArgs = {
|
|
4559
5363
|
unit?: Maybe<FuelUnit>;
|
|
4560
5364
|
};
|
|
4561
|
-
export declare type
|
|
5365
|
+
export declare type RouteOperationalFuelEmissionsvehicle_weightArgs = {
|
|
4562
5366
|
unit?: Maybe<WeightUnit>;
|
|
4563
5367
|
};
|
|
4564
5368
|
export declare type RouteOperationalFuelEmissionsengine_torqueArgs = {
|
|
@@ -4575,11 +5379,11 @@ export declare enum RouteOperationalFuelType {
|
|
|
4575
5379
|
DIESEL = "diesel"
|
|
4576
5380
|
}
|
|
4577
5381
|
export declare type RouteOperationalInfrastructureEmissions = {
|
|
4578
|
-
/** Total infrastructure. */
|
|
5382
|
+
/** Total road infrastructure emissions. */
|
|
4579
5383
|
total: Scalars["Float"];
|
|
4580
|
-
/** Embedded (construction, decommissioning, etc) emissions
|
|
5384
|
+
/** Embedded (construction, decommissioning, etc) road infrastructure emissions. */
|
|
4581
5385
|
embedded: Scalars["Float"];
|
|
4582
|
-
/** Induced maintenance emissions. */
|
|
5386
|
+
/** Induced road infrastructure maintenance emissions. */
|
|
4583
5387
|
maintenance: Scalars["Float"];
|
|
4584
5388
|
};
|
|
4585
5389
|
export declare type RouteOperationalInfrastructureEmissionstotalArgs = {
|
|
@@ -4592,10 +5396,10 @@ export declare type RouteOperationalInfrastructureEmissionsmaintenanceArgs = {
|
|
|
4592
5396
|
unit?: Maybe<EmissionUnit>;
|
|
4593
5397
|
};
|
|
4594
5398
|
export declare type RouteOperationalMaintenanceEmissions = {
|
|
4595
|
-
/** Total maintenance. */
|
|
5399
|
+
/** Total maintenance emissions. */
|
|
4596
5400
|
total: Scalars["Float"];
|
|
4597
|
-
/**
|
|
4598
|
-
fluids:
|
|
5401
|
+
/** Fluid related maintenance emissions. */
|
|
5402
|
+
fluids: FluidEmissions;
|
|
4599
5403
|
/** Battery related maintenance emissions. */
|
|
4600
5404
|
battery: Scalars["Float"];
|
|
4601
5405
|
/** Tire related maintenance emissions. */
|
|
@@ -4620,6 +5424,67 @@ export declare type RouteOperationalMaintenanceEmissionscomponentsArgs = {
|
|
|
4620
5424
|
export declare type RouteOperationalMaintenanceEmissionsrepairArgs = {
|
|
4621
5425
|
unit?: Maybe<EmissionUnit>;
|
|
4622
5426
|
};
|
|
5427
|
+
export declare type RouteOperatorPreferences = {
|
|
5428
|
+
/** Flag indicating if an operator should be preferred or required. */
|
|
5429
|
+
type?: Maybe<RouteOperatorsType>;
|
|
5430
|
+
/** Ranking of an operator with multiple levels, each level having its own penalty value. */
|
|
5431
|
+
ranking?: Maybe<RouteOperatorPreferencesRanking>;
|
|
5432
|
+
/** Route operators that should be excluded. */
|
|
5433
|
+
exclude?: Maybe<Array<RouteOperatorsValue>>;
|
|
5434
|
+
};
|
|
5435
|
+
/** Prioritized operators for a route calculation. */
|
|
5436
|
+
export declare type RouteOperatorPreferencesInput = {
|
|
5437
|
+
/** Flag indicating if the operators ranking should be preferred or required. */
|
|
5438
|
+
type: RouteOperatorsType;
|
|
5439
|
+
/** Ranking of an operator with multiple levels, each level having its own penalty value. */
|
|
5440
|
+
ranking?: Maybe<RouteOperatorPreferencesRankingInput>;
|
|
5441
|
+
/** Route operators that should be excluded. */
|
|
5442
|
+
exclude?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5443
|
+
};
|
|
5444
|
+
export declare type RouteOperatorPreferencesRanking = {
|
|
5445
|
+
/** Level one (most significant) for operator ranking. */
|
|
5446
|
+
level_one?: Maybe<Array<RouteOperatorsValue>>;
|
|
5447
|
+
/** Level two for operator ranking. */
|
|
5448
|
+
level_two?: Maybe<Array<RouteOperatorsValue>>;
|
|
5449
|
+
/** Level three for operator ranking. */
|
|
5450
|
+
level_three?: Maybe<Array<RouteOperatorsValue>>;
|
|
5451
|
+
/** Level four for operator ranking. */
|
|
5452
|
+
level_four?: Maybe<Array<RouteOperatorsValue>>;
|
|
5453
|
+
/** Level five for operator ranking. */
|
|
5454
|
+
level_five?: Maybe<Array<RouteOperatorsValue>>;
|
|
5455
|
+
/** Level six for operator ranking. */
|
|
5456
|
+
level_six?: Maybe<Array<RouteOperatorsValue>>;
|
|
5457
|
+
/** Level seven for operator ranking. */
|
|
5458
|
+
level_seven?: Maybe<Array<RouteOperatorsValue>>;
|
|
5459
|
+
/** Level eight for operator ranking. */
|
|
5460
|
+
level_eight?: Maybe<Array<RouteOperatorsValue>>;
|
|
5461
|
+
/** Level nine for operator ranking. */
|
|
5462
|
+
level_nine?: Maybe<Array<RouteOperatorsValue>>;
|
|
5463
|
+
/** Level ten for operator ranking. */
|
|
5464
|
+
level_ten?: Maybe<Array<RouteOperatorsValue>>;
|
|
5465
|
+
};
|
|
5466
|
+
export declare type RouteOperatorPreferencesRankingInput = {
|
|
5467
|
+
/** Level one (most significant) for operator ranking. */
|
|
5468
|
+
level_one?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5469
|
+
/** Level two for operator ranking. */
|
|
5470
|
+
level_two?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5471
|
+
/** Level three for operator ranking. */
|
|
5472
|
+
level_three?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5473
|
+
/** Level four for operator ranking. */
|
|
5474
|
+
level_four?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5475
|
+
/** Level five for operator ranking. */
|
|
5476
|
+
level_five?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5477
|
+
/** Level six for operator ranking. */
|
|
5478
|
+
level_six?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5479
|
+
/** Level seven for operator ranking. */
|
|
5480
|
+
level_seven?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5481
|
+
/** Level eight for operator ranking. */
|
|
5482
|
+
level_eight?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5483
|
+
/** Level nine for operator ranking. */
|
|
5484
|
+
level_nine?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5485
|
+
/** Level ten (least significant) for operator ranking. */
|
|
5486
|
+
level_ten?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
5487
|
+
};
|
|
4623
5488
|
/** Prioritized operators for a route calculation. */
|
|
4624
5489
|
export declare type RouteOperators = {
|
|
4625
5490
|
/** Flag indicating if the operators ranking should be preferred or required. */
|
|
@@ -4686,13 +5551,55 @@ export declare type RouteOperatorsRankingInput = {
|
|
|
4686
5551
|
};
|
|
4687
5552
|
/** Type of operator prioritization for a route. */
|
|
4688
5553
|
export declare enum RouteOperatorsType {
|
|
4689
|
-
/**
|
|
5554
|
+
/** Operators ranking will not be taken into account if no type is given. */
|
|
4690
5555
|
NONE = "none",
|
|
4691
5556
|
/** Operators given in the operators ranking will be preferred when calculating routes. */
|
|
4692
5557
|
PREFERRED = "preferred",
|
|
4693
5558
|
/** Operators given in the operators ranking will be required when calculating routes, all other operators will be ignored. */
|
|
4694
5559
|
REQUIRED = "required"
|
|
4695
5560
|
}
|
|
5561
|
+
export declare type RouteOperatorsValue = {
|
|
5562
|
+
/** ID of an operator. */
|
|
5563
|
+
id: Scalars["ID"];
|
|
5564
|
+
/** List of country codes. */
|
|
5565
|
+
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
5566
|
+
};
|
|
5567
|
+
export declare type RouteOperatorsValueInput = {
|
|
5568
|
+
/** ID of an operator. */
|
|
5569
|
+
id: Scalars["ID"];
|
|
5570
|
+
/** List of countries in which the operator should be excluded. When not specified the operator will be excluded in every country. */
|
|
5571
|
+
countries: Array<CountryCodeAlpha2>;
|
|
5572
|
+
};
|
|
5573
|
+
export declare type RouteOriginFeaturePoint = {
|
|
5574
|
+
/** Feature type. */
|
|
5575
|
+
type: FeatureType;
|
|
5576
|
+
/** Geometry of the feature. */
|
|
5577
|
+
geometry: Point;
|
|
5578
|
+
/** Optional object where additional properties can be specified. */
|
|
5579
|
+
properties?: Maybe<RouteOriginProperties>;
|
|
5580
|
+
};
|
|
5581
|
+
export declare type RouteOriginFeaturePointInput = {
|
|
5582
|
+
/** Feature type. */
|
|
5583
|
+
type: FeatureType;
|
|
5584
|
+
/** Geometry of the feature. */
|
|
5585
|
+
geometry: PointInput;
|
|
5586
|
+
/** Optional object where additional properties can be specified. */
|
|
5587
|
+
properties?: Maybe<RouteOriginPropertiesInput>;
|
|
5588
|
+
};
|
|
5589
|
+
export declare type RouteOriginProperties = {
|
|
5590
|
+
/** Data about the origin location. */
|
|
5591
|
+
location?: Maybe<RoutePropertiesLocation>;
|
|
5592
|
+
/** Vehicle data at the origin location. */
|
|
5593
|
+
vehicle?: Maybe<RoutePropertiesVehicle>;
|
|
5594
|
+
};
|
|
5595
|
+
export declare type RouteOriginPropertiesInput = {
|
|
5596
|
+
/** Data about the origin location. */
|
|
5597
|
+
location?: Maybe<RoutePropertiesLocationInput>;
|
|
5598
|
+
/** Vehicle data at the origin location. */
|
|
5599
|
+
vehicle?: Maybe<RoutePropertiesVehicleInput>;
|
|
5600
|
+
/** Station data at the origin location. */
|
|
5601
|
+
station?: Maybe<RoutePropertiesStationInput>;
|
|
5602
|
+
};
|
|
4696
5603
|
export declare type RoutePath = {
|
|
4697
5604
|
/** GeoJSON location of a route path segment. */
|
|
4698
5605
|
location?: Maybe<Point>;
|
|
@@ -4713,6 +5620,68 @@ export declare type RoutePath = {
|
|
|
4713
5620
|
/** State of charge, in kWh, of a route path segment. */
|
|
4714
5621
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
4715
5622
|
};
|
|
5623
|
+
export declare type RoutePropertiesLocation = {
|
|
5624
|
+
/** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
|
|
5625
|
+
name?: Maybe<Scalars["String"]>;
|
|
5626
|
+
/** Duration to stay at this point. */
|
|
5627
|
+
stop_duration?: Maybe<Scalars["Int"]>;
|
|
5628
|
+
/** Temperature. */
|
|
5629
|
+
temperature?: Maybe<Scalars["Float"]>;
|
|
5630
|
+
/** Air pressure. */
|
|
5631
|
+
air_pressure?: Maybe<Scalars["Float"]>;
|
|
5632
|
+
/** Solar irradiance. */
|
|
5633
|
+
solar_irradiance?: Maybe<Scalars["Float"]>;
|
|
5634
|
+
/** Country. */
|
|
5635
|
+
country?: Maybe<Array<CountryCodeAlpha2>>;
|
|
5636
|
+
};
|
|
5637
|
+
export declare type RoutePropertiesLocationInput = {
|
|
5638
|
+
/** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
|
|
5639
|
+
name?: Maybe<Scalars["String"]>;
|
|
5640
|
+
/** Duration to stay at this point. */
|
|
5641
|
+
stop_duration?: Maybe<Scalars["Int"]>;
|
|
5642
|
+
};
|
|
5643
|
+
export declare type RoutePropertiesStation = {
|
|
5644
|
+
/** ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5645
|
+
station_id?: Maybe<Scalars["ID"]>;
|
|
5646
|
+
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5647
|
+
external_station_id?: Maybe<Scalars["ID"]>;
|
|
5648
|
+
};
|
|
5649
|
+
export declare type RoutePropertiesStationInput = {
|
|
5650
|
+
/** ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5651
|
+
station_id?: Maybe<Scalars["ID"]>;
|
|
5652
|
+
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5653
|
+
external_station_id?: Maybe<Scalars["ID"]>;
|
|
5654
|
+
};
|
|
5655
|
+
export declare type RoutePropertiesVehicle = {
|
|
5656
|
+
/** Number of occupants present in the vehicle. */
|
|
5657
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
5658
|
+
/** Combined weight of the occupants. */
|
|
5659
|
+
total_occupant_weight?: Maybe<TotalOccupantWeight>;
|
|
5660
|
+
/** Weight of the cargo. */
|
|
5661
|
+
total_cargo_weight?: Maybe<TotalCargoWeight>;
|
|
5662
|
+
};
|
|
5663
|
+
export declare type RoutePropertiesVehicleInput = {
|
|
5664
|
+
/** Number of occupants present in the vehicle. */
|
|
5665
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
5666
|
+
/** Combined weight of the occupants. */
|
|
5667
|
+
total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
|
|
5668
|
+
/** Weight of the cargo. */
|
|
5669
|
+
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
5670
|
+
};
|
|
5671
|
+
export declare type RouteResponse = {
|
|
5672
|
+
/** ID of a route calculation. */
|
|
5673
|
+
id: Scalars["ID"];
|
|
5674
|
+
/** Status of a route. */
|
|
5675
|
+
status: RouteStatus;
|
|
5676
|
+
/** Recommended route. */
|
|
5677
|
+
recommended?: Maybe<RouteDetails>;
|
|
5678
|
+
/** Meta data for a route. */
|
|
5679
|
+
meta: RouteMetadata;
|
|
5680
|
+
/** Route request. */
|
|
5681
|
+
request_input: CreateRoute;
|
|
5682
|
+
/** Region of a route calculation. */
|
|
5683
|
+
region: Scalars["String"];
|
|
5684
|
+
};
|
|
4716
5685
|
/** Scheduled charge stop along a route. */
|
|
4717
5686
|
export declare type RouteScheduledChargeStop = {
|
|
4718
5687
|
/** List of amenity types. */
|
|
@@ -4757,7 +5726,7 @@ export declare enum RouteStatus {
|
|
|
4757
5726
|
PROCESSING = "processing",
|
|
4758
5727
|
/** We finished computing the route, with a result. Final status. */
|
|
4759
5728
|
DONE = "done",
|
|
4760
|
-
/** We finished
|
|
5729
|
+
/** We finished computing the route, without any result. Final status. */
|
|
4761
5730
|
NOT_FOUND = "not_found",
|
|
4762
5731
|
/** An error occurred while computing the route. Final status. */
|
|
4763
5732
|
ERROR = "error"
|
|
@@ -4788,60 +5757,264 @@ export declare enum RouteTagType {
|
|
|
4788
5757
|
WALKING = "walking",
|
|
4789
5758
|
CROSSBORDER = "crossborder"
|
|
4790
5759
|
}
|
|
5760
|
+
export declare type RouteVehicle = {
|
|
5761
|
+
/** ID of the vehicle. */
|
|
5762
|
+
id: Scalars["ID"];
|
|
5763
|
+
/** EV battery specific configuration. */
|
|
5764
|
+
battery?: Maybe<RouteVehicleBattery>;
|
|
5765
|
+
/** Charging configuration. */
|
|
5766
|
+
charging?: Maybe<RouteVehicleCharging>;
|
|
5767
|
+
/** Average tire pressures of all wheels, starting from the front side (right to left) and then to the rear. */
|
|
5768
|
+
tire_pressure?: Maybe<TirePressure>;
|
|
5769
|
+
/** Value of the vehicle's odometer. */
|
|
5770
|
+
odometer?: Maybe<Scalars["Float"]>;
|
|
5771
|
+
/** Value of the auxiliary power consumption of the vehicle. */
|
|
5772
|
+
auxiliary_consumption?: Maybe<AuxiliaryConsumption>;
|
|
5773
|
+
/** Flag which indicates if climate control is on. */
|
|
5774
|
+
climate?: Maybe<Scalars["Boolean"]>;
|
|
5775
|
+
/** Vehicle Heat Pump configuration. */
|
|
5776
|
+
heat_pump: HeatPumpMode;
|
|
5777
|
+
/** Vehicle cabin configuration. */
|
|
5778
|
+
cabin: RouteVehicleCabin;
|
|
5779
|
+
/** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */
|
|
5780
|
+
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
5781
|
+
/** Value of the outside temperature. */
|
|
5782
|
+
outside_temperature?: Maybe<Temperature>;
|
|
5783
|
+
/** Vehicle is in park, neutral or turned off. */
|
|
5784
|
+
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
5785
|
+
/** Value of the vehicle's speed. */
|
|
5786
|
+
vehicle_speed?: Maybe<VehicleSpeed>;
|
|
5787
|
+
/** Current heading in degrees. */
|
|
5788
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
5789
|
+
};
|
|
5790
|
+
export declare type RouteVehicleBattery = {
|
|
5791
|
+
/** Battery capacity. */
|
|
5792
|
+
capacity: StateOfCharge;
|
|
5793
|
+
/** State of charge. */
|
|
5794
|
+
state_of_charge: StateOfCharge;
|
|
5795
|
+
/** Minimum final battery state of charge. */
|
|
5796
|
+
final_state_of_charge: StateOfCharge;
|
|
5797
|
+
/** Temperature of the battery. */
|
|
5798
|
+
temperature?: Maybe<Temperature>;
|
|
5799
|
+
/** Battery current in ampere. */
|
|
5800
|
+
current?: Maybe<Scalars["Float"]>;
|
|
5801
|
+
/** Battery voltage in volts. */
|
|
5802
|
+
voltage?: Maybe<Scalars["Float"]>;
|
|
5803
|
+
/** Value of the positive or negative power. When negative, the vehicle is charging. */
|
|
5804
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5805
|
+
/** Indicates if the vehicle is charging. */
|
|
5806
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
5807
|
+
};
|
|
5808
|
+
/** EV battery specific configuration for a create route mutation. */
|
|
5809
|
+
export declare type RouteVehicleBatteryInput = {
|
|
5810
|
+
/** Battery capacity. */
|
|
5811
|
+
capacity?: Maybe<StateOfChargeInput>;
|
|
5812
|
+
/** Battery state of charge. */
|
|
5813
|
+
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
5814
|
+
/** Minimum battery state of charge. */
|
|
5815
|
+
final_state_of_charge?: Maybe<StateOfChargeInput>;
|
|
5816
|
+
/** Battery temperature. */
|
|
5817
|
+
temperature?: Maybe<BatteryTemperatureInput>;
|
|
5818
|
+
/** Battery current in ampere. */
|
|
5819
|
+
current?: Maybe<Scalars["Float"]>;
|
|
5820
|
+
/** Battery voltage in volts. */
|
|
5821
|
+
voltage?: Maybe<Scalars["Float"]>;
|
|
5822
|
+
/** Vehicle power. */
|
|
5823
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5824
|
+
/** Vehicle is currently charging. */
|
|
5825
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
5826
|
+
};
|
|
5827
|
+
export declare type RouteVehicleCabin = {
|
|
5828
|
+
/** Flag which indicates if the vehicle cabin was preconditioned for the desired temperature. */
|
|
5829
|
+
is_preconditioned: Scalars["Boolean"];
|
|
5830
|
+
/** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
5831
|
+
desired_temperature: Temperature;
|
|
5832
|
+
};
|
|
5833
|
+
export declare type RouteVehicleCabinInput = {
|
|
5834
|
+
/** Flag which indicates if the vehicle cabin was preconditioned for the desired temperature. */
|
|
5835
|
+
is_preconditioned?: Scalars["Boolean"];
|
|
5836
|
+
/** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
5837
|
+
desired_temperature: TemperatureInput;
|
|
5838
|
+
};
|
|
5839
|
+
export declare type RouteVehicleCharging = {
|
|
5840
|
+
/** Mode that indicates if the charging time is optimized or if always charged to the maximum capacity. */
|
|
5841
|
+
mode: ChargeMode;
|
|
5842
|
+
/** Minimum desired power of chargers. */
|
|
5843
|
+
minimum_power: Scalars["Int"];
|
|
5844
|
+
/** Percentage for the minimum limit of the battery's capacity before a recharge. The value should be between 0 and 60. Defaults to 10. */
|
|
5845
|
+
risk_margin: Scalars["Int"];
|
|
5846
|
+
/** Supported connectors. */
|
|
5847
|
+
connectors?: Maybe<Array<RouteVehicleChargingConnector>>;
|
|
5848
|
+
/** Supported adapters. */
|
|
5849
|
+
adapters?: Maybe<Array<RouteVehicleChargingConnector>>;
|
|
5850
|
+
};
|
|
5851
|
+
export declare type RouteVehicleChargingConnector = {
|
|
5852
|
+
/** Type of the plug. */
|
|
5853
|
+
standard: ConnectorType;
|
|
5854
|
+
/** Maximum charging speed for the plug. */
|
|
5855
|
+
max_charge_speed: ChargeSpeed;
|
|
5856
|
+
};
|
|
5857
|
+
export declare type RouteVehicleChargingConnectorInput = {
|
|
5858
|
+
/** Plug type. */
|
|
5859
|
+
standard: ConnectorType;
|
|
5860
|
+
/** Maximum charging speed for this plug. */
|
|
5861
|
+
max_charge_speed: ChargeSpeedInput;
|
|
5862
|
+
};
|
|
5863
|
+
export declare type RouteVehicleChargingInput = {
|
|
5864
|
+
/** Mode that indicates if the charging time is optimized or if always charged to the maximum capacity. */
|
|
5865
|
+
mode?: Maybe<ChargeMode>;
|
|
5866
|
+
/** Minimum desired power of chargers. */
|
|
5867
|
+
minimum_power?: Maybe<Scalars["Float"]>;
|
|
5868
|
+
/** Percentage representing the minimum value of the state of charge at a next charge stop. The value should be between 0 and 60. */
|
|
5869
|
+
risk_margin?: Maybe<Scalars["Int"]>;
|
|
5870
|
+
/** Supported connectors. */
|
|
5871
|
+
connectors?: Maybe<Array<RouteVehicleChargingConnectorInput>>;
|
|
5872
|
+
/** Supported adapters. */
|
|
5873
|
+
adapters?: Maybe<Array<RouteVehicleChargingConnectorInput>>;
|
|
5874
|
+
};
|
|
4791
5875
|
export declare type RouteVehicleEmissions = {
|
|
4792
5876
|
/** Total co2e emissions. */
|
|
4793
5877
|
total: Scalars["Float"];
|
|
4794
|
-
/**
|
|
5878
|
+
/** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */
|
|
5879
|
+
iso_14083_2023: Scalars["Float"];
|
|
5880
|
+
/** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */
|
|
4795
5881
|
embedded: RouteEmbeddedEmissions;
|
|
4796
5882
|
/** Operational emissions. */
|
|
4797
5883
|
operational: RouteVehicleOperationalEmissions;
|
|
4798
5884
|
/** End of life emissions. */
|
|
4799
5885
|
end_of_life: RouteEndOfLifeEmissions;
|
|
4800
|
-
/** Emissions info for the legs in the order as
|
|
5886
|
+
/** Emissions info for the legs in the same order as in the route. */
|
|
4801
5887
|
legs: Array<RouteVehicleLegEmissions>;
|
|
4802
5888
|
};
|
|
4803
5889
|
export declare type RouteVehicleEmissionstotalArgs = {
|
|
4804
5890
|
unit?: Maybe<EmissionUnit>;
|
|
4805
5891
|
};
|
|
5892
|
+
export declare type RouteVehicleEmissionsiso_14083_2023Args = {
|
|
5893
|
+
unit?: Maybe<EmissionUnit>;
|
|
5894
|
+
};
|
|
5895
|
+
/** Vehicle specific input for a create route mutation. */
|
|
5896
|
+
export declare type RouteVehicleInput = {
|
|
5897
|
+
/** ID of the vehicle. */
|
|
5898
|
+
id: Scalars["ID"];
|
|
5899
|
+
/** EV battery specific configuration. */
|
|
5900
|
+
battery?: Maybe<RouteVehicleBatteryInput>;
|
|
5901
|
+
/** Charging configuration. */
|
|
5902
|
+
charging?: Maybe<RouteVehicleChargingInput>;
|
|
5903
|
+
/** Average tire pressures of all wheels. */
|
|
5904
|
+
tire_pressure?: Maybe<TirePressureInput>;
|
|
5905
|
+
/** Odometer (mileage) reading. */
|
|
5906
|
+
odometer?: Maybe<OdometerInput>;
|
|
5907
|
+
/** Average auxiliary power consumption. */
|
|
5908
|
+
auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;
|
|
5909
|
+
/** Flag which indicates if climate control is on. */
|
|
5910
|
+
climate?: Maybe<Scalars["Boolean"]>;
|
|
5911
|
+
/** Vehicle Heat Pump configuration. */
|
|
5912
|
+
heat_pump?: Maybe<HeatPumpMode>;
|
|
5913
|
+
/** Vehicle cabin configuration for creating the route. */
|
|
5914
|
+
cabin?: Maybe<RouteVehicleCabinInput>;
|
|
5915
|
+
/** Outside temperature. */
|
|
5916
|
+
outside_temperature?: Maybe<OutsideTemperatureInput>;
|
|
5917
|
+
/** Vehicle is in park, neutral or turned off. */
|
|
5918
|
+
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
5919
|
+
/** Vehicle speed. */
|
|
5920
|
+
vehicle_speed?: Maybe<VehicleSpeedInput>;
|
|
5921
|
+
/** Current heading in degrees. */
|
|
5922
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
5923
|
+
};
|
|
4806
5924
|
export declare type RouteVehicleLegEmissions = {
|
|
4807
5925
|
/** Total co2e emissions for the leg. */
|
|
4808
5926
|
total: Scalars["Float"];
|
|
4809
|
-
/**
|
|
5927
|
+
/** Total leg co2e emissions from vehicle operational processes using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */
|
|
5928
|
+
iso_14083_2023: Scalars["Float"];
|
|
5929
|
+
/** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */
|
|
4810
5930
|
embedded: RouteEmbeddedEmissions;
|
|
4811
5931
|
/** Operational emissions for the leg. */
|
|
4812
|
-
operational:
|
|
5932
|
+
operational: RouteVehicleLegOperationalEmissions;
|
|
4813
5933
|
/** End of life emissions for the leg. */
|
|
4814
5934
|
end_of_life: RouteEndOfLifeEmissions;
|
|
4815
5935
|
};
|
|
4816
5936
|
export declare type RouteVehicleLegEmissionstotalArgs = {
|
|
4817
5937
|
unit?: Maybe<EmissionUnit>;
|
|
4818
5938
|
};
|
|
5939
|
+
export declare type RouteVehicleLegEmissionsiso_14083_2023Args = {
|
|
5940
|
+
unit?: Maybe<EmissionUnit>;
|
|
5941
|
+
};
|
|
5942
|
+
export declare type RouteVehicleLegOperationalEmissions = {
|
|
5943
|
+
/** Total operational emissions for the leg. */
|
|
5944
|
+
total: Scalars["Float"];
|
|
5945
|
+
/** Electricity emissions data for the leg. */
|
|
5946
|
+
electricity: RouteLegOperationalElectricityEmissions;
|
|
5947
|
+
/** Total road infrastructure emissions for the leg. */
|
|
5948
|
+
infrastructure: RouteOperationalInfrastructureEmissions;
|
|
5949
|
+
/** Total maintenance emissions for the leg. */
|
|
5950
|
+
maintenance: RouteOperationalMaintenanceEmissions;
|
|
5951
|
+
};
|
|
5952
|
+
export declare type RouteVehicleLegOperationalEmissionstotalArgs = {
|
|
5953
|
+
unit?: Maybe<EmissionUnit>;
|
|
5954
|
+
};
|
|
4819
5955
|
export declare type RouteVehicleOperationalEmissions = {
|
|
4820
5956
|
/** Total operational emissions. */
|
|
4821
5957
|
total: Scalars["Float"];
|
|
4822
|
-
/** Electricity emissions
|
|
5958
|
+
/** Electricity emissions. */
|
|
4823
5959
|
electricity: RouteOperationalElectricityEmissions;
|
|
4824
|
-
/**
|
|
5960
|
+
/** Road infrastructure emissions. */
|
|
4825
5961
|
infrastructure: RouteOperationalInfrastructureEmissions;
|
|
4826
|
-
/**
|
|
5962
|
+
/** Maintenance emissions. */
|
|
4827
5963
|
maintenance: RouteOperationalMaintenanceEmissions;
|
|
4828
5964
|
};
|
|
4829
5965
|
export declare type RouteVehicleOperationalEmissionstotalArgs = {
|
|
4830
5966
|
unit?: Maybe<EmissionUnit>;
|
|
4831
5967
|
};
|
|
5968
|
+
export declare type RouteViaFeaturePoint = {
|
|
5969
|
+
/** Feature type. */
|
|
5970
|
+
type: FeatureType;
|
|
5971
|
+
/** Geometry of the feature. */
|
|
5972
|
+
geometry: Point;
|
|
5973
|
+
/** Optional object where additional properties can be specified. */
|
|
5974
|
+
properties?: Maybe<RouteViaProperties>;
|
|
5975
|
+
};
|
|
5976
|
+
export declare type RouteViaFeaturePointInput = {
|
|
5977
|
+
/** Feature type. */
|
|
5978
|
+
type: FeatureType;
|
|
5979
|
+
/** Geometry of the feature. */
|
|
5980
|
+
geometry: PointInput;
|
|
5981
|
+
/** Optional object where additional properties can be specified. */
|
|
5982
|
+
properties?: Maybe<RouteViaPropertiesInput>;
|
|
5983
|
+
};
|
|
5984
|
+
export declare type RouteViaProperties = {
|
|
5985
|
+
/** Location data of the via point. */
|
|
5986
|
+
location: RoutePropertiesLocation;
|
|
5987
|
+
/** Vehicle data of the via point. */
|
|
5988
|
+
vehicle: RoutePropertiesVehicle;
|
|
5989
|
+
/** Station data of the via point. */
|
|
5990
|
+
station: RoutePropertiesStation;
|
|
5991
|
+
};
|
|
5992
|
+
export declare type RouteViaPropertiesInput = {
|
|
5993
|
+
/** Location data of the via point. */
|
|
5994
|
+
location: RoutePropertiesLocationInput;
|
|
5995
|
+
/** Vehicle data of the via point. */
|
|
5996
|
+
vehicle: RoutePropertiesVehicleInput;
|
|
5997
|
+
/** Station data of the via point. */
|
|
5998
|
+
station: RoutePropertiesStationInput;
|
|
5999
|
+
};
|
|
4832
6000
|
/** Scheduled charge stop along a route. */
|
|
4833
6001
|
export declare type ScheduledChargeStopInput = {
|
|
4834
6002
|
/** List of amenity types. */
|
|
4835
6003
|
types: Array<AmenityType>;
|
|
4836
6004
|
/** Duration at the amenity, in seconds. The value should be between 900 and 86400. */
|
|
4837
6005
|
duration: Scalars["Int"];
|
|
4838
|
-
/** Maximum allowed offset from the stop_after value in seconds.
|
|
6006
|
+
/** Maximum allowed offset from the stop_after value in seconds. */
|
|
4839
6007
|
offset?: Maybe<Scalars["Int"]>;
|
|
4840
6008
|
/** Desired drive time for a scheduled stop after leaving the origin point, in seconds. */
|
|
4841
6009
|
stop_after: Scalars["Int"];
|
|
4842
|
-
/** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000.
|
|
6010
|
+
/** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000. */
|
|
4843
6011
|
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
4844
6012
|
};
|
|
6013
|
+
export declare enum SortDirection {
|
|
6014
|
+
ASCENDING = "ascending",
|
|
6015
|
+
DESCENDING = "descending"
|
|
6016
|
+
}
|
|
6017
|
+
/** Speed units. */
|
|
4845
6018
|
export declare enum SpeedUnit {
|
|
4846
6019
|
/** Return the speed in kilometers per hour. */
|
|
4847
6020
|
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
@@ -4855,14 +6028,23 @@ export declare type StandardStats = {
|
|
|
4855
6028
|
/** The total number of stations with the specified plug */
|
|
4856
6029
|
total?: Maybe<Scalars["Int"]>;
|
|
4857
6030
|
};
|
|
6031
|
+
export declare type StateOfCharge = {
|
|
6032
|
+
/** Value of the state of charge of the vehicle. */
|
|
6033
|
+
value: Scalars["Float"];
|
|
6034
|
+
/** Type of the state of charge of the vehicle. */
|
|
6035
|
+
type: StateOfChargeUnit;
|
|
6036
|
+
/** Source of inputted data. */
|
|
6037
|
+
source: TelemetryInputSource;
|
|
6038
|
+
};
|
|
4858
6039
|
export declare type StateOfChargeInput = {
|
|
4859
6040
|
/** Value of the state of charge of the vehicle. */
|
|
4860
6041
|
value: Scalars["Float"];
|
|
4861
6042
|
/** Type of the state of charge of the vehicle. */
|
|
4862
6043
|
type: StateOfChargeUnit;
|
|
4863
6044
|
/** Source of inputted data, defaults to 'manual'. */
|
|
4864
|
-
source?:
|
|
6045
|
+
source?: TelemetryInputSource;
|
|
4865
6046
|
};
|
|
6047
|
+
/** State of charge unit. */
|
|
4866
6048
|
export declare enum StateOfChargeUnit {
|
|
4867
6049
|
/** Return the state of charge in kilometers. */
|
|
4868
6050
|
KILOMETER = "kilometer",
|
|
@@ -5028,7 +6210,7 @@ export declare type StationAroundFilter = {
|
|
|
5028
6210
|
location?: Maybe<PointInput>;
|
|
5029
6211
|
/** Distance, in meters, to search around. */
|
|
5030
6212
|
distance?: Maybe<Scalars["Int"]>;
|
|
5031
|
-
/** Powers in
|
|
6213
|
+
/** Powers in kW. */
|
|
5032
6214
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5033
6215
|
/** Amenities available near a station. */
|
|
5034
6216
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
@@ -5047,7 +6229,7 @@ export declare type StationAroundQuery = {
|
|
|
5047
6229
|
location?: Maybe<PointInput>;
|
|
5048
6230
|
/** Distance, in meters, to search around. */
|
|
5049
6231
|
distance?: Maybe<Scalars["Int"]>;
|
|
5050
|
-
/** Power in
|
|
6232
|
+
/** Power in kW. */
|
|
5051
6233
|
power?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5052
6234
|
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park. */
|
|
5053
6235
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
@@ -5139,7 +6321,7 @@ export declare type StationHeavyVehiclesRestrictionsmassArgs = {
|
|
|
5139
6321
|
};
|
|
5140
6322
|
/** Filter which can be applied to retrieve the station list action. */
|
|
5141
6323
|
export declare type StationListFilter = {
|
|
5142
|
-
/** Powers in
|
|
6324
|
+
/** Powers in kW. */
|
|
5143
6325
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5144
6326
|
/** Amenities available near a station. */
|
|
5145
6327
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
@@ -5201,11 +6383,11 @@ export declare type StationRoaming = {
|
|
|
5201
6383
|
};
|
|
5202
6384
|
/** The station speed type. */
|
|
5203
6385
|
export declare enum StationSpeedType {
|
|
5204
|
-
/** Slow charging (below 43
|
|
6386
|
+
/** Slow charging (below 43 kW). */
|
|
5205
6387
|
SLOW = "slow",
|
|
5206
|
-
/** Fast charging stations (above 43
|
|
6388
|
+
/** Fast charging stations (above 43 kW and below 150 kW). */
|
|
5207
6389
|
FAST = "fast",
|
|
5208
|
-
/** Ultra fast charging stations (above 150
|
|
6390
|
+
/** Ultra fast charging stations (above 150 kW). */
|
|
5209
6391
|
TURBO = "turbo"
|
|
5210
6392
|
}
|
|
5211
6393
|
/** The station stats model */
|
|
@@ -5268,6 +6450,8 @@ export declare type Subscription = {
|
|
|
5268
6450
|
navigationUpdatedById?: Maybe<Navigation>;
|
|
5269
6451
|
/** Subscription for a specific route was updated in the system event */
|
|
5270
6452
|
routeUpdatedById?: Maybe<Route>;
|
|
6453
|
+
/** [BETA] Subscription for a specific route was updated in the system event */
|
|
6454
|
+
route: RouteResponse;
|
|
5271
6455
|
};
|
|
5272
6456
|
export declare type SubscriptionconnectedVehicleArgs = {
|
|
5273
6457
|
id: Scalars["ID"];
|
|
@@ -5281,6 +6465,9 @@ export declare type SubscriptionnavigationUpdatedByIdArgs = {
|
|
|
5281
6465
|
export declare type SubscriptionrouteUpdatedByIdArgs = {
|
|
5282
6466
|
id: Scalars["ID"];
|
|
5283
6467
|
};
|
|
6468
|
+
export declare type SubscriptionrouteArgs = {
|
|
6469
|
+
id: Scalars["ID"];
|
|
6470
|
+
};
|
|
5284
6471
|
export declare type Telemetry = {
|
|
5285
6472
|
/** Value of the auxiliary power consumption of the vehicle. */
|
|
5286
6473
|
auxiliary_consumption?: Maybe<Scalars["Float"]>;
|
|
@@ -5412,6 +6599,7 @@ export declare type TelemetryInput = {
|
|
|
5412
6599
|
/** Custom input fields can be added based on telemetry architecture. */
|
|
5413
6600
|
custom?: Maybe<Scalars["JSON"]>;
|
|
5414
6601
|
};
|
|
6602
|
+
/** Telemetry input sources. */
|
|
5415
6603
|
export declare enum TelemetryInputSource {
|
|
5416
6604
|
/** Manually inputted value. */
|
|
5417
6605
|
MANUAL = "manual",
|
|
@@ -5423,26 +6611,39 @@ export declare type Temperature = {
|
|
|
5423
6611
|
value: Scalars["Float"];
|
|
5424
6612
|
/** Type of temperature. */
|
|
5425
6613
|
type: TemperatureUnit;
|
|
6614
|
+
/** Source of inputted data. */
|
|
6615
|
+
source: TelemetryInputSource;
|
|
5426
6616
|
};
|
|
5427
6617
|
export declare type TemperatureInput = {
|
|
5428
6618
|
/** Value of the temperature. */
|
|
5429
6619
|
value: Scalars["Float"];
|
|
5430
6620
|
/** Type of temperature. */
|
|
5431
6621
|
type: TemperatureUnit;
|
|
6622
|
+
/** Source of inputted data. */
|
|
6623
|
+
source?: TelemetryInputSource;
|
|
5432
6624
|
};
|
|
6625
|
+
/** Temperature unit. */
|
|
5433
6626
|
export declare enum TemperatureUnit {
|
|
5434
6627
|
/** Return the temperature in Celsius. */
|
|
5435
6628
|
CELSIUS = "Celsius",
|
|
5436
6629
|
/** Return the temperature in Fahrenheit. */
|
|
5437
6630
|
FAHRENHEIT = "Fahrenheit"
|
|
5438
6631
|
}
|
|
6632
|
+
export declare type TirePressure = {
|
|
6633
|
+
/** Values for the tire pressure, starting from the front side right to left and to the rear (FR, FL, RL, RR). */
|
|
6634
|
+
value: Array<Scalars["Float"]>;
|
|
6635
|
+
/** Type of the value of pressure. */
|
|
6636
|
+
type: PressureUnit;
|
|
6637
|
+
/** Source of inputted data. */
|
|
6638
|
+
source: TelemetryInputSource;
|
|
6639
|
+
};
|
|
5439
6640
|
export declare type TirePressureInput = {
|
|
5440
6641
|
/** Values for the tire pressure, starting from the front side right to left and to the rear. */
|
|
5441
6642
|
value: Array<Scalars["Float"]>;
|
|
5442
6643
|
/** Type of the value of pressure. */
|
|
5443
6644
|
type: PressureUnit;
|
|
5444
6645
|
/** Source of inputted data, defaults to 'manual'. */
|
|
5445
|
-
source?:
|
|
6646
|
+
source?: TelemetryInputSource;
|
|
5446
6647
|
};
|
|
5447
6648
|
export declare enum TorqueUnit {
|
|
5448
6649
|
/** Return the torque in newton meters. */
|
|
@@ -5450,13 +6651,29 @@ export declare enum TorqueUnit {
|
|
|
5450
6651
|
/** Return the torque in foot pounds. */
|
|
5451
6652
|
FOOT_POUND = "foot_pound"
|
|
5452
6653
|
}
|
|
6654
|
+
export declare type TotalCargoWeight = {
|
|
6655
|
+
/** Value of the current weight of the cargo. */
|
|
6656
|
+
value: Scalars["Float"];
|
|
6657
|
+
/** Type of the current weight of the cargo. */
|
|
6658
|
+
type: WeightUnit;
|
|
6659
|
+
/** Source of inputted data. */
|
|
6660
|
+
source: TelemetryInputSource;
|
|
6661
|
+
};
|
|
5453
6662
|
export declare type TotalCargoWeightInput = {
|
|
5454
6663
|
/** Value of the current weight of the cargo. */
|
|
5455
6664
|
value: Scalars["Float"];
|
|
5456
6665
|
/** Type of the current weight of the cargo. */
|
|
5457
6666
|
type: WeightUnit;
|
|
5458
6667
|
/** Source of inputted data, defaults to 'manual'. */
|
|
5459
|
-
source?:
|
|
6668
|
+
source?: TelemetryInputSource;
|
|
6669
|
+
};
|
|
6670
|
+
export declare type TotalOccupantWeight = {
|
|
6671
|
+
/** Value of the current weight of the occupants. */
|
|
6672
|
+
value: Scalars["Float"];
|
|
6673
|
+
/** Type of the current weight of the occupants. */
|
|
6674
|
+
type: WeightUnit;
|
|
6675
|
+
/** Source of inputted data. */
|
|
6676
|
+
source: TelemetryInputSource;
|
|
5460
6677
|
};
|
|
5461
6678
|
export declare type TotalOccupantWeightInput = {
|
|
5462
6679
|
/** Value of the current weight of the occupants. */
|
|
@@ -5464,7 +6681,7 @@ export declare type TotalOccupantWeightInput = {
|
|
|
5464
6681
|
/** Type of the current weight of the occupants. */
|
|
5465
6682
|
type: WeightUnit;
|
|
5466
6683
|
/** Source of inputted data, defaults to 'manual'. */
|
|
5467
|
-
source?:
|
|
6684
|
+
source?: TelemetryInputSource;
|
|
5468
6685
|
};
|
|
5469
6686
|
export declare enum TurningCircleUnit {
|
|
5470
6687
|
/** Return the turning circle in meters. */
|
|
@@ -5486,9 +6703,9 @@ export declare type Vehicle = {
|
|
|
5486
6703
|
naming: VehicleNaming;
|
|
5487
6704
|
/** Drivetrain of the vehicle. */
|
|
5488
6705
|
drivetrain: VehicleDrivetrain;
|
|
5489
|
-
/** Available connectors for the vehicle. */
|
|
6706
|
+
/** Available connectors for the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
5490
6707
|
connectors: Array<VehicleConnector>;
|
|
5491
|
-
/** Adapters for the connectors of the vehicle. */
|
|
6708
|
+
/** Adapters for the connectors of the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
5492
6709
|
adapters: Array<VehicleConnector>;
|
|
5493
6710
|
/** Battery of the vehicle. */
|
|
5494
6711
|
battery: VehicleBattery;
|
|
@@ -5564,11 +6781,11 @@ export declare enum VehicleBatteryType {
|
|
|
5564
6781
|
LITHIUM_ION = "lithium_ion"
|
|
5565
6782
|
}
|
|
5566
6783
|
export declare type VehicleBody = {
|
|
5567
|
-
/** Width with folded mirrors
|
|
6784
|
+
/** Width with folded mirrors. */
|
|
5568
6785
|
width: Scalars["Float"];
|
|
5569
|
-
/** Height (average height for adjustable suspensions)
|
|
6786
|
+
/** Height (average height for adjustable suspensions). */
|
|
5570
6787
|
height: Scalars["Float"];
|
|
5571
|
-
/** Weight (unladen)
|
|
6788
|
+
/** Weight (unladen). */
|
|
5572
6789
|
weight: VehicleBodyWeight;
|
|
5573
6790
|
/** Number of seats. */
|
|
5574
6791
|
seats: Scalars["Int"];
|
|
@@ -5580,11 +6797,11 @@ export declare type VehicleBodyheightArgs = {
|
|
|
5580
6797
|
unit?: Maybe<MeasurementUnit>;
|
|
5581
6798
|
};
|
|
5582
6799
|
export declare type VehicleBodyWeight = {
|
|
5583
|
-
/** Minimum weight
|
|
6800
|
+
/** Minimum weight. */
|
|
5584
6801
|
minimum?: Maybe<Scalars["Float"]>;
|
|
5585
|
-
/** Nominal weight
|
|
6802
|
+
/** Nominal weight. */
|
|
5586
6803
|
nominal?: Maybe<Scalars["Float"]>;
|
|
5587
|
-
/** Maximal weight
|
|
6804
|
+
/** Maximal weight. */
|
|
5588
6805
|
maximal?: Maybe<Scalars["Float"]>;
|
|
5589
6806
|
};
|
|
5590
6807
|
export declare type VehicleBodyWeightminimumArgs = {
|
|
@@ -5600,19 +6817,36 @@ export declare type VehicleBodyWeightmaximalArgs = {
|
|
|
5600
6817
|
export declare type VehicleConnector = {
|
|
5601
6818
|
/** Connector type, known as connector standard in OCPI. */
|
|
5602
6819
|
standard: ConnectorType;
|
|
5603
|
-
/** Usable electric power
|
|
6820
|
+
/** Usable electric power. */
|
|
5604
6821
|
power: Scalars["Float"];
|
|
5605
|
-
/** Maximum electric power
|
|
6822
|
+
/** Maximum electric power. */
|
|
5606
6823
|
max_electric_power: Scalars["Float"];
|
|
5607
6824
|
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */
|
|
5608
6825
|
time: Scalars["Int"];
|
|
5609
|
-
/**
|
|
6826
|
+
/**
|
|
6827
|
+
* Charging speed.
|
|
6828
|
+
* @deprecated In favor of charge_speed.
|
|
6829
|
+
*/
|
|
5610
6830
|
speed: Scalars["Float"];
|
|
6831
|
+
/** Charging speed. */
|
|
6832
|
+
charge_speed: Scalars["Float"];
|
|
6833
|
+
};
|
|
6834
|
+
/** Vehicle plug model. */
|
|
6835
|
+
export declare type VehicleConnectorpowerArgs = {
|
|
6836
|
+
unit?: Maybe<PowerUnit>;
|
|
6837
|
+
};
|
|
6838
|
+
/** Vehicle plug model. */
|
|
6839
|
+
export declare type VehicleConnectormax_electric_powerArgs = {
|
|
6840
|
+
unit?: Maybe<PowerUnit>;
|
|
5611
6841
|
};
|
|
5612
6842
|
/** Vehicle plug model. */
|
|
5613
6843
|
export declare type VehicleConnectorspeedArgs = {
|
|
5614
6844
|
unit?: Maybe<SpeedUnit>;
|
|
5615
6845
|
};
|
|
6846
|
+
/** Vehicle plug model. */
|
|
6847
|
+
export declare type VehicleConnectorcharge_speedArgs = {
|
|
6848
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
6849
|
+
};
|
|
5616
6850
|
/** The consumption of the vehicle. */
|
|
5617
6851
|
export declare type VehicleConsumptionInput = {
|
|
5618
6852
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
@@ -5657,7 +6891,7 @@ export declare enum VehicleFuel {
|
|
|
5657
6891
|
D = "D",
|
|
5658
6892
|
/** Electricity only. Full electric vehicle. */
|
|
5659
6893
|
E = "E",
|
|
5660
|
-
/** ICE engine available. Uses
|
|
6894
|
+
/** ICE engine available. Uses gasoline. */
|
|
5661
6895
|
P = "P"
|
|
5662
6896
|
}
|
|
5663
6897
|
export declare type VehicleHeatPump = {
|
|
@@ -5718,9 +6952,9 @@ export declare type VehicleList = {
|
|
|
5718
6952
|
naming: VehicleListNaming;
|
|
5719
6953
|
/** Drivetrain of the vehicle. */
|
|
5720
6954
|
drivetrain: VehicleDrivetrain;
|
|
5721
|
-
/** Connectors available for the vehicle. */
|
|
6955
|
+
/** Connectors available for the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
5722
6956
|
connectors: Array<VehicleConnector>;
|
|
5723
|
-
/** Adapters available for the vehicle. */
|
|
6957
|
+
/** Adapters available for the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
5724
6958
|
adapters: Array<VehicleConnector>;
|
|
5725
6959
|
/** Battery of the vehicle. */
|
|
5726
6960
|
battery: VehicleListBattery;
|
|
@@ -5800,9 +7034,10 @@ export declare type VehicleListNaming = {
|
|
|
5800
7034
|
};
|
|
5801
7035
|
export declare type VehicleListRange = {
|
|
5802
7036
|
/**
|
|
5803
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
5804
|
-
*
|
|
5805
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
7037
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
7038
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
7039
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
7040
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
5806
7041
|
*/
|
|
5807
7042
|
chargetrip_range: ChargetripRange;
|
|
5808
7043
|
};
|
|
@@ -5849,9 +7084,9 @@ export declare type VehicleNaming = {
|
|
|
5849
7084
|
chargetrip_version: Scalars["String"];
|
|
5850
7085
|
};
|
|
5851
7086
|
export declare type VehiclePerformance = {
|
|
5852
|
-
/** Acceleration
|
|
7087
|
+
/** Acceleration. */
|
|
5853
7088
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
5854
|
-
/** Top speed of the vehicle
|
|
7089
|
+
/** Top speed of the vehicle. */
|
|
5855
7090
|
top_speed?: Maybe<Scalars["Float"]>;
|
|
5856
7091
|
};
|
|
5857
7092
|
export declare type VehiclePerformanceaccelerationArgs = {
|
|
@@ -5878,13 +7113,13 @@ export declare type VehiclePremium = {
|
|
|
5878
7113
|
succesor_id?: Maybe<Scalars["String"]>;
|
|
5879
7114
|
/** Naming of the vehicle. */
|
|
5880
7115
|
naming: VehiclePremiumNaming;
|
|
5881
|
-
/** Connectors available for the vehicle. */
|
|
7116
|
+
/** Connectors available for the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
5882
7117
|
connectors: Array<VehicleConnector>;
|
|
5883
7118
|
/** Charge details. */
|
|
5884
7119
|
charge: VehiclePremiumCharge;
|
|
5885
7120
|
/** Fast charge details. */
|
|
5886
7121
|
fast_charge: VehiclePremiumFastCharge;
|
|
5887
|
-
/** Adapters of connectors available for a connectors of the vehicle. */
|
|
7122
|
+
/** Adapters of connectors available for a connectors of the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
5888
7123
|
adapters: Array<VehicleConnector>;
|
|
5889
7124
|
/** Battery of the vehicle. */
|
|
5890
7125
|
battery: VehiclePremiumBattery;
|
|
@@ -5962,22 +7197,25 @@ export declare type VehiclePremiumBattery = {
|
|
|
5962
7197
|
/** Type of battery. */
|
|
5963
7198
|
type?: Maybe<VehicleBatteryType>;
|
|
5964
7199
|
};
|
|
7200
|
+
export declare type VehiclePremiumBatteryweightArgs = {
|
|
7201
|
+
unit?: Maybe<WeightUnit>;
|
|
7202
|
+
};
|
|
5965
7203
|
export declare type VehiclePremiumBody = {
|
|
5966
|
-
/** Length
|
|
7204
|
+
/** Length. */
|
|
5967
7205
|
length?: Maybe<Scalars["Float"]>;
|
|
5968
|
-
/** Width with folded mirrors
|
|
7206
|
+
/** Width with folded mirrors. */
|
|
5969
7207
|
width: Scalars["Float"];
|
|
5970
|
-
/** Width of vehicle including mirrors
|
|
7208
|
+
/** Width of vehicle including mirrors. */
|
|
5971
7209
|
full_width?: Maybe<Scalars["Float"]>;
|
|
5972
|
-
/** Height (average height for adjustable suspensions)
|
|
7210
|
+
/** Height (average height for adjustable suspensions). */
|
|
5973
7211
|
height: Scalars["Float"];
|
|
5974
7212
|
/** Indicates if length/width/height fields are estimations. */
|
|
5975
7213
|
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5976
|
-
/** Wheelbase
|
|
7214
|
+
/** Wheelbase. */
|
|
5977
7215
|
wheelbase?: Maybe<Scalars["Float"]>;
|
|
5978
7216
|
/** Indicates if wheelbase field is estimated. */
|
|
5979
7217
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5980
|
-
/** Ground clearance of a vehicle as specified by the OEM
|
|
7218
|
+
/** Ground clearance of a vehicle as specified by the OEM. */
|
|
5981
7219
|
ground_clearance?: Maybe<Scalars["Float"]>;
|
|
5982
7220
|
/** Weight (unladen EU). */
|
|
5983
7221
|
weight: VehicleBodyWeight;
|
|
@@ -5989,30 +7227,30 @@ export declare type VehiclePremiumBody = {
|
|
|
5989
7227
|
weight_payload?: Maybe<VehicleBodyWeight>;
|
|
5990
7228
|
/** Indicates if weight field is estimated. */
|
|
5991
7229
|
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5992
|
-
/** Maximum payload allowed for the vehicle
|
|
7230
|
+
/** Maximum payload allowed for the vehicle. */
|
|
5993
7231
|
weight_max_payload?: Maybe<Scalars["Float"]>;
|
|
5994
7232
|
/**
|
|
5995
|
-
* Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload)
|
|
7233
|
+
* Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload).
|
|
5996
7234
|
* @deprecated In favor of weight_gvwr.nominal
|
|
5997
7235
|
*/
|
|
5998
7236
|
max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
|
|
5999
|
-
/** Standard luggage capacity
|
|
7237
|
+
/** Standard luggage capacity. */
|
|
6000
7238
|
boot_capacity?: Maybe<Scalars["Float"]>;
|
|
6001
|
-
/** Storage capacity of front trunk/under the hood (frunk)
|
|
7239
|
+
/** Storage capacity of front trunk/under the hood (frunk). */
|
|
6002
7240
|
boot_front_capacity?: Maybe<Scalars["Float"]>;
|
|
6003
|
-
/** Maximum luggage capacity
|
|
7241
|
+
/** Maximum luggage capacity. */
|
|
6004
7242
|
boot_capacity_max?: Maybe<Scalars["Float"]>;
|
|
6005
7243
|
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */
|
|
6006
7244
|
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
6007
|
-
/** Maximum unbraked towing weight
|
|
7245
|
+
/** Maximum unbraked towing weight. */
|
|
6008
7246
|
tow_weight_unbraked?: Maybe<Scalars["Float"]>;
|
|
6009
|
-
/** Maximum braked towing weight
|
|
7247
|
+
/** Maximum braked towing weight. */
|
|
6010
7248
|
tow_weight_braked?: Maybe<Scalars["Float"]>;
|
|
6011
7249
|
/** Indicates if tow weight fields are estimations. */
|
|
6012
7250
|
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6013
|
-
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation
|
|
7251
|
+
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation. */
|
|
6014
7252
|
tow_weight_vertical_load?: Maybe<Scalars["Float"]>;
|
|
6015
|
-
/** Maximum load on roof of the vehicle
|
|
7253
|
+
/** Maximum load on roof of the vehicle. */
|
|
6016
7254
|
roof_load_max?: Maybe<Scalars["Float"]>;
|
|
6017
7255
|
/** Body type, listed in local naming convention where applicable. */
|
|
6018
7256
|
body_type?: Maybe<Scalars["String"]>;
|
|
@@ -6022,7 +7260,7 @@ export declare type VehiclePremiumBody = {
|
|
|
6022
7260
|
seats: Scalars["Int"];
|
|
6023
7261
|
/** Indicates whether a vehicle has roof rails as a standard. */
|
|
6024
7262
|
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
6025
|
-
/** Turning circle of the vehicle kerb-to-kerb
|
|
7263
|
+
/** Turning circle of the vehicle kerb-to-kerb. */
|
|
6026
7264
|
turning_circle?: Maybe<Scalars["Float"]>;
|
|
6027
7265
|
/** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms). */
|
|
6028
7266
|
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
@@ -6056,6 +7294,9 @@ export declare type VehiclePremiumBodymax_gross_vehicle_weightArgs = {
|
|
|
6056
7294
|
export declare type VehiclePremiumBodyboot_capacityArgs = {
|
|
6057
7295
|
unit?: Maybe<VolumeUnit>;
|
|
6058
7296
|
};
|
|
7297
|
+
export declare type VehiclePremiumBodyboot_front_capacityArgs = {
|
|
7298
|
+
unit?: Maybe<VolumeUnit>;
|
|
7299
|
+
};
|
|
6059
7300
|
export declare type VehiclePremiumBodyboot_capacity_maxArgs = {
|
|
6060
7301
|
unit?: Maybe<VolumeUnit>;
|
|
6061
7302
|
};
|
|
@@ -6089,19 +7330,22 @@ export declare type VehiclePremiumCharge = {
|
|
|
6089
7330
|
vehicle_to_everything?: Maybe<VehicleToEverything>;
|
|
6090
7331
|
};
|
|
6091
7332
|
export declare type VehiclePremiumChargeAlternativeOBC = {
|
|
6092
|
-
/** Maximum power OBC can accept to charge a battery (
|
|
7333
|
+
/** Maximum power OBC can accept to charge a battery (alternative OBC). */
|
|
6093
7334
|
power?: Maybe<Scalars["Float"]>;
|
|
6094
|
-
/** Number of phases the OBC accepts to achieve maximum power (
|
|
7335
|
+
/** Number of phases the OBC accepts to achieve maximum power (alternative OBC). */
|
|
6095
7336
|
phases?: Maybe<Scalars["Int"]>;
|
|
6096
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (
|
|
7337
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (alternative OBC). */
|
|
6097
7338
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
6098
|
-
/** Minutes needed to charge from 0% to 100% (
|
|
7339
|
+
/** Minutes needed to charge from 0% to 100% (alternative OBC). */
|
|
6099
7340
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6100
|
-
/** Charging speed when charging at maximum power (
|
|
7341
|
+
/** Charging speed when charging at maximum power (alternative OBC). */
|
|
6101
7342
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6102
|
-
/** Charging details for the
|
|
7343
|
+
/** Charging details for the alternative OBC at several charging points. */
|
|
6103
7344
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
6104
7345
|
};
|
|
7346
|
+
export declare type VehiclePremiumChargeAlternativeOBCpowerArgs = {
|
|
7347
|
+
unit?: Maybe<PowerUnit>;
|
|
7348
|
+
};
|
|
6105
7349
|
export declare type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {
|
|
6106
7350
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
6107
7351
|
};
|
|
@@ -6122,9 +7366,12 @@ export declare type VehiclePremiumChargeOBCTable = {
|
|
|
6122
7366
|
charge_power?: Maybe<Scalars["Float"]>;
|
|
6123
7367
|
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */
|
|
6124
7368
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6125
|
-
/** Charging speed when charging at maximum power (standard OBC with this EVSE)
|
|
7369
|
+
/** Charging speed when charging at maximum power (standard OBC with this EVSE). */
|
|
6126
7370
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6127
7371
|
};
|
|
7372
|
+
export declare type VehiclePremiumChargeOBCTablecharge_powerArgs = {
|
|
7373
|
+
unit?: Maybe<PowerUnit>;
|
|
7374
|
+
};
|
|
6128
7375
|
export declare type VehiclePremiumChargeOBCTablecharge_speedArgs = {
|
|
6129
7376
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
6130
7377
|
};
|
|
@@ -6137,11 +7384,14 @@ export declare type VehiclePremiumChargeOptionOBC = {
|
|
|
6137
7384
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
6138
7385
|
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
6139
7386
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6140
|
-
/** Charging speed when charging at maximum power (standard OBC)
|
|
7387
|
+
/** Charging speed when charging at maximum power (standard OBC). */
|
|
6141
7388
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6142
7389
|
/** Charging details for the standard OBC at several charging points. */
|
|
6143
7390
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
6144
7391
|
};
|
|
7392
|
+
export declare type VehiclePremiumChargeOptionOBCpowerArgs = {
|
|
7393
|
+
unit?: Maybe<PowerUnit>;
|
|
7394
|
+
};
|
|
6145
7395
|
export declare type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
|
|
6146
7396
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
6147
7397
|
};
|
|
@@ -6159,6 +7409,12 @@ export declare type VehiclePremiumChargePower = {
|
|
|
6159
7409
|
/** Average value. */
|
|
6160
7410
|
average?: Maybe<Scalars["Float"]>;
|
|
6161
7411
|
};
|
|
7412
|
+
export declare type VehiclePremiumChargePowermaxArgs = {
|
|
7413
|
+
unit?: Maybe<PowerUnit>;
|
|
7414
|
+
};
|
|
7415
|
+
export declare type VehiclePremiumChargePoweraverageArgs = {
|
|
7416
|
+
unit?: Maybe<PowerUnit>;
|
|
7417
|
+
};
|
|
6162
7418
|
export declare type VehiclePremiumChargeSecondPlug = {
|
|
6163
7419
|
/** Location of charge port. */
|
|
6164
7420
|
location?: Maybe<Scalars["String"]>;
|
|
@@ -6174,13 +7430,16 @@ export declare type VehiclePremiumChargeStandardOBC = {
|
|
|
6174
7430
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
6175
7431
|
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
6176
7432
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6177
|
-
/** Charging speed when charging at maximum power (standard OBC)
|
|
7433
|
+
/** Charging speed when charging at maximum power (standard OBC). */
|
|
6178
7434
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6179
7435
|
/** Indicates if Charge_Standard fields are estimated. */
|
|
6180
7436
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6181
7437
|
/** Charging details for the standard OBC at several charging points. */
|
|
6182
7438
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
6183
7439
|
};
|
|
7440
|
+
export declare type VehiclePremiumChargeStandardOBCpowerArgs = {
|
|
7441
|
+
unit?: Maybe<PowerUnit>;
|
|
7442
|
+
};
|
|
6184
7443
|
export declare type VehiclePremiumChargeStandardOBCcharge_speedArgs = {
|
|
6185
7444
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
6186
7445
|
};
|
|
@@ -6193,13 +7452,13 @@ export declare type VehiclePremiumDrivetrain = {
|
|
|
6193
7452
|
propulsion?: Maybe<VehiclePropulsion>;
|
|
6194
7453
|
/** Indicates if propulsion field is estimated. */
|
|
6195
7454
|
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6196
|
-
/** Maximum (combined) power output
|
|
7455
|
+
/** Maximum (combined) power output. */
|
|
6197
7456
|
power?: Maybe<Scalars["Float"]>;
|
|
6198
7457
|
/** Indicates if power field is estimated. */
|
|
6199
7458
|
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6200
|
-
/** Maximum (combine) power output
|
|
7459
|
+
/** Maximum (combine) power output. */
|
|
6201
7460
|
power_hp?: Maybe<Scalars["Float"]>;
|
|
6202
|
-
/** Maximum (combine) torque output
|
|
7461
|
+
/** Maximum (combine) torque output. */
|
|
6203
7462
|
torque?: Maybe<Scalars["Float"]>;
|
|
6204
7463
|
/** Indicates if torque field is estimated. */
|
|
6205
7464
|
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6224,15 +7483,15 @@ export declare type VehiclePremiumEfficiency = {
|
|
|
6224
7483
|
provider?: Maybe<VehiclePremiumEfficiencyProvider>;
|
|
6225
7484
|
};
|
|
6226
7485
|
export declare type VehiclePremiumEfficiencyNEDC = {
|
|
6227
|
-
/** Rated efficiency in NEDC combined cycle
|
|
7486
|
+
/** Rated efficiency in NEDC combined cycle. */
|
|
6228
7487
|
value?: Maybe<Scalars["Float"]>;
|
|
6229
|
-
/** Rated efficiency in NEDC combined cycle presented in gas equivalent
|
|
7488
|
+
/** Rated efficiency in NEDC combined cycle presented in gas equivalent. */
|
|
6230
7489
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6231
|
-
/** Rated vehicle efficiency in NEDC combined cycle (based on value)
|
|
7490
|
+
/** Rated vehicle efficiency in NEDC combined cycle (based on value). */
|
|
6232
7491
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
6233
|
-
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent
|
|
7492
|
+
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent. */
|
|
6234
7493
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6235
|
-
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated)
|
|
7494
|
+
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated). */
|
|
6236
7495
|
co2?: Maybe<Scalars["Float"]>;
|
|
6237
7496
|
};
|
|
6238
7497
|
export declare type VehiclePremiumEfficiencyNEDCvalueArgs = {
|
|
@@ -6251,9 +7510,9 @@ export declare type VehiclePremiumEfficiencyNEDCco2Args = {
|
|
|
6251
7510
|
unit?: Maybe<EmissionRateUnit>;
|
|
6252
7511
|
};
|
|
6253
7512
|
export declare type VehiclePremiumEfficiencyProvider = {
|
|
6254
|
-
/** Vehicle efficiency based on RealRange (usable battery/range)
|
|
7513
|
+
/** Vehicle efficiency based on RealRange (usable battery/range). */
|
|
6255
7514
|
value?: Maybe<Scalars["Float"]>;
|
|
6256
|
-
/** Vehicle efficiency based on RealRange presented in gas equivalent
|
|
7515
|
+
/** Vehicle efficiency based on RealRange presented in gas equivalent. */
|
|
6257
7516
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6258
7517
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
6259
7518
|
worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
@@ -6267,11 +7526,11 @@ export declare type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {
|
|
|
6267
7526
|
unit?: Maybe<FuelConsumptionUnit>;
|
|
6268
7527
|
};
|
|
6269
7528
|
export declare type VehiclePremiumEfficiencyProviderValue = {
|
|
6270
|
-
/** Estimated value on highway or express roads
|
|
7529
|
+
/** Estimated value on highway or express roads. */
|
|
6271
7530
|
highway?: Maybe<Scalars["Float"]>;
|
|
6272
|
-
/** Estimated value on city roads
|
|
7531
|
+
/** Estimated value on city roads. */
|
|
6273
7532
|
city?: Maybe<Scalars["Float"]>;
|
|
6274
|
-
/** Estimated combined value
|
|
7533
|
+
/** Estimated combined value. */
|
|
6275
7534
|
combined?: Maybe<Scalars["Float"]>;
|
|
6276
7535
|
};
|
|
6277
7536
|
export declare type VehiclePremiumEfficiencyProviderValuehighwayArgs = {
|
|
@@ -6284,15 +7543,15 @@ export declare type VehiclePremiumEfficiencyProviderValuecombinedArgs = {
|
|
|
6284
7543
|
unit?: Maybe<DistanceUnit>;
|
|
6285
7544
|
};
|
|
6286
7545
|
export declare type VehiclePremiumEfficiencyWLTP = {
|
|
6287
|
-
/** Rated efficiency in WLTP combined cycle
|
|
7546
|
+
/** Rated efficiency in WLTP combined cycle. */
|
|
6288
7547
|
value?: Maybe<Scalars["Float"]>;
|
|
6289
|
-
/** Rated efficiency in WLTP combined cycle presented in gas equivalent
|
|
7548
|
+
/** Rated efficiency in WLTP combined cycle presented in gas equivalent. */
|
|
6290
7549
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6291
|
-
/** Rated vehicle efficiency in WLTP combined cycle (based on value)
|
|
7550
|
+
/** Rated vehicle efficiency in WLTP combined cycle (based on value). */
|
|
6292
7551
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
6293
|
-
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent
|
|
7552
|
+
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent. */
|
|
6294
7553
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6295
|
-
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated)
|
|
7554
|
+
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated). */
|
|
6296
7555
|
co2?: Maybe<Scalars["Float"]>;
|
|
6297
7556
|
};
|
|
6298
7557
|
export declare type VehiclePremiumEfficiencyWLTPvalueArgs = {
|
|
@@ -6313,13 +7572,13 @@ export declare type VehiclePremiumEfficiencyWLTPco2Args = {
|
|
|
6313
7572
|
export declare type VehiclePremiumEfficiencyWLTPTEH = {
|
|
6314
7573
|
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
|
|
6315
7574
|
value?: Maybe<Scalars["Float"]>;
|
|
6316
|
-
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent
|
|
7575
|
+
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent. */
|
|
6317
7576
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6318
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value)
|
|
7577
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value). */
|
|
6319
7578
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
6320
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent
|
|
7579
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent. */
|
|
6321
7580
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6322
|
-
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated)
|
|
7581
|
+
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated). */
|
|
6323
7582
|
co2?: Maybe<Scalars["Float"]>;
|
|
6324
7583
|
};
|
|
6325
7584
|
export declare type VehiclePremiumEfficiencyWLTPTEHvalueArgs = {
|
|
@@ -6344,7 +7603,7 @@ export declare type VehiclePremiumFastCharge = {
|
|
|
6344
7603
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
6345
7604
|
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */
|
|
6346
7605
|
charge_time?: Maybe<Scalars["Float"]>;
|
|
6347
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger)
|
|
7606
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger). */
|
|
6348
7607
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6349
7608
|
/** Indicates if fast charge is optional in some markets/regions. */
|
|
6350
7609
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6373,7 +7632,7 @@ export declare type VehiclePremiumFastChargeTable = {
|
|
|
6373
7632
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
6374
7633
|
/** Minutes needed to charge from 10% to 80% (optimal conditions). */
|
|
6375
7634
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6376
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions)
|
|
7635
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions). */
|
|
6377
7636
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6378
7637
|
/** Indicates if maximum power during fast charging is limited by the vehicle. */
|
|
6379
7638
|
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6421,11 +7680,11 @@ export declare type VehiclePremiumNaming = {
|
|
|
6421
7680
|
height_version?: Maybe<Scalars["String"]>;
|
|
6422
7681
|
};
|
|
6423
7682
|
export declare type VehiclePremiumPerformance = {
|
|
6424
|
-
/** Acceleration 0-100 km/h
|
|
7683
|
+
/** Acceleration 0-100 km/h. */
|
|
6425
7684
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
6426
7685
|
/** Indicates if acceleration field is estimated. */
|
|
6427
7686
|
acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6428
|
-
/** Top speed of the vehicle
|
|
7687
|
+
/** Top speed of the vehicle. */
|
|
6429
7688
|
top_speed?: Maybe<Scalars["Float"]>;
|
|
6430
7689
|
/** Indicates if top_speed field is estimated. */
|
|
6431
7690
|
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6462,17 +7721,17 @@ export declare type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
|
6462
7721
|
unit?: Maybe<CurrencyUnit>;
|
|
6463
7722
|
};
|
|
6464
7723
|
export declare type VehiclePremiumRange = {
|
|
6465
|
-
/** Rated range in WLTP combined cycle (NULL if not WLTP rated)
|
|
7724
|
+
/** Rated range in WLTP combined cycle (NULL if not WLTP rated). */
|
|
6466
7725
|
wltp?: Maybe<Scalars["Float"]>;
|
|
6467
7726
|
/** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
|
|
6468
7727
|
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6469
7728
|
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */
|
|
6470
|
-
wltp_teh?: Maybe<Scalars["
|
|
6471
|
-
/** Rated range in NEDC combined cycle (NULL if not NEDC rated)
|
|
7729
|
+
wltp_teh?: Maybe<Scalars["Float"]>;
|
|
7730
|
+
/** Rated range in NEDC combined cycle (NULL if not NEDC rated). */
|
|
6472
7731
|
nedc?: Maybe<Scalars["Float"]>;
|
|
6473
7732
|
/** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
|
|
6474
7733
|
nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6475
|
-
/** Index range
|
|
7734
|
+
/** Index range. */
|
|
6476
7735
|
provider?: Maybe<Scalars["Float"]>;
|
|
6477
7736
|
/** Indicates if index range is estimated. */
|
|
6478
7737
|
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6481,27 +7740,31 @@ export declare type VehiclePremiumRange = {
|
|
|
6481
7740
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
6482
7741
|
best: VehiclePremiumRangeValue;
|
|
6483
7742
|
/**
|
|
6484
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
6485
|
-
*
|
|
6486
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
7743
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
7744
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
7745
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
7746
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
6487
7747
|
*/
|
|
6488
7748
|
chargetrip_range: ChargetripRange;
|
|
6489
7749
|
};
|
|
6490
7750
|
export declare type VehiclePremiumRangewltpArgs = {
|
|
6491
|
-
unit?: Maybe<
|
|
7751
|
+
unit?: Maybe<DistanceUnit>;
|
|
7752
|
+
};
|
|
7753
|
+
export declare type VehiclePremiumRangewltp_tehArgs = {
|
|
7754
|
+
unit?: Maybe<DistanceUnit>;
|
|
6492
7755
|
};
|
|
6493
7756
|
export declare type VehiclePremiumRangenedcArgs = {
|
|
6494
|
-
unit?: Maybe<
|
|
7757
|
+
unit?: Maybe<DistanceUnit>;
|
|
6495
7758
|
};
|
|
6496
7759
|
export declare type VehiclePremiumRangeproviderArgs = {
|
|
6497
|
-
unit?: Maybe<
|
|
7760
|
+
unit?: Maybe<DistanceUnit>;
|
|
6498
7761
|
};
|
|
6499
7762
|
export declare type VehiclePremiumRangeValue = {
|
|
6500
|
-
/** Estimated value on highway or express roads
|
|
7763
|
+
/** Estimated value on highway or express roads. */
|
|
6501
7764
|
highway: Scalars["Float"];
|
|
6502
|
-
/** Estimated value on city roads
|
|
7765
|
+
/** Estimated value on city roads. */
|
|
6503
7766
|
city: Scalars["Float"];
|
|
6504
|
-
/** Estimated combined value
|
|
7767
|
+
/** Estimated combined value. */
|
|
6505
7768
|
combined: Scalars["Float"];
|
|
6506
7769
|
};
|
|
6507
7770
|
export declare type VehiclePremiumRangeValuehighwayArgs = {
|
|
@@ -6518,11 +7781,11 @@ export declare type VehiclePremiumRouting = {
|
|
|
6518
7781
|
fast_charging_support: Scalars["Boolean"];
|
|
6519
7782
|
/** Drag coefficient. */
|
|
6520
7783
|
drag_coefficient: Scalars["Float"];
|
|
6521
|
-
/** Tire pressure recommended by manufacturer
|
|
7784
|
+
/** Tire pressure recommended by manufacturer. */
|
|
6522
7785
|
tire_pressure: Scalars["Float"];
|
|
6523
7786
|
/** Extra consumption model. */
|
|
6524
7787
|
consumption?: Maybe<VehiclePremiumRoutingConsumption>;
|
|
6525
|
-
/** Amount of
|
|
7788
|
+
/** Amount of gasoline that an equivalent gasoline vehicle would consume. */
|
|
6526
7789
|
fuel_consumption?: Maybe<Scalars["Float"]>;
|
|
6527
7790
|
};
|
|
6528
7791
|
export declare type VehiclePremiumRoutingtire_pressureArgs = {
|
|
@@ -6532,7 +7795,7 @@ export declare type VehiclePremiumRoutingfuel_consumptionArgs = {
|
|
|
6532
7795
|
unit?: Maybe<FuelConsumptionUnit>;
|
|
6533
7796
|
};
|
|
6534
7797
|
export declare type VehiclePremiumRoutingConsumption = {
|
|
6535
|
-
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in
|
|
7798
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc */
|
|
6536
7799
|
auxiliary?: Maybe<Scalars["Float"]>;
|
|
6537
7800
|
/**
|
|
6538
7801
|
* Consumption, in kWh, of the auxiliaries.
|
|
@@ -6550,12 +7813,21 @@ export declare type VehiclePremiumRoutingConsumption = {
|
|
|
6550
7813
|
*/
|
|
6551
7814
|
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
6552
7815
|
};
|
|
7816
|
+
export declare type VehiclePremiumRoutingConsumptionauxiliaryArgs = {
|
|
7817
|
+
unit?: Maybe<AuxiliaryConsumptionUnit>;
|
|
7818
|
+
};
|
|
6553
7819
|
export declare type VehiclePremiumRoutingConsumptionValue = {
|
|
6554
7820
|
/** Best (lowest) consumption in summer. */
|
|
6555
7821
|
best?: Maybe<Scalars["Float"]>;
|
|
6556
7822
|
/** Best (lowest) consumption in winter. */
|
|
6557
7823
|
worst?: Maybe<Scalars["Float"]>;
|
|
6558
7824
|
};
|
|
7825
|
+
export declare type VehiclePremiumRoutingConsumptionValuebestArgs = {
|
|
7826
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
7827
|
+
};
|
|
7828
|
+
export declare type VehiclePremiumRoutingConsumptionValueworstArgs = {
|
|
7829
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
7830
|
+
};
|
|
6559
7831
|
export declare type VehiclePremiumSafety = {
|
|
6560
7832
|
/** Number of seats equipped with ISOFIX. */
|
|
6561
7833
|
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
@@ -6607,7 +7879,7 @@ export declare enum VehiclePurpose {
|
|
|
6607
7879
|
UTILITY = "utility"
|
|
6608
7880
|
}
|
|
6609
7881
|
export declare type VehicleRange = {
|
|
6610
|
-
/** Index range
|
|
7882
|
+
/** Index range. */
|
|
6611
7883
|
provider?: Maybe<Scalars["Float"]>;
|
|
6612
7884
|
/** Indicates if index range is estimated. */
|
|
6613
7885
|
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6616,9 +7888,10 @@ export declare type VehicleRange = {
|
|
|
6616
7888
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
6617
7889
|
best: VehicleRangeValue;
|
|
6618
7890
|
/**
|
|
6619
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
6620
|
-
*
|
|
6621
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
7891
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
7892
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
7893
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
7894
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
6622
7895
|
*/
|
|
6623
7896
|
chargetrip_range: ChargetripRange;
|
|
6624
7897
|
};
|
|
@@ -6626,11 +7899,11 @@ export declare type VehicleRangeproviderArgs = {
|
|
|
6626
7899
|
unit?: Maybe<DistanceUnit>;
|
|
6627
7900
|
};
|
|
6628
7901
|
export declare type VehicleRangeValue = {
|
|
6629
|
-
/** Estimated value on the highway or express roads
|
|
7902
|
+
/** Estimated value on the highway or express roads. */
|
|
6630
7903
|
highway: Scalars["Float"];
|
|
6631
|
-
/** Estimated value on the cities road
|
|
7904
|
+
/** Estimated value on the cities road. */
|
|
6632
7905
|
city: Scalars["Float"];
|
|
6633
|
-
/** Estimated combined value
|
|
7906
|
+
/** Estimated combined value. */
|
|
6634
7907
|
combined: Scalars["Float"];
|
|
6635
7908
|
};
|
|
6636
7909
|
export declare type VehicleRangeValuehighwayArgs = {
|
|
@@ -6660,13 +7933,21 @@ export declare type VehicleRouting = {
|
|
|
6660
7933
|
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
|
|
6661
7934
|
fast_charging_support: Scalars["Boolean"];
|
|
6662
7935
|
};
|
|
7936
|
+
export declare type VehicleSpeed = {
|
|
7937
|
+
/** Value of the vehicle speed. */
|
|
7938
|
+
value: Scalars["Float"];
|
|
7939
|
+
/** Type of the vehicle speed. */
|
|
7940
|
+
type: SpeedUnit;
|
|
7941
|
+
/** Source of inputted data. */
|
|
7942
|
+
source: TelemetryInputSource;
|
|
7943
|
+
};
|
|
6663
7944
|
export declare type VehicleSpeedInput = {
|
|
6664
7945
|
/** Value of the vehicle speed. */
|
|
6665
7946
|
value: Scalars["Float"];
|
|
6666
7947
|
/** Type of the vehicle speed. */
|
|
6667
7948
|
type: SpeedUnit;
|
|
6668
7949
|
/** Source of inputted data, defaults to 'manual'. */
|
|
6669
|
-
source?:
|
|
7950
|
+
source?: TelemetryInputSource;
|
|
6670
7951
|
};
|
|
6671
7952
|
/** Status of a vehicle. */
|
|
6672
7953
|
export declare enum VehicleStatus {
|
|
@@ -6751,6 +8032,7 @@ export declare enum VolumeUnit {
|
|
|
6751
8032
|
/** Return the volume in cubic feet. */
|
|
6752
8033
|
CUBIC_FOOT = "cubic_foot"
|
|
6753
8034
|
}
|
|
8035
|
+
/** Weight unit. */
|
|
6754
8036
|
export declare enum WeightUnit {
|
|
6755
8037
|
/** Return the weight in kilograms. */
|
|
6756
8038
|
KILOGRAM = "kilogram",
|