@chargetrip/types 1.41.0 → 1.42.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 +9 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +23 -12
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +23 -12
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +283 -157
- package/graphql.schema.json +576 -327
- package/package.json +1 -1
- package/src/graphql.ts +299 -158
package/src/graphql.ts
CHANGED
|
@@ -13,16 +13,18 @@ export type Scalars = {
|
|
|
13
13
|
Boolean: boolean;
|
|
14
14
|
Int: number;
|
|
15
15
|
Float: number;
|
|
16
|
-
/** Returns 'OK' */
|
|
16
|
+
/** Acknowledgement scalar. Returns 'OK'. */
|
|
17
17
|
Acknowledgement: any;
|
|
18
|
-
/** The date and time scalar */
|
|
18
|
+
/** The date and time scalar. */
|
|
19
19
|
DateTime: string;
|
|
20
20
|
/** Email address scalar, email regex with HTML sanitization. */
|
|
21
21
|
Email: any;
|
|
22
|
-
/** Any JSON object */
|
|
22
|
+
/** Any JSON object or array. */
|
|
23
23
|
JSON: { [key: string]: number | string | boolean | null | Scalars["JSON"] };
|
|
24
24
|
/** The non empty string scalar. */
|
|
25
25
|
NonEmptyString: any;
|
|
26
|
+
/** 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. */
|
|
27
|
+
PlainID: any;
|
|
26
28
|
/**
|
|
27
29
|
* The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.
|
|
28
30
|
* The PlainString type represents free-form human-readable text with HTML sanitization.
|
|
@@ -210,7 +212,7 @@ export type BatteryTemperatureInput = {
|
|
|
210
212
|
source?: Maybe<TelemetryInputSource>;
|
|
211
213
|
};
|
|
212
214
|
|
|
213
|
-
/**
|
|
215
|
+
/** Deprecated: In favour of Vehicle. */
|
|
214
216
|
export type Car = {
|
|
215
217
|
/** Cars unique ID. */
|
|
216
218
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -363,6 +365,7 @@ export type Car = {
|
|
|
363
365
|
imagesData?: Maybe<CarImageData>;
|
|
364
366
|
};
|
|
365
367
|
|
|
368
|
+
/** Deprecated: In favour of VehicleAvailability. */
|
|
366
369
|
export type CarAvailability = {
|
|
367
370
|
/**
|
|
368
371
|
* Availability of car.
|
|
@@ -381,6 +384,7 @@ export type CarAvailability = {
|
|
|
381
384
|
status?: Maybe<Scalars["Int"]>;
|
|
382
385
|
};
|
|
383
386
|
|
|
387
|
+
/** Deprecated: In favour of VehicleBattery. */
|
|
384
388
|
export type CarBattery = {
|
|
385
389
|
/** Usable battery capacity in kWh. */
|
|
386
390
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
@@ -398,7 +402,7 @@ export type CarBatteryEfficiency = {
|
|
|
398
402
|
best?: Maybe<CarEstimationData>;
|
|
399
403
|
};
|
|
400
404
|
|
|
401
|
-
/**
|
|
405
|
+
/** Deprecated: In favour of VehicleBatteryFieldEstimations. */
|
|
402
406
|
export enum CarBatteryFieldEstimations {
|
|
403
407
|
/** Both of the battery kWh fields are estimations. */
|
|
404
408
|
B = "B",
|
|
@@ -410,6 +414,7 @@ export enum CarBatteryFieldEstimations {
|
|
|
410
414
|
U = "U"
|
|
411
415
|
}
|
|
412
416
|
|
|
417
|
+
/** Deprecated: In favour of VehicleBody. */
|
|
413
418
|
export type CarBody = {
|
|
414
419
|
/** Width with folded mirrors in mm. */
|
|
415
420
|
width?: Maybe<Scalars["Int"]>;
|
|
@@ -433,7 +438,7 @@ export type CarConsumption = {
|
|
|
433
438
|
best?: Maybe<Scalars["Float"]>;
|
|
434
439
|
};
|
|
435
440
|
|
|
436
|
-
/**
|
|
441
|
+
/** Deprecated: In favour of VehicleConsumptionInput. */
|
|
437
442
|
export type CarConsumptionInput = {
|
|
438
443
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
439
444
|
worst?: Maybe<Scalars["Float"]>;
|
|
@@ -441,7 +446,7 @@ export type CarConsumptionInput = {
|
|
|
441
446
|
best?: Maybe<Scalars["Float"]>;
|
|
442
447
|
};
|
|
443
448
|
|
|
444
|
-
/**
|
|
449
|
+
/** Deprecated: In favour of VehicleDrivetrain. */
|
|
445
450
|
export enum CarDrivetrain {
|
|
446
451
|
/** Battery Electric Car.. */
|
|
447
452
|
BEV = "BEV",
|
|
@@ -469,12 +474,13 @@ export type CarExtraConsumption = {
|
|
|
469
474
|
idle?: Maybe<CarConsumption>;
|
|
470
475
|
};
|
|
471
476
|
|
|
472
|
-
/**
|
|
477
|
+
/** Deprecated: In favour of VehicleFuel. */
|
|
473
478
|
export enum CarFuel {
|
|
474
479
|
/** Electricity only. Full electric car. */
|
|
475
480
|
E = "E"
|
|
476
481
|
}
|
|
477
482
|
|
|
483
|
+
/** Deprecated: In favour of VehicleImage */
|
|
478
484
|
export type CarImage = {
|
|
479
485
|
/** Image id. */
|
|
480
486
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -506,7 +512,7 @@ export type CarImageData = {
|
|
|
506
512
|
brand_thumbnail?: Maybe<CarImage>;
|
|
507
513
|
};
|
|
508
514
|
|
|
509
|
-
/**
|
|
515
|
+
/** Deprecated: In favour of VehicleImageType. */
|
|
510
516
|
export enum CarImageType {
|
|
511
517
|
/** Images provided by a Car Datasource. */
|
|
512
518
|
PROVIDER = "provider",
|
|
@@ -522,13 +528,13 @@ export enum CarImageType {
|
|
|
522
528
|
PLACEHOLDER = "placeholder"
|
|
523
529
|
}
|
|
524
530
|
|
|
525
|
-
/**
|
|
531
|
+
/** Deprecated: In favour of VehicleImageTypeUploadable. */
|
|
526
532
|
export enum CarImageTypeUploadable {
|
|
527
533
|
/** Full size image with a resolution at least 1536x864 px. */
|
|
528
534
|
IMAGE = "image"
|
|
529
535
|
}
|
|
530
536
|
|
|
531
|
-
/**
|
|
537
|
+
/** Deprecated: In favour of VehicleList. */
|
|
532
538
|
export type CarList = {
|
|
533
539
|
/** Cars unique ID. */
|
|
534
540
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -657,6 +663,7 @@ export type CarList = {
|
|
|
657
663
|
images?: Maybe<Array<Maybe<CarImage>>>;
|
|
658
664
|
};
|
|
659
665
|
|
|
666
|
+
/** Deprecated: In favour of VehicleListAvailability. */
|
|
660
667
|
export type CarListAvailability = {
|
|
661
668
|
/**
|
|
662
669
|
* Availability of car.
|
|
@@ -675,6 +682,7 @@ export type CarListAvailability = {
|
|
|
675
682
|
status?: Maybe<Scalars["Int"]>;
|
|
676
683
|
};
|
|
677
684
|
|
|
685
|
+
/** Deprecated: In favour of VehicleListBattery. */
|
|
678
686
|
export type CarListBattery = {
|
|
679
687
|
/** Usable battery capacity in kWh. */
|
|
680
688
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
@@ -682,11 +690,13 @@ export type CarListBattery = {
|
|
|
682
690
|
full_kwh?: Maybe<Scalars["Float"]>;
|
|
683
691
|
};
|
|
684
692
|
|
|
693
|
+
/** Deprecated: In favour of VehicleListBody. */
|
|
685
694
|
export type CarListBody = {
|
|
686
695
|
/** Number of seats in car. */
|
|
687
696
|
seats?: Maybe<Scalars["Int"]>;
|
|
688
697
|
};
|
|
689
698
|
|
|
699
|
+
/** Deprecated: In favour of VehicleListFilter. */
|
|
690
700
|
export type CarListFilter = {
|
|
691
701
|
/**
|
|
692
702
|
* Availability of car.
|
|
@@ -707,6 +717,7 @@ export type CarListFilter = {
|
|
|
707
717
|
connect?: Maybe<ConnectFilter>;
|
|
708
718
|
};
|
|
709
719
|
|
|
720
|
+
/** Deprecated: In favour of VehicleListMedia. */
|
|
710
721
|
export type CarListMedia = {
|
|
711
722
|
/** Latest image of the car. */
|
|
712
723
|
image?: Maybe<CarImage>;
|
|
@@ -716,6 +727,7 @@ export type CarListMedia = {
|
|
|
716
727
|
video?: Maybe<CarVideo>;
|
|
717
728
|
};
|
|
718
729
|
|
|
730
|
+
/** Deprecated: In favour of VehicleListNaming. */
|
|
719
731
|
export type CarListNaming = {
|
|
720
732
|
/** Car manufacturer name. */
|
|
721
733
|
make?: Maybe<Scalars["String"]>;
|
|
@@ -743,10 +755,13 @@ export type CarListQuery = {
|
|
|
743
755
|
mode?: Maybe<CarMode>;
|
|
744
756
|
};
|
|
745
757
|
|
|
758
|
+
/** Deprecated: In favour of VehicleListRange. */
|
|
746
759
|
export type CarListRange = {
|
|
747
760
|
/**
|
|
748
|
-
*
|
|
749
|
-
*
|
|
761
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
762
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
763
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
764
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
750
765
|
*/
|
|
751
766
|
chargetrip_range?: Maybe<ChargetripRange>;
|
|
752
767
|
/** @deprecated You will receive null values */
|
|
@@ -757,11 +772,13 @@ export type CarListRange = {
|
|
|
757
772
|
best?: Maybe<CarEstimationData>;
|
|
758
773
|
};
|
|
759
774
|
|
|
775
|
+
/** Deprecated: In favour of VehicleListRouting. */
|
|
760
776
|
export type CarListRouting = {
|
|
761
777
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
762
778
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
763
779
|
};
|
|
764
780
|
|
|
781
|
+
/** Deprecated: In favour of VehicleMedia. */
|
|
765
782
|
export type CarMedia = {
|
|
766
783
|
/** URL to detail page on EV database. */
|
|
767
784
|
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
@@ -782,7 +799,7 @@ export type CarMedia = {
|
|
|
782
799
|
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
783
800
|
};
|
|
784
801
|
|
|
785
|
-
/**
|
|
802
|
+
/** Deprecated: In favour of VehicleMode. */
|
|
786
803
|
export enum CarMode {
|
|
787
804
|
/** Old car that is no longer manufactured. */
|
|
788
805
|
INDEX_ONLY = "index_only",
|
|
@@ -792,6 +809,7 @@ export enum CarMode {
|
|
|
792
809
|
CONCEPT = "concept"
|
|
793
810
|
}
|
|
794
811
|
|
|
812
|
+
/** Deprecated: In favour of VehicleNaming. */
|
|
795
813
|
export type CarNaming = {
|
|
796
814
|
/** Car manufacturer name. */
|
|
797
815
|
make?: Maybe<Scalars["String"]>;
|
|
@@ -805,6 +823,7 @@ export type CarNaming = {
|
|
|
805
823
|
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
806
824
|
};
|
|
807
825
|
|
|
826
|
+
/** Deprecated: In favour of VehiclePerformance. */
|
|
808
827
|
export type CarPerformance = {
|
|
809
828
|
/** Acceleration 0-100 km/h in seconds. */
|
|
810
829
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
@@ -812,7 +831,7 @@ export type CarPerformance = {
|
|
|
812
831
|
top_speed?: Maybe<Scalars["Int"]>;
|
|
813
832
|
};
|
|
814
833
|
|
|
815
|
-
/**
|
|
834
|
+
/** Deprecated: In favour of VehicleConnector. */
|
|
816
835
|
export type CarPlug = {
|
|
817
836
|
/** Plug type, known as connector standard in OCPI. */
|
|
818
837
|
standard?: Maybe<ConnectorType>;
|
|
@@ -826,7 +845,7 @@ export type CarPlug = {
|
|
|
826
845
|
speed?: Maybe<Scalars["Int"]>;
|
|
827
846
|
};
|
|
828
847
|
|
|
829
|
-
/**
|
|
848
|
+
/** Deprecated: In favour of VehiclePremium. */
|
|
830
849
|
export type CarPremium = {
|
|
831
850
|
/** Unique ID of a car. */
|
|
832
851
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -868,6 +887,7 @@ export type CarPremium = {
|
|
|
868
887
|
connect?: Maybe<Connect>;
|
|
869
888
|
};
|
|
870
889
|
|
|
890
|
+
/** Deprecated: In favour of VehiclePremiumAvailability. */
|
|
871
891
|
export type CarPremiumAvailability = {
|
|
872
892
|
/**
|
|
873
893
|
* Availability of car.
|
|
@@ -892,6 +912,7 @@ export type CarPremiumAvailability = {
|
|
|
892
912
|
date_to?: Maybe<Scalars["String"]>;
|
|
893
913
|
};
|
|
894
914
|
|
|
915
|
+
/** Deprecated: In favour of VehiclePremiumBattery. */
|
|
895
916
|
export type CarPremiumBattery = {
|
|
896
917
|
/** Usable battery capacity in kWh. */
|
|
897
918
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
@@ -907,6 +928,7 @@ export type CarPremiumBattery = {
|
|
|
907
928
|
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
908
929
|
};
|
|
909
930
|
|
|
931
|
+
/** Deprecated: In favour of VehiclePremiumBody. */
|
|
910
932
|
export type CarPremiumBody = {
|
|
911
933
|
/** Length in mm. */
|
|
912
934
|
length?: Maybe<Scalars["Int"]>;
|
|
@@ -969,6 +991,7 @@ export type CarPremiumBody = {
|
|
|
969
991
|
rooftrails?: Maybe<Scalars["Boolean"]>;
|
|
970
992
|
};
|
|
971
993
|
|
|
994
|
+
/** Deprecated: In favour of VehiclePremiumCharge. */
|
|
972
995
|
export type CarPremiumCharge = {
|
|
973
996
|
/** Location of charge port. */
|
|
974
997
|
plug?: Maybe<CarPremiumChargePlug>;
|
|
@@ -982,6 +1005,7 @@ export type CarPremiumCharge = {
|
|
|
982
1005
|
option?: Maybe<CarPremiumChargeOptionOBC>;
|
|
983
1006
|
};
|
|
984
1007
|
|
|
1008
|
+
/** Deprecated: In favour of VehiclePremiumChargeAlternativeOBC. */
|
|
985
1009
|
export type CarPremiumChargeAlternativeOBC = {
|
|
986
1010
|
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
987
1011
|
power?: Maybe<Scalars["Float"]>;
|
|
@@ -997,6 +1021,7 @@ export type CarPremiumChargeAlternativeOBC = {
|
|
|
997
1021
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
998
1022
|
};
|
|
999
1023
|
|
|
1024
|
+
/** Deprecated: In favour of VehiclePremiumChargeOBCTable. */
|
|
1000
1025
|
export type CarPremiumChargeOBCTable = {
|
|
1001
1026
|
/** Voltage between phase and neutral for this EVSE (phase voltage). */
|
|
1002
1027
|
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
@@ -1018,6 +1043,7 @@ export type CarPremiumChargeOBCTable = {
|
|
|
1018
1043
|
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1019
1044
|
};
|
|
1020
1045
|
|
|
1046
|
+
/** Deprecated: In favour of VehiclePremiumChargeOptionOBC. */
|
|
1021
1047
|
export type CarPremiumChargeOptionOBC = {
|
|
1022
1048
|
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
1023
1049
|
power?: Maybe<Scalars["Float"]>;
|
|
@@ -1033,6 +1059,7 @@ export type CarPremiumChargeOptionOBC = {
|
|
|
1033
1059
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
1034
1060
|
};
|
|
1035
1061
|
|
|
1062
|
+
/** Deprecated: In favour of VehiclePremiumChargePlug. */
|
|
1036
1063
|
export type CarPremiumChargePlug = {
|
|
1037
1064
|
/** Type of charge port on vehicle. */
|
|
1038
1065
|
value?: Maybe<ConnectorType>;
|
|
@@ -1042,6 +1069,7 @@ export type CarPremiumChargePlug = {
|
|
|
1042
1069
|
location?: Maybe<Scalars["String"]>;
|
|
1043
1070
|
};
|
|
1044
1071
|
|
|
1072
|
+
/** Deprecated: In favour of VehiclePremiumChargePower. */
|
|
1045
1073
|
export type CarPremiumChargePower = {
|
|
1046
1074
|
/** Maximum value. */
|
|
1047
1075
|
max?: Maybe<Scalars["Float"]>;
|
|
@@ -1049,6 +1077,7 @@ export type CarPremiumChargePower = {
|
|
|
1049
1077
|
average?: Maybe<Scalars["Float"]>;
|
|
1050
1078
|
};
|
|
1051
1079
|
|
|
1080
|
+
/** Deprecated: In favour of VehiclePremiumChargeSecondPlug. */
|
|
1052
1081
|
export type CarPremiumChargeSecondPlug = {
|
|
1053
1082
|
/** Location of charge port. */
|
|
1054
1083
|
location?: Maybe<Scalars["String"]>;
|
|
@@ -1056,6 +1085,7 @@ export type CarPremiumChargeSecondPlug = {
|
|
|
1056
1085
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
1057
1086
|
};
|
|
1058
1087
|
|
|
1088
|
+
/** Deprecated: In favour of VehiclePremiumChargeStandardOBC. */
|
|
1059
1089
|
export type CarPremiumChargeStandardOBC = {
|
|
1060
1090
|
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
1061
1091
|
power?: Maybe<Scalars["Float"]>;
|
|
@@ -1073,6 +1103,7 @@ export type CarPremiumChargeStandardOBC = {
|
|
|
1073
1103
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
1074
1104
|
};
|
|
1075
1105
|
|
|
1106
|
+
/** Deprecated: In favour of VehiclePremiumDrivetrain. */
|
|
1076
1107
|
export type CarPremiumDrivetrain = {
|
|
1077
1108
|
/** Type of drivetrain. */
|
|
1078
1109
|
type?: Maybe<CarDrivetrain>;
|
|
@@ -1094,6 +1125,7 @@ export type CarPremiumDrivetrain = {
|
|
|
1094
1125
|
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1095
1126
|
};
|
|
1096
1127
|
|
|
1128
|
+
/** Deprecated: In favour of VehiclePremiumEfficiency. */
|
|
1097
1129
|
export type CarPremiumEfficiency = {
|
|
1098
1130
|
/** Rated efficiency in WLTP combined cycle. */
|
|
1099
1131
|
wltp?: Maybe<CarPremiumEfficiencyWLTP>;
|
|
@@ -1105,6 +1137,7 @@ export type CarPremiumEfficiency = {
|
|
|
1105
1137
|
real?: Maybe<CarPremiumEfficiencyReal>;
|
|
1106
1138
|
};
|
|
1107
1139
|
|
|
1140
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyNEDC. */
|
|
1108
1141
|
export type CarPremiumEfficiencyNEDC = {
|
|
1109
1142
|
/** Rated efficiency in NEDC combined cycle in kWh/100 km. */
|
|
1110
1143
|
value?: Maybe<Scalars["Float"]>;
|
|
@@ -1118,6 +1151,7 @@ export type CarPremiumEfficiencyNEDC = {
|
|
|
1118
1151
|
co2?: Maybe<Scalars["Int"]>;
|
|
1119
1152
|
};
|
|
1120
1153
|
|
|
1154
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyProvider. */
|
|
1121
1155
|
export type CarPremiumEfficiencyReal = {
|
|
1122
1156
|
/** Car efficiency based on RealRange (useable battery/range) in kWh/100 km. */
|
|
1123
1157
|
value?: Maybe<Scalars["Float"]>;
|
|
@@ -1129,6 +1163,7 @@ export type CarPremiumEfficiencyReal = {
|
|
|
1129
1163
|
best?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
1130
1164
|
};
|
|
1131
1165
|
|
|
1166
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyProviderValue. */
|
|
1132
1167
|
export type CarPremiumEfficiencyRealValue = {
|
|
1133
1168
|
/** Estimated value on highway or express roads. */
|
|
1134
1169
|
highway?: Maybe<Scalars["Float"]>;
|
|
@@ -1138,6 +1173,7 @@ export type CarPremiumEfficiencyRealValue = {
|
|
|
1138
1173
|
combined?: Maybe<Scalars["Float"]>;
|
|
1139
1174
|
};
|
|
1140
1175
|
|
|
1176
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyWLTP. */
|
|
1141
1177
|
export type CarPremiumEfficiencyWLTP = {
|
|
1142
1178
|
/** Rated efficiency in WLTP combined cycle in kWh/100 km. */
|
|
1143
1179
|
value?: Maybe<Scalars["Float"]>;
|
|
@@ -1151,6 +1187,7 @@ export type CarPremiumEfficiencyWLTP = {
|
|
|
1151
1187
|
co2?: Maybe<Scalars["Int"]>;
|
|
1152
1188
|
};
|
|
1153
1189
|
|
|
1190
|
+
/** Deprecated: In favour of VehiclePremiumEfficiencyWLTPTEH. */
|
|
1154
1191
|
export type CarPremiumEfficiencyWLTPTEH = {
|
|
1155
1192
|
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
|
|
1156
1193
|
value?: Maybe<Scalars["Float"]>;
|
|
@@ -1164,6 +1201,7 @@ export type CarPremiumEfficiencyWLTPTEH = {
|
|
|
1164
1201
|
co2?: Maybe<Scalars["Int"]>;
|
|
1165
1202
|
};
|
|
1166
1203
|
|
|
1204
|
+
/** Deprecated: In favour of VehiclePremiumChargePlug. */
|
|
1167
1205
|
export type CarPremiumFastCharge = {
|
|
1168
1206
|
/** Location of charge port. */
|
|
1169
1207
|
plug?: Maybe<CarPremiumChargePlug>;
|
|
@@ -1181,6 +1219,7 @@ export type CarPremiumFastCharge = {
|
|
|
1181
1219
|
table?: Maybe<Array<Maybe<CarPremiumFastChargeTable>>>;
|
|
1182
1220
|
};
|
|
1183
1221
|
|
|
1222
|
+
/** Deprecated: In favour of VehiclePremiumFastChargeTable. */
|
|
1184
1223
|
export type CarPremiumFastChargeTable = {
|
|
1185
1224
|
/** Charging details for fast charging (format: ChargerPlug-ChargerPower-AC/DC). */
|
|
1186
1225
|
format?: Maybe<Scalars["String"]>;
|
|
@@ -1196,6 +1235,7 @@ export type CarPremiumFastChargeTable = {
|
|
|
1196
1235
|
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1197
1236
|
};
|
|
1198
1237
|
|
|
1238
|
+
/** Deprecated: In favour of VehiclePremiumMedia. */
|
|
1199
1239
|
export type CarPremiumMedia = {
|
|
1200
1240
|
/** URL to detail page on EV database. */
|
|
1201
1241
|
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
@@ -1216,6 +1256,7 @@ export type CarPremiumMedia = {
|
|
|
1216
1256
|
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
1217
1257
|
};
|
|
1218
1258
|
|
|
1259
|
+
/** Deprecated: In favour of VehiclePremiumNaming. */
|
|
1219
1260
|
export type CarPremiumNaming = {
|
|
1220
1261
|
/** Car manufacturer name. */
|
|
1221
1262
|
make?: Maybe<Scalars["String"]>;
|
|
@@ -1229,6 +1270,7 @@ export type CarPremiumNaming = {
|
|
|
1229
1270
|
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
1230
1271
|
};
|
|
1231
1272
|
|
|
1273
|
+
/** Deprecated: In favour of VehiclePremiumPerformance. */
|
|
1232
1274
|
export type CarPremiumPerformance = {
|
|
1233
1275
|
/** Acceleration 0-100 km/h in seconds. */
|
|
1234
1276
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
@@ -1240,6 +1282,7 @@ export type CarPremiumPerformance = {
|
|
|
1240
1282
|
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1241
1283
|
};
|
|
1242
1284
|
|
|
1285
|
+
/** Deprecated: In favour of VehiclePremiumPrice. */
|
|
1243
1286
|
export type CarPremiumPrice = {
|
|
1244
1287
|
/** Starting price for German market. */
|
|
1245
1288
|
de?: Maybe<CarPremiumPriceValue>;
|
|
@@ -1249,6 +1292,7 @@ export type CarPremiumPrice = {
|
|
|
1249
1292
|
uk?: Maybe<CarPremiumPriceValueWithGrant>;
|
|
1250
1293
|
};
|
|
1251
1294
|
|
|
1295
|
+
/** Deprecated: In favour of VehiclePremiumPrice.value */
|
|
1252
1296
|
export type CarPremiumPriceValue = {
|
|
1253
1297
|
/** Starting price for local market. */
|
|
1254
1298
|
value?: Maybe<Scalars["Int"]>;
|
|
@@ -1263,6 +1307,7 @@ export type CarPremiumPriceValue = {
|
|
|
1263
1307
|
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1264
1308
|
};
|
|
1265
1309
|
|
|
1310
|
+
/** Deprecated: In favour of VehiclePremiumPriceValueWithGrant. */
|
|
1266
1311
|
export type CarPremiumPriceValueWithGrant = {
|
|
1267
1312
|
/** Starting price for local market. */
|
|
1268
1313
|
value?: Maybe<Scalars["Int"]>;
|
|
@@ -1279,6 +1324,7 @@ export type CarPremiumPriceValueWithGrant = {
|
|
|
1279
1324
|
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1280
1325
|
};
|
|
1281
1326
|
|
|
1327
|
+
/** Deprecated: In favour of VehiclePremiumRange. */
|
|
1282
1328
|
export type CarPremiumRange = {
|
|
1283
1329
|
/** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km. */
|
|
1284
1330
|
wltp?: Maybe<Scalars["Int"]>;
|
|
@@ -1298,10 +1344,16 @@ export type CarPremiumRange = {
|
|
|
1298
1344
|
worst?: Maybe<CarPremiumRangeValue>;
|
|
1299
1345
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1300
1346
|
best?: Maybe<CarPremiumRangeValue>;
|
|
1301
|
-
/**
|
|
1347
|
+
/**
|
|
1348
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1349
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1350
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1351
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1352
|
+
*/
|
|
1302
1353
|
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1303
1354
|
};
|
|
1304
1355
|
|
|
1356
|
+
/** Deprecated: In favour of VehiclePremiumRangeValue. */
|
|
1305
1357
|
export type CarPremiumRangeValue = {
|
|
1306
1358
|
/** Estimated value on highway or express roads. */
|
|
1307
1359
|
highway?: Maybe<Scalars["Int"]>;
|
|
@@ -1311,6 +1363,7 @@ export type CarPremiumRangeValue = {
|
|
|
1311
1363
|
combined?: Maybe<Scalars["Int"]>;
|
|
1312
1364
|
};
|
|
1313
1365
|
|
|
1366
|
+
/** Deprecated: In favour of VehiclePremiumRouting. */
|
|
1314
1367
|
export type CarPremiumRouting = {
|
|
1315
1368
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
1316
1369
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
@@ -1324,6 +1377,7 @@ export type CarPremiumRouting = {
|
|
|
1324
1377
|
petrol_consumption?: Maybe<Scalars["Float"]>;
|
|
1325
1378
|
};
|
|
1326
1379
|
|
|
1380
|
+
/** Deprecated: In favour of VehiclePremiumRoutingConsumption. */
|
|
1327
1381
|
export type CarPremiumRoutingConsumption = {
|
|
1328
1382
|
/** Consumption, in kWh, of the auxiliaries. */
|
|
1329
1383
|
aux?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
@@ -1333,6 +1387,7 @@ export type CarPremiumRoutingConsumption = {
|
|
|
1333
1387
|
idle?: Maybe<CarPremiumRoutingConsumptionValue>;
|
|
1334
1388
|
};
|
|
1335
1389
|
|
|
1390
|
+
/** Deprecated: In favour of VehiclePremiumRoutingConsumptionValue. */
|
|
1336
1391
|
export type CarPremiumRoutingConsumptionValue = {
|
|
1337
1392
|
/** Best (lowest) consumption in summer. */
|
|
1338
1393
|
best?: Maybe<Scalars["Float"]>;
|
|
@@ -1340,6 +1395,7 @@ export type CarPremiumRoutingConsumptionValue = {
|
|
|
1340
1395
|
worst?: Maybe<Scalars["Float"]>;
|
|
1341
1396
|
};
|
|
1342
1397
|
|
|
1398
|
+
/** Deprecated: In favour of VehiclePremiumSafety. */
|
|
1343
1399
|
export type CarPremiumSafety = {
|
|
1344
1400
|
/** Number of seats equipped with ISOFIX. */
|
|
1345
1401
|
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
@@ -1347,6 +1403,7 @@ export type CarPremiumSafety = {
|
|
|
1347
1403
|
euro_ncap?: Maybe<CarPremiumSafetyEuroNcap>;
|
|
1348
1404
|
};
|
|
1349
1405
|
|
|
1406
|
+
/** Deprecated: In favour of VehiclePremiumSafetyEuroNcap. */
|
|
1350
1407
|
export type CarPremiumSafetyEuroNcap = {
|
|
1351
1408
|
/** EuroNCAP rating (out of 5 stars). */
|
|
1352
1409
|
rating?: Maybe<Scalars["Int"]>;
|
|
@@ -1362,7 +1419,7 @@ export type CarPremiumSafetyEuroNcap = {
|
|
|
1362
1419
|
sa?: Maybe<Scalars["Int"]>;
|
|
1363
1420
|
};
|
|
1364
1421
|
|
|
1365
|
-
/**
|
|
1422
|
+
/** Deprecated: In favour of VehiclePropulsion. */
|
|
1366
1423
|
export enum CarPropulsion {
|
|
1367
1424
|
/** All-wheel drive car. */
|
|
1368
1425
|
AWD = "AWD",
|
|
@@ -1372,6 +1429,7 @@ export enum CarPropulsion {
|
|
|
1372
1429
|
REAR = "Rear"
|
|
1373
1430
|
}
|
|
1374
1431
|
|
|
1432
|
+
/** Deprecated: In favour of VehicleRange. */
|
|
1375
1433
|
export type CarRange = {
|
|
1376
1434
|
/** Index range in EV Database RealRange model in km. */
|
|
1377
1435
|
real?: Maybe<Scalars["Int"]>;
|
|
@@ -1381,12 +1439,18 @@ export type CarRange = {
|
|
|
1381
1439
|
worst?: Maybe<CarRangeValue>;
|
|
1382
1440
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
1383
1441
|
best?: Maybe<CarRangeValue>;
|
|
1384
|
-
/**
|
|
1442
|
+
/**
|
|
1443
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1444
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1445
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1446
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1447
|
+
*/
|
|
1385
1448
|
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1386
1449
|
/** @deprecated You will receive null values */
|
|
1387
1450
|
wltp?: Maybe<Scalars["Float"]>;
|
|
1388
1451
|
};
|
|
1389
1452
|
|
|
1453
|
+
/** Deprecated: In favour of VehicleRangeValue. */
|
|
1390
1454
|
export type CarRangeValue = {
|
|
1391
1455
|
/** Estimated value on the highway or express roads. */
|
|
1392
1456
|
highway?: Maybe<Scalars["Int"]>;
|
|
@@ -1396,12 +1460,13 @@ export type CarRangeValue = {
|
|
|
1396
1460
|
combined?: Maybe<Scalars["Int"]>;
|
|
1397
1461
|
};
|
|
1398
1462
|
|
|
1463
|
+
/** Deprecated: In favour of VehicleRouting. */
|
|
1399
1464
|
export type CarRouting = {
|
|
1400
1465
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh. */
|
|
1401
1466
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
1402
1467
|
};
|
|
1403
1468
|
|
|
1404
|
-
/**
|
|
1469
|
+
/** Deprecated: In favour of VehicleStatus. */
|
|
1405
1470
|
export enum CarStatus {
|
|
1406
1471
|
/** Was just imported. */
|
|
1407
1472
|
NEW = "new",
|
|
@@ -1413,6 +1478,7 @@ export enum CarStatus {
|
|
|
1413
1478
|
REMOVED = "removed"
|
|
1414
1479
|
}
|
|
1415
1480
|
|
|
1481
|
+
/** Deprecated: In favour of VehicleVideo. */
|
|
1416
1482
|
export type CarVideo = {
|
|
1417
1483
|
/** Video id. */
|
|
1418
1484
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -1495,30 +1561,41 @@ export type ChargerStatuses = {
|
|
|
1495
1561
|
};
|
|
1496
1562
|
|
|
1497
1563
|
/**
|
|
1498
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
1499
|
-
*
|
|
1500
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
1564
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1565
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1566
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1567
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1501
1568
|
*/
|
|
1502
1569
|
export type ChargetripRange = {
|
|
1503
|
-
/**
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1570
|
+
/**
|
|
1571
|
+
* Range calculated using the worst conditions.
|
|
1572
|
+
* Worst conditions are based on -0°C, including use of heating.
|
|
1573
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1574
|
+
*/
|
|
1575
|
+
worst?: Maybe<Scalars["Float"]>;
|
|
1576
|
+
/**
|
|
1577
|
+
* Range calculated using the best conditions.
|
|
1578
|
+
* Best conditions are based on 25°C, including use of A/C.
|
|
1579
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1580
|
+
*/
|
|
1581
|
+
best?: Maybe<Scalars["Float"]>;
|
|
1507
1582
|
};
|
|
1508
1583
|
|
|
1509
1584
|
/**
|
|
1510
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
1511
|
-
*
|
|
1512
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
1585
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1586
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1587
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1588
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1513
1589
|
*/
|
|
1514
1590
|
export type ChargetripRangeworstArgs = {
|
|
1515
1591
|
unit?: Maybe<DistanceUnit>;
|
|
1516
1592
|
};
|
|
1517
1593
|
|
|
1518
1594
|
/**
|
|
1519
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
1520
|
-
*
|
|
1521
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
1595
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
1596
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
1597
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
1598
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
1522
1599
|
*/
|
|
1523
1600
|
export type ChargetripRangebestArgs = {
|
|
1524
1601
|
unit?: Maybe<DistanceUnit>;
|
|
@@ -2120,13 +2197,13 @@ export enum DimensionUnit {
|
|
|
2120
2197
|
}
|
|
2121
2198
|
|
|
2122
2199
|
export enum DistanceUnit {
|
|
2123
|
-
/** Return the distance in meters
|
|
2200
|
+
/** Return the distance in meters */
|
|
2124
2201
|
METER = "meter",
|
|
2125
|
-
/** Return the distance in feet
|
|
2202
|
+
/** Return the distance in feet */
|
|
2126
2203
|
FOOT = "foot",
|
|
2127
|
-
/** Return the distance in kilometers
|
|
2204
|
+
/** Return the distance in kilometers */
|
|
2128
2205
|
KILOMETER = "kilometer",
|
|
2129
|
-
/** Return the distance in miles
|
|
2206
|
+
/** Return the distance in miles */
|
|
2130
2207
|
MILE = "mile"
|
|
2131
2208
|
}
|
|
2132
2209
|
|
|
@@ -2279,7 +2356,7 @@ export type FeaturePointPolygonPropertiesInput = {
|
|
|
2279
2356
|
name?: Maybe<Scalars["String"]>;
|
|
2280
2357
|
};
|
|
2281
2358
|
|
|
2282
|
-
/** GeoJSON Feature type */
|
|
2359
|
+
/** GeoJSON Feature type. */
|
|
2283
2360
|
export enum FeatureType {
|
|
2284
2361
|
FEATURE = "Feature"
|
|
2285
2362
|
}
|
|
@@ -3461,11 +3538,11 @@ export type PathSegment = {
|
|
|
3461
3538
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
3462
3539
|
};
|
|
3463
3540
|
|
|
3464
|
-
/** A GeoJSON Point */
|
|
3541
|
+
/** A GeoJSON Point. */
|
|
3465
3542
|
export type Point = {
|
|
3466
|
-
/** Point type */
|
|
3543
|
+
/** Point type. */
|
|
3467
3544
|
type: PointType;
|
|
3468
|
-
/** The coordinates array with longitude as first value and latitude as second one */
|
|
3545
|
+
/** The coordinates array with longitude as first value and latitude as second one. */
|
|
3469
3546
|
coordinates: Array<Scalars["Float"]>;
|
|
3470
3547
|
};
|
|
3471
3548
|
|
|
@@ -3477,7 +3554,7 @@ export type PointInput = {
|
|
|
3477
3554
|
coordinates: Array<Scalars["Float"]>;
|
|
3478
3555
|
};
|
|
3479
3556
|
|
|
3480
|
-
/** GeoJSON Point type */
|
|
3557
|
+
/** GeoJSON Point type. */
|
|
3481
3558
|
export enum PointType {
|
|
3482
3559
|
POINT = "Point"
|
|
3483
3560
|
}
|
|
@@ -3536,18 +3613,6 @@ export enum PressureUnit {
|
|
|
3536
3613
|
POUNDS_PER_SQUARE_INCH = "pounds_per_square_inch"
|
|
3537
3614
|
}
|
|
3538
3615
|
|
|
3539
|
-
/** The price model. */
|
|
3540
|
-
export type Price = {
|
|
3541
|
-
/** The value of the price. */
|
|
3542
|
-
value?: Maybe<Scalars["String"]>;
|
|
3543
|
-
/** The currency of the price. */
|
|
3544
|
-
currency?: Maybe<Scalars["String"]>;
|
|
3545
|
-
/** The pricing model. */
|
|
3546
|
-
model?: Maybe<Scalars["String"]>;
|
|
3547
|
-
/** The value of the price which should be display by the frontend. */
|
|
3548
|
-
displayValue?: Maybe<Scalars["String"]>;
|
|
3549
|
-
};
|
|
3550
|
-
|
|
3551
3616
|
export type Pricing = {
|
|
3552
3617
|
/** Unique ID of a price. */
|
|
3553
3618
|
id?: Maybe<Scalars["String"]>;
|
|
@@ -3600,11 +3665,11 @@ export type PricingListProduct = {
|
|
|
3600
3665
|
export type Query = {
|
|
3601
3666
|
/** Get a full list of amenities around a station */
|
|
3602
3667
|
amenityList?: Maybe<Array<Maybe<Amenity>>>;
|
|
3603
|
-
/**
|
|
3668
|
+
/** Deprecated: In favor of vehicle. */
|
|
3604
3669
|
car?: Maybe<Car>;
|
|
3605
|
-
/**
|
|
3670
|
+
/** Deprecated: In favor of VehiclePremium. */
|
|
3606
3671
|
carPremium?: Maybe<CarPremium>;
|
|
3607
|
-
/**
|
|
3672
|
+
/** Deprecated: In favor of VehicleList. */
|
|
3608
3673
|
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
3609
3674
|
/** [BETA] Get a connected vehicles by id */
|
|
3610
3675
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
@@ -3648,11 +3713,11 @@ export type Query = {
|
|
|
3648
3713
|
tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
3649
3714
|
/** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
|
|
3650
3715
|
navigationMapping?: Maybe<Scalars["JSON"]>;
|
|
3651
|
-
/**
|
|
3716
|
+
/** Get information about a vehicle by its ID. */
|
|
3652
3717
|
vehicle?: Maybe<Vehicle>;
|
|
3653
|
-
/**
|
|
3718
|
+
/** 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. */
|
|
3654
3719
|
vehiclePremium?: Maybe<VehiclePremium>;
|
|
3655
|
-
/**
|
|
3720
|
+
/** Get a full list of vehicles. */
|
|
3656
3721
|
vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
|
|
3657
3722
|
};
|
|
3658
3723
|
|
|
@@ -4780,7 +4845,7 @@ export type RouteOperationalElectricityEmissionsEfficiency = {
|
|
|
4780
4845
|
transformer_efficiency: Scalars["Float"];
|
|
4781
4846
|
/** Change in chargepoint efficiency due to temperature. */
|
|
4782
4847
|
chargepoint_efficiency_temperature_modifier: Scalars["Float"];
|
|
4783
|
-
/** Average charging current in
|
|
4848
|
+
/** Average charging current in amperes. */
|
|
4784
4849
|
average_charging_current: Scalars["Float"];
|
|
4785
4850
|
/** Average charging voltage in volts. */
|
|
4786
4851
|
average_charging_voltage: Scalars["Float"];
|
|
@@ -4815,7 +4880,7 @@ export type RouteOperationalElectricityEmissionsGenerationMethods = {
|
|
|
4815
4880
|
nuclear: Scalars["Float"];
|
|
4816
4881
|
/** Fraction of biofuel production. */
|
|
4817
4882
|
biofuel: Scalars["Float"];
|
|
4818
|
-
/** Fraction of other
|
|
4883
|
+
/** Fraction of other production. */
|
|
4819
4884
|
other: Scalars["Float"];
|
|
4820
4885
|
};
|
|
4821
4886
|
|
|
@@ -4904,9 +4969,9 @@ export type RouteOperationalFluidEmissionsmotor_oilArgs = {
|
|
|
4904
4969
|
export type RouteOperationalFuelEmissions = {
|
|
4905
4970
|
/** Total fuel for the route. */
|
|
4906
4971
|
total: Scalars["Float"];
|
|
4907
|
-
/** Direct (
|
|
4972
|
+
/** Direct (tank to wheels) emissions of the fuel. */
|
|
4908
4973
|
direct_emissions: Scalars["Float"];
|
|
4909
|
-
/** Indirect (
|
|
4974
|
+
/** Indirect (well to tank) emissions of the fuel. */
|
|
4910
4975
|
indirect_emissions: Scalars["Float"];
|
|
4911
4976
|
/** Fuel consumption for the route in litres. */
|
|
4912
4977
|
fuel_consumption: Scalars["Float"];
|
|
@@ -5258,6 +5323,11 @@ export type ScheduledChargeStopInput = {
|
|
|
5258
5323
|
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
5259
5324
|
};
|
|
5260
5325
|
|
|
5326
|
+
export enum SortDirection {
|
|
5327
|
+
ASCENDING = "ascending",
|
|
5328
|
+
DESCENDING = "descending"
|
|
5329
|
+
}
|
|
5330
|
+
|
|
5261
5331
|
export enum SpeedUnit {
|
|
5262
5332
|
/** Return the speed in kilometers per hour. */
|
|
5263
5333
|
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
@@ -5962,9 +6032,9 @@ export type Vehicle = {
|
|
|
5962
6032
|
naming: VehicleNaming;
|
|
5963
6033
|
/** Drivetrain of the vehicle. */
|
|
5964
6034
|
drivetrain: VehicleDrivetrain;
|
|
5965
|
-
/** Available connectors for the vehicle. */
|
|
6035
|
+
/** Available connectors for the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
5966
6036
|
connectors: Array<VehicleConnector>;
|
|
5967
|
-
/** Adapters for the connectors of the vehicle. */
|
|
6037
|
+
/** Adapters for the connectors of the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
5968
6038
|
adapters: Array<VehicleConnector>;
|
|
5969
6039
|
/** Battery of the vehicle. */
|
|
5970
6040
|
battery: VehicleBattery;
|
|
@@ -6046,11 +6116,11 @@ export enum VehicleBatteryType {
|
|
|
6046
6116
|
}
|
|
6047
6117
|
|
|
6048
6118
|
export type VehicleBody = {
|
|
6049
|
-
/** Width with folded mirrors
|
|
6119
|
+
/** Width with folded mirrors. */
|
|
6050
6120
|
width: Scalars["Float"];
|
|
6051
|
-
/** Height (average height for adjustable suspensions)
|
|
6121
|
+
/** Height (average height for adjustable suspensions). */
|
|
6052
6122
|
height: Scalars["Float"];
|
|
6053
|
-
/** Weight (unladen)
|
|
6123
|
+
/** Weight (unladen). */
|
|
6054
6124
|
weight: VehicleBodyWeight;
|
|
6055
6125
|
/** Number of seats. */
|
|
6056
6126
|
seats: Scalars["Int"];
|
|
@@ -6065,11 +6135,11 @@ export type VehicleBodyheightArgs = {
|
|
|
6065
6135
|
};
|
|
6066
6136
|
|
|
6067
6137
|
export type VehicleBodyWeight = {
|
|
6068
|
-
/** Minimum weight
|
|
6138
|
+
/** Minimum weight. */
|
|
6069
6139
|
minimum?: Maybe<Scalars["Float"]>;
|
|
6070
|
-
/** Nominal weight
|
|
6140
|
+
/** Nominal weight. */
|
|
6071
6141
|
nominal?: Maybe<Scalars["Float"]>;
|
|
6072
|
-
/** Maximal weight
|
|
6142
|
+
/** Maximal weight. */
|
|
6073
6143
|
maximal?: Maybe<Scalars["Float"]>;
|
|
6074
6144
|
};
|
|
6075
6145
|
|
|
@@ -6089,14 +6159,29 @@ export type VehicleBodyWeightmaximalArgs = {
|
|
|
6089
6159
|
export type VehicleConnector = {
|
|
6090
6160
|
/** Connector type, known as connector standard in OCPI. */
|
|
6091
6161
|
standard: ConnectorType;
|
|
6092
|
-
/** Usable electric power
|
|
6162
|
+
/** Usable electric power. */
|
|
6093
6163
|
power: Scalars["Float"];
|
|
6094
|
-
/** Maximum electric power
|
|
6164
|
+
/** Maximum electric power. */
|
|
6095
6165
|
max_electric_power: Scalars["Float"];
|
|
6096
6166
|
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */
|
|
6097
6167
|
time: Scalars["Int"];
|
|
6098
|
-
/**
|
|
6168
|
+
/**
|
|
6169
|
+
* Charging speed.
|
|
6170
|
+
* @deprecated In favor of charge_speed.
|
|
6171
|
+
*/
|
|
6099
6172
|
speed: Scalars["Float"];
|
|
6173
|
+
/** Charging speed. */
|
|
6174
|
+
charge_speed: Scalars["Float"];
|
|
6175
|
+
};
|
|
6176
|
+
|
|
6177
|
+
/** Vehicle plug model. */
|
|
6178
|
+
export type VehicleConnectorpowerArgs = {
|
|
6179
|
+
unit?: Maybe<PowerUnit>;
|
|
6180
|
+
};
|
|
6181
|
+
|
|
6182
|
+
/** Vehicle plug model. */
|
|
6183
|
+
export type VehicleConnectormax_electric_powerArgs = {
|
|
6184
|
+
unit?: Maybe<PowerUnit>;
|
|
6100
6185
|
};
|
|
6101
6186
|
|
|
6102
6187
|
/** Vehicle plug model. */
|
|
@@ -6104,6 +6189,11 @@ export type VehicleConnectorspeedArgs = {
|
|
|
6104
6189
|
unit?: Maybe<SpeedUnit>;
|
|
6105
6190
|
};
|
|
6106
6191
|
|
|
6192
|
+
/** Vehicle plug model. */
|
|
6193
|
+
export type VehicleConnectorcharge_speedArgs = {
|
|
6194
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
6195
|
+
};
|
|
6196
|
+
|
|
6107
6197
|
/** The consumption of the vehicle. */
|
|
6108
6198
|
export type VehicleConsumptionInput = {
|
|
6109
6199
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
@@ -6153,7 +6243,7 @@ export enum VehicleFuel {
|
|
|
6153
6243
|
D = "D",
|
|
6154
6244
|
/** Electricity only. Full electric vehicle. */
|
|
6155
6245
|
E = "E",
|
|
6156
|
-
/** ICE engine available. Uses
|
|
6246
|
+
/** ICE engine available. Uses gasoline. */
|
|
6157
6247
|
P = "P"
|
|
6158
6248
|
}
|
|
6159
6249
|
|
|
@@ -6219,9 +6309,9 @@ export type VehicleList = {
|
|
|
6219
6309
|
naming: VehicleListNaming;
|
|
6220
6310
|
/** Drivetrain of the vehicle. */
|
|
6221
6311
|
drivetrain: VehicleDrivetrain;
|
|
6222
|
-
/** Connectors available for the vehicle. */
|
|
6312
|
+
/** Connectors available for the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
6223
6313
|
connectors: Array<VehicleConnector>;
|
|
6224
|
-
/** Adapters available for the vehicle. */
|
|
6314
|
+
/** Adapters available for the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
6225
6315
|
adapters: Array<VehicleConnector>;
|
|
6226
6316
|
/** Battery of the vehicle. */
|
|
6227
6317
|
battery: VehicleListBattery;
|
|
@@ -6308,9 +6398,10 @@ export type VehicleListNaming = {
|
|
|
6308
6398
|
|
|
6309
6399
|
export type VehicleListRange = {
|
|
6310
6400
|
/**
|
|
6311
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
6312
|
-
*
|
|
6313
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
6401
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
6402
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
6403
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
6404
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
6314
6405
|
*/
|
|
6315
6406
|
chargetrip_range: ChargetripRange;
|
|
6316
6407
|
};
|
|
@@ -6362,9 +6453,9 @@ export type VehicleNaming = {
|
|
|
6362
6453
|
};
|
|
6363
6454
|
|
|
6364
6455
|
export type VehiclePerformance = {
|
|
6365
|
-
/** Acceleration
|
|
6456
|
+
/** Acceleration. */
|
|
6366
6457
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
6367
|
-
/** Top speed of the vehicle
|
|
6458
|
+
/** Top speed of the vehicle. */
|
|
6368
6459
|
top_speed?: Maybe<Scalars["Float"]>;
|
|
6369
6460
|
};
|
|
6370
6461
|
|
|
@@ -6395,13 +6486,13 @@ export type VehiclePremium = {
|
|
|
6395
6486
|
succesor_id?: Maybe<Scalars["String"]>;
|
|
6396
6487
|
/** Naming of the vehicle. */
|
|
6397
6488
|
naming: VehiclePremiumNaming;
|
|
6398
|
-
/** Connectors available for the vehicle. */
|
|
6489
|
+
/** Connectors available for the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
6399
6490
|
connectors: Array<VehicleConnector>;
|
|
6400
6491
|
/** Charge details. */
|
|
6401
6492
|
charge: VehiclePremiumCharge;
|
|
6402
6493
|
/** Fast charge details. */
|
|
6403
6494
|
fast_charge: VehiclePremiumFastCharge;
|
|
6404
|
-
/** Adapters of connectors available for a connectors of the vehicle. */
|
|
6495
|
+
/** Adapters of connectors available for a connectors of the vehicle. Please note that for HEVs this will always be an empty array. */
|
|
6405
6496
|
adapters: Array<VehicleConnector>;
|
|
6406
6497
|
/** Battery of the vehicle. */
|
|
6407
6498
|
battery: VehiclePremiumBattery;
|
|
@@ -6482,22 +6573,26 @@ export type VehiclePremiumBattery = {
|
|
|
6482
6573
|
type?: Maybe<VehicleBatteryType>;
|
|
6483
6574
|
};
|
|
6484
6575
|
|
|
6576
|
+
export type VehiclePremiumBatteryweightArgs = {
|
|
6577
|
+
unit?: Maybe<WeightUnit>;
|
|
6578
|
+
};
|
|
6579
|
+
|
|
6485
6580
|
export type VehiclePremiumBody = {
|
|
6486
|
-
/** Length
|
|
6581
|
+
/** Length. */
|
|
6487
6582
|
length?: Maybe<Scalars["Float"]>;
|
|
6488
|
-
/** Width with folded mirrors
|
|
6583
|
+
/** Width with folded mirrors. */
|
|
6489
6584
|
width: Scalars["Float"];
|
|
6490
|
-
/** Width of vehicle including mirrors
|
|
6585
|
+
/** Width of vehicle including mirrors. */
|
|
6491
6586
|
full_width?: Maybe<Scalars["Float"]>;
|
|
6492
|
-
/** Height (average height for adjustable suspensions)
|
|
6587
|
+
/** Height (average height for adjustable suspensions). */
|
|
6493
6588
|
height: Scalars["Float"];
|
|
6494
6589
|
/** Indicates if length/width/height fields are estimations. */
|
|
6495
6590
|
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6496
|
-
/** Wheelbase
|
|
6591
|
+
/** Wheelbase. */
|
|
6497
6592
|
wheelbase?: Maybe<Scalars["Float"]>;
|
|
6498
6593
|
/** Indicates if wheelbase field is estimated. */
|
|
6499
6594
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6500
|
-
/** Ground clearance of a vehicle as specified by the OEM
|
|
6595
|
+
/** Ground clearance of a vehicle as specified by the OEM. */
|
|
6501
6596
|
ground_clearance?: Maybe<Scalars["Float"]>;
|
|
6502
6597
|
/** Weight (unladen EU). */
|
|
6503
6598
|
weight: VehicleBodyWeight;
|
|
@@ -6509,30 +6604,30 @@ export type VehiclePremiumBody = {
|
|
|
6509
6604
|
weight_payload?: Maybe<VehicleBodyWeight>;
|
|
6510
6605
|
/** Indicates if weight field is estimated. */
|
|
6511
6606
|
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6512
|
-
/** Maximum payload allowed for the vehicle
|
|
6607
|
+
/** Maximum payload allowed for the vehicle. */
|
|
6513
6608
|
weight_max_payload?: Maybe<Scalars["Float"]>;
|
|
6514
6609
|
/**
|
|
6515
|
-
* Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload)
|
|
6610
|
+
* Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload).
|
|
6516
6611
|
* @deprecated In favor of weight_gvwr.nominal
|
|
6517
6612
|
*/
|
|
6518
6613
|
max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
|
|
6519
|
-
/** Standard luggage capacity
|
|
6614
|
+
/** Standard luggage capacity. */
|
|
6520
6615
|
boot_capacity?: Maybe<Scalars["Float"]>;
|
|
6521
|
-
/** Storage capacity of front trunk/under the hood (frunk)
|
|
6616
|
+
/** Storage capacity of front trunk/under the hood (frunk). */
|
|
6522
6617
|
boot_front_capacity?: Maybe<Scalars["Float"]>;
|
|
6523
|
-
/** Maximum luggage capacity
|
|
6618
|
+
/** Maximum luggage capacity. */
|
|
6524
6619
|
boot_capacity_max?: Maybe<Scalars["Float"]>;
|
|
6525
6620
|
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */
|
|
6526
6621
|
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
6527
|
-
/** Maximum unbraked towing weight
|
|
6622
|
+
/** Maximum unbraked towing weight. */
|
|
6528
6623
|
tow_weight_unbraked?: Maybe<Scalars["Float"]>;
|
|
6529
|
-
/** Maximum braked towing weight
|
|
6624
|
+
/** Maximum braked towing weight. */
|
|
6530
6625
|
tow_weight_braked?: Maybe<Scalars["Float"]>;
|
|
6531
6626
|
/** Indicates if tow weight fields are estimations. */
|
|
6532
6627
|
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6533
|
-
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation
|
|
6628
|
+
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation. */
|
|
6534
6629
|
tow_weight_vertical_load?: Maybe<Scalars["Float"]>;
|
|
6535
|
-
/** Maximum load on roof of the vehicle
|
|
6630
|
+
/** Maximum load on roof of the vehicle. */
|
|
6536
6631
|
roof_load_max?: Maybe<Scalars["Float"]>;
|
|
6537
6632
|
/** Body type, listed in local naming convention where applicable. */
|
|
6538
6633
|
body_type?: Maybe<Scalars["String"]>;
|
|
@@ -6542,7 +6637,7 @@ export type VehiclePremiumBody = {
|
|
|
6542
6637
|
seats: Scalars["Int"];
|
|
6543
6638
|
/** Indicates whether a vehicle has roof rails as a standard. */
|
|
6544
6639
|
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
6545
|
-
/** Turning circle of the vehicle kerb-to-kerb
|
|
6640
|
+
/** Turning circle of the vehicle kerb-to-kerb. */
|
|
6546
6641
|
turning_circle?: Maybe<Scalars["Float"]>;
|
|
6547
6642
|
/** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms). */
|
|
6548
6643
|
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
@@ -6586,6 +6681,10 @@ export type VehiclePremiumBodyboot_capacityArgs = {
|
|
|
6586
6681
|
unit?: Maybe<VolumeUnit>;
|
|
6587
6682
|
};
|
|
6588
6683
|
|
|
6684
|
+
export type VehiclePremiumBodyboot_front_capacityArgs = {
|
|
6685
|
+
unit?: Maybe<VolumeUnit>;
|
|
6686
|
+
};
|
|
6687
|
+
|
|
6589
6688
|
export type VehiclePremiumBodyboot_capacity_maxArgs = {
|
|
6590
6689
|
unit?: Maybe<VolumeUnit>;
|
|
6591
6690
|
};
|
|
@@ -6626,20 +6725,24 @@ export type VehiclePremiumCharge = {
|
|
|
6626
6725
|
};
|
|
6627
6726
|
|
|
6628
6727
|
export type VehiclePremiumChargeAlternativeOBC = {
|
|
6629
|
-
/** Maximum power OBC can accept to charge a battery (
|
|
6728
|
+
/** Maximum power OBC can accept to charge a battery (alternative OBC). */
|
|
6630
6729
|
power?: Maybe<Scalars["Float"]>;
|
|
6631
|
-
/** Number of phases the OBC accepts to achieve maximum power (
|
|
6730
|
+
/** Number of phases the OBC accepts to achieve maximum power (alternative OBC). */
|
|
6632
6731
|
phases?: Maybe<Scalars["Int"]>;
|
|
6633
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (
|
|
6732
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (alternative OBC). */
|
|
6634
6733
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
6635
|
-
/** Minutes needed to charge from 0% to 100% (
|
|
6734
|
+
/** Minutes needed to charge from 0% to 100% (alternative OBC). */
|
|
6636
6735
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6637
|
-
/** Charging speed when charging at maximum power (
|
|
6736
|
+
/** Charging speed when charging at maximum power (alternative OBC). */
|
|
6638
6737
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6639
|
-
/** Charging details for the
|
|
6738
|
+
/** Charging details for the alternative OBC at several charging points. */
|
|
6640
6739
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
6641
6740
|
};
|
|
6642
6741
|
|
|
6742
|
+
export type VehiclePremiumChargeAlternativeOBCpowerArgs = {
|
|
6743
|
+
unit?: Maybe<PowerUnit>;
|
|
6744
|
+
};
|
|
6745
|
+
|
|
6643
6746
|
export type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {
|
|
6644
6747
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
6645
6748
|
};
|
|
@@ -6661,10 +6764,14 @@ export type VehiclePremiumChargeOBCTable = {
|
|
|
6661
6764
|
charge_power?: Maybe<Scalars["Float"]>;
|
|
6662
6765
|
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */
|
|
6663
6766
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6664
|
-
/** Charging speed when charging at maximum power (standard OBC with this EVSE)
|
|
6767
|
+
/** Charging speed when charging at maximum power (standard OBC with this EVSE). */
|
|
6665
6768
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6666
6769
|
};
|
|
6667
6770
|
|
|
6771
|
+
export type VehiclePremiumChargeOBCTablecharge_powerArgs = {
|
|
6772
|
+
unit?: Maybe<PowerUnit>;
|
|
6773
|
+
};
|
|
6774
|
+
|
|
6668
6775
|
export type VehiclePremiumChargeOBCTablecharge_speedArgs = {
|
|
6669
6776
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
6670
6777
|
};
|
|
@@ -6678,12 +6785,16 @@ export type VehiclePremiumChargeOptionOBC = {
|
|
|
6678
6785
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
6679
6786
|
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
6680
6787
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6681
|
-
/** Charging speed when charging at maximum power (standard OBC)
|
|
6788
|
+
/** Charging speed when charging at maximum power (standard OBC). */
|
|
6682
6789
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6683
6790
|
/** Charging details for the standard OBC at several charging points. */
|
|
6684
6791
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
6685
6792
|
};
|
|
6686
6793
|
|
|
6794
|
+
export type VehiclePremiumChargeOptionOBCpowerArgs = {
|
|
6795
|
+
unit?: Maybe<PowerUnit>;
|
|
6796
|
+
};
|
|
6797
|
+
|
|
6687
6798
|
export type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
|
|
6688
6799
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
6689
6800
|
};
|
|
@@ -6704,6 +6815,14 @@ export type VehiclePremiumChargePower = {
|
|
|
6704
6815
|
average?: Maybe<Scalars["Float"]>;
|
|
6705
6816
|
};
|
|
6706
6817
|
|
|
6818
|
+
export type VehiclePremiumChargePowermaxArgs = {
|
|
6819
|
+
unit?: Maybe<PowerUnit>;
|
|
6820
|
+
};
|
|
6821
|
+
|
|
6822
|
+
export type VehiclePremiumChargePoweraverageArgs = {
|
|
6823
|
+
unit?: Maybe<PowerUnit>;
|
|
6824
|
+
};
|
|
6825
|
+
|
|
6707
6826
|
export type VehiclePremiumChargeSecondPlug = {
|
|
6708
6827
|
/** Location of charge port. */
|
|
6709
6828
|
location?: Maybe<Scalars["String"]>;
|
|
@@ -6720,7 +6839,7 @@ export type VehiclePremiumChargeStandardOBC = {
|
|
|
6720
6839
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
6721
6840
|
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
6722
6841
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6723
|
-
/** Charging speed when charging at maximum power (standard OBC)
|
|
6842
|
+
/** Charging speed when charging at maximum power (standard OBC). */
|
|
6724
6843
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6725
6844
|
/** Indicates if Charge_Standard fields are estimated. */
|
|
6726
6845
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6728,6 +6847,10 @@ export type VehiclePremiumChargeStandardOBC = {
|
|
|
6728
6847
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
6729
6848
|
};
|
|
6730
6849
|
|
|
6850
|
+
export type VehiclePremiumChargeStandardOBCpowerArgs = {
|
|
6851
|
+
unit?: Maybe<PowerUnit>;
|
|
6852
|
+
};
|
|
6853
|
+
|
|
6731
6854
|
export type VehiclePremiumChargeStandardOBCcharge_speedArgs = {
|
|
6732
6855
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
6733
6856
|
};
|
|
@@ -6741,13 +6864,13 @@ export type VehiclePremiumDrivetrain = {
|
|
|
6741
6864
|
propulsion?: Maybe<VehiclePropulsion>;
|
|
6742
6865
|
/** Indicates if propulsion field is estimated. */
|
|
6743
6866
|
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6744
|
-
/** Maximum (combined) power output
|
|
6867
|
+
/** Maximum (combined) power output. */
|
|
6745
6868
|
power?: Maybe<Scalars["Float"]>;
|
|
6746
6869
|
/** Indicates if power field is estimated. */
|
|
6747
6870
|
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6748
|
-
/** Maximum (combine) power output
|
|
6871
|
+
/** Maximum (combine) power output. */
|
|
6749
6872
|
power_hp?: Maybe<Scalars["Float"]>;
|
|
6750
|
-
/** Maximum (combine) torque output
|
|
6873
|
+
/** Maximum (combine) torque output. */
|
|
6751
6874
|
torque?: Maybe<Scalars["Float"]>;
|
|
6752
6875
|
/** Indicates if torque field is estimated. */
|
|
6753
6876
|
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6777,15 +6900,15 @@ export type VehiclePremiumEfficiency = {
|
|
|
6777
6900
|
};
|
|
6778
6901
|
|
|
6779
6902
|
export type VehiclePremiumEfficiencyNEDC = {
|
|
6780
|
-
/** Rated efficiency in NEDC combined cycle
|
|
6903
|
+
/** Rated efficiency in NEDC combined cycle. */
|
|
6781
6904
|
value?: Maybe<Scalars["Float"]>;
|
|
6782
|
-
/** Rated efficiency in NEDC combined cycle presented in gas equivalent
|
|
6905
|
+
/** Rated efficiency in NEDC combined cycle presented in gas equivalent. */
|
|
6783
6906
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6784
|
-
/** Rated vehicle efficiency in NEDC combined cycle (based on value)
|
|
6907
|
+
/** Rated vehicle efficiency in NEDC combined cycle (based on value). */
|
|
6785
6908
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
6786
|
-
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent
|
|
6909
|
+
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent. */
|
|
6787
6910
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6788
|
-
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated)
|
|
6911
|
+
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated). */
|
|
6789
6912
|
co2?: Maybe<Scalars["Float"]>;
|
|
6790
6913
|
};
|
|
6791
6914
|
|
|
@@ -6810,9 +6933,9 @@ export type VehiclePremiumEfficiencyNEDCco2Args = {
|
|
|
6810
6933
|
};
|
|
6811
6934
|
|
|
6812
6935
|
export type VehiclePremiumEfficiencyProvider = {
|
|
6813
|
-
/** Vehicle efficiency based on RealRange (usable battery/range)
|
|
6936
|
+
/** Vehicle efficiency based on RealRange (usable battery/range). */
|
|
6814
6937
|
value?: Maybe<Scalars["Float"]>;
|
|
6815
|
-
/** Vehicle efficiency based on RealRange presented in gas equivalent
|
|
6938
|
+
/** Vehicle efficiency based on RealRange presented in gas equivalent. */
|
|
6816
6939
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6817
6940
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
6818
6941
|
worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
@@ -6829,11 +6952,11 @@ export type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {
|
|
|
6829
6952
|
};
|
|
6830
6953
|
|
|
6831
6954
|
export type VehiclePremiumEfficiencyProviderValue = {
|
|
6832
|
-
/** Estimated value on highway or express roads
|
|
6955
|
+
/** Estimated value on highway or express roads. */
|
|
6833
6956
|
highway?: Maybe<Scalars["Float"]>;
|
|
6834
|
-
/** Estimated value on city roads
|
|
6957
|
+
/** Estimated value on city roads. */
|
|
6835
6958
|
city?: Maybe<Scalars["Float"]>;
|
|
6836
|
-
/** Estimated combined value
|
|
6959
|
+
/** Estimated combined value. */
|
|
6837
6960
|
combined?: Maybe<Scalars["Float"]>;
|
|
6838
6961
|
};
|
|
6839
6962
|
|
|
@@ -6850,15 +6973,15 @@ export type VehiclePremiumEfficiencyProviderValuecombinedArgs = {
|
|
|
6850
6973
|
};
|
|
6851
6974
|
|
|
6852
6975
|
export type VehiclePremiumEfficiencyWLTP = {
|
|
6853
|
-
/** Rated efficiency in WLTP combined cycle
|
|
6976
|
+
/** Rated efficiency in WLTP combined cycle. */
|
|
6854
6977
|
value?: Maybe<Scalars["Float"]>;
|
|
6855
|
-
/** Rated efficiency in WLTP combined cycle presented in gas equivalent
|
|
6978
|
+
/** Rated efficiency in WLTP combined cycle presented in gas equivalent. */
|
|
6856
6979
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6857
|
-
/** Rated vehicle efficiency in WLTP combined cycle (based on value)
|
|
6980
|
+
/** Rated vehicle efficiency in WLTP combined cycle (based on value). */
|
|
6858
6981
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
6859
|
-
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent
|
|
6982
|
+
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent. */
|
|
6860
6983
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6861
|
-
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated)
|
|
6984
|
+
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated). */
|
|
6862
6985
|
co2?: Maybe<Scalars["Float"]>;
|
|
6863
6986
|
};
|
|
6864
6987
|
|
|
@@ -6885,13 +7008,13 @@ export type VehiclePremiumEfficiencyWLTPco2Args = {
|
|
|
6885
7008
|
export type VehiclePremiumEfficiencyWLTPTEH = {
|
|
6886
7009
|
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
|
|
6887
7010
|
value?: Maybe<Scalars["Float"]>;
|
|
6888
|
-
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent
|
|
7011
|
+
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent. */
|
|
6889
7012
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6890
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value)
|
|
7013
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value). */
|
|
6891
7014
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
6892
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent
|
|
7015
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent. */
|
|
6893
7016
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
6894
|
-
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated)
|
|
7017
|
+
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated). */
|
|
6895
7018
|
co2?: Maybe<Scalars["Float"]>;
|
|
6896
7019
|
};
|
|
6897
7020
|
|
|
@@ -6922,7 +7045,7 @@ export type VehiclePremiumFastCharge = {
|
|
|
6922
7045
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
6923
7046
|
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */
|
|
6924
7047
|
charge_time?: Maybe<Scalars["Float"]>;
|
|
6925
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger)
|
|
7048
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger). */
|
|
6926
7049
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6927
7050
|
/** Indicates if fast charge is optional in some markets/regions. */
|
|
6928
7051
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
@@ -6953,7 +7076,7 @@ export type VehiclePremiumFastChargeTable = {
|
|
|
6953
7076
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
6954
7077
|
/** Minutes needed to charge from 10% to 80% (optimal conditions). */
|
|
6955
7078
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
6956
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions)
|
|
7079
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions). */
|
|
6957
7080
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
6958
7081
|
/** Indicates if maximum power during fast charging is limited by the vehicle. */
|
|
6959
7082
|
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
@@ -7005,11 +7128,11 @@ export type VehiclePremiumNaming = {
|
|
|
7005
7128
|
};
|
|
7006
7129
|
|
|
7007
7130
|
export type VehiclePremiumPerformance = {
|
|
7008
|
-
/** Acceleration 0-100 km/h
|
|
7131
|
+
/** Acceleration 0-100 km/h. */
|
|
7009
7132
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
7010
7133
|
/** Indicates if acceleration field is estimated. */
|
|
7011
7134
|
acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
7012
|
-
/** Top speed of the vehicle
|
|
7135
|
+
/** Top speed of the vehicle. */
|
|
7013
7136
|
top_speed?: Maybe<Scalars["Float"]>;
|
|
7014
7137
|
/** Indicates if top_speed field is estimated. */
|
|
7015
7138
|
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -7052,17 +7175,17 @@ export type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
|
7052
7175
|
};
|
|
7053
7176
|
|
|
7054
7177
|
export type VehiclePremiumRange = {
|
|
7055
|
-
/** Rated range in WLTP combined cycle (NULL if not WLTP rated)
|
|
7178
|
+
/** Rated range in WLTP combined cycle (NULL if not WLTP rated). */
|
|
7056
7179
|
wltp?: Maybe<Scalars["Float"]>;
|
|
7057
7180
|
/** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
|
|
7058
7181
|
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
7059
7182
|
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */
|
|
7060
|
-
wltp_teh?: Maybe<Scalars["
|
|
7061
|
-
/** Rated range in NEDC combined cycle (NULL if not NEDC rated)
|
|
7183
|
+
wltp_teh?: Maybe<Scalars["Float"]>;
|
|
7184
|
+
/** Rated range in NEDC combined cycle (NULL if not NEDC rated). */
|
|
7062
7185
|
nedc?: Maybe<Scalars["Float"]>;
|
|
7063
7186
|
/** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
|
|
7064
7187
|
nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
7065
|
-
/** Index range
|
|
7188
|
+
/** Index range. */
|
|
7066
7189
|
provider?: Maybe<Scalars["Float"]>;
|
|
7067
7190
|
/** Indicates if index range is estimated. */
|
|
7068
7191
|
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -7071,31 +7194,36 @@ export type VehiclePremiumRange = {
|
|
|
7071
7194
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
7072
7195
|
best: VehiclePremiumRangeValue;
|
|
7073
7196
|
/**
|
|
7074
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
7075
|
-
*
|
|
7076
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
7197
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
7198
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
7199
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
7200
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
7077
7201
|
*/
|
|
7078
7202
|
chargetrip_range: ChargetripRange;
|
|
7079
7203
|
};
|
|
7080
7204
|
|
|
7081
7205
|
export type VehiclePremiumRangewltpArgs = {
|
|
7082
|
-
unit?: Maybe<
|
|
7206
|
+
unit?: Maybe<DistanceUnit>;
|
|
7207
|
+
};
|
|
7208
|
+
|
|
7209
|
+
export type VehiclePremiumRangewltp_tehArgs = {
|
|
7210
|
+
unit?: Maybe<DistanceUnit>;
|
|
7083
7211
|
};
|
|
7084
7212
|
|
|
7085
7213
|
export type VehiclePremiumRangenedcArgs = {
|
|
7086
|
-
unit?: Maybe<
|
|
7214
|
+
unit?: Maybe<DistanceUnit>;
|
|
7087
7215
|
};
|
|
7088
7216
|
|
|
7089
7217
|
export type VehiclePremiumRangeproviderArgs = {
|
|
7090
|
-
unit?: Maybe<
|
|
7218
|
+
unit?: Maybe<DistanceUnit>;
|
|
7091
7219
|
};
|
|
7092
7220
|
|
|
7093
7221
|
export type VehiclePremiumRangeValue = {
|
|
7094
|
-
/** Estimated value on highway or express roads
|
|
7222
|
+
/** Estimated value on highway or express roads. */
|
|
7095
7223
|
highway: Scalars["Float"];
|
|
7096
|
-
/** Estimated value on city roads
|
|
7224
|
+
/** Estimated value on city roads. */
|
|
7097
7225
|
city: Scalars["Float"];
|
|
7098
|
-
/** Estimated combined value
|
|
7226
|
+
/** Estimated combined value. */
|
|
7099
7227
|
combined: Scalars["Float"];
|
|
7100
7228
|
};
|
|
7101
7229
|
|
|
@@ -7116,11 +7244,11 @@ export type VehiclePremiumRouting = {
|
|
|
7116
7244
|
fast_charging_support: Scalars["Boolean"];
|
|
7117
7245
|
/** Drag coefficient. */
|
|
7118
7246
|
drag_coefficient: Scalars["Float"];
|
|
7119
|
-
/** Tire pressure recommended by manufacturer
|
|
7247
|
+
/** Tire pressure recommended by manufacturer. */
|
|
7120
7248
|
tire_pressure: Scalars["Float"];
|
|
7121
7249
|
/** Extra consumption model. */
|
|
7122
7250
|
consumption?: Maybe<VehiclePremiumRoutingConsumption>;
|
|
7123
|
-
/** Amount of
|
|
7251
|
+
/** Amount of gasoline that an equivalent gasoline vehicle would consume. */
|
|
7124
7252
|
fuel_consumption?: Maybe<Scalars["Float"]>;
|
|
7125
7253
|
};
|
|
7126
7254
|
|
|
@@ -7152,6 +7280,10 @@ export type VehiclePremiumRoutingConsumption = {
|
|
|
7152
7280
|
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
7153
7281
|
};
|
|
7154
7282
|
|
|
7283
|
+
export type VehiclePremiumRoutingConsumptionauxiliaryArgs = {
|
|
7284
|
+
unit?: Maybe<AuxiliaryConsumptionUnit>;
|
|
7285
|
+
};
|
|
7286
|
+
|
|
7155
7287
|
export type VehiclePremiumRoutingConsumptionValue = {
|
|
7156
7288
|
/** Best (lowest) consumption in summer. */
|
|
7157
7289
|
best?: Maybe<Scalars["Float"]>;
|
|
@@ -7159,6 +7291,14 @@ export type VehiclePremiumRoutingConsumptionValue = {
|
|
|
7159
7291
|
worst?: Maybe<Scalars["Float"]>;
|
|
7160
7292
|
};
|
|
7161
7293
|
|
|
7294
|
+
export type VehiclePremiumRoutingConsumptionValuebestArgs = {
|
|
7295
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
7296
|
+
};
|
|
7297
|
+
|
|
7298
|
+
export type VehiclePremiumRoutingConsumptionValueworstArgs = {
|
|
7299
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
7300
|
+
};
|
|
7301
|
+
|
|
7162
7302
|
export type VehiclePremiumSafety = {
|
|
7163
7303
|
/** Number of seats equipped with ISOFIX. */
|
|
7164
7304
|
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
@@ -7215,7 +7355,7 @@ export enum VehiclePurpose {
|
|
|
7215
7355
|
}
|
|
7216
7356
|
|
|
7217
7357
|
export type VehicleRange = {
|
|
7218
|
-
/** Index range
|
|
7358
|
+
/** Index range. */
|
|
7219
7359
|
provider?: Maybe<Scalars["Float"]>;
|
|
7220
7360
|
/** Indicates if index range is estimated. */
|
|
7221
7361
|
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
@@ -7224,9 +7364,10 @@ export type VehicleRange = {
|
|
|
7224
7364
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
7225
7365
|
best: VehicleRangeValue;
|
|
7226
7366
|
/**
|
|
7227
|
-
* Chargetrip's custom real-world range provides a carefully calculated display range for all
|
|
7228
|
-
*
|
|
7229
|
-
* Vehicles that do not have a full electric drivetrain type (
|
|
7367
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.
|
|
7368
|
+
* Chargetrip range is based on the theoretical distance driven using only the electric engine.
|
|
7369
|
+
* Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
7370
|
+
* More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range
|
|
7230
7371
|
*/
|
|
7231
7372
|
chargetrip_range: ChargetripRange;
|
|
7232
7373
|
};
|
|
@@ -7236,11 +7377,11 @@ export type VehicleRangeproviderArgs = {
|
|
|
7236
7377
|
};
|
|
7237
7378
|
|
|
7238
7379
|
export type VehicleRangeValue = {
|
|
7239
|
-
/** Estimated value on the highway or express roads
|
|
7380
|
+
/** Estimated value on the highway or express roads. */
|
|
7240
7381
|
highway: Scalars["Float"];
|
|
7241
|
-
/** Estimated value on the cities road
|
|
7382
|
+
/** Estimated value on the cities road. */
|
|
7242
7383
|
city: Scalars["Float"];
|
|
7243
|
-
/** Estimated combined value
|
|
7384
|
+
/** Estimated combined value. */
|
|
7244
7385
|
combined: Scalars["Float"];
|
|
7245
7386
|
};
|
|
7246
7387
|
|