@chargetrip/types 1.36.0 → 1.37.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/src/graphql.ts CHANGED
@@ -21,6 +21,8 @@ export type Scalars = {
21
21
  Email: any;
22
22
  /** Any JSON object */
23
23
  JSON: { [key: string]: number | string | boolean | null | Scalars["JSON"] };
24
+ /** The non empty string scalar */
25
+ NonEmptyString: any;
24
26
  /**
25
27
  * The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.
26
28
  * The PlainString type represents free-form human-readable text with HTML sanitization.
@@ -1473,7 +1475,11 @@ export type ChargerStatuses = {
1473
1475
  error?: Maybe<Scalars["Int"]>;
1474
1476
  };
1475
1477
 
1476
- /** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
1478
+ /**
1479
+ * Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
1480
+ * CT range is based on the theoretical distance driven using only the electric engine.
1481
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
1482
+ */
1477
1483
  export type ChargetripRange = {
1478
1484
  /** Worst conditions are based on -10°C and use of heating */
1479
1485
  worst?: Maybe<Scalars["Float"]>;
@@ -1481,12 +1487,20 @@ export type ChargetripRange = {
1481
1487
  best?: Maybe<Scalars["Float"]>;
1482
1488
  };
1483
1489
 
1484
- /** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
1490
+ /**
1491
+ * Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
1492
+ * CT range is based on the theoretical distance driven using only the electric engine.
1493
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
1494
+ */
1485
1495
  export type ChargetripRangeworstArgs = {
1486
1496
  unit?: Maybe<DistanceUnit>;
1487
1497
  };
1488
1498
 
1489
- /** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
1499
+ /**
1500
+ * Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
1501
+ * CT range is based on the theoretical distance driven using only the electric engine.
1502
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
1503
+ */
1490
1504
  export type ChargetripRangebestArgs = {
1491
1505
  unit?: Maybe<DistanceUnit>;
1492
1506
  };
@@ -1514,8 +1528,8 @@ export enum ChargingBehaviourCode {
1514
1528
  }
1515
1529
 
1516
1530
  export type Connect = {
1517
- /** List of connectivity providers to which a vehicle can connect */
1518
- providers: Array<ConnectProvider>;
1531
+ /** List of connectivity providers to which the vehicle can connect. This field returns null for free users. Please contact customer success for more information. */
1532
+ providers?: Maybe<Array<ConnectProvider>>;
1519
1533
  };
1520
1534
 
1521
1535
  export type ConnectBattery = {
@@ -3461,11 +3475,11 @@ export type Query = {
3461
3475
  tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
3462
3476
  /** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
3463
3477
  navigationMapping?: Maybe<Scalars["JSON"]>;
3464
- /** [BETA] Get information about a vehicle by its ID */
3478
+ /** [BETA] Get information about a vehicle by its ID. */
3465
3479
  vehicle?: Maybe<Vehicle>;
3466
3480
  /** [BETA] 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. */
3467
3481
  vehiclePremium?: Maybe<VehiclePremium>;
3468
- /** [BETA] Get a full list of vehicles */
3482
+ /** [BETA] Get a full list of vehicles. */
3469
3483
  vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
3470
3484
  };
3471
3485
 
@@ -4874,90 +4888,96 @@ export type UpdateConnectedVehicleInput = {
4874
4888
  label?: Maybe<Scalars["PlainString"]>;
4875
4889
  };
4876
4890
 
4877
- /** Output of a vehicle query */
4891
+ /** Output of a vehicle query. */
4878
4892
  export type Vehicle = {
4879
- /** Vehicles unique ID */
4893
+ /** Vehicles unique ID. */
4880
4894
  id: Scalars["ID"];
4881
- /** Naming of the vehicle */
4895
+ /** Naming of the vehicle. */
4882
4896
  naming: VehicleNaming;
4883
- /** Drivetrain of the vehicle */
4897
+ /** Drivetrain of the vehicle. */
4884
4898
  drivetrain: VehicleDrivetrain;
4885
- /** Available connectors for the vehicle */
4899
+ /** Available connectors for the vehicle. */
4886
4900
  connectors: Array<VehicleConnector>;
4887
- /** Adapters for the connectors of the vehicle */
4901
+ /** Adapters for the connectors of the vehicle. */
4888
4902
  adapters: Array<VehicleConnector>;
4889
- /** Battery of the vehicle */
4903
+ /** Battery of the vehicle. */
4890
4904
  battery: VehicleBattery;
4891
- /** Body of the vehicle */
4905
+ /** Body of the vehicle. */
4892
4906
  body: VehicleBody;
4893
- /** Availability of the vehicle */
4907
+ /** Availability of the vehicle. */
4894
4908
  availability: VehicleAvailability;
4895
- /** Performance of the vehicle */
4909
+ /** Performance of the vehicle. */
4896
4910
  performance?: Maybe<VehiclePerformance>;
4897
- /** Range of the vehicle */
4911
+ /** Range of the vehicle. */
4898
4912
  range: VehicleRange;
4899
- /** Media of the vehicle */
4913
+ /** Media of the vehicle. */
4900
4914
  media: VehicleMedia;
4901
- /** Routing of the vehicle */
4915
+ /** Routing of the vehicle. */
4902
4916
  routing: VehicleRouting;
4903
- /** Information about vehicle connectivity */
4917
+ /** Information about vehicle connectivity. */
4904
4918
  connect: Connect;
4919
+ /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
4920
+ region: Array<VehicleRegion>;
4921
+ /** Vehicle intended use. Can be passenger, cargo, or utility. */
4922
+ purpose: VehiclePurpose;
4923
+ /** Type of vehicle. */
4924
+ type: VehicleType;
4905
4925
  };
4906
4926
 
4907
4927
  export type VehicleAvailability = {
4908
- /** Availability of the vehicle */
4928
+ /** Availability of the vehicle. */
4909
4929
  status: VehicleAvailabilityStatus;
4910
4930
  };
4911
4931
 
4912
- /** Availability status of a vehicle */
4932
+ /** Availability status of a vehicle. */
4913
4933
  export enum VehicleAvailabilityStatus {
4914
- /** Vehicle no longer for sale in any market / region */
4934
+ /** Vehicle no longer for sale in any market / region. */
4915
4935
  NO_LONGER_AVAILABLE = "no_longer_available",
4916
- /** Vehicle currently for sale in at least one market / region */
4936
+ /** Vehicle currently for sale in at least one market / region. */
4917
4937
  AVAILABLE = "available",
4918
- /** Vehicle expected in market from Date_From (estimated), pre-order open */
4938
+ /** Vehicle expected in market from Date_From (estimated), pre-order open. */
4919
4939
  RELEASE_DATE_ANNOUNCED_PREORDERABLE = "release_date_announced_preorderable",
4920
- /** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open */
4940
+ /** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open. */
4921
4941
  RELEASE_DATE_ANNOUNCED = "release_date_announced",
4922
- /** Concept vehicle, nearing production and/or confirmed, pre-order open */
4942
+ /** Concept vehicle, nearing production and/or confirmed, pre-order open. */
4923
4943
  CONCEPT_VEHICLE_PREORDERABLE = "concept_vehicle_preorderable",
4924
- /** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open */
4944
+ /** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open. */
4925
4945
  CONCEPT_VEHICLE = "concept_vehicle",
4926
- /** Concept vehicle, not close to production and/or unconfirmed, pre-order open */
4946
+ /** Concept vehicle, not close to production and/or unconfirmed, pre-order open. */
4927
4947
  CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE = "concept_vehicle_release_date_tba_preorderable",
4928
- /** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown */
4948
+ /** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown. */
4929
4949
  CONCEPT_VEHICLE_RELEASE_DATE_TBA = "concept_vehicle_release_date_tba",
4930
- /** Status uncertain, introduction date and/or pricing unclear */
4950
+ /** Status uncertain, introduction date and/or pricing unclear. */
4931
4951
  UNCERTAIN = "uncertain"
4932
4952
  }
4933
4953
 
4934
4954
  export type VehicleBattery = {
4935
- /** Full battery capacity in kWh */
4955
+ /** Full battery capacity in kWh. */
4936
4956
  full_kwh: Scalars["Float"];
4937
- /** Usable battery capacity in kWh */
4957
+ /** Usable battery capacity in kWh. */
4938
4958
  usable_kwh: Scalars["Float"];
4939
4959
  };
4940
4960
 
4941
- /** Battery field estimated */
4961
+ /** Battery field estimated. */
4942
4962
  export enum VehicleBatteryFieldEstimations {
4943
- /** Both of the battery kWh fields are estimations */
4963
+ /** Both of the battery kWh fields are estimations. */
4944
4964
  B = "B",
4945
- /** full_kwh field is estimated */
4965
+ /** full_kwh field is estimated. */
4946
4966
  F = "F",
4947
- /** None of the battery kWh fields are estimations */
4967
+ /** None of the battery kWh fields are estimations. */
4948
4968
  N = "N",
4949
- /** usable_kwh field is estimated */
4969
+ /** usable_kwh field is estimated. */
4950
4970
  U = "U"
4951
4971
  }
4952
4972
 
4953
4973
  export type VehicleBody = {
4954
- /** Width with folded mirrors, default in mm */
4974
+ /** Width with folded mirrors, default in mm. */
4955
4975
  width: Scalars["Float"];
4956
- /** Height (average height for adjustable suspensions), default in mm */
4976
+ /** Height (average height for adjustable suspensions), default in mm. */
4957
4977
  height: Scalars["Float"];
4958
- /** Weight (unladen), default in kg */
4978
+ /** Weight (unladen), default in kg. */
4959
4979
  weight: VehicleBodyWeight;
4960
- /** Number of seats */
4980
+ /** Number of seats. */
4961
4981
  seats: Scalars["Int"];
4962
4982
  };
4963
4983
 
@@ -4970,11 +4990,11 @@ export type VehicleBodyheightArgs = {
4970
4990
  };
4971
4991
 
4972
4992
  export type VehicleBodyWeight = {
4973
- /** Minimum weight, default in kg */
4993
+ /** Minimum weight, default in kg. */
4974
4994
  minimum?: Maybe<Scalars["Float"]>;
4975
- /** Nominal weight, default in kg */
4995
+ /** Nominal weight, default in kg. */
4976
4996
  nominal?: Maybe<Scalars["Float"]>;
4977
- /** Maximal weight, default in kg */
4997
+ /** Maximal weight, default in kg. */
4978
4998
  maximal?: Maybe<Scalars["Float"]>;
4979
4999
  };
4980
5000
 
@@ -4990,30 +5010,30 @@ export type VehicleBodyWeightmaximalArgs = {
4990
5010
  unit?: Maybe<WeightUnit>;
4991
5011
  };
4992
5012
 
4993
- /** Vehicle plug model */
5013
+ /** Vehicle plug model. */
4994
5014
  export type VehicleConnector = {
4995
- /** Connector type, known as connector standard in OCPI */
5015
+ /** Connector type, known as connector standard in OCPI. */
4996
5016
  standard: ConnectorType;
4997
- /** Usable electric power in kW */
5017
+ /** Usable electric power in kW. */
4998
5018
  power: Scalars["Float"];
4999
- /** Maximum electric power in kW */
5019
+ /** Maximum electric power in kW. */
5000
5020
  max_electric_power: Scalars["Float"];
5001
- /** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
5021
+ /** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */
5002
5022
  time: Scalars["Int"];
5003
- /** Charging speed, default in kmph */
5023
+ /** Charging speed, default in kmph. */
5004
5024
  speed: Scalars["Float"];
5005
5025
  };
5006
5026
 
5007
- /** Vehicle plug model */
5027
+ /** Vehicle plug model. */
5008
5028
  export type VehicleConnectorspeedArgs = {
5009
5029
  unit?: Maybe<SpeedUnit>;
5010
5030
  };
5011
5031
 
5012
- /** The consumption of the vehicle */
5032
+ /** The consumption of the vehicle. */
5013
5033
  export type VehicleConsumptionInput = {
5014
- /** Worst conditions are based on -10°C and use of heating */
5034
+ /** Worst conditions are based on -10°C and use of heating. */
5015
5035
  worst?: Maybe<Scalars["Float"]>;
5016
- /** Best conditions are based on 23°C and no use of A/C */
5036
+ /** Best conditions are based on 23°C and no use of A/C. */
5017
5037
  best?: Maybe<Scalars["Float"]>;
5018
5038
  };
5019
5039
 
@@ -5029,209 +5049,228 @@ export type VehicleData = {
5029
5049
  };
5030
5050
 
5031
5051
  export enum VehicleDataProvider {
5032
- /** Internal data provider */
5052
+ /** Internal data provider. */
5033
5053
  CHARGETRIP = "chargetrip",
5034
- /** EV database data provider */
5054
+ /** EV database data provider. */
5035
5055
  EVDATABASE = "evdatabase"
5036
5056
  }
5037
5057
 
5038
5058
  export type VehicleDrivetrain = {
5039
- /** Type of drivetrain */
5059
+ /** Type of drivetrain. */
5040
5060
  type: VehicleDrivetrainType;
5041
5061
  };
5042
5062
 
5043
- /** Drivetrain */
5063
+ /** Drivetrain. */
5044
5064
  export enum VehicleDrivetrainType {
5045
- /** Battery Electric Vehicle */
5065
+ /** Battery Electric Vehicle. */
5046
5066
  BEV = "BEV",
5047
- /** Extended Range Electric Vehicle */
5067
+ /** Extended Range Electric Vehicle. */
5048
5068
  EREV = "EREV",
5049
- /** Hybrid Electric Vehicle */
5069
+ /** Hybrid Electric Vehicle. */
5050
5070
  HEV = "HEV",
5051
- /** Plug-in Hybrid Electric Vehicle */
5071
+ /** Plug-in Hybrid Electric Vehicle. */
5052
5072
  PHEV = "PHEV"
5053
5073
  }
5054
5074
 
5055
- /** Fuel type */
5075
+ /** Fuel type. */
5056
5076
  export enum VehicleFuel {
5057
- /** ICE engine available. Uses diesel */
5077
+ /** ICE engine available. Uses diesel. */
5058
5078
  D = "D",
5059
- /** Electricity only. Full electric vehicle */
5079
+ /** Electricity only. Full electric vehicle. */
5060
5080
  E = "E",
5061
- /** ICE engine available. Uses petrol */
5081
+ /** ICE engine available. Uses petrol. */
5062
5082
  P = "P"
5063
5083
  }
5064
5084
 
5065
5085
  export type VehicleImage = {
5066
- /** Image id */
5086
+ /** Image id. */
5067
5087
  id?: Maybe<Scalars["ID"]>;
5068
- /** Image type */
5088
+ /** Image type. */
5069
5089
  type: VehicleImageType;
5070
- /** Full path URL of a large image */
5090
+ /** Full path URL of a large image. */
5071
5091
  url: Scalars["String"];
5072
- /** Height of a large image in pixels */
5092
+ /** Height of a large image in pixels. */
5073
5093
  height: Scalars["Int"];
5074
- /** Width of a large image in pixels */
5094
+ /** Width of a large image in pixels. */
5075
5095
  width: Scalars["Int"];
5076
- /** Full path URL of a thumbnail image */
5096
+ /** Full path URL of a thumbnail image. */
5077
5097
  thumbnail_url: Scalars["String"];
5078
- /** Height of a thumbnail image in pixels */
5098
+ /** Height of a thumbnail image in pixels. */
5079
5099
  thumbnail_height: Scalars["Int"];
5080
- /** Width of a thumbnail image in pixels */
5100
+ /** Width of a thumbnail image in pixels. */
5081
5101
  thumbnail_width: Scalars["Int"];
5082
5102
  };
5083
5103
 
5084
- /** Available types of images which can be found for a vehicle. Each type has specific image sizes */
5104
+ /** Available types of images which can be found for a vehicle. Each type has specific image sizes. */
5085
5105
  export enum VehicleImageType {
5086
- /** Images provided by a Vehicle Datasource */
5106
+ /** Images provided by a Vehicle Datasource. */
5087
5107
  PROVIDER = "provider",
5088
- /** Full-sized image at 1536x864 px */
5108
+ /** Full-sized image at 1536x864 px. */
5089
5109
  IMAGE = "image",
5090
- /** Thumbnail of a full-sized image at 131x72 px */
5110
+ /** Thumbnail of a full-sized image at 131x72 px. */
5091
5111
  IMAGE_THUMBNAIL = "image_thumbnail",
5092
- /** Full-sized brand (maker) logo at 768x432 px */
5112
+ /** Premium image. */
5113
+ IMAGE_PREMIUM = "image_premium",
5114
+ /** Thumbnail of a premium image. */
5115
+ PREMIUM_IMAGE_THUMBNAIL = "premium_image_thumbnail",
5116
+ /** Full-sized brand (maker) logo at 768x432 px. */
5093
5117
  BRAND = "brand",
5094
- /** Thumbnail of a full-sized brand logo at 56x24 px */
5118
+ /** Thumbnail of a full-sized brand logo at 56x24 px. */
5095
5119
  BRAND_THUMBNAIL = "brand_thumbnail",
5096
- /** Placeholder image at 1536x864 px */
5120
+ /** Placeholder image at 1536x864 px. */
5097
5121
  PLACEHOLDER = "placeholder"
5098
5122
  }
5099
5123
 
5100
- /** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system */
5124
+ /** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system. */
5101
5125
  export enum VehicleImageTypeUploadable {
5102
- /** Full size image with a resolution at least 1536x864 px */
5103
- IMAGE = "image"
5126
+ /** Freemium vehicle image. */
5127
+ IMAGE = "image",
5128
+ /** Premium vehicle image. */
5129
+ IMAGE_PREMIUM = "image_premium"
5104
5130
  }
5105
5131
 
5106
- /** The output element of the vehicleList query */
5132
+ /** The output element of the vehicleList query. */
5107
5133
  export type VehicleList = {
5108
- /** Vehicles unique ID */
5134
+ /** Vehicles unique ID. */
5109
5135
  id: Scalars["ID"];
5110
- /** Naming of the vehicle */
5136
+ /** Naming of the vehicle. */
5111
5137
  naming: VehicleListNaming;
5112
- /** Drivetrain of the vehicle */
5138
+ /** Drivetrain of the vehicle. */
5113
5139
  drivetrain: VehicleDrivetrain;
5114
- /** Connectors available for the vehicle */
5140
+ /** Connectors available for the vehicle. */
5115
5141
  connectors: Array<VehicleConnector>;
5116
- /** Adapters available for the vehicle */
5142
+ /** Adapters available for the vehicle. */
5117
5143
  adapters: Array<VehicleConnector>;
5118
- /** Battery of the vehicle */
5144
+ /** Battery of the vehicle. */
5119
5145
  battery: VehicleListBattery;
5120
- /** Body of the vehicle */
5146
+ /** Body of the vehicle. */
5121
5147
  body: VehicleListBody;
5122
- /** Availability of the vehicle */
5148
+ /** Availability of the vehicle. */
5123
5149
  availability: VehicleListAvailability;
5124
- /** Range of the vehicle */
5150
+ /** Range of the vehicle. */
5125
5151
  range: VehicleListRange;
5126
- /** Media of the vehicle */
5152
+ /** Media of the vehicle. */
5127
5153
  media: VehicleListMedia;
5128
- /** Routing of the vehicle */
5154
+ /** Routing of the vehicle. */
5129
5155
  routing: VehicleListRouting;
5130
- /** Information about vehicle connectivity */
5156
+ /** Information about vehicle connectivity. */
5131
5157
  connect: Connect;
5158
+ /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
5159
+ region: Array<VehicleRegion>;
5160
+ /** Vehicle intended use. Can be passenger, cargo, or utility. */
5161
+ purpose: VehiclePurpose;
5162
+ /** Type of vehicle. */
5163
+ type: VehicleType;
5132
5164
  };
5133
5165
 
5134
5166
  export type VehicleListAvailability = {
5135
- /** Availability of the vehicle */
5167
+ /** Availability of the vehicle. */
5136
5168
  status: VehicleAvailabilityStatus;
5137
5169
  };
5138
5170
 
5139
5171
  export type VehicleListBattery = {
5140
- /** Full battery capacity in kWh */
5172
+ /** Full battery capacity in kWh. */
5141
5173
  full_kwh: Scalars["Float"];
5142
- /** Usable battery capacity in kWh */
5174
+ /** Usable battery capacity in kWh. */
5143
5175
  usable_kwh: Scalars["Float"];
5144
5176
  };
5145
5177
 
5146
5178
  export type VehicleListBody = {
5147
- /** Number of seats in a vehicle */
5179
+ /** Number of seats in a vehicle. */
5148
5180
  seats: Scalars["Int"];
5149
5181
  };
5150
5182
 
5151
5183
  export type VehicleListFilter = {
5152
- /** Availability of a vehicle */
5184
+ /** Availability of a vehicle. */
5153
5185
  availability?: Maybe<Array<VehicleAvailabilityStatus>>;
5154
- /** Drivetrain type of a vehicle */
5186
+ /** Drivetrain type of a vehicle. */
5155
5187
  drivetrain?: Maybe<Array<VehicleDrivetrainType>>;
5156
- /** Information about vehicle connectivity */
5188
+ /** Information about vehicle connectivity. */
5157
5189
  connect?: Maybe<ConnectFilter>;
5190
+ /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
5191
+ region?: Maybe<Array<VehicleRegion>>;
5192
+ /** Vehicle intended use. Can be passenger, cargo, or utility. */
5193
+ purpose?: Maybe<Array<VehiclePurpose>>;
5194
+ /** Type of vehicle. */
5195
+ type?: Maybe<Array<VehicleType>>;
5158
5196
  };
5159
5197
 
5160
5198
  export type VehicleListMedia = {
5161
- /** Latest image of the vehicle */
5199
+ /** Featured image of the vehicle from a 45-degree angle. */
5162
5200
  image: VehicleImage;
5163
- /** Latest maker logo of the vehicle */
5201
+ /** Latest maker logo of the vehicle. */
5164
5202
  brand: VehicleImage;
5165
- /** Latest video of the vehicle */
5203
+ /** Latest video of the vehicle. */
5166
5204
  video?: Maybe<VehicleVideo>;
5167
5205
  };
5168
5206
 
5169
5207
  export type VehicleListNaming = {
5170
- /** Vehicle manufacturer name */
5208
+ /** Vehicle manufacturer name. */
5171
5209
  make: Scalars["String"];
5172
- /** Vehicle model name */
5210
+ /** Vehicle model name. */
5173
5211
  model: Scalars["String"];
5174
- /** Version, edition or submodel of the vehicle */
5212
+ /** Version, edition or submodel of the vehicle. */
5175
5213
  version?: Maybe<Scalars["String"]>;
5176
- /** Another submodel level of the vehicle */
5214
+ /** Another submodel level of the vehicle. */
5177
5215
  edition?: Maybe<Scalars["String"]>;
5178
- /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
5216
+ /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */
5179
5217
  chargetrip_version: Scalars["String"];
5180
5218
  };
5181
5219
 
5182
5220
  export type VehicleListRange = {
5183
5221
  /**
5184
- * Is an index value of what we consider to be the real-world range.
5185
- * (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display in the front-end.
5222
+ * Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
5223
+ * CT range is based on the theoretical distance driven using only the electric engine.
5224
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
5186
5225
  */
5187
5226
  chargetrip_range: ChargetripRange;
5188
5227
  };
5189
5228
 
5190
5229
  export type VehicleListRouting = {
5191
- /** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
5230
+ /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
5192
5231
  fast_charging_support: Scalars["Boolean"];
5193
5232
  };
5194
5233
 
5195
5234
  export type VehicleMedia = {
5196
- /** Latest image */
5235
+ /** Featured image of the vehicle from a 45-degree angle. */
5197
5236
  image: VehicleImage;
5198
- /** Latest maker logo */
5237
+ /** Latest maker logo. */
5199
5238
  brand: VehicleImage;
5200
- /** All images */
5239
+ /** All images of the vehicle. */
5201
5240
  image_list: Array<VehicleImage>;
5202
- /** Latest video */
5241
+ /** Latest video. */
5203
5242
  video?: Maybe<VehicleVideo>;
5204
- /** All videos */
5243
+ /** All videos of the vehicle. */
5205
5244
  video_list?: Maybe<Array<VehicleVideo>>;
5206
5245
  };
5207
5246
 
5208
- /** Mode (state) of the current production */
5247
+ /** Mode (state) of the current production. */
5209
5248
  export enum VehicleMode {
5210
- /** Old vehicle that is no longer manufactured */
5249
+ /** Old vehicle that is no longer manufactured. */
5211
5250
  INDEX_ONLY = "index_only",
5212
- /** Vehicle is in production and has been released */
5251
+ /** Vehicle is in production and has been released. */
5213
5252
  PRODUCTION = "production",
5214
- /** Future releases of a vehicle, a concept of the vehicle, specs may change over time */
5253
+ /** Future releases of a vehicle, a concept of the vehicle, specs may change over time. */
5215
5254
  CONCEPT = "concept"
5216
5255
  }
5217
5256
 
5218
5257
  export type VehicleNaming = {
5219
- /** Vehicle manufacturer name */
5258
+ /** Vehicle manufacturer name. */
5220
5259
  make: Scalars["String"];
5221
- /** Vehicle model name */
5260
+ /** Vehicle model name. */
5222
5261
  model: Scalars["String"];
5223
- /** Version, edition or submodel of the vehicle */
5262
+ /** Version, edition or submodel of the vehicle. */
5224
5263
  version?: Maybe<Scalars["String"]>;
5225
- /** Another submodel level of the vehicle */
5264
+ /** Another submodel level of the vehicle. */
5226
5265
  edition?: Maybe<Scalars["String"]>;
5227
- /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
5266
+ /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */
5228
5267
  chargetrip_version: Scalars["String"];
5229
5268
  };
5230
5269
 
5231
5270
  export type VehiclePerformance = {
5232
- /** Acceleration in seconds, default in kmph to 100 */
5271
+ /** Acceleration in seconds, default in kmph to 100. */
5233
5272
  acceleration?: Maybe<Scalars["Float"]>;
5234
- /** Top speed of the vehicle, default in kmph */
5273
+ /** Top speed of the vehicle, default in kmph. */
5235
5274
  top_speed?: Maybe<Scalars["Float"]>;
5236
5275
  };
5237
5276
 
@@ -5243,146 +5282,152 @@ export type VehiclePerformancetop_speedArgs = {
5243
5282
  unit?: Maybe<SpeedUnit>;
5244
5283
  };
5245
5284
 
5246
- /** The output element of the vehiclePremium query */
5285
+ /** The output element of the vehiclePremium query. */
5247
5286
  export type VehiclePremium = {
5248
- /** Vehicles unique ID */
5287
+ /** Vehicles unique ID. */
5249
5288
  id: Scalars["ID"];
5250
- /** Internal ID of the successor vehicle trim */
5289
+ /** Internal ID of the successor vehicle trim. */
5251
5290
  succesor_id?: Maybe<Scalars["String"]>;
5252
- /** Naming of the vehicle */
5291
+ /** Naming of the vehicle. */
5253
5292
  naming: VehiclePremiumNaming;
5254
- /** Connectors available for the vehicle */
5293
+ /** Connectors available for the vehicle. */
5255
5294
  connectors: Array<VehicleConnector>;
5256
- /** Charge details */
5295
+ /** Charge details. */
5257
5296
  charge: VehiclePremiumCharge;
5258
- /** Fast charge details */
5297
+ /** Fast charge details. */
5259
5298
  fast_charge: VehiclePremiumFastCharge;
5260
- /** Adapters of connectors available for a connectors of the vehicle */
5299
+ /** Adapters of connectors available for a connectors of the vehicle. */
5261
5300
  adapters: Array<VehicleConnector>;
5262
- /** Battery of the vehicle */
5301
+ /** Battery of the vehicle. */
5263
5302
  battery: VehiclePremiumBattery;
5264
- /** Body of the vehicle */
5303
+ /** Body of the vehicle. */
5265
5304
  body: VehiclePremiumBody;
5266
- /** Availability of the vehicle */
5305
+ /** Availability of the vehicle. */
5267
5306
  availability: VehiclePremiumAvailability;
5268
- /** Pricing of the vehicle */
5307
+ /** Pricing of the vehicle. */
5269
5308
  price: VehiclePremiumPrice;
5270
- /** Drivetrain of the vehicle */
5309
+ /** Drivetrain of the vehicle. */
5271
5310
  drivetrain: VehiclePremiumDrivetrain;
5272
- /** Performance of the vehicle */
5311
+ /** Performance of the vehicle. */
5273
5312
  performance?: Maybe<VehiclePremiumPerformance>;
5274
- /** Range of the vehicle */
5313
+ /** Range of the vehicle. */
5275
5314
  range: VehiclePremiumRange;
5276
- /** Efficiency of the vehicle */
5315
+ /** Efficiency of the vehicle. */
5277
5316
  efficiency: VehiclePremiumEfficiency;
5278
- /** Safety of the vehicle */
5317
+ /** Safety of the vehicle. */
5279
5318
  safety?: Maybe<VehiclePremiumSafety>;
5280
- /** Media of the vehicle */
5319
+ /** Media of the vehicle. */
5281
5320
  media: VehiclePremiumMedia;
5282
- /** Routing of the vehicle */
5321
+ /** Routing of the vehicle. */
5283
5322
  routing: VehiclePremiumRouting;
5284
- /** Information about vehicle connectivity */
5323
+ /** Information about vehicle connectivity. */
5285
5324
  connect: Connect;
5325
+ /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
5326
+ region: Array<VehicleRegion>;
5327
+ /** Vehicle intended use. Can be passenger, cargo, or utility. */
5328
+ purpose: VehiclePurpose;
5329
+ /** Type of vehicle. */
5330
+ type: VehicleType;
5286
5331
  };
5287
5332
 
5288
5333
  export type VehiclePremiumAvailability = {
5289
- /** Availability of the vehicle */
5334
+ /** Availability of the vehicle. */
5290
5335
  status: VehicleAvailabilityStatus;
5291
- /** Date of introduction, mm-yyyy */
5336
+ /** Date of introduction, mm-yyyy. */
5292
5337
  date_from?: Maybe<Scalars["String"]>;
5293
- /** Indicates if date from field is estimated */
5338
+ /** Indicates if date from field is estimated. */
5294
5339
  date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
5295
- /** Date last available, mm-yyyy */
5340
+ /** Date last available, mm-yyyy. */
5296
5341
  date_to?: Maybe<Scalars["String"]>;
5297
5342
  };
5298
5343
 
5299
5344
  export type VehiclePremiumBattery = {
5300
- /** Usable battery capacity in kWh */
5345
+ /** Usable battery capacity in kWh. */
5301
5346
  usable_kwh: Scalars["Float"];
5302
- /** Full battery capacity in kWh */
5347
+ /** Full battery capacity in kWh. */
5303
5348
  full_kwh: Scalars["Float"];
5304
- /** Indicates which battery fields are estimated */
5349
+ /** Indicates which battery fields are estimated. */
5305
5350
  estimated_fields?: Maybe<VehicleBatteryFieldEstimations>;
5306
- /** Battery thermal management system (active/passive, air/liquid) */
5351
+ /** Battery thermal management system (active/passive, air/liquid). */
5307
5352
  thermal_management_system?: Maybe<Scalars["String"]>;
5308
- /** Duration of battery warranty */
5353
+ /** Duration of battery warranty. */
5309
5354
  warranty_period?: Maybe<Scalars["Float"]>;
5310
- /** Mileage of battery warranty */
5355
+ /** Mileage of battery warranty. */
5311
5356
  warranty_mileage?: Maybe<Scalars["Float"]>;
5312
- /** Chemistry of the battery */
5357
+ /** Chemistry of the battery. */
5313
5358
  chemistry?: Maybe<Scalars["String"]>;
5314
- /** Manufacturer of the battery */
5359
+ /** Manufacturer of the battery. */
5315
5360
  manufacturer?: Maybe<Scalars["String"]>;
5316
- /** Number of battery modules */
5361
+ /** Number of battery modules. */
5317
5362
  modules?: Maybe<Scalars["Float"]>;
5318
- /** Number of cells in the battery pack, can include configuration (s = serial, p = parallel) */
5363
+ /** Number of cells in the battery pack, can include configuration (s = serial, p = parallel). */
5319
5364
  cells?: Maybe<Scalars["String"]>;
5320
- /** Weight of the battery pack */
5365
+ /** Weight of the battery pack. */
5321
5366
  weight?: Maybe<Scalars["Float"]>;
5322
- /** Nominal voltage of battery */
5367
+ /** Nominal voltage of battery. */
5323
5368
  nominal_voltage?: Maybe<Scalars["Float"]>;
5324
5369
  };
5325
5370
 
5326
5371
  export type VehiclePremiumBody = {
5327
- /** Length, default in mm */
5372
+ /** Length, default in mm. */
5328
5373
  length?: Maybe<Scalars["Float"]>;
5329
- /** Width with folded mirrors, default in mm */
5374
+ /** Width with folded mirrors, default in mm. */
5330
5375
  width: Scalars["Float"];
5331
- /** Width of vehicle including mirrors, default in mm */
5376
+ /** Width of vehicle including mirrors, default in mm. */
5332
5377
  full_width?: Maybe<Scalars["Float"]>;
5333
- /** Height (average height for adjustable suspensions), default in mm */
5378
+ /** Height (average height for adjustable suspensions), default in mm. */
5334
5379
  height: Scalars["Float"];
5335
- /** Indicates if length/width/height fields are estimations */
5380
+ /** Indicates if length/width/height fields are estimations. */
5336
5381
  size_is_estimated?: Maybe<Scalars["Boolean"]>;
5337
- /** Wheelbase, default in mm */
5382
+ /** Wheelbase, default in mm. */
5338
5383
  wheelbase?: Maybe<Scalars["Float"]>;
5339
- /** Indicates if wheelbase field is estimated */
5384
+ /** Indicates if wheelbase field is estimated. */
5340
5385
  wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
5341
- /** Weight (unladen EU) */
5386
+ /** Weight (unladen EU). */
5342
5387
  weight: VehicleBodyWeight;
5343
- /** Maximum allowed vehicle weight with payload */
5388
+ /** Maximum allowed vehicle weight with payload. */
5344
5389
  weight_gvwr?: Maybe<VehicleBodyWeight>;
5345
- /** Maximum allowed vehicle and trailer weight with payload */
5390
+ /** Maximum allowed vehicle and trailer weight with payload. */
5346
5391
  weight_gtw?: Maybe<VehicleBodyWeight>;
5347
- /** Allowed payload weight */
5392
+ /** Allowed payload weight. */
5348
5393
  weight_payload?: Maybe<VehicleBodyWeight>;
5349
- /** Indicates if weight field is estimated */
5394
+ /** Indicates if weight field is estimated. */
5350
5395
  weight_is_estimated?: Maybe<Scalars["Boolean"]>;
5351
- /** Maximum payload allowed for the vehicle, default in kg */
5396
+ /** Maximum payload allowed for the vehicle, default in kg. */
5352
5397
  weight_max_payload?: Maybe<Scalars["Float"]>;
5353
- /** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg */
5398
+ /** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg. */
5354
5399
  max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
5355
- /** Standard luggage capacity, default in l */
5400
+ /** Standard luggage capacity, default in l. */
5356
5401
  boot_capacity?: Maybe<Scalars["Float"]>;
5357
- /** Storage capacity of front trunk/under the hood (frunk), default in l */
5402
+ /** Storage capacity of front trunk/under the hood (frunk), default in l. */
5358
5403
  boot_front_capacity?: Maybe<Scalars["Float"]>;
5359
- /** Maximum luggage capacity, default in l */
5404
+ /** Maximum luggage capacity, default in l. */
5360
5405
  boot_capacity_max?: Maybe<Scalars["Float"]>;
5361
- /** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation */
5406
+ /** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */
5362
5407
  tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
5363
- /** Maximum unbraked towing weight, default in kg */
5408
+ /** Maximum unbraked towing weight, default in kg. */
5364
5409
  tow_weight_unbraked?: Maybe<Scalars["Float"]>;
5365
- /** Maximum braked towing weight, default in kg */
5410
+ /** Maximum braked towing weight, default in kg. */
5366
5411
  tow_weight_braked?: Maybe<Scalars["Float"]>;
5367
- /** Indicates if tow weight fields are estimations */
5412
+ /** Indicates if tow weight fields are estimations. */
5368
5413
  tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
5369
- /** Maximum vertical load / noseweight on tow hitch according to vehicle homologation, default in kg */
5414
+ /** Maximum vertical load / noseweight on tow hitch according to vehicle homologation, default in kg. */
5370
5415
  tow_weight_vertical_load?: Maybe<Scalars["Float"]>;
5371
- /** Maximum load on roof of the vehicle, default in kg */
5416
+ /** Maximum load on roof of the vehicle, default in kg. */
5372
5417
  roof_load_max?: Maybe<Scalars["Float"]>;
5373
- /** Body type, listed in local naming convention where applicable */
5418
+ /** Body type, listed in local naming convention where applicable. */
5374
5419
  body_type?: Maybe<Scalars["String"]>;
5375
- /** Segment, listed in local naming convention where applicable */
5420
+ /** Segment, listed in local naming convention where applicable. */
5376
5421
  segment?: Maybe<Scalars["String"]>;
5377
- /** Number of seats */
5422
+ /** Number of seats. */
5378
5423
  seats: Scalars["Int"];
5379
- /** Indicates whether a vehicle has roof rails as a standard */
5424
+ /** Indicates whether a vehicle has roof rails as a standard. */
5380
5425
  has_roofrails?: Maybe<Scalars["Boolean"]>;
5381
- /** Turning circle of the vehicle kerb-to-kerb, default in meters */
5426
+ /** Turning circle of the vehicle kerb-to-kerb, default in meters. */
5382
5427
  turning_circle?: Maybe<Scalars["Float"]>;
5383
- /** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms) */
5428
+ /** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms). */
5384
5429
  vehicle_platform?: Maybe<Scalars["String"]>;
5385
- /** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform */
5430
+ /** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform. */
5386
5431
  vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
5387
5432
  };
5388
5433
 
@@ -5443,30 +5488,30 @@ export type VehiclePremiumBodyturning_circleArgs = {
5443
5488
  };
5444
5489
 
5445
5490
  export type VehiclePremiumCharge = {
5446
- /** Information about the main connector */
5491
+ /** Information about the main connector. */
5447
5492
  plug?: Maybe<VehiclePremiumChargePlug>;
5448
- /** Information about vehicles secondary onboard charger */
5493
+ /** Information about vehicles secondary onboard charger. */
5449
5494
  second_plug?: Maybe<VehiclePremiumChargeSecondPlug>;
5450
- /** Information about the vehicle standard onboard charger */
5495
+ /** Information about the vehicle standard onboard charger. */
5451
5496
  standard?: Maybe<VehiclePremiumChargeStandardOBC>;
5452
- /** Optional upgrade for the standard onboard charger when available */
5497
+ /** Optional upgrade for the standard onboard charger when available. */
5453
5498
  option?: Maybe<VehiclePremiumChargeOptionOBC>;
5454
- /** Alternative upgrade for the standard onboard charger when available */
5499
+ /** Alternative upgrade for the standard onboard charger when available. */
5455
5500
  alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
5456
5501
  };
5457
5502
 
5458
5503
  export type VehiclePremiumChargeAlternativeOBC = {
5459
- /** Maximum power OBC can accept to charge a battery (standard OBC) */
5504
+ /** Maximum power OBC can accept to charge a battery (standard OBC). */
5460
5505
  power?: Maybe<Scalars["Float"]>;
5461
- /** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
5506
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
5462
5507
  phases?: Maybe<Scalars["Int"]>;
5463
- /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
5508
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
5464
5509
  phase_amperage?: Maybe<Scalars["Float"]>;
5465
- /** Minutes needed to charge from 0% to 100% (standard OBC) */
5510
+ /** Minutes needed to charge from 0% to 100% (standard OBC). */
5466
5511
  charge_time?: Maybe<Scalars["Int"]>;
5467
- /** Charging speed when charging at maximum power (standard OBC), default in kmph */
5512
+ /** Charging speed when charging at maximum power (standard OBC), default in kmph. */
5468
5513
  charge_speed?: Maybe<Scalars["Float"]>;
5469
- /** Charging details for the standard OBC at several charging points */
5514
+ /** Charging details for the standard OBC at several charging points. */
5470
5515
  table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
5471
5516
  };
5472
5517
 
@@ -5475,23 +5520,23 @@ export type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {
5475
5520
  };
5476
5521
 
5477
5522
  export type VehiclePremiumChargeOBCTable = {
5478
- /** Voltage between phase and neutral for this EVSE (phase voltage) */
5523
+ /** Voltage between phase and neutral for this EVSE (phase voltage). */
5479
5524
  evse_phase_voltage?: Maybe<Scalars["Int"]>;
5480
- /** Current per phase for this EVSE (phase current) */
5525
+ /** Current per phase for this EVSE (phase current). */
5481
5526
  evse_phase_amperage?: Maybe<Scalars["Int"]>;
5482
- /** Number of phases for this EVSE */
5527
+ /** Number of phases for this EVSE. */
5483
5528
  evse_phases?: Maybe<Scalars["Int"]>;
5484
- /** Voltage between phase and neutral used by standard OBC (phase voltage) */
5529
+ /** Voltage between phase and neutral used by standard OBC (phase voltage). */
5485
5530
  charge_phase_voltage?: Maybe<Scalars["Int"]>;
5486
- /** Current per phase used by standard OBC (phase current) */
5531
+ /** Current per phase used by standard OBC (phase current). */
5487
5532
  charge_phase_amperage?: Maybe<Scalars["Float"]>;
5488
- /** Number of phases used by standard OBC */
5533
+ /** Number of phases used by standard OBC. */
5489
5534
  charge_phases?: Maybe<Scalars["Int"]>;
5490
- /** Power used by standard OBC (before OBC losses) */
5535
+ /** Power used by standard OBC (before OBC losses). */
5491
5536
  charge_power?: Maybe<Scalars["Float"]>;
5492
- /** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE) */
5537
+ /** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */
5493
5538
  charge_time?: Maybe<Scalars["Int"]>;
5494
- /** Charging speed when charging at maximum power (standard OBC with this EVSE), default in kmph */
5539
+ /** Charging speed when charging at maximum power (standard OBC with this EVSE), default in kmph. */
5495
5540
  charge_speed?: Maybe<Scalars["Float"]>;
5496
5541
  };
5497
5542
 
@@ -5500,17 +5545,17 @@ export type VehiclePremiumChargeOBCTablecharge_speedArgs = {
5500
5545
  };
5501
5546
 
5502
5547
  export type VehiclePremiumChargeOptionOBC = {
5503
- /** Maximum power OBC can accept to charge a battery (standard OBC) */
5548
+ /** Maximum power OBC can accept to charge a battery (standard OBC). */
5504
5549
  power?: Maybe<Scalars["Float"]>;
5505
- /** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
5550
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
5506
5551
  phases?: Maybe<Scalars["Int"]>;
5507
- /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
5552
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
5508
5553
  phase_amperage?: Maybe<Scalars["Float"]>;
5509
- /** Minutes needed to charge from 0% to 100% (standard OBC) */
5554
+ /** Minutes needed to charge from 0% to 100% (standard OBC). */
5510
5555
  charge_time?: Maybe<Scalars["Int"]>;
5511
- /** Charging speed when charging at maximum power (standard OBC), default in kmph */
5556
+ /** Charging speed when charging at maximum power (standard OBC), default in kmph. */
5512
5557
  charge_speed?: Maybe<Scalars["Float"]>;
5513
- /** Charging details for the standard OBC at several charging points */
5558
+ /** Charging details for the standard OBC at several charging points. */
5514
5559
  table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
5515
5560
  };
5516
5561
 
@@ -5519,42 +5564,42 @@ export type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
5519
5564
  };
5520
5565
 
5521
5566
  export type VehiclePremiumChargePlug = {
5522
- /** Type of charge port on vehicle */
5567
+ /** Type of charge port on vehicle. */
5523
5568
  value?: Maybe<ConnectorType>;
5524
- /** Indicates if value is an estimate */
5569
+ /** Indicates if value is an estimate. */
5525
5570
  is_estimated?: Maybe<Scalars["Boolean"]>;
5526
- /** Location of charge port */
5571
+ /** Location of charge port. */
5527
5572
  location?: Maybe<Scalars["String"]>;
5528
5573
  };
5529
5574
 
5530
5575
  export type VehiclePremiumChargePower = {
5531
- /** Maximum value */
5576
+ /** Maximum value. */
5532
5577
  max?: Maybe<Scalars["Float"]>;
5533
- /** Average value */
5578
+ /** Average value. */
5534
5579
  average?: Maybe<Scalars["Float"]>;
5535
5580
  };
5536
5581
 
5537
5582
  export type VehiclePremiumChargeSecondPlug = {
5538
- /** Location of charge port */
5583
+ /** Location of charge port. */
5539
5584
  location?: Maybe<Scalars["String"]>;
5540
- /** Indicates if second charge port is optional */
5585
+ /** Indicates if second charge port is optional. */
5541
5586
  is_optional?: Maybe<Scalars["Boolean"]>;
5542
5587
  };
5543
5588
 
5544
5589
  export type VehiclePremiumChargeStandardOBC = {
5545
- /** Maximum power OBC can accept to charge a battery (standard OBC) */
5590
+ /** Maximum power OBC can accept to charge a battery (standard OBC). */
5546
5591
  power?: Maybe<Scalars["Float"]>;
5547
- /** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
5592
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
5548
5593
  phases?: Maybe<Scalars["Int"]>;
5549
- /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
5594
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
5550
5595
  phase_amperage?: Maybe<Scalars["Float"]>;
5551
- /** Minutes needed to charge from 0% to 100% (standard OBC) */
5596
+ /** Minutes needed to charge from 0% to 100% (standard OBC). */
5552
5597
  charge_time?: Maybe<Scalars["Int"]>;
5553
- /** Charging speed when charging at maximum power (standard OBC), default in kmph */
5598
+ /** Charging speed when charging at maximum power (standard OBC), default in kmph. */
5554
5599
  charge_speed?: Maybe<Scalars["Float"]>;
5555
- /** Indicates if Charge_Standard fields are estimated */
5600
+ /** Indicates if Charge_Standard fields are estimated. */
5556
5601
  is_estimated?: Maybe<Scalars["Boolean"]>;
5557
- /** Charging details for the standard OBC at several charging points */
5602
+ /** Charging details for the standard OBC at several charging points. */
5558
5603
  table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
5559
5604
  };
5560
5605
 
@@ -5563,23 +5608,23 @@ export type VehiclePremiumChargeStandardOBCcharge_speedArgs = {
5563
5608
  };
5564
5609
 
5565
5610
  export type VehiclePremiumDrivetrain = {
5566
- /** Type of drivetrain */
5611
+ /** Type of drivetrain. */
5567
5612
  type: VehicleDrivetrainType;
5568
- /** Fuel type */
5613
+ /** Fuel type. */
5569
5614
  fuel?: Maybe<VehicleFuel>;
5570
- /** Propulsion type */
5615
+ /** Propulsion type. */
5571
5616
  propulsion?: Maybe<VehiclePropulsion>;
5572
- /** Indicates if propulsion field is estimated */
5617
+ /** Indicates if propulsion field is estimated. */
5573
5618
  propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
5574
- /** Maximum (combined) power output, default in kw */
5619
+ /** Maximum (combined) power output, default in kw. */
5575
5620
  power?: Maybe<Scalars["Float"]>;
5576
- /** Indicates if power field is estimated */
5621
+ /** Indicates if power field is estimated. */
5577
5622
  power_is_estimated?: Maybe<Scalars["Boolean"]>;
5578
- /** Maximum (combine) power output, default in horsepower (PS) */
5623
+ /** Maximum (combine) power output, default in horsepower (PS). */
5579
5624
  power_hp?: Maybe<Scalars["Float"]>;
5580
- /** Maximum (combine) torque output, default in newton meter */
5625
+ /** Maximum (combine) torque output, default in newton meter. */
5581
5626
  torque?: Maybe<Scalars["Float"]>;
5582
- /** Indicates if torque field is estimated */
5627
+ /** Indicates if torque field is estimated. */
5583
5628
  torque_is_estimated?: Maybe<Scalars["Boolean"]>;
5584
5629
  };
5585
5630
 
@@ -5596,26 +5641,26 @@ export type VehiclePremiumDrivetraintorqueArgs = {
5596
5641
  };
5597
5642
 
5598
5643
  export type VehiclePremiumEfficiency = {
5599
- /** Rated efficiency in WLTP combined cycle */
5644
+ /** Rated efficiency in WLTP combined cycle. */
5600
5645
  wltp?: Maybe<VehiclePremiumEfficiencyWLTP>;
5601
- /** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
5646
+ /** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */
5602
5647
  wltp_teh?: Maybe<VehiclePremiumEfficiencyWLTPTEH>;
5603
- /** Rated efficiency in NEDC combined cycle */
5648
+ /** Rated efficiency in NEDC combined cycle. */
5604
5649
  nedc?: Maybe<VehiclePremiumEfficiencyNEDC>;
5605
- /** Vehicle efficiency based on provider range */
5650
+ /** Vehicle efficiency based on provider range. */
5606
5651
  provider?: Maybe<VehiclePremiumEfficiencyProvider>;
5607
5652
  };
5608
5653
 
5609
5654
  export type VehiclePremiumEfficiencyNEDC = {
5610
- /** Rated efficiency in NEDC combined cycle, default in kWh/100 km */
5655
+ /** Rated efficiency in NEDC combined cycle, default in kWh/100 km. */
5611
5656
  value?: Maybe<Scalars["Float"]>;
5612
- /** Rated efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
5657
+ /** Rated efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km. */
5613
5658
  fuel_equivalent?: Maybe<Scalars["Float"]>;
5614
- /** Rated vehicle efficiency in NEDC combined cycle (based on value), default in kWh/100 km */
5659
+ /** Rated vehicle efficiency in NEDC combined cycle (based on value), default in kWh/100 km. */
5615
5660
  vehicle?: Maybe<Scalars["Float"]>;
5616
- /** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
5661
+ /** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km. */
5617
5662
  vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
5618
- /** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated), default in gr/km */
5663
+ /** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated), default in gr/km. */
5619
5664
  co2?: Maybe<Scalars["Float"]>;
5620
5665
  };
5621
5666
 
@@ -5640,13 +5685,13 @@ export type VehiclePremiumEfficiencyNEDCco2Args = {
5640
5685
  };
5641
5686
 
5642
5687
  export type VehiclePremiumEfficiencyProvider = {
5643
- /** Vehicle efficiency based on RealRange (usable battery/range), default in kWh/100 km */
5688
+ /** Vehicle efficiency based on RealRange (usable battery/range), default in kWh/100 km. */
5644
5689
  value?: Maybe<Scalars["Float"]>;
5645
- /** Vehicle efficiency based on RealRange presented in gas equivalent, default in l/100 km */
5690
+ /** Vehicle efficiency based on RealRange presented in gas equivalent, default in l/100 km. */
5646
5691
  fuel_equivalent?: Maybe<Scalars["Float"]>;
5647
- /** Worst conditions are based on -10°C and use of heating */
5692
+ /** Worst conditions are based on -10°C and use of heating. */
5648
5693
  worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;
5649
- /** Best conditions are based on 23°C and no use of A/C */
5694
+ /** Best conditions are based on 23°C and no use of A/C. */
5650
5695
  best?: Maybe<VehiclePremiumEfficiencyProviderValue>;
5651
5696
  };
5652
5697
 
@@ -5659,11 +5704,11 @@ export type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {
5659
5704
  };
5660
5705
 
5661
5706
  export type VehiclePremiumEfficiencyProviderValue = {
5662
- /** Estimated value on highway or express roads, default in km */
5707
+ /** Estimated value on highway or express roads, default in km. */
5663
5708
  highway?: Maybe<Scalars["Float"]>;
5664
- /** Estimated value on city roads, default in km */
5709
+ /** Estimated value on city roads, default in km. */
5665
5710
  city?: Maybe<Scalars["Float"]>;
5666
- /** Estimated combined value, default in km */
5711
+ /** Estimated combined value, default in km. */
5667
5712
  combined?: Maybe<Scalars["Float"]>;
5668
5713
  };
5669
5714
 
@@ -5680,15 +5725,15 @@ export type VehiclePremiumEfficiencyProviderValuecombinedArgs = {
5680
5725
  };
5681
5726
 
5682
5727
  export type VehiclePremiumEfficiencyWLTP = {
5683
- /** Rated efficiency in WLTP combined cycle, default in kWh/100 km */
5728
+ /** Rated efficiency in WLTP combined cycle, default in kWh/100 km. */
5684
5729
  value?: Maybe<Scalars["Float"]>;
5685
- /** Rated efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
5730
+ /** Rated efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km. */
5686
5731
  fuel_equivalent?: Maybe<Scalars["Float"]>;
5687
- /** Rated vehicle efficiency in WLTP combined cycle (based on value), default in kWh/100 km */
5732
+ /** Rated vehicle efficiency in WLTP combined cycle (based on value), default in kWh/100 km. */
5688
5733
  vehicle?: Maybe<Scalars["Float"]>;
5689
- /** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
5734
+ /** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km. */
5690
5735
  vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
5691
- /** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated), default in gr/km */
5736
+ /** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated), default in gr/km. */
5692
5737
  co2?: Maybe<Scalars["Float"]>;
5693
5738
  };
5694
5739
 
@@ -5713,15 +5758,15 @@ export type VehiclePremiumEfficiencyWLTPco2Args = {
5713
5758
  };
5714
5759
 
5715
5760
  export type VehiclePremiumEfficiencyWLTPTEH = {
5716
- /** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
5761
+ /** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
5717
5762
  value?: Maybe<Scalars["Float"]>;
5718
- /** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
5763
+ /** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km. */
5719
5764
  fuel_equivalent?: Maybe<Scalars["Float"]>;
5720
- /** Rated vehicle efficiency in WLTP TEH combined cycle (based on value), default in kWh/100 km */
5765
+ /** Rated vehicle efficiency in WLTP TEH combined cycle (based on value), default in kWh/100 km. */
5721
5766
  vehicle?: Maybe<Scalars["Float"]>;
5722
- /** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
5767
+ /** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km. */
5723
5768
  vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
5724
- /** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated), default in gr/km */
5769
+ /** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated), default in gr/km. */
5725
5770
  co2?: Maybe<Scalars["Float"]>;
5726
5771
  };
5727
5772
 
@@ -5746,19 +5791,19 @@ export type VehiclePremiumEfficiencyWLTPTEHco2Args = {
5746
5791
  };
5747
5792
 
5748
5793
  export type VehiclePremiumFastCharge = {
5749
- /** Details about the connector */
5794
+ /** Details about the connector. */
5750
5795
  plug?: Maybe<VehiclePremiumChargePlug>;
5751
- /** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
5796
+ /** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger). */
5752
5797
  power?: Maybe<VehiclePremiumChargePower>;
5753
- /** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
5798
+ /** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */
5754
5799
  charge_time?: Maybe<Scalars["Float"]>;
5755
- /** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger), default is kmph */
5800
+ /** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger), default is kmph. */
5756
5801
  charge_speed?: Maybe<Scalars["Float"]>;
5757
- /** Indicates if fast charge is optional in some markets/regions */
5802
+ /** Indicates if fast charge is optional in some markets/regions. */
5758
5803
  is_optional?: Maybe<Scalars["Boolean"]>;
5759
- /** Indicates what fields are estimated */
5804
+ /** Indicates what fields are estimated. */
5760
5805
  is_estimated?: Maybe<Scalars["Boolean"]>;
5761
- /** Charging details for fast charging */
5806
+ /** Charging details for fast charging. */
5762
5807
  table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
5763
5808
  };
5764
5809
 
@@ -5767,17 +5812,17 @@ export type VehiclePremiumFastChargecharge_speedArgs = {
5767
5812
  };
5768
5813
 
5769
5814
  export type VehiclePremiumFastChargeTable = {
5770
- /** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC) */
5815
+ /** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC). */
5771
5816
  format?: Maybe<Scalars["String"]>;
5772
- /** Fast charge power */
5817
+ /** Fast charge power. */
5773
5818
  power?: Maybe<VehiclePremiumChargePower>;
5774
- /** Minutes needed to charge from 10% to 80% (optimal conditions) */
5819
+ /** Minutes needed to charge from 10% to 80% (optimal conditions). */
5775
5820
  charge_time?: Maybe<Scalars["Int"]>;
5776
- /** Charging speed during fast charging from 10% to 80% (optimal conditions), default is kmph */
5821
+ /** Charging speed during fast charging from 10% to 80% (optimal conditions), default is kmph. */
5777
5822
  charge_speed?: Maybe<Scalars["Float"]>;
5778
- /** Indicates if maximum power during fast charging is limited by the vehicle */
5823
+ /** Indicates if maximum power during fast charging is limited by the vehicle. */
5779
5824
  is_limited?: Maybe<Scalars["Boolean"]>;
5780
- /** Indicates if average power during fast charging is limited by the vehicle */
5825
+ /** Indicates if average power during fast charging is limited by the vehicle. */
5781
5826
  average_is_limited?: Maybe<Scalars["Boolean"]>;
5782
5827
  };
5783
5828
 
@@ -5786,47 +5831,47 @@ export type VehiclePremiumFastChargeTablecharge_speedArgs = {
5786
5831
  };
5787
5832
 
5788
5833
  export type VehiclePremiumMedia = {
5789
- /** URL for more details */
5834
+ /** URL for more details. */
5790
5835
  provider_details_url?: Maybe<Scalars["String"]>;
5791
- /** Latest image */
5836
+ /** Featured image of the vehicle from a 45-degree angle. */
5792
5837
  image: VehicleImage;
5793
- /** Latest maker logo */
5838
+ /** Latest maker logo. */
5794
5839
  brand: VehicleImage;
5795
- /** All images */
5840
+ /** All images of the vehicle. */
5796
5841
  image_list: Array<VehicleImage>;
5797
- /** Latest video */
5842
+ /** Latest video. */
5798
5843
  video?: Maybe<VehicleVideo>;
5799
- /** All videos */
5844
+ /** All videos of the vehicle. */
5800
5845
  video_list?: Maybe<Array<VehicleVideo>>;
5801
- /** URL of the OEM page for this vehicle */
5846
+ /** URL of the OEM page for this vehicle. */
5802
5847
  oem_details_url?: Maybe<Scalars["String"]>;
5803
5848
  };
5804
5849
 
5805
5850
  export type VehiclePremiumNaming = {
5806
- /** Vehicle manufacturer name */
5851
+ /** Vehicle manufacturer name. */
5807
5852
  make: Scalars["String"];
5808
- /** Vehicle model name */
5853
+ /** Vehicle model name. */
5809
5854
  model: Scalars["String"];
5810
- /** Version, edition or submodel of the vehicle */
5855
+ /** Version, edition or submodel of the vehicle. */
5811
5856
  version?: Maybe<Scalars["String"]>;
5812
- /** Another submodel level of the vehicle */
5857
+ /** Another submodel level of the vehicle. */
5813
5858
  edition?: Maybe<Scalars["String"]>;
5814
- /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years */
5859
+ /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years. */
5815
5860
  chargetrip_version: Scalars["String"];
5816
- /** Vehicle model length version */
5861
+ /** Vehicle model length version. */
5817
5862
  length_version?: Maybe<Scalars["String"]>;
5818
- /** Vehicle model height version */
5863
+ /** Vehicle model height version. */
5819
5864
  height_version?: Maybe<Scalars["String"]>;
5820
5865
  };
5821
5866
 
5822
5867
  export type VehiclePremiumPerformance = {
5823
- /** Acceleration 0-100 km/h, default in seconds */
5868
+ /** Acceleration 0-100 km/h, default in seconds. */
5824
5869
  acceleration?: Maybe<Scalars["Float"]>;
5825
- /** Indicates if acceleration field is estimated */
5870
+ /** Indicates if acceleration field is estimated. */
5826
5871
  acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
5827
- /** Top speed of the vehicle, default in km/h */
5872
+ /** Top speed of the vehicle, default in km/h. */
5828
5873
  top_speed?: Maybe<Scalars["Float"]>;
5829
- /** Indicates if top_speed field is estimated */
5874
+ /** Indicates if top_speed field is estimated. */
5830
5875
  top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
5831
5876
  };
5832
5877
 
@@ -5839,22 +5884,22 @@ export type VehiclePremiumPerformancetop_speedArgs = {
5839
5884
  };
5840
5885
 
5841
5886
  export type VehiclePremiumPrice = {
5842
- /** Starting price for German market */
5887
+ /** Starting price for German market. */
5843
5888
  DE?: Maybe<VehiclePremiumPriceValueWithGrant>;
5844
- /** Starting price for Dutch market */
5889
+ /** Starting price for Dutch market. */
5845
5890
  NL?: Maybe<VehiclePremiumPriceValueWithGrant>;
5846
- /** Starting price for British market */
5891
+ /** Starting price for British market. */
5847
5892
  GB?: Maybe<VehiclePremiumPriceValueWithGrant>;
5848
5893
  };
5849
5894
 
5850
5895
  export type VehiclePremiumPriceValueWithGrant = {
5851
- /** Starting price for local market expressed in the currency in the field currency */
5896
+ /** Starting price for local market expressed in the currency in the field currency. */
5852
5897
  value?: Maybe<Scalars["Float"]>;
5853
- /** Currency in which the value without optional field conversion is expressed */
5898
+ /** Currency in which the value without optional field conversion is expressed. */
5854
5899
  currency?: Maybe<CurrencyUnit>;
5855
- /** Indicates if price value is based on estimates */
5900
+ /** Indicates if price value is based on estimates. */
5856
5901
  is_estimated?: Maybe<Scalars["Boolean"]>;
5857
- /** Grant is applied to value */
5902
+ /** Grant is applied to value. */
5858
5903
  grant_applied?: Maybe<Scalars["Int"]>;
5859
5904
  };
5860
5905
 
@@ -5863,25 +5908,29 @@ export type VehiclePremiumPriceValueWithGrantvalueArgs = {
5863
5908
  };
5864
5909
 
5865
5910
  export type VehiclePremiumRange = {
5866
- /** Rated range in WLTP combined cycle (NULL if not WLTP rated), default in km */
5911
+ /** Rated range in WLTP combined cycle (NULL if not WLTP rated), default in km. */
5867
5912
  wltp?: Maybe<Scalars["Float"]>;
5868
- /** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
5913
+ /** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
5869
5914
  wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
5870
- /** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
5915
+ /** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */
5871
5916
  wltp_teh?: Maybe<Scalars["Int"]>;
5872
- /** Rated range in NEDC combined cycle (NULL if not NEDC rated), default in km */
5917
+ /** Rated range in NEDC combined cycle (NULL if not NEDC rated), default in km. */
5873
5918
  nedc?: Maybe<Scalars["Float"]>;
5874
- /** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
5919
+ /** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
5875
5920
  nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
5876
- /** Index range, default in km */
5921
+ /** Index range, default in km. */
5877
5922
  provider?: Maybe<Scalars["Float"]>;
5878
- /** Indicates if index range is estimated */
5923
+ /** Indicates if index range is estimated. */
5879
5924
  provider_is_estimated?: Maybe<Scalars["Boolean"]>;
5880
- /** Worst conditions are based on -10°C and use of heating */
5925
+ /** Worst conditions are based on -10°C and use of heating. */
5881
5926
  worst: VehiclePremiumRangeValue;
5882
- /** Best conditions are based on 23°C and no use of A/C */
5927
+ /** Best conditions are based on 23°C and no use of A/C. */
5883
5928
  best: VehiclePremiumRangeValue;
5884
- /** Is an index value of what we consider to be the real-world range. (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display on the front-end. */
5929
+ /**
5930
+ * Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
5931
+ * CT range is based on the theoretical distance driven using only the electric engine.
5932
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
5933
+ */
5885
5934
  chargetrip_range: ChargetripRange;
5886
5935
  };
5887
5936
 
@@ -5898,12 +5947,12 @@ export type VehiclePremiumRangeproviderArgs = {
5898
5947
  };
5899
5948
 
5900
5949
  export type VehiclePremiumRangeValue = {
5901
- /** Estimated value on highway or express roads, default in km */
5902
- highway?: Maybe<Scalars["Float"]>;
5903
- /** Estimated value on city roads, default in km */
5904
- city?: Maybe<Scalars["Float"]>;
5905
- /** Estimated combined value, default in km */
5906
- combined?: Maybe<Scalars["Float"]>;
5950
+ /** Estimated value on highway or express roads, default in km. */
5951
+ highway: Scalars["Float"];
5952
+ /** Estimated value on city roads, default in km. */
5953
+ city: Scalars["Float"];
5954
+ /** Estimated combined value, default in km. */
5955
+ combined: Scalars["Float"];
5907
5956
  };
5908
5957
 
5909
5958
  export type VehiclePremiumRangeValuehighwayArgs = {
@@ -5919,15 +5968,15 @@ export type VehiclePremiumRangeValuecombinedArgs = {
5919
5968
  };
5920
5969
 
5921
5970
  export type VehiclePremiumRouting = {
5922
- /** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
5971
+ /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
5923
5972
  fast_charging_support: Scalars["Boolean"];
5924
- /** Drag coefficient */
5973
+ /** Drag coefficient. */
5925
5974
  drag_coefficient: Scalars["Float"];
5926
- /** Tire pressure recommended by manufacturer, default in bar */
5975
+ /** Tire pressure recommended by manufacturer, default in bar. */
5927
5976
  tire_pressure: Scalars["Float"];
5928
- /** Extra consumption model */
5977
+ /** Extra consumption model. */
5929
5978
  consumption?: Maybe<VehiclePremiumRoutingConsumption>;
5930
- /** Amount of petrol that an equivalent petrol vehicle would consume, default in l/100 km */
5979
+ /** Amount of petrol that an equivalent petrol vehicle would consume, default in l/100 km. */
5931
5980
  fuel_consumption?: Maybe<Scalars["Float"]>;
5932
5981
  };
5933
5982
 
@@ -5940,75 +5989,88 @@ export type VehiclePremiumRoutingfuel_consumptionArgs = {
5940
5989
  };
5941
5990
 
5942
5991
  export type VehiclePremiumRoutingConsumption = {
5943
- /** Consumption, in kWh, of the auxiliaries */
5992
+ /** Consumption, in kWh, of the auxiliaries. */
5944
5993
  aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
5945
- /** Consumption, in kWh, of the battery management system */
5994
+ /** Consumption, in kWh, of the battery management system. */
5946
5995
  bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
5947
- /** Consumption, in kWh, of the vehicle in idle mode */
5996
+ /** Consumption, in kWh, of the vehicle in idle mode. */
5948
5997
  idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
5949
5998
  };
5950
5999
 
5951
6000
  export type VehiclePremiumRoutingConsumptionValue = {
5952
- /** Best (lowest) consumption in summer */
6001
+ /** Best (lowest) consumption in summer. */
5953
6002
  best?: Maybe<Scalars["Float"]>;
5954
- /** Best (lowest) consumption in winter */
6003
+ /** Best (lowest) consumption in winter. */
5955
6004
  worst?: Maybe<Scalars["Float"]>;
5956
6005
  };
5957
6006
 
5958
6007
  export type VehiclePremiumSafety = {
5959
- /** Number of seats equipped with ISOFIX */
6008
+ /** Number of seats equipped with ISOFIX. */
5960
6009
  isofix_seats?: Maybe<Scalars["Int"]>;
5961
- /** EuroNCAP results */
6010
+ /** EuroNCAP results. */
5962
6011
  euro_ncap?: Maybe<VehiclePremiumSafetyEuroNcap>;
5963
6012
  };
5964
6013
 
5965
6014
  export type VehiclePremiumSafetyEuroNcap = {
5966
- /** EuroNCAP rating (out of 5 stars) */
6015
+ /** EuroNCAP rating (out of 5 stars). */
5967
6016
  rating?: Maybe<Scalars["Int"]>;
5968
- /** EuroNCAP year of rating */
6017
+ /** EuroNCAP year of rating. */
5969
6018
  year?: Maybe<Scalars["Int"]>;
5970
- /** EuroNCAP rating of adult protection (out of 100%) */
6019
+ /** EuroNCAP rating of adult protection (out of 100%). */
5971
6020
  adult?: Maybe<Scalars["Int"]>;
5972
- /** EuroNCAP rating of child protection (out of 100%) */
6021
+ /** EuroNCAP rating of child protection (out of 100%). */
5973
6022
  child?: Maybe<Scalars["Int"]>;
5974
- /** EuroNCAP rating of vulnerable road users (out of 100%) */
6023
+ /** EuroNCAP rating of vulnerable road users (out of 100%). */
5975
6024
  vru?: Maybe<Scalars["Int"]>;
5976
- /** EuroNCAP rating of safety assists (out of 100%) */
6025
+ /** EuroNCAP rating of safety assists (out of 100%). */
5977
6026
  sa?: Maybe<Scalars["Int"]>;
5978
6027
  };
5979
6028
 
5980
- /** Propulsion */
6029
+ /** Propulsion. */
5981
6030
  export enum VehiclePropulsion {
5982
- /** All-wheel drive vehicle */
6031
+ /** All-wheel drive vehicle. */
5983
6032
  AWD = "AWD",
5984
- /** Front-wheel drive vehicle */
6033
+ /** Front-wheel drive vehicle. */
5985
6034
  FRONT = "Front",
5986
- /** Rear-wheel drive vehicle */
6035
+ /** Rear-wheel drive vehicle. */
5987
6036
  REAR = "Rear"
5988
6037
  }
5989
6038
 
5990
- /** Status of a vehicle provider */
6039
+ /** Status of a vehicle provider. */
5991
6040
  export enum VehicleProviderStatus {
5992
- /** Is imported from any of the data providers */
6041
+ /** Is imported from any of the data providers. */
5993
6042
  NEW = "new",
5994
- /** Has been attached to core vehicle */
6043
+ /** Has been attached to core vehicle. */
5995
6044
  ATTACHED = "attached",
5996
- /** Has been detached from a core vehicle */
6045
+ /** Has been detached from a core vehicle. */
5997
6046
  DETACHED = "detached",
5998
- /** Has been archived by database maintainer */
6047
+ /** Has been archived by database maintainer. */
5999
6048
  ARCHIVED = "archived"
6000
6049
  }
6001
6050
 
6051
+ export enum VehiclePurpose {
6052
+ /** Vehicle intended for the transportation of passengers. */
6053
+ PASSENGER = "passenger",
6054
+ /** Vehicle intended for the transportation of cargo. */
6055
+ CARGO = "cargo",
6056
+ /** Vehicle intended for the transportation of everything except cargo or passengers. Eg: ambulances, agricultural vehicles, etcetera. */
6057
+ UTILITY = "utility"
6058
+ }
6059
+
6002
6060
  export type VehicleRange = {
6003
- /** Index range, default in km */
6061
+ /** Index range, default in km. */
6004
6062
  provider?: Maybe<Scalars["Float"]>;
6005
- /** Indicates if index range is estimated */
6063
+ /** Indicates if index range is estimated. */
6006
6064
  provider_is_estimated?: Maybe<Scalars["Boolean"]>;
6007
- /** Worst conditions are based on -10°C and use of heating */
6065
+ /** Worst conditions are based on -10°C and use of heating. */
6008
6066
  worst: VehicleRangeValue;
6009
- /** Best conditions are based on 23°C and no use of A/C */
6067
+ /** Best conditions are based on 23°C and no use of A/C. */
6010
6068
  best: VehicleRangeValue;
6011
- /** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
6069
+ /**
6070
+ * Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
6071
+ * CT range is based on the theoretical distance driven using only the electric engine.
6072
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
6073
+ */
6012
6074
  chargetrip_range: ChargetripRange;
6013
6075
  };
6014
6076
 
@@ -6017,11 +6079,11 @@ export type VehicleRangeproviderArgs = {
6017
6079
  };
6018
6080
 
6019
6081
  export type VehicleRangeValue = {
6020
- /** Estimated value on the highway or express roads, default in km */
6082
+ /** Estimated value on the highway or express roads, default in km. */
6021
6083
  highway: Scalars["Float"];
6022
- /** Estimated value on the cities road, default in km */
6084
+ /** Estimated value on the cities road, default in km. */
6023
6085
  city: Scalars["Float"];
6024
- /** Estimated combined value, default in km */
6086
+ /** Estimated combined value, default in km. */
6025
6087
  combined: Scalars["Float"];
6026
6088
  };
6027
6089
 
@@ -6037,8 +6099,23 @@ export type VehicleRangeValuecombinedArgs = {
6037
6099
  unit?: Maybe<DistanceUnit>;
6038
6100
  };
6039
6101
 
6102
+ export enum VehicleRegion {
6103
+ /** Africa. */
6104
+ AF = "AF",
6105
+ /** Asia. */
6106
+ AS = "AS",
6107
+ /** Europe. */
6108
+ EU = "EU",
6109
+ /** North America. */
6110
+ NA = "NA",
6111
+ /** Oceania. */
6112
+ OC = "OC",
6113
+ /** South America. */
6114
+ SA = "SA"
6115
+ }
6116
+
6040
6117
  export type VehicleRouting = {
6041
- /** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
6118
+ /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
6042
6119
  fast_charging_support: Scalars["Boolean"];
6043
6120
  };
6044
6121
 
@@ -6051,22 +6128,53 @@ export type VehicleSpeedInput = {
6051
6128
  source?: Maybe<TelemetryInputSource>;
6052
6129
  };
6053
6130
 
6054
- /** Status of a vehicle */
6131
+ /** Status of a vehicle. */
6055
6132
  export enum VehicleStatus {
6056
- /** Is being reviewed by a human operator */
6133
+ /** Is being reviewed by a human operator. */
6057
6134
  DRAFT = "draft",
6058
- /** Is public and can be used by a customer */
6135
+ /** Is public and can be used by a customer. */
6059
6136
  PUBLIC = "public",
6060
- /** Is private and can be used by a human operator */
6137
+ /** Is private and can be used by a human operator. */
6061
6138
  PRIVATE = "private",
6062
- /** Is archived and can not be used */
6139
+ /** Is archived and can not be used. */
6063
6140
  ARCHIVED = "archived"
6064
6141
  }
6065
6142
 
6143
+ export enum VehicleType {
6144
+ /** Any motor vehicle with two wheels or a motor vehicle with no more than four wheels, does not have parallel seating, and is controlled by means of handlebars. */
6145
+ MOTORCYCLE = "motorcycle",
6146
+ /** A motor vehicle with three or four wheels that is not a Motorcycle, Pickup, Van, Truck, or Utility vehicle and either has a top speed of less than 60kph or an unladen weight of less than 400kg. */
6147
+ MICROCAR = "microcar",
6148
+ /** A motor vehicle that does not have an enclosed cab, is not a microcar or utility vehicle, is capable of carrying eight or fewer people, and that has less than one third of its internal volume dedicated to cargo, living, or sleeping space in its default configuration. */
6149
+ CAR = "car",
6150
+ /** A motor vehicle that has an enclosed cab, is not a utility vehicle, and has a fixed, non-articulated, open-top back cargo bed that is enclosed on at least three sides. */
6151
+ PICKUP = "pickup",
6152
+ /**
6153
+ * A motor vehicle that does not have an enclosed cab, is not a utility vehicle, that fulfills exactly one of the following conditions:
6154
+ * 1) It is capable of carrying more than eight but less than twenty people.
6155
+ * 2) At least one third of its internal volume is dedicated to cargo space in its default configuration.
6156
+ * 3) It is the passenger variant of a vehicle that meets criterion 2.
6157
+ */
6158
+ VAN = "van",
6159
+ /** A motor vehicle that does not have an enclosed cab, is not a Utility vehicle, and is capable of carrying 20 or more people in its default configuration. */
6160
+ BUS = "bus",
6161
+ /** A motor vehicle that has an enclosed cab and is not a Pickup or Utility vehicle. */
6162
+ TRUCK = "truck",
6163
+ /**
6164
+ * A motor vehicle that fulfills at least one of the following conditions:
6165
+ * 1) It does not have wheels.
6166
+ * 2) It has some mode of locomotion other than wheels in its default configuration such as treads, skis, or floats.
6167
+ * 3) It is capable of air or water travel in its default configuration.
6168
+ * 4) It was manufactured primarily for some purpose other than transporting cargo or passengers.
6169
+ * 5) It does not conform to any of the criteria for the other vehicle categories.
6170
+ */
6171
+ UTILITY = "utility"
6172
+ }
6173
+
6066
6174
  export type VehicleVideo = {
6067
- /** Video id */
6175
+ /** Video id. */
6068
6176
  id?: Maybe<Scalars["ID"]>;
6069
- /** Full path URL of a video */
6177
+ /** Full path URL of a video. */
6070
6178
  url?: Maybe<Scalars["String"]>;
6071
6179
  };
6072
6180