@chargetrip/types 1.35.1 → 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.
@@ -17,12 +17,18 @@ export declare type Scalars = {
17
17
  Boolean: boolean;
18
18
  Int: number;
19
19
  Float: number;
20
+ /** Returns 'OK' */
21
+ Acknowledgement: any;
20
22
  /** The date and time scalar */
21
23
  DateTime: string;
24
+ /** Email address scalar, email regex with HTML sanitization */
25
+ Email: any;
22
26
  /** Any JSON object */
23
27
  JSON: {
24
28
  [key: string]: number | string | boolean | null | Scalars["JSON"];
25
29
  };
30
+ /** The non empty string scalar */
31
+ NonEmptyString: any;
26
32
  /**
27
33
  * The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.
28
34
  * The PlainString type represents free-form human-readable text with HTML sanitization.
@@ -30,8 +36,6 @@ export declare type Scalars = {
30
36
  PlainString: any;
31
37
  /** The File Upload scalar */
32
38
  Upload: any;
33
- /** Returns null */
34
- Void: any;
35
39
  };
36
40
  export declare enum AccelerationUnit {
37
41
  /** Return the acceleration in seconds to 100 kilometers per hour */
@@ -469,7 +473,9 @@ export declare enum CarImageType {
469
473
  /** Full-sized brand (maker) logo at 768x432 px */
470
474
  BRAND = "brand",
471
475
  /** Thumbnail of a full-sized brand logo at 56x24 px */
472
- BRAND_THUMBNAIL = "brand_thumbnail"
476
+ BRAND_THUMBNAIL = "brand_thumbnail",
477
+ /** Placeholder image at 1536x864 px */
478
+ PLACEHOLDER = "placeholder"
473
479
  }
474
480
  /** When uploading images to a car, you can select one of this types. The rest of the types are automatically generated by the system */
475
481
  export declare enum CarImageTypeUploadable {
@@ -1340,7 +1346,7 @@ export declare type ChargeTotalInput = {
1340
1346
  /** Value of the temperature of the battery */
1341
1347
  value: Scalars["Float"];
1342
1348
  /** Type of total charge amount */
1343
- type: BatteryInputType;
1349
+ type: StateOfChargeUnit;
1344
1350
  /** Source of inputted data, defaults to 'manual' */
1345
1351
  source?: Maybe<TelemetryInputSource>;
1346
1352
  };
@@ -1380,18 +1386,30 @@ export declare type ChargerStatuses = {
1380
1386
  /** How many are not available */
1381
1387
  error?: Maybe<Scalars["Int"]>;
1382
1388
  };
1383
- /** 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 */
1389
+ /**
1390
+ * 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.
1391
+ * CT range is based on the theoretical distance driven using only the electric engine.
1392
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
1393
+ */
1384
1394
  export declare type ChargetripRange = {
1385
1395
  /** Worst conditions are based on -10°C and use of heating */
1386
1396
  worst?: Maybe<Scalars["Float"]>;
1387
1397
  /** Best conditions are based on 23°C and no use of A/C */
1388
1398
  best?: Maybe<Scalars["Float"]>;
1389
1399
  };
1390
- /** 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 */
1400
+ /**
1401
+ * 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.
1402
+ * CT range is based on the theoretical distance driven using only the electric engine.
1403
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
1404
+ */
1391
1405
  export declare type ChargetripRangeworstArgs = {
1392
1406
  unit?: Maybe<DistanceUnit>;
1393
1407
  };
1394
- /** 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 */
1408
+ /**
1409
+ * 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.
1410
+ * CT range is based on the theoretical distance driven using only the electric engine.
1411
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
1412
+ */
1395
1413
  export declare type ChargetripRangebestArgs = {
1396
1414
  unit?: Maybe<DistanceUnit>;
1397
1415
  };
@@ -1416,8 +1434,8 @@ export declare enum ChargingBehaviourCode {
1416
1434
  OFFICE_CHARGING = "OFFICE_CHARGING"
1417
1435
  }
1418
1436
  export declare type Connect = {
1419
- /** List of connectivity providers to which a vehicle can connect */
1420
- providers: Array<ConnectProvider>;
1437
+ /** List of connectivity providers to which the vehicle can connect. This field returns null for free users. Please contact customer success for more information. */
1438
+ providers?: Maybe<Array<ConnectProvider>>;
1421
1439
  };
1422
1440
  export declare type ConnectBattery = {
1423
1441
  /** Estimated range by OEM */
@@ -1647,22 +1665,18 @@ export declare enum ConnectorType {
1647
1665
  NEMA_14_50 = "NEMA_14_50"
1648
1666
  }
1649
1667
  export declare enum ConsumptionUnit {
1650
- /** Return the consumption in kilometers */
1651
- KILOMETER = "kilometer",
1652
- /** Return the consumption in kilowatt hours */
1653
- KILOWATT_HOUR = "kilowatt_hour",
1654
1668
  /** Return the consumption in kilowatt hours per 100 kilometers */
1655
1669
  KILOWATT_HOURS_PER_100_KILOMETERS = "kilowatt_hours_per_100_kilometers",
1656
- /** Return the consumption in kilowatt hours per 100 miles */
1657
- KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
1658
1670
  /** Return the consumption in watt hours per kilometer */
1659
1671
  WATT_HOURS_PER_KILOMETER = "watt_hours_per_kilometer",
1672
+ /** Return the consumption in kilometers per kilowatt hour */
1673
+ KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour",
1674
+ /** Return the consumption in kilowatt hours per 100 miles */
1675
+ KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
1660
1676
  /** Return the consumption in watt hours per mile */
1661
1677
  WATT_HOURS_PER_MILE = "watt_hours_per_mile",
1662
1678
  /** Return the consumption in miles per kilowatt hour */
1663
- MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour",
1664
- /** Return the consumption in kilometers per kilowatt hour */
1665
- KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour"
1679
+ MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour"
1666
1680
  }
1667
1681
  /** The complete contact information */
1668
1682
  export declare type Contact = {
@@ -1955,7 +1969,9 @@ export declare enum CurrencyUnit {
1955
1969
  /** Return the currency in EUR */
1956
1970
  EUR = "EUR",
1957
1971
  /** Return the currency in USD */
1958
- USD = "USD"
1972
+ USD = "USD",
1973
+ /** Return the currency in GBP */
1974
+ GBP = "GBP"
1959
1975
  }
1960
1976
  export declare enum DistanceUnit {
1961
1977
  /** Return the distance in meters */
@@ -2249,11 +2265,11 @@ export declare type Mutation = {
2249
2265
  /** [BETA] Start a new navigation session on top of an existing route */
2250
2266
  startNavigation?: Maybe<Scalars["ID"]>;
2251
2267
  /** [BETA] Update the navigation session */
2252
- updateNavigation?: Maybe<Scalars["Void"]>;
2268
+ updateNavigation?: Maybe<Scalars["Acknowledgement"]>;
2253
2269
  /** [BETA] Recalculate the current navigation route */
2254
- recalculateNavigation?: Maybe<Scalars["Void"]>;
2270
+ recalculateNavigation?: Maybe<Scalars["Acknowledgement"]>;
2255
2271
  /** [BETA] End a navigation session */
2256
- finishNavigation?: Maybe<Scalars["Void"]>;
2272
+ finishNavigation?: Maybe<Scalars["Acknowledgement"]>;
2257
2273
  /**
2258
2274
  * Add a new review.
2259
2275
  * If the `x-token` header is send for a valid user, the review will belong to it, otherwise will be added for an anonymouse user
@@ -2311,27 +2327,25 @@ export declare type Navigation = {
2311
2327
  /** ID of the navigation session */
2312
2328
  id: Scalars["ID"];
2313
2329
  /** The current route used for navigation */
2314
- route_id?: Maybe<Scalars["ID"]>;
2330
+ route_id: Scalars["ID"];
2315
2331
  /** The current route alternative used for navigation */
2316
- route_alternative_id?: Maybe<Scalars["ID"]>;
2332
+ route_alternative_id: Scalars["ID"];
2317
2333
  /** The state of a navigation session. The status can be driving, charging, finished, or error */
2318
- state?: Maybe<NavigationState>;
2334
+ state: NavigationState;
2319
2335
  /** State of charge at the last known location */
2320
- state_of_charge?: Maybe<Scalars["Float"]>;
2336
+ state_of_charge: Scalars["Float"];
2321
2337
  /** Last known location */
2322
- last_known_location?: Maybe<Point>;
2338
+ last_known_location: Point;
2323
2339
  /** Next charging station */
2324
2340
  next_station?: Maybe<NavigationStation>;
2325
2341
  /** A set of alternative charging stations to next station */
2326
- alternative_stations?: Maybe<Array<Maybe<NavigationStation>>>;
2342
+ alternative_stations: Array<NavigationStation>;
2327
2343
  /** Navigation instructions */
2328
2344
  instructions?: Maybe<Scalars["JSON"]>;
2329
2345
  };
2330
2346
  /** The navigation session data */
2331
- export declare type NavigationinstructionsArgs = {
2332
- instructions_format: InstructionsFormat;
2333
- language?: Maybe<MappingLanguage>;
2334
- precision?: Maybe<Scalars["Int"]>;
2347
+ export declare type Navigationstate_of_chargeArgs = {
2348
+ unit?: Maybe<StateOfChargeUnit>;
2335
2349
  };
2336
2350
  /** Input for the navigation recalculate */
2337
2351
  export declare type NavigationFinishInput = {
@@ -2340,16 +2354,24 @@ export declare type NavigationFinishInput = {
2340
2354
  /** Current coordinates */
2341
2355
  current_location: PointInput;
2342
2356
  };
2357
+ export declare type NavigationInstructionsInput = {
2358
+ /** Turn by turn instructions format for a route */
2359
+ instructions_format: InstructionsFormat;
2360
+ /** Preferred navigation instructions language. Default: en */
2361
+ language?: Maybe<MappingLanguage>;
2362
+ /** Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6, the default is 5 */
2363
+ precision?: Maybe<Scalars["Int"]>;
2364
+ };
2343
2365
  /** Input for the navigation recalculate */
2344
2366
  export declare type NavigationRecalculateInput = {
2345
2367
  /** ID of the navigation session */
2346
2368
  id: Scalars["ID"];
2347
2369
  /** State of charge at origin */
2348
- state_of_charge?: Maybe<Scalars["Float"]>;
2370
+ state_of_charge?: Maybe<StateOfChargeInput>;
2349
2371
  /** Origin location of a new route */
2350
2372
  current_location: PointInput;
2351
2373
  /** Via points of a new route. If this field is not sent, the original via points will be used */
2352
- via?: Maybe<Array<Maybe<FeaturePointInput>>>;
2374
+ via?: Maybe<Array<FeaturePointInput>>;
2353
2375
  /** Telemetry data input */
2354
2376
  telemetry?: Maybe<TelemetryInput>;
2355
2377
  };
@@ -2361,6 +2383,8 @@ export declare type NavigationStartInput = {
2361
2383
  route_alternative_id?: Maybe<Scalars["ID"]>;
2362
2384
  /** Current coordinates */
2363
2385
  current_location: PointInput;
2386
+ /** Instruction input format */
2387
+ instructions: NavigationInstructionsInput;
2364
2388
  };
2365
2389
  /** State of navigation session */
2366
2390
  export declare enum NavigationState {
@@ -2376,17 +2400,21 @@ export declare enum NavigationState {
2376
2400
  /** Navigation session station type */
2377
2401
  export declare type NavigationStation = {
2378
2402
  /** The ID as string of the charging station */
2379
- station_id?: Maybe<Scalars["ID"]>;
2403
+ station_id: Scalars["ID"];
2380
2404
  /** GPS location of the charging station */
2381
- station_location?: Maybe<Point>;
2405
+ station_location: Point;
2382
2406
  /** An array with all GPS locations of via points until the next charging station */
2383
- via?: Maybe<Array<Maybe<Point>>>;
2384
- /** Estimated state of charge, in kWh, at arrival on the next charging station */
2385
- estimated_state_of_charge?: Maybe<Scalars["Float"]>;
2407
+ via: Array<Point>;
2408
+ /** Estimated state of charge, at arrival on the next charging station */
2409
+ estimated_state_of_charge: Scalars["Float"];
2386
2410
  /** Estimated consumption, in kWh, from last the known location until the next charging station */
2387
- estimated_consumption?: Maybe<Scalars["Float"]>;
2411
+ estimated_consumption: Scalars["Float"];
2388
2412
  /** Estimated duration, in seconds, from the last known location until the next charging station */
2389
- estimated_duration?: Maybe<Scalars["Int"]>;
2413
+ estimated_duration: Scalars["Int"];
2414
+ };
2415
+ /** Navigation session station type */
2416
+ export declare type NavigationStationestimated_state_of_chargeArgs = {
2417
+ unit?: Maybe<StateOfChargeUnit>;
2390
2418
  };
2391
2419
  /** Input for the navigation update */
2392
2420
  export declare type NavigationUpdateInput = {
@@ -2401,12 +2429,12 @@ export declare type NavigationUpdateInput = {
2401
2429
  export declare type NavigationUpdateLocationPropertiesInput = {
2402
2430
  /** Current route leg index corresponding to a location */
2403
2431
  route_leg: Scalars["Int"];
2404
- /** Speed at a location, in km/h */
2405
- speed?: Maybe<Scalars["Float"]>;
2432
+ /** Speed at a location */
2433
+ speed?: Maybe<VehicleSpeedInput>;
2406
2434
  /** UNIX timestamp at location, in seconds */
2407
2435
  timestamp: Scalars["Int"];
2408
- /** Altitude information, in meters. This is optional */
2409
- altitude?: Maybe<Scalars["Int"]>;
2436
+ /** Elevation information */
2437
+ elevation?: Maybe<ElevationInput>;
2410
2438
  };
2411
2439
  /** Input for the navigation update locations */
2412
2440
  export declare type NavigationUpdateLocationsInput = {
@@ -2599,7 +2627,7 @@ export declare type OCPIEnvironmentalImpact = {
2599
2627
  /** The environmental impact category of this value. */
2600
2628
  category?: Maybe<OCPIEnvironmentalImpactCategory>;
2601
2629
  /** Amount of this portion in g/kWh. */
2602
- amount?: Maybe<Scalars["Int"]>;
2630
+ amount?: Maybe<Scalars["Float"]>;
2603
2631
  };
2604
2632
  /** Categories of environmental impact values. */
2605
2633
  export declare enum OCPIEnvironmentalImpactCategory {
@@ -3212,11 +3240,11 @@ export declare type Query = {
3212
3240
  tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
3213
3241
  /** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
3214
3242
  navigationMapping?: Maybe<Scalars["JSON"]>;
3215
- /** [BETA] Get information about a vehicle by its ID */
3243
+ /** [BETA] Get information about a vehicle by its ID. */
3216
3244
  vehicle?: Maybe<Vehicle>;
3217
3245
  /** [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. */
3218
3246
  vehiclePremium?: Maybe<VehiclePremium>;
3219
- /** [BETA] Get a full list of vehicles */
3247
+ /** [BETA] Get a full list of vehicles. */
3220
3248
  vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
3221
3249
  };
3222
3250
  export declare type QueryamenityListArgs = {
@@ -4059,18 +4087,18 @@ export declare type StateOfChargeInput = {
4059
4087
  /** Value of the state of charge of the vehicle */
4060
4088
  value: Scalars["Float"];
4061
4089
  /** Type of the state of charge of the vehicle */
4062
- type: BatteryInputType;
4090
+ type: StateOfChargeUnit;
4063
4091
  /** Source of inputted data, defaults to 'manual' */
4064
4092
  source?: Maybe<TelemetryInputSource>;
4065
4093
  };
4066
4094
  export declare enum StateOfChargeUnit {
4067
4095
  /** Return the state of charge in kilometers */
4068
4096
  KILOMETER = "kilometer",
4069
- /** Return the speed of charge in miles */
4097
+ /** Return the state of charge in miles */
4070
4098
  MILE = "mile",
4071
- /** Return the speed of charge in kilowatt hours */
4099
+ /** Return the state of charge in kilowatt hours */
4072
4100
  KILOWATT_HOUR = "kilowatt_hour",
4073
- /** Return the speed of charge in a percentage */
4101
+ /** Return the state of charge as a percentage */
4074
4102
  PERCENTAGE = "percentage"
4075
4103
  }
4076
4104
  /** Station data which extends OCPI Location */
@@ -4379,7 +4407,7 @@ export declare type Telemetrycharge_speedArgs = {
4379
4407
  unit?: Maybe<ChargeSpeedUnit>;
4380
4408
  };
4381
4409
  export declare type Telemetrycharge_totalArgs = {
4382
- unit?: Maybe<BatteryInputType>;
4410
+ unit?: Maybe<StateOfChargeUnit>;
4383
4411
  };
4384
4412
  export declare type Telemetrytotal_occupant_weightArgs = {
4385
4413
  unit?: Maybe<WeightUnit>;
@@ -4400,7 +4428,7 @@ export declare type TelemetrypowerArgs = {
4400
4428
  unit?: Maybe<PowerUnit>;
4401
4429
  };
4402
4430
  export declare type Telemetrystate_of_chargeArgs = {
4403
- unit?: Maybe<BatteryInputType>;
4431
+ unit?: Maybe<StateOfChargeUnit>;
4404
4432
  };
4405
4433
  export declare type Telemetrytire_pressureArgs = {
4406
4434
  unit?: Maybe<PressureUnit>;
@@ -4508,85 +4536,91 @@ export declare type UpdateConnectedVehicleInput = {
4508
4536
  /** New label for a connected vehicle */
4509
4537
  label?: Maybe<Scalars["PlainString"]>;
4510
4538
  };
4511
- /** Output of a vehicle query */
4539
+ /** Output of a vehicle query. */
4512
4540
  export declare type Vehicle = {
4513
- /** Vehicles unique ID */
4541
+ /** Vehicles unique ID. */
4514
4542
  id: Scalars["ID"];
4515
- /** Naming of the vehicle */
4543
+ /** Naming of the vehicle. */
4516
4544
  naming: VehicleNaming;
4517
- /** Drivetrain of the vehicle */
4545
+ /** Drivetrain of the vehicle. */
4518
4546
  drivetrain: VehicleDrivetrain;
4519
- /** Available connectors for the vehicle */
4547
+ /** Available connectors for the vehicle. */
4520
4548
  connectors: Array<VehicleConnector>;
4521
- /** Adapters for the connectors of the vehicle */
4549
+ /** Adapters for the connectors of the vehicle. */
4522
4550
  adapters: Array<VehicleConnector>;
4523
- /** Battery of the vehicle */
4551
+ /** Battery of the vehicle. */
4524
4552
  battery: VehicleBattery;
4525
- /** Body of the vehicle */
4553
+ /** Body of the vehicle. */
4526
4554
  body: VehicleBody;
4527
- /** Availability of the vehicle */
4555
+ /** Availability of the vehicle. */
4528
4556
  availability: VehicleAvailability;
4529
- /** Performance of the vehicle */
4557
+ /** Performance of the vehicle. */
4530
4558
  performance?: Maybe<VehiclePerformance>;
4531
- /** Range of the vehicle */
4559
+ /** Range of the vehicle. */
4532
4560
  range: VehicleRange;
4533
- /** Media of the vehicle */
4561
+ /** Media of the vehicle. */
4534
4562
  media: VehicleMedia;
4535
- /** Routing of the vehicle */
4563
+ /** Routing of the vehicle. */
4536
4564
  routing: VehicleRouting;
4537
- /** Information about vehicle connectivity */
4565
+ /** Information about vehicle connectivity. */
4538
4566
  connect: Connect;
4567
+ /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
4568
+ region: Array<VehicleRegion>;
4569
+ /** Vehicle intended use. Can be passenger, cargo, or utility. */
4570
+ purpose: VehiclePurpose;
4571
+ /** Type of vehicle. */
4572
+ type: VehicleType;
4539
4573
  };
4540
4574
  export declare type VehicleAvailability = {
4541
- /** Availability of the vehicle */
4575
+ /** Availability of the vehicle. */
4542
4576
  status: VehicleAvailabilityStatus;
4543
4577
  };
4544
- /** Availability status of a vehicle */
4578
+ /** Availability status of a vehicle. */
4545
4579
  export declare enum VehicleAvailabilityStatus {
4546
- /** Vehicle no longer for sale in any market / region */
4580
+ /** Vehicle no longer for sale in any market / region. */
4547
4581
  NO_LONGER_AVAILABLE = "no_longer_available",
4548
- /** Vehicle currently for sale in at least one market / region */
4582
+ /** Vehicle currently for sale in at least one market / region. */
4549
4583
  AVAILABLE = "available",
4550
- /** Vehicle expected in market from Date_From (estimated), pre-order open */
4584
+ /** Vehicle expected in market from Date_From (estimated), pre-order open. */
4551
4585
  RELEASE_DATE_ANNOUNCED_PREORDERABLE = "release_date_announced_preorderable",
4552
- /** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open */
4586
+ /** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open. */
4553
4587
  RELEASE_DATE_ANNOUNCED = "release_date_announced",
4554
- /** Concept vehicle, nearing production and/or confirmed, pre-order open */
4588
+ /** Concept vehicle, nearing production and/or confirmed, pre-order open. */
4555
4589
  CONCEPT_VEHICLE_PREORDERABLE = "concept_vehicle_preorderable",
4556
- /** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open */
4590
+ /** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open. */
4557
4591
  CONCEPT_VEHICLE = "concept_vehicle",
4558
- /** Concept vehicle, not close to production and/or unconfirmed, pre-order open */
4592
+ /** Concept vehicle, not close to production and/or unconfirmed, pre-order open. */
4559
4593
  CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE = "concept_vehicle_release_date_tba_preorderable",
4560
- /** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown */
4594
+ /** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown. */
4561
4595
  CONCEPT_VEHICLE_RELEASE_DATE_TBA = "concept_vehicle_release_date_tba",
4562
- /** Status uncertain, introduction date and/or pricing unclear */
4596
+ /** Status uncertain, introduction date and/or pricing unclear. */
4563
4597
  UNCERTAIN = "uncertain"
4564
4598
  }
4565
4599
  export declare type VehicleBattery = {
4566
- /** Full battery capacity in kWh */
4600
+ /** Full battery capacity in kWh. */
4567
4601
  full_kwh: Scalars["Float"];
4568
- /** Usable battery capacity in kWh */
4602
+ /** Usable battery capacity in kWh. */
4569
4603
  usable_kwh: Scalars["Float"];
4570
4604
  };
4571
- /** Battery field estimated */
4605
+ /** Battery field estimated. */
4572
4606
  export declare enum VehicleBatteryFieldEstimations {
4573
- /** Both of the battery kWh fields are estimations */
4607
+ /** Both of the battery kWh fields are estimations. */
4574
4608
  B = "B",
4575
- /** full_kwh field is estimated */
4609
+ /** full_kwh field is estimated. */
4576
4610
  F = "F",
4577
- /** None of the battery kWh fields are estimations */
4611
+ /** None of the battery kWh fields are estimations. */
4578
4612
  N = "N",
4579
- /** usable_kwh field is estimated */
4613
+ /** usable_kwh field is estimated. */
4580
4614
  U = "U"
4581
4615
  }
4582
4616
  export declare type VehicleBody = {
4583
- /** Width with folded mirrors, default in mm */
4617
+ /** Width with folded mirrors, default in mm. */
4584
4618
  width: Scalars["Float"];
4585
- /** Height (average height for adjustable suspensions), default in mm */
4619
+ /** Height (average height for adjustable suspensions), default in mm. */
4586
4620
  height: Scalars["Float"];
4587
- /** Weight (unladen), default in kg */
4621
+ /** Weight (unladen), default in kg. */
4588
4622
  weight: VehicleBodyWeight;
4589
- /** Number of seats */
4623
+ /** Number of seats. */
4590
4624
  seats: Scalars["Int"];
4591
4625
  };
4592
4626
  export declare type VehicleBodywidthArgs = {
@@ -4596,11 +4630,11 @@ export declare type VehicleBodyheightArgs = {
4596
4630
  unit?: Maybe<MeasurementUnit>;
4597
4631
  };
4598
4632
  export declare type VehicleBodyWeight = {
4599
- /** Minimum weight, default in kg */
4633
+ /** Minimum weight, default in kg. */
4600
4634
  minimum?: Maybe<Scalars["Float"]>;
4601
- /** Nominal weight, default in kg */
4602
- nominal: Scalars["Float"];
4603
- /** Maximal weight, default in kg */
4635
+ /** Nominal weight, default in kg. */
4636
+ nominal?: Maybe<Scalars["Float"]>;
4637
+ /** Maximal weight, default in kg. */
4604
4638
  maximal?: Maybe<Scalars["Float"]>;
4605
4639
  };
4606
4640
  export declare type VehicleBodyWeightminimumArgs = {
@@ -4612,28 +4646,28 @@ export declare type VehicleBodyWeightnominalArgs = {
4612
4646
  export declare type VehicleBodyWeightmaximalArgs = {
4613
4647
  unit?: Maybe<WeightUnit>;
4614
4648
  };
4615
- /** Vehicle plug model */
4649
+ /** Vehicle plug model. */
4616
4650
  export declare type VehicleConnector = {
4617
- /** Connector type, known as connector standard in OCPI */
4651
+ /** Connector type, known as connector standard in OCPI. */
4618
4652
  standard: ConnectorType;
4619
- /** Usable electric power in kW */
4653
+ /** Usable electric power in kW. */
4620
4654
  power: Scalars["Float"];
4621
- /** Maximum electric power in kW */
4655
+ /** Maximum electric power in kW. */
4622
4656
  max_electric_power: Scalars["Float"];
4623
- /** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
4657
+ /** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */
4624
4658
  time: Scalars["Int"];
4625
- /** Charging speed, default in kmph */
4659
+ /** Charging speed, default in kmph. */
4626
4660
  speed: Scalars["Float"];
4627
4661
  };
4628
- /** Vehicle plug model */
4662
+ /** Vehicle plug model. */
4629
4663
  export declare type VehicleConnectorspeedArgs = {
4630
4664
  unit?: Maybe<SpeedUnit>;
4631
4665
  };
4632
- /** The consumption of the vehicle */
4666
+ /** The consumption of the vehicle. */
4633
4667
  export declare type VehicleConsumptionInput = {
4634
- /** Worst conditions are based on -10°C and use of heating */
4668
+ /** Worst conditions are based on -10°C and use of heating. */
4635
4669
  worst?: Maybe<Scalars["Float"]>;
4636
- /** Best conditions are based on 23°C and no use of A/C */
4670
+ /** Best conditions are based on 23°C and no use of A/C. */
4637
4671
  best?: Maybe<Scalars["Float"]>;
4638
4672
  };
4639
4673
  export declare type VehicleData = {
@@ -4647,188 +4681,209 @@ export declare type VehicleData = {
4647
4681
  odometer?: Maybe<ConnectOdometer>;
4648
4682
  };
4649
4683
  export declare enum VehicleDataProvider {
4650
- /** Internal data provider */
4684
+ /** Internal data provider. */
4651
4685
  CHARGETRIP = "chargetrip",
4652
- /** EV database data provider */
4686
+ /** EV database data provider. */
4653
4687
  EVDATABASE = "evdatabase"
4654
4688
  }
4655
4689
  export declare type VehicleDrivetrain = {
4656
- /** Type of drivetrain */
4690
+ /** Type of drivetrain. */
4657
4691
  type: VehicleDrivetrainType;
4658
4692
  };
4659
- /** Drivetrain */
4693
+ /** Drivetrain. */
4660
4694
  export declare enum VehicleDrivetrainType {
4661
- /** Battery Electric Vehicle */
4695
+ /** Battery Electric Vehicle. */
4662
4696
  BEV = "BEV",
4663
- /** Extended Range Electric Vehicle */
4697
+ /** Extended Range Electric Vehicle. */
4664
4698
  EREV = "EREV",
4665
- /** Hybrid Electric Vehicle */
4699
+ /** Hybrid Electric Vehicle. */
4666
4700
  HEV = "HEV",
4667
- /** Plug-in Hybrid Electric Vehicle */
4701
+ /** Plug-in Hybrid Electric Vehicle. */
4668
4702
  PHEV = "PHEV"
4669
4703
  }
4670
- /** Fuel type */
4704
+ /** Fuel type. */
4671
4705
  export declare enum VehicleFuel {
4672
- /** ICE engine available. Uses diesel */
4706
+ /** ICE engine available. Uses diesel. */
4673
4707
  D = "D",
4674
- /** Electricity only. Full electric vehicle */
4708
+ /** Electricity only. Full electric vehicle. */
4675
4709
  E = "E",
4676
- /** ICE engine available. Uses petrol */
4710
+ /** ICE engine available. Uses petrol. */
4677
4711
  P = "P"
4678
4712
  }
4679
4713
  export declare type VehicleImage = {
4680
- /** Image id */
4714
+ /** Image id. */
4681
4715
  id?: Maybe<Scalars["ID"]>;
4682
- /** Image type */
4716
+ /** Image type. */
4683
4717
  type: VehicleImageType;
4684
- /** Full path URL of a large image */
4718
+ /** Full path URL of a large image. */
4685
4719
  url: Scalars["String"];
4686
- /** Height of a large image in pixels */
4720
+ /** Height of a large image in pixels. */
4687
4721
  height: Scalars["Int"];
4688
- /** Width of a large image in pixels */
4722
+ /** Width of a large image in pixels. */
4689
4723
  width: Scalars["Int"];
4690
- /** Full path URL of a thumbnail image */
4724
+ /** Full path URL of a thumbnail image. */
4691
4725
  thumbnail_url: Scalars["String"];
4692
- /** Height of a thumbnail image in pixels */
4726
+ /** Height of a thumbnail image in pixels. */
4693
4727
  thumbnail_height: Scalars["Int"];
4694
- /** Width of a thumbnail image in pixels */
4728
+ /** Width of a thumbnail image in pixels. */
4695
4729
  thumbnail_width: Scalars["Int"];
4696
4730
  };
4697
- /** Available types of images which can be found for a vehicle. Each type has specific image sizes */
4731
+ /** Available types of images which can be found for a vehicle. Each type has specific image sizes. */
4698
4732
  export declare enum VehicleImageType {
4699
- /** Images provided by a Vehicle Datasource */
4733
+ /** Images provided by a Vehicle Datasource. */
4700
4734
  PROVIDER = "provider",
4701
- /** Full-sized image at 1536x864 px */
4735
+ /** Full-sized image at 1536x864 px. */
4702
4736
  IMAGE = "image",
4703
- /** Thumbnail of a full-sized image at 131x72 px */
4737
+ /** Thumbnail of a full-sized image at 131x72 px. */
4704
4738
  IMAGE_THUMBNAIL = "image_thumbnail",
4705
- /** Full-sized brand (maker) logo at 768x432 px */
4739
+ /** Premium image. */
4740
+ IMAGE_PREMIUM = "image_premium",
4741
+ /** Thumbnail of a premium image. */
4742
+ PREMIUM_IMAGE_THUMBNAIL = "premium_image_thumbnail",
4743
+ /** Full-sized brand (maker) logo at 768x432 px. */
4706
4744
  BRAND = "brand",
4707
- /** Thumbnail of a full-sized brand logo at 56x24 px */
4708
- BRAND_THUMBNAIL = "brand_thumbnail"
4745
+ /** Thumbnail of a full-sized brand logo at 56x24 px. */
4746
+ BRAND_THUMBNAIL = "brand_thumbnail",
4747
+ /** Placeholder image at 1536x864 px. */
4748
+ PLACEHOLDER = "placeholder"
4709
4749
  }
4710
- /** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system */
4750
+ /** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system. */
4711
4751
  export declare enum VehicleImageTypeUploadable {
4712
- /** Full size image with a resolution at least 1536x864 px */
4713
- IMAGE = "image"
4752
+ /** Freemium vehicle image. */
4753
+ IMAGE = "image",
4754
+ /** Premium vehicle image. */
4755
+ IMAGE_PREMIUM = "image_premium"
4714
4756
  }
4715
- /** The output element of the vehicleList query */
4757
+ /** The output element of the vehicleList query. */
4716
4758
  export declare type VehicleList = {
4717
- /** Vehicles unique ID */
4759
+ /** Vehicles unique ID. */
4718
4760
  id: Scalars["ID"];
4719
- /** Naming of the vehicle */
4761
+ /** Naming of the vehicle. */
4720
4762
  naming: VehicleListNaming;
4721
- /** Drivetrain of the vehicle */
4763
+ /** Drivetrain of the vehicle. */
4722
4764
  drivetrain: VehicleDrivetrain;
4723
- /** Connectors available for the vehicle */
4765
+ /** Connectors available for the vehicle. */
4724
4766
  connectors: Array<VehicleConnector>;
4725
- /** Adapters available for the vehicle */
4767
+ /** Adapters available for the vehicle. */
4726
4768
  adapters: Array<VehicleConnector>;
4727
- /** Battery of the vehicle */
4769
+ /** Battery of the vehicle. */
4728
4770
  battery: VehicleListBattery;
4729
- /** Body of the vehicle */
4771
+ /** Body of the vehicle. */
4730
4772
  body: VehicleListBody;
4731
- /** Availability of the vehicle */
4773
+ /** Availability of the vehicle. */
4732
4774
  availability: VehicleListAvailability;
4733
- /** Range of the vehicle */
4775
+ /** Range of the vehicle. */
4734
4776
  range: VehicleListRange;
4735
- /** Media of the vehicle */
4777
+ /** Media of the vehicle. */
4736
4778
  media: VehicleListMedia;
4737
- /** Routing of the vehicle */
4779
+ /** Routing of the vehicle. */
4738
4780
  routing: VehicleListRouting;
4739
- /** Information about vehicle connectivity */
4781
+ /** Information about vehicle connectivity. */
4740
4782
  connect: Connect;
4783
+ /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
4784
+ region: Array<VehicleRegion>;
4785
+ /** Vehicle intended use. Can be passenger, cargo, or utility. */
4786
+ purpose: VehiclePurpose;
4787
+ /** Type of vehicle. */
4788
+ type: VehicleType;
4741
4789
  };
4742
4790
  export declare type VehicleListAvailability = {
4743
- /** Availability of the vehicle */
4791
+ /** Availability of the vehicle. */
4744
4792
  status: VehicleAvailabilityStatus;
4745
4793
  };
4746
4794
  export declare type VehicleListBattery = {
4747
- /** Full battery capacity in kWh */
4795
+ /** Full battery capacity in kWh. */
4748
4796
  full_kwh: Scalars["Float"];
4749
- /** Usable battery capacity in kWh */
4797
+ /** Usable battery capacity in kWh. */
4750
4798
  usable_kwh: Scalars["Float"];
4751
4799
  };
4752
4800
  export declare type VehicleListBody = {
4753
- /** Number of seats in a vehicle */
4801
+ /** Number of seats in a vehicle. */
4754
4802
  seats: Scalars["Int"];
4755
4803
  };
4756
4804
  export declare type VehicleListFilter = {
4757
- /** Availability of a vehicle */
4758
- availability?: Maybe<Array<Maybe<VehicleAvailabilityStatus>>>;
4759
- /** Drivetrain type of a vehicle */
4760
- drivetrain?: Maybe<VehicleDrivetrainType>;
4761
- /** Information about vehicle connectivity */
4805
+ /** Availability of a vehicle. */
4806
+ availability?: Maybe<Array<VehicleAvailabilityStatus>>;
4807
+ /** Drivetrain type of a vehicle. */
4808
+ drivetrain?: Maybe<Array<VehicleDrivetrainType>>;
4809
+ /** Information about vehicle connectivity. */
4762
4810
  connect?: Maybe<ConnectFilter>;
4811
+ /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
4812
+ region?: Maybe<Array<VehicleRegion>>;
4813
+ /** Vehicle intended use. Can be passenger, cargo, or utility. */
4814
+ purpose?: Maybe<Array<VehiclePurpose>>;
4815
+ /** Type of vehicle. */
4816
+ type?: Maybe<Array<VehicleType>>;
4763
4817
  };
4764
4818
  export declare type VehicleListMedia = {
4765
- /** Latest image of the vehicle */
4819
+ /** Featured image of the vehicle from a 45-degree angle. */
4766
4820
  image: VehicleImage;
4767
- /** Latest maker logo of the vehicle */
4821
+ /** Latest maker logo of the vehicle. */
4768
4822
  brand: VehicleImage;
4769
- /** Latest video of the vehicle */
4823
+ /** Latest video of the vehicle. */
4770
4824
  video?: Maybe<VehicleVideo>;
4771
4825
  };
4772
4826
  export declare type VehicleListNaming = {
4773
- /** Vehicle manufacturer name */
4827
+ /** Vehicle manufacturer name. */
4774
4828
  make: Scalars["String"];
4775
- /** Vehicle model name */
4829
+ /** Vehicle model name. */
4776
4830
  model: Scalars["String"];
4777
- /** Version, edition or submodel of the vehicle */
4831
+ /** Version, edition or submodel of the vehicle. */
4778
4832
  version?: Maybe<Scalars["String"]>;
4779
- /** Another submodel level of the vehicle */
4833
+ /** Another submodel level of the vehicle. */
4780
4834
  edition?: Maybe<Scalars["String"]>;
4781
- /** 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 */
4835
+ /** 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. */
4782
4836
  chargetrip_version: Scalars["String"];
4783
4837
  };
4784
4838
  export declare type VehicleListRange = {
4785
4839
  /**
4786
- * Is an index value of what we consider to be the real-world range.
4787
- * (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display in the front-end.
4840
+ * 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.
4841
+ * CT range is based on the theoretical distance driven using only the electric engine.
4842
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
4788
4843
  */
4789
4844
  chargetrip_range: ChargetripRange;
4790
4845
  };
4791
4846
  export declare type VehicleListRouting = {
4792
- /** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
4847
+ /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
4793
4848
  fast_charging_support: Scalars["Boolean"];
4794
4849
  };
4795
4850
  export declare type VehicleMedia = {
4796
- /** Latest image */
4851
+ /** Featured image of the vehicle from a 45-degree angle. */
4797
4852
  image: VehicleImage;
4798
- /** Latest maker logo */
4853
+ /** Latest maker logo. */
4799
4854
  brand: VehicleImage;
4800
- /** All images */
4855
+ /** All images of the vehicle. */
4801
4856
  image_list: Array<VehicleImage>;
4802
- /** Latest video */
4857
+ /** Latest video. */
4803
4858
  video?: Maybe<VehicleVideo>;
4804
- /** All videos */
4859
+ /** All videos of the vehicle. */
4805
4860
  video_list?: Maybe<Array<VehicleVideo>>;
4806
4861
  };
4807
- /** Mode (state) of the current production */
4862
+ /** Mode (state) of the current production. */
4808
4863
  export declare enum VehicleMode {
4809
- /** Old vehicle that is no longer manufactured */
4864
+ /** Old vehicle that is no longer manufactured. */
4810
4865
  INDEX_ONLY = "index_only",
4811
- /** Vehicle is in production and has been released */
4866
+ /** Vehicle is in production and has been released. */
4812
4867
  PRODUCTION = "production",
4813
- /** Future releases of a vehicle, a concept of the vehicle, specs may change over time */
4868
+ /** Future releases of a vehicle, a concept of the vehicle, specs may change over time. */
4814
4869
  CONCEPT = "concept"
4815
4870
  }
4816
4871
  export declare type VehicleNaming = {
4817
- /** Vehicle manufacturer name */
4872
+ /** Vehicle manufacturer name. */
4818
4873
  make: Scalars["String"];
4819
- /** Vehicle model name */
4874
+ /** Vehicle model name. */
4820
4875
  model: Scalars["String"];
4821
- /** Version, edition or submodel of the vehicle */
4876
+ /** Version, edition or submodel of the vehicle. */
4822
4877
  version?: Maybe<Scalars["String"]>;
4823
- /** Another submodel level of the vehicle */
4878
+ /** Another submodel level of the vehicle. */
4824
4879
  edition?: Maybe<Scalars["String"]>;
4825
- /** 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 */
4880
+ /** 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. */
4826
4881
  chargetrip_version: Scalars["String"];
4827
4882
  };
4828
4883
  export declare type VehiclePerformance = {
4829
- /** Acceleration in seconds, default in kmph to 100 */
4884
+ /** Acceleration in seconds, default in kmph to 100. */
4830
4885
  acceleration?: Maybe<Scalars["Float"]>;
4831
- /** Top speed of the vehicle, default in kmph */
4886
+ /** Top speed of the vehicle, default in kmph. */
4832
4887
  top_speed?: Maybe<Scalars["Float"]>;
4833
4888
  };
4834
4889
  export declare type VehiclePerformanceaccelerationArgs = {
@@ -4837,143 +4892,149 @@ export declare type VehiclePerformanceaccelerationArgs = {
4837
4892
  export declare type VehiclePerformancetop_speedArgs = {
4838
4893
  unit?: Maybe<SpeedUnit>;
4839
4894
  };
4840
- /** The output element of the vehiclePremium query */
4895
+ /** The output element of the vehiclePremium query. */
4841
4896
  export declare type VehiclePremium = {
4842
- /** Vehicles unique ID */
4897
+ /** Vehicles unique ID. */
4843
4898
  id: Scalars["ID"];
4844
- /** Internal ID of the successor vehicle trim */
4899
+ /** Internal ID of the successor vehicle trim. */
4845
4900
  succesor_id?: Maybe<Scalars["String"]>;
4846
- /** Naming of the vehicle */
4901
+ /** Naming of the vehicle. */
4847
4902
  naming: VehiclePremiumNaming;
4848
- /** Connectors available for the vehicle */
4903
+ /** Connectors available for the vehicle. */
4849
4904
  connectors: Array<VehicleConnector>;
4850
- /** Charge details */
4905
+ /** Charge details. */
4851
4906
  charge: VehiclePremiumCharge;
4852
- /** Fast charge details */
4907
+ /** Fast charge details. */
4853
4908
  fast_charge: VehiclePremiumFastCharge;
4854
- /** Adapters of connectors available for a connectors of the vehicle */
4909
+ /** Adapters of connectors available for a connectors of the vehicle. */
4855
4910
  adapters: Array<VehicleConnector>;
4856
- /** Battery of the vehicle */
4911
+ /** Battery of the vehicle. */
4857
4912
  battery: VehiclePremiumBattery;
4858
- /** Body of the vehicle */
4913
+ /** Body of the vehicle. */
4859
4914
  body: VehiclePremiumBody;
4860
- /** Availability of the vehicle */
4915
+ /** Availability of the vehicle. */
4861
4916
  availability: VehiclePremiumAvailability;
4862
- /** Pricing of the vehicle */
4917
+ /** Pricing of the vehicle. */
4863
4918
  price: VehiclePremiumPrice;
4864
- /** Drivetrain of the vehicle */
4919
+ /** Drivetrain of the vehicle. */
4865
4920
  drivetrain: VehiclePremiumDrivetrain;
4866
- /** Performance of the vehicle */
4921
+ /** Performance of the vehicle. */
4867
4922
  performance?: Maybe<VehiclePremiumPerformance>;
4868
- /** Range of the vehicle */
4923
+ /** Range of the vehicle. */
4869
4924
  range: VehiclePremiumRange;
4870
- /** Efficiency of the vehicle */
4925
+ /** Efficiency of the vehicle. */
4871
4926
  efficiency: VehiclePremiumEfficiency;
4872
- /** Safety of the vehicle */
4927
+ /** Safety of the vehicle. */
4873
4928
  safety?: Maybe<VehiclePremiumSafety>;
4874
- /** Media of the vehicle */
4929
+ /** Media of the vehicle. */
4875
4930
  media: VehiclePremiumMedia;
4876
- /** Routing of the vehicle */
4931
+ /** Routing of the vehicle. */
4877
4932
  routing: VehiclePremiumRouting;
4878
- /** Information about vehicle connectivity */
4933
+ /** Information about vehicle connectivity. */
4879
4934
  connect: Connect;
4935
+ /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
4936
+ region: Array<VehicleRegion>;
4937
+ /** Vehicle intended use. Can be passenger, cargo, or utility. */
4938
+ purpose: VehiclePurpose;
4939
+ /** Type of vehicle. */
4940
+ type: VehicleType;
4880
4941
  };
4881
4942
  export declare type VehiclePremiumAvailability = {
4882
- /** Availability of the vehicle */
4943
+ /** Availability of the vehicle. */
4883
4944
  status: VehicleAvailabilityStatus;
4884
- /** Date of introduction, mm-yyyy */
4945
+ /** Date of introduction, mm-yyyy. */
4885
4946
  date_from?: Maybe<Scalars["String"]>;
4886
- /** Indicates if date from field is estimated */
4947
+ /** Indicates if date from field is estimated. */
4887
4948
  date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
4888
- /** Date last available, mm-yyyy */
4949
+ /** Date last available, mm-yyyy. */
4889
4950
  date_to?: Maybe<Scalars["String"]>;
4890
4951
  };
4891
4952
  export declare type VehiclePremiumBattery = {
4892
- /** Usable battery capacity in kWh */
4953
+ /** Usable battery capacity in kWh. */
4893
4954
  usable_kwh: Scalars["Float"];
4894
- /** Full battery capacity in kWh */
4955
+ /** Full battery capacity in kWh. */
4895
4956
  full_kwh: Scalars["Float"];
4896
- /** Indicates which battery fields are estimated */
4957
+ /** Indicates which battery fields are estimated. */
4897
4958
  estimated_fields?: Maybe<VehicleBatteryFieldEstimations>;
4898
- /** Battery thermal management system (active/passive, air/liquid) */
4959
+ /** Battery thermal management system (active/passive, air/liquid). */
4899
4960
  thermal_management_system?: Maybe<Scalars["String"]>;
4900
- /** Duration of battery warranty */
4961
+ /** Duration of battery warranty. */
4901
4962
  warranty_period?: Maybe<Scalars["Float"]>;
4902
- /** Mileage of battery warranty */
4963
+ /** Mileage of battery warranty. */
4903
4964
  warranty_mileage?: Maybe<Scalars["Float"]>;
4904
- /** Chemistry of the battery */
4965
+ /** Chemistry of the battery. */
4905
4966
  chemistry?: Maybe<Scalars["String"]>;
4906
- /** Manufacturer of the battery */
4967
+ /** Manufacturer of the battery. */
4907
4968
  manufacturer?: Maybe<Scalars["String"]>;
4908
- /** Number of battery modules */
4969
+ /** Number of battery modules. */
4909
4970
  modules?: Maybe<Scalars["Float"]>;
4910
- /** Number of cells in the battery pack, can include configuration (s = serial, p = parallel) */
4971
+ /** Number of cells in the battery pack, can include configuration (s = serial, p = parallel). */
4911
4972
  cells?: Maybe<Scalars["String"]>;
4912
- /** Weight of the battery pack */
4973
+ /** Weight of the battery pack. */
4913
4974
  weight?: Maybe<Scalars["Float"]>;
4914
- /** Nominal voltage of battery */
4975
+ /** Nominal voltage of battery. */
4915
4976
  nominal_voltage?: Maybe<Scalars["Float"]>;
4916
4977
  };
4917
4978
  export declare type VehiclePremiumBody = {
4918
- /** Length, default in mm */
4979
+ /** Length, default in mm. */
4919
4980
  length?: Maybe<Scalars["Float"]>;
4920
- /** Width with folded mirrors, default in mm */
4981
+ /** Width with folded mirrors, default in mm. */
4921
4982
  width: Scalars["Float"];
4922
- /** Width of vehicle including mirrors, default in mm */
4983
+ /** Width of vehicle including mirrors, default in mm. */
4923
4984
  full_width?: Maybe<Scalars["Float"]>;
4924
- /** Height (average height for adjustable suspensions), default in mm */
4985
+ /** Height (average height for adjustable suspensions), default in mm. */
4925
4986
  height: Scalars["Float"];
4926
- /** Indicates if length/width/height fields are estimations */
4987
+ /** Indicates if length/width/height fields are estimations. */
4927
4988
  size_is_estimated?: Maybe<Scalars["Boolean"]>;
4928
- /** Wheelbase, default in mm */
4989
+ /** Wheelbase, default in mm. */
4929
4990
  wheelbase?: Maybe<Scalars["Float"]>;
4930
- /** Indicates if wheelbase field is estimated */
4991
+ /** Indicates if wheelbase field is estimated. */
4931
4992
  wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
4932
- /** Weight (unladen EU) */
4993
+ /** Weight (unladen EU). */
4933
4994
  weight: VehicleBodyWeight;
4934
- /** Maximum allowed vehicle weight with payload */
4995
+ /** Maximum allowed vehicle weight with payload. */
4935
4996
  weight_gvwr?: Maybe<VehicleBodyWeight>;
4936
- /** Maximum allowed vehicle and trailer weight with payload */
4997
+ /** Maximum allowed vehicle and trailer weight with payload. */
4937
4998
  weight_gtw?: Maybe<VehicleBodyWeight>;
4938
- /** Allowed payload weight */
4999
+ /** Allowed payload weight. */
4939
5000
  weight_payload?: Maybe<VehicleBodyWeight>;
4940
- /** Indicates if weight field is estimated */
5001
+ /** Indicates if weight field is estimated. */
4941
5002
  weight_is_estimated?: Maybe<Scalars["Boolean"]>;
4942
- /** Maximum payload allowed for the vehicle, default in kg */
5003
+ /** Maximum payload allowed for the vehicle, default in kg. */
4943
5004
  weight_max_payload?: Maybe<Scalars["Float"]>;
4944
- /** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg */
5005
+ /** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg. */
4945
5006
  max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
4946
- /** Standard luggage capacity, default in l */
5007
+ /** Standard luggage capacity, default in l. */
4947
5008
  boot_capacity?: Maybe<Scalars["Float"]>;
4948
- /** Storage capacity of front trunk/under the hood (frunk), default in l */
5009
+ /** Storage capacity of front trunk/under the hood (frunk), default in l. */
4949
5010
  boot_front_capacity?: Maybe<Scalars["Float"]>;
4950
- /** Maximum luggage capacity, default in l */
5011
+ /** Maximum luggage capacity, default in l. */
4951
5012
  boot_capacity_max?: Maybe<Scalars["Float"]>;
4952
- /** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation */
5013
+ /** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */
4953
5014
  tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
4954
- /** Maximum unbraked towing weight, default in kg */
5015
+ /** Maximum unbraked towing weight, default in kg. */
4955
5016
  tow_weight_unbraked?: Maybe<Scalars["Float"]>;
4956
- /** Maximum braked towing weight, default in kg */
5017
+ /** Maximum braked towing weight, default in kg. */
4957
5018
  tow_weight_braked?: Maybe<Scalars["Float"]>;
4958
- /** Indicates if tow weight fields are estimations */
5019
+ /** Indicates if tow weight fields are estimations. */
4959
5020
  tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
4960
- /** Maximum vertical load / noseweight on tow hitch according to vehicle homologation, default in kg */
5021
+ /** Maximum vertical load / noseweight on tow hitch according to vehicle homologation, default in kg. */
4961
5022
  tow_weight_vertical_load?: Maybe<Scalars["Float"]>;
4962
- /** Maximum load on roof of the vehicle, default in kg */
5023
+ /** Maximum load on roof of the vehicle, default in kg. */
4963
5024
  roof_load_max?: Maybe<Scalars["Float"]>;
4964
- /** Body type, listed in local naming convention where applicable */
5025
+ /** Body type, listed in local naming convention where applicable. */
4965
5026
  body_type?: Maybe<Scalars["String"]>;
4966
- /** Segment, listed in local naming convention where applicable */
5027
+ /** Segment, listed in local naming convention where applicable. */
4967
5028
  segment?: Maybe<Scalars["String"]>;
4968
- /** Number of seats */
4969
- seats?: Maybe<Scalars["Int"]>;
4970
- /** Indicates whether a vehicle has roof rails as a standard */
5029
+ /** Number of seats. */
5030
+ seats: Scalars["Int"];
5031
+ /** Indicates whether a vehicle has roof rails as a standard. */
4971
5032
  has_roofrails?: Maybe<Scalars["Boolean"]>;
4972
- /** Turning circle of the vehicle kerb-to-kerb, default in meters */
5033
+ /** Turning circle of the vehicle kerb-to-kerb, default in meters. */
4973
5034
  turning_circle?: Maybe<Scalars["Float"]>;
4974
- /** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms) */
5035
+ /** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms). */
4975
5036
  vehicle_platform?: Maybe<Scalars["String"]>;
4976
- /** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform */
5037
+ /** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform. */
4977
5038
  vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
4978
5039
  };
4979
5040
  export declare type VehiclePremiumBodylengthArgs = {
@@ -5019,112 +5080,131 @@ export declare type VehiclePremiumBodyturning_circleArgs = {
5019
5080
  unit?: Maybe<TurningCircleUnit>;
5020
5081
  };
5021
5082
  export declare type VehiclePremiumCharge = {
5022
- /** Information about the main connector */
5023
- plug?: Maybe<VehiclePremiumChargeConnector>;
5024
- /** Information about vehicles secondary onboard charger */
5025
- second_plug?: Maybe<VehiclePremiumChargeSecondConnector>;
5026
- /** Information about the vehicle standard onboard charger */
5083
+ /** Information about the main connector. */
5084
+ plug?: Maybe<VehiclePremiumChargePlug>;
5085
+ /** Information about vehicles secondary onboard charger. */
5086
+ second_plug?: Maybe<VehiclePremiumChargeSecondPlug>;
5087
+ /** Information about the vehicle standard onboard charger. */
5027
5088
  standard?: Maybe<VehiclePremiumChargeStandardOBC>;
5028
- /** Optional upgrade for the standard onboard charger when available */
5089
+ /** Optional upgrade for the standard onboard charger when available. */
5029
5090
  option?: Maybe<VehiclePremiumChargeOptionOBC>;
5091
+ /** Alternative upgrade for the standard onboard charger when available. */
5092
+ alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
5030
5093
  };
5031
- export declare type VehiclePremiumChargeConnector = {
5032
- /** Type of charge port on vehicle */
5033
- value?: Maybe<ConnectorType>;
5034
- /** Indicates if value is an estimate */
5035
- is_estimated?: Maybe<Scalars["Boolean"]>;
5036
- /** Location of charge port */
5037
- location?: Maybe<Scalars["String"]>;
5094
+ export declare type VehiclePremiumChargeAlternativeOBC = {
5095
+ /** Maximum power OBC can accept to charge a battery (standard OBC). */
5096
+ power?: Maybe<Scalars["Float"]>;
5097
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
5098
+ phases?: Maybe<Scalars["Int"]>;
5099
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
5100
+ phase_amperage?: Maybe<Scalars["Float"]>;
5101
+ /** Minutes needed to charge from 0% to 100% (standard OBC). */
5102
+ charge_time?: Maybe<Scalars["Int"]>;
5103
+ /** Charging speed when charging at maximum power (standard OBC), default in kmph. */
5104
+ charge_speed?: Maybe<Scalars["Float"]>;
5105
+ /** Charging details for the standard OBC at several charging points. */
5106
+ table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
5107
+ };
5108
+ export declare type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {
5109
+ unit?: Maybe<ChargeSpeedUnit>;
5038
5110
  };
5039
5111
  export declare type VehiclePremiumChargeOBCTable = {
5040
- /** Voltage between phase and neutral for this EVSE (phase voltage) */
5112
+ /** Voltage between phase and neutral for this EVSE (phase voltage). */
5041
5113
  evse_phase_voltage?: Maybe<Scalars["Int"]>;
5042
- /** Current per phase for this EVSE (phase current) */
5114
+ /** Current per phase for this EVSE (phase current). */
5043
5115
  evse_phase_amperage?: Maybe<Scalars["Int"]>;
5044
- /** Number of phases for this EVSE */
5116
+ /** Number of phases for this EVSE. */
5045
5117
  evse_phases?: Maybe<Scalars["Int"]>;
5046
- /** Voltage between phase and neutral used by standard OBC (phase voltage) */
5118
+ /** Voltage between phase and neutral used by standard OBC (phase voltage). */
5047
5119
  charge_phase_voltage?: Maybe<Scalars["Int"]>;
5048
- /** Current per phase used by standard OBC (phase current) */
5120
+ /** Current per phase used by standard OBC (phase current). */
5049
5121
  charge_phase_amperage?: Maybe<Scalars["Float"]>;
5050
- /** Number of phases used by standard OBC */
5122
+ /** Number of phases used by standard OBC. */
5051
5123
  charge_phases?: Maybe<Scalars["Int"]>;
5052
- /** Power used by standard OBC (before OBC losses) */
5124
+ /** Power used by standard OBC (before OBC losses). */
5053
5125
  charge_power?: Maybe<Scalars["Float"]>;
5054
- /** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE) */
5126
+ /** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */
5055
5127
  charge_time?: Maybe<Scalars["Int"]>;
5056
- /** Charging speed when charging at maximum power (standard OBC with this EVSE), default in kmph */
5128
+ /** Charging speed when charging at maximum power (standard OBC with this EVSE), default in kmph. */
5057
5129
  charge_speed?: Maybe<Scalars["Float"]>;
5058
5130
  };
5059
5131
  export declare type VehiclePremiumChargeOBCTablecharge_speedArgs = {
5060
5132
  unit?: Maybe<ChargeSpeedUnit>;
5061
5133
  };
5062
5134
  export declare type VehiclePremiumChargeOptionOBC = {
5063
- /** Maximum power OBC can accept to charge a battery (standard OBC) */
5135
+ /** Maximum power OBC can accept to charge a battery (standard OBC). */
5064
5136
  power?: Maybe<Scalars["Float"]>;
5065
- /** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
5137
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
5066
5138
  phases?: Maybe<Scalars["Int"]>;
5067
- /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
5139
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
5068
5140
  phase_amperage?: Maybe<Scalars["Float"]>;
5069
- /** Minutes needed to charge from 0% to 100% (standard OBC) */
5141
+ /** Minutes needed to charge from 0% to 100% (standard OBC). */
5070
5142
  charge_time?: Maybe<Scalars["Int"]>;
5071
- /** Charging speed when charging at maximum power (standard OBC), default in kmph */
5143
+ /** Charging speed when charging at maximum power (standard OBC), default in kmph. */
5072
5144
  charge_speed?: Maybe<Scalars["Float"]>;
5073
- /** Charging details for the standard OBC at several charging points */
5145
+ /** Charging details for the standard OBC at several charging points. */
5074
5146
  table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
5075
5147
  };
5076
5148
  export declare type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
5077
5149
  unit?: Maybe<ChargeSpeedUnit>;
5078
5150
  };
5151
+ export declare type VehiclePremiumChargePlug = {
5152
+ /** Type of charge port on vehicle. */
5153
+ value?: Maybe<ConnectorType>;
5154
+ /** Indicates if value is an estimate. */
5155
+ is_estimated?: Maybe<Scalars["Boolean"]>;
5156
+ /** Location of charge port. */
5157
+ location?: Maybe<Scalars["String"]>;
5158
+ };
5079
5159
  export declare type VehiclePremiumChargePower = {
5080
- /** Maximum value */
5160
+ /** Maximum value. */
5081
5161
  max?: Maybe<Scalars["Float"]>;
5082
- /** Average value */
5162
+ /** Average value. */
5083
5163
  average?: Maybe<Scalars["Float"]>;
5084
5164
  };
5085
- export declare type VehiclePremiumChargeSecondConnector = {
5086
- /** Location of charge port */
5165
+ export declare type VehiclePremiumChargeSecondPlug = {
5166
+ /** Location of charge port. */
5087
5167
  location?: Maybe<Scalars["String"]>;
5088
- /** Indicates if second charge port is optional */
5168
+ /** Indicates if second charge port is optional. */
5089
5169
  is_optional?: Maybe<Scalars["Boolean"]>;
5090
5170
  };
5091
5171
  export declare type VehiclePremiumChargeStandardOBC = {
5092
- /** Maximum power OBC can accept to charge a battery (standard OBC) */
5172
+ /** Maximum power OBC can accept to charge a battery (standard OBC). */
5093
5173
  power?: Maybe<Scalars["Float"]>;
5094
- /** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
5174
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
5095
5175
  phases?: Maybe<Scalars["Int"]>;
5096
- /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
5176
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
5097
5177
  phase_amperage?: Maybe<Scalars["Float"]>;
5098
- /** Minutes needed to charge from 0% to 100% (standard OBC) */
5178
+ /** Minutes needed to charge from 0% to 100% (standard OBC). */
5099
5179
  charge_time?: Maybe<Scalars["Int"]>;
5100
- /** Charging speed when charging at maximum power (standard OBC), default in kmph */
5180
+ /** Charging speed when charging at maximum power (standard OBC), default in kmph. */
5101
5181
  charge_speed?: Maybe<Scalars["Float"]>;
5102
- /** Indicates if Charge_Standard fields are estimated */
5182
+ /** Indicates if Charge_Standard fields are estimated. */
5103
5183
  is_estimated?: Maybe<Scalars["Boolean"]>;
5104
- /** Charging details for the standard OBC at several charging points */
5184
+ /** Charging details for the standard OBC at several charging points. */
5105
5185
  table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
5106
5186
  };
5107
5187
  export declare type VehiclePremiumChargeStandardOBCcharge_speedArgs = {
5108
5188
  unit?: Maybe<ChargeSpeedUnit>;
5109
5189
  };
5110
5190
  export declare type VehiclePremiumDrivetrain = {
5111
- /** Type of drivetrain */
5191
+ /** Type of drivetrain. */
5112
5192
  type: VehicleDrivetrainType;
5113
- /** Fuel type */
5193
+ /** Fuel type. */
5114
5194
  fuel?: Maybe<VehicleFuel>;
5115
- /** Propulsion type */
5195
+ /** Propulsion type. */
5116
5196
  propulsion?: Maybe<VehiclePropulsion>;
5117
- /** Indicates if propulsion field is estimated */
5197
+ /** Indicates if propulsion field is estimated. */
5118
5198
  propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
5119
- /** Maximum (combined) power output, default in kw */
5199
+ /** Maximum (combined) power output, default in kw. */
5120
5200
  power?: Maybe<Scalars["Float"]>;
5121
- /** Indicates if power field is estimated */
5201
+ /** Indicates if power field is estimated. */
5122
5202
  power_is_estimated?: Maybe<Scalars["Boolean"]>;
5123
- /** Maximum (combine) power output, default in horsepower (PS) */
5203
+ /** Maximum (combine) power output, default in horsepower (PS). */
5124
5204
  power_hp?: Maybe<Scalars["Float"]>;
5125
- /** Maximum (combine) torque output, default in newton meter */
5205
+ /** Maximum (combine) torque output, default in newton meter. */
5126
5206
  torque?: Maybe<Scalars["Float"]>;
5127
- /** Indicates if torque field is estimated */
5207
+ /** Indicates if torque field is estimated. */
5128
5208
  torque_is_estimated?: Maybe<Scalars["Boolean"]>;
5129
5209
  };
5130
5210
  export declare type VehiclePremiumDrivetrainpowerArgs = {
@@ -5137,25 +5217,25 @@ export declare type VehiclePremiumDrivetraintorqueArgs = {
5137
5217
  unit?: Maybe<TorqueUnit>;
5138
5218
  };
5139
5219
  export declare type VehiclePremiumEfficiency = {
5140
- /** Rated efficiency in WLTP combined cycle */
5220
+ /** Rated efficiency in WLTP combined cycle. */
5141
5221
  wltp?: Maybe<VehiclePremiumEfficiencyWLTP>;
5142
- /** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
5222
+ /** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */
5143
5223
  wltp_teh?: Maybe<VehiclePremiumEfficiencyWLTPTEH>;
5144
- /** Rated efficiency in NEDC combined cycle */
5224
+ /** Rated efficiency in NEDC combined cycle. */
5145
5225
  nedc?: Maybe<VehiclePremiumEfficiencyNEDC>;
5146
- /** Vehicle efficiency based on provider range */
5226
+ /** Vehicle efficiency based on provider range. */
5147
5227
  provider?: Maybe<VehiclePremiumEfficiencyProvider>;
5148
5228
  };
5149
5229
  export declare type VehiclePremiumEfficiencyNEDC = {
5150
- /** Rated efficiency in NEDC combined cycle, default in kWh/100 km */
5230
+ /** Rated efficiency in NEDC combined cycle, default in kWh/100 km. */
5151
5231
  value?: Maybe<Scalars["Float"]>;
5152
- /** Rated efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
5232
+ /** Rated efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km. */
5153
5233
  fuel_equivalent?: Maybe<Scalars["Float"]>;
5154
- /** Rated vehicle efficiency in NEDC combined cycle (based on value), default in kWh/100 km */
5234
+ /** Rated vehicle efficiency in NEDC combined cycle (based on value), default in kWh/100 km. */
5155
5235
  vehicle?: Maybe<Scalars["Float"]>;
5156
- /** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
5236
+ /** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km. */
5157
5237
  vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
5158
- /** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated), default in gr/km */
5238
+ /** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated), default in gr/km. */
5159
5239
  co2?: Maybe<Scalars["Float"]>;
5160
5240
  };
5161
5241
  export declare type VehiclePremiumEfficiencyNEDCvalueArgs = {
@@ -5174,13 +5254,13 @@ export declare type VehiclePremiumEfficiencyNEDCco2Args = {
5174
5254
  unit?: Maybe<EmissionRateUnit>;
5175
5255
  };
5176
5256
  export declare type VehiclePremiumEfficiencyProvider = {
5177
- /** Vehicle efficiency based on RealRange (usable battery/range), default in kWh/100 km */
5257
+ /** Vehicle efficiency based on RealRange (usable battery/range), default in kWh/100 km. */
5178
5258
  value?: Maybe<Scalars["Float"]>;
5179
- /** Vehicle efficiency based on RealRange presented in gas equivalent, default in l/100 km */
5259
+ /** Vehicle efficiency based on RealRange presented in gas equivalent, default in l/100 km. */
5180
5260
  fuel_equivalent?: Maybe<Scalars["Float"]>;
5181
- /** Worst conditions are based on -10°C and use of heating */
5261
+ /** Worst conditions are based on -10°C and use of heating. */
5182
5262
  worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;
5183
- /** Best conditions are based on 23°C and no use of A/C */
5263
+ /** Best conditions are based on 23°C and no use of A/C. */
5184
5264
  best?: Maybe<VehiclePremiumEfficiencyProviderValue>;
5185
5265
  };
5186
5266
  export declare type VehiclePremiumEfficiencyProvidervalueArgs = {
@@ -5190,11 +5270,11 @@ export declare type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {
5190
5270
  unit?: Maybe<FuelConsumptionUnit>;
5191
5271
  };
5192
5272
  export declare type VehiclePremiumEfficiencyProviderValue = {
5193
- /** Estimated value on highway or express roads, default in km */
5273
+ /** Estimated value on highway or express roads, default in km. */
5194
5274
  highway?: Maybe<Scalars["Float"]>;
5195
- /** Estimated value on city roads, default in km */
5275
+ /** Estimated value on city roads, default in km. */
5196
5276
  city?: Maybe<Scalars["Float"]>;
5197
- /** Estimated combined value, default in km */
5277
+ /** Estimated combined value, default in km. */
5198
5278
  combined?: Maybe<Scalars["Float"]>;
5199
5279
  };
5200
5280
  export declare type VehiclePremiumEfficiencyProviderValuehighwayArgs = {
@@ -5207,15 +5287,15 @@ export declare type VehiclePremiumEfficiencyProviderValuecombinedArgs = {
5207
5287
  unit?: Maybe<DistanceUnit>;
5208
5288
  };
5209
5289
  export declare type VehiclePremiumEfficiencyWLTP = {
5210
- /** Rated efficiency in WLTP combined cycle, default in kWh/100 km */
5290
+ /** Rated efficiency in WLTP combined cycle, default in kWh/100 km. */
5211
5291
  value?: Maybe<Scalars["Float"]>;
5212
- /** Rated efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
5292
+ /** Rated efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km. */
5213
5293
  fuel_equivalent?: Maybe<Scalars["Float"]>;
5214
- /** Rated vehicle efficiency in WLTP combined cycle (based on value), default in kWh/100 km */
5294
+ /** Rated vehicle efficiency in WLTP combined cycle (based on value), default in kWh/100 km. */
5215
5295
  vehicle?: Maybe<Scalars["Float"]>;
5216
- /** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
5296
+ /** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km. */
5217
5297
  vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
5218
- /** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated), default in gr/km */
5298
+ /** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated), default in gr/km. */
5219
5299
  co2?: Maybe<Scalars["Float"]>;
5220
5300
  };
5221
5301
  export declare type VehiclePremiumEfficiencyWLTPvalueArgs = {
@@ -5234,15 +5314,15 @@ export declare type VehiclePremiumEfficiencyWLTPco2Args = {
5234
5314
  unit?: Maybe<EmissionRateUnit>;
5235
5315
  };
5236
5316
  export declare type VehiclePremiumEfficiencyWLTPTEH = {
5237
- /** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
5317
+ /** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
5238
5318
  value?: Maybe<Scalars["Float"]>;
5239
- /** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
5319
+ /** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km. */
5240
5320
  fuel_equivalent?: Maybe<Scalars["Float"]>;
5241
- /** Rated vehicle efficiency in WLTP TEH combined cycle (based on value), default in kWh/100 km */
5321
+ /** Rated vehicle efficiency in WLTP TEH combined cycle (based on value), default in kWh/100 km. */
5242
5322
  vehicle?: Maybe<Scalars["Float"]>;
5243
- /** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
5323
+ /** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km. */
5244
5324
  vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
5245
- /** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated), default in gr/km */
5325
+ /** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated), default in gr/km. */
5246
5326
  co2?: Maybe<Scalars["Float"]>;
5247
5327
  };
5248
5328
  export declare type VehiclePremiumEfficiencyWLTPTEHvalueArgs = {
@@ -5261,81 +5341,81 @@ export declare type VehiclePremiumEfficiencyWLTPTEHco2Args = {
5261
5341
  unit?: Maybe<EmissionRateUnit>;
5262
5342
  };
5263
5343
  export declare type VehiclePremiumFastCharge = {
5264
- /** Location of charge port */
5265
- charge_port?: Maybe<VehiclePremiumChargeConnector>;
5266
- /** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
5344
+ /** Details about the connector. */
5345
+ plug?: Maybe<VehiclePremiumChargePlug>;
5346
+ /** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger). */
5267
5347
  power?: Maybe<VehiclePremiumChargePower>;
5268
- /** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
5348
+ /** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */
5269
5349
  charge_time?: Maybe<Scalars["Float"]>;
5270
- /** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger), default is kmph */
5350
+ /** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger), default is kmph. */
5271
5351
  charge_speed?: Maybe<Scalars["Float"]>;
5272
- /** Indicates if fast charge is optional in some markets/regions */
5352
+ /** Indicates if fast charge is optional in some markets/regions. */
5273
5353
  is_optional?: Maybe<Scalars["Boolean"]>;
5274
- /** Indicates what fields are estimated */
5354
+ /** Indicates what fields are estimated. */
5275
5355
  is_estimated?: Maybe<Scalars["Boolean"]>;
5276
- /** Charging details for fast charging */
5356
+ /** Charging details for fast charging. */
5277
5357
  table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
5278
5358
  };
5279
5359
  export declare type VehiclePremiumFastChargecharge_speedArgs = {
5280
5360
  unit?: Maybe<ChargeSpeedUnit>;
5281
5361
  };
5282
5362
  export declare type VehiclePremiumFastChargeTable = {
5283
- /** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC) */
5363
+ /** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC). */
5284
5364
  format?: Maybe<Scalars["String"]>;
5285
- /** Fast charge power */
5365
+ /** Fast charge power. */
5286
5366
  power?: Maybe<VehiclePremiumChargePower>;
5287
- /** Minutes needed to charge from 10% to 80% (optimal conditions) */
5367
+ /** Minutes needed to charge from 10% to 80% (optimal conditions). */
5288
5368
  charge_time?: Maybe<Scalars["Int"]>;
5289
- /** Charging speed during fast charging from 10% to 80% (optimal conditions), default is kmph */
5369
+ /** Charging speed during fast charging from 10% to 80% (optimal conditions), default is kmph. */
5290
5370
  charge_speed?: Maybe<Scalars["Float"]>;
5291
- /** Indicates if maximum power during fast charging is limited by the vehicle */
5371
+ /** Indicates if maximum power during fast charging is limited by the vehicle. */
5292
5372
  is_limited?: Maybe<Scalars["Boolean"]>;
5293
- /** Indicates if average power during fast charging is limited by the vehicle */
5373
+ /** Indicates if average power during fast charging is limited by the vehicle. */
5294
5374
  average_is_limited?: Maybe<Scalars["Boolean"]>;
5295
5375
  };
5296
5376
  export declare type VehiclePremiumFastChargeTablecharge_speedArgs = {
5297
5377
  unit?: Maybe<ChargeSpeedUnit>;
5298
5378
  };
5299
5379
  export declare type VehiclePremiumMedia = {
5300
- /** URL for more details */
5380
+ /** URL for more details. */
5301
5381
  provider_details_url?: Maybe<Scalars["String"]>;
5302
- /** Latest image */
5382
+ /** Featured image of the vehicle from a 45-degree angle. */
5303
5383
  image: VehicleImage;
5304
- /** Latest maker logo */
5384
+ /** Latest maker logo. */
5305
5385
  brand: VehicleImage;
5306
- /** All images */
5386
+ /** All images of the vehicle. */
5307
5387
  image_list: Array<VehicleImage>;
5308
- /** Latest video */
5388
+ /** Latest video. */
5309
5389
  video?: Maybe<VehicleVideo>;
5310
- /** All videos */
5390
+ /** All videos of the vehicle. */
5311
5391
  video_list?: Maybe<Array<VehicleVideo>>;
5312
- /** URL of the OEM page for this vehicle */
5392
+ /** URL of the OEM page for this vehicle. */
5313
5393
  oem_details_url?: Maybe<Scalars["String"]>;
5314
5394
  };
5315
5395
  export declare type VehiclePremiumNaming = {
5316
- /** Vehicle manufacturer name */
5396
+ /** Vehicle manufacturer name. */
5317
5397
  make: Scalars["String"];
5318
- /** Vehicle model name */
5398
+ /** Vehicle model name. */
5319
5399
  model: Scalars["String"];
5320
- /** Version, edition or submodel of the vehicle */
5400
+ /** Version, edition or submodel of the vehicle. */
5321
5401
  version?: Maybe<Scalars["String"]>;
5322
- /** Another submodel level of the vehicle */
5402
+ /** Another submodel level of the vehicle. */
5323
5403
  edition?: Maybe<Scalars["String"]>;
5324
- /** 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 */
5404
+ /** 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. */
5325
5405
  chargetrip_version: Scalars["String"];
5326
- /** Vehicle model length version */
5406
+ /** Vehicle model length version. */
5327
5407
  length_version?: Maybe<Scalars["String"]>;
5328
- /** Vehicle model height version */
5408
+ /** Vehicle model height version. */
5329
5409
  height_version?: Maybe<Scalars["String"]>;
5330
5410
  };
5331
5411
  export declare type VehiclePremiumPerformance = {
5332
- /** Acceleration 0-100 km/h, default in seconds */
5412
+ /** Acceleration 0-100 km/h, default in seconds. */
5333
5413
  acceleration?: Maybe<Scalars["Float"]>;
5334
- /** Indicates if acceleration field is estimated */
5414
+ /** Indicates if acceleration field is estimated. */
5335
5415
  acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
5336
- /** Top speed of the vehicle, default in km/h */
5416
+ /** Top speed of the vehicle, default in km/h. */
5337
5417
  top_speed?: Maybe<Scalars["Float"]>;
5338
- /** Indicates if top_speed field is estimated */
5418
+ /** Indicates if top_speed field is estimated. */
5339
5419
  top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
5340
5420
  };
5341
5421
  export declare type VehiclePremiumPerformanceaccelerationArgs = {
@@ -5345,44 +5425,50 @@ export declare type VehiclePremiumPerformancetop_speedArgs = {
5345
5425
  unit?: Maybe<SpeedUnit>;
5346
5426
  };
5347
5427
  export declare type VehiclePremiumPrice = {
5348
- /** Starting price for German market */
5428
+ /** Starting price for German market. */
5349
5429
  DE?: Maybe<VehiclePremiumPriceValueWithGrant>;
5350
- /** Starting price for Dutch market */
5430
+ /** Starting price for Dutch market. */
5351
5431
  NL?: Maybe<VehiclePremiumPriceValueWithGrant>;
5352
- /** Starting price for British market */
5432
+ /** Starting price for British market. */
5353
5433
  GB?: Maybe<VehiclePremiumPriceValueWithGrant>;
5354
5434
  };
5355
5435
  export declare type VehiclePremiumPriceValueWithGrant = {
5356
- /** Starting price for local market, default in EUR */
5436
+ /** Starting price for local market expressed in the currency in the field currency. */
5357
5437
  value?: Maybe<Scalars["Float"]>;
5358
- /** Indicates if price value is based on estimates */
5438
+ /** Currency in which the value without optional field conversion is expressed. */
5439
+ currency?: Maybe<CurrencyUnit>;
5440
+ /** Indicates if price value is based on estimates. */
5359
5441
  is_estimated?: Maybe<Scalars["Boolean"]>;
5360
- /** Grant is applied to value */
5442
+ /** Grant is applied to value. */
5361
5443
  grant_applied?: Maybe<Scalars["Int"]>;
5362
5444
  };
5363
5445
  export declare type VehiclePremiumPriceValueWithGrantvalueArgs = {
5364
5446
  unit?: Maybe<CurrencyUnit>;
5365
5447
  };
5366
5448
  export declare type VehiclePremiumRange = {
5367
- /** Rated range in WLTP combined cycle (NULL if not WLTP rated), default in km */
5449
+ /** Rated range in WLTP combined cycle (NULL if not WLTP rated), default in km. */
5368
5450
  wltp?: Maybe<Scalars["Float"]>;
5369
- /** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
5451
+ /** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
5370
5452
  wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
5371
- /** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
5453
+ /** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */
5372
5454
  wltp_teh?: Maybe<Scalars["Int"]>;
5373
- /** Rated range in NEDC combined cycle (NULL if not NEDC rated), default in km */
5455
+ /** Rated range in NEDC combined cycle (NULL if not NEDC rated), default in km. */
5374
5456
  nedc?: Maybe<Scalars["Float"]>;
5375
- /** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
5457
+ /** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
5376
5458
  nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
5377
- /** Index range, default in km */
5459
+ /** Index range, default in km. */
5378
5460
  provider?: Maybe<Scalars["Float"]>;
5379
- /** Indicates if index range is estimated */
5461
+ /** Indicates if index range is estimated. */
5380
5462
  provider_is_estimated?: Maybe<Scalars["Boolean"]>;
5381
- /** Worst conditions are based on -10°C and use of heating */
5463
+ /** Worst conditions are based on -10°C and use of heating. */
5382
5464
  worst: VehiclePremiumRangeValue;
5383
- /** Best conditions are based on 23°C and no use of A/C */
5465
+ /** Best conditions are based on 23°C and no use of A/C. */
5384
5466
  best: VehiclePremiumRangeValue;
5385
- /** 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. */
5467
+ /**
5468
+ * 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.
5469
+ * CT range is based on the theoretical distance driven using only the electric engine.
5470
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
5471
+ */
5386
5472
  chargetrip_range: ChargetripRange;
5387
5473
  };
5388
5474
  export declare type VehiclePremiumRangewltpArgs = {
@@ -5395,12 +5481,12 @@ export declare type VehiclePremiumRangeproviderArgs = {
5395
5481
  unit?: Maybe<ConsumptionUnit>;
5396
5482
  };
5397
5483
  export declare type VehiclePremiumRangeValue = {
5398
- /** Estimated value on highway or express roads, default in km */
5399
- highway?: Maybe<Scalars["Float"]>;
5400
- /** Estimated value on city roads, default in km */
5401
- city?: Maybe<Scalars["Float"]>;
5402
- /** Estimated combined value, default in km */
5403
- combined?: Maybe<Scalars["Float"]>;
5484
+ /** Estimated value on highway or express roads, default in km. */
5485
+ highway: Scalars["Float"];
5486
+ /** Estimated value on city roads, default in km. */
5487
+ city: Scalars["Float"];
5488
+ /** Estimated combined value, default in km. */
5489
+ combined: Scalars["Float"];
5404
5490
  };
5405
5491
  export declare type VehiclePremiumRangeValuehighwayArgs = {
5406
5492
  unit?: Maybe<DistanceUnit>;
@@ -5412,15 +5498,15 @@ export declare type VehiclePremiumRangeValuecombinedArgs = {
5412
5498
  unit?: Maybe<DistanceUnit>;
5413
5499
  };
5414
5500
  export declare type VehiclePremiumRouting = {
5415
- /** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
5501
+ /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
5416
5502
  fast_charging_support: Scalars["Boolean"];
5417
- /** Drag coefficient */
5503
+ /** Drag coefficient. */
5418
5504
  drag_coefficient: Scalars["Float"];
5419
- /** Tire pressure recommended by manufacturer, default in bar */
5505
+ /** Tire pressure recommended by manufacturer, default in bar. */
5420
5506
  tire_pressure: Scalars["Float"];
5421
- /** Extra consumption model */
5507
+ /** Extra consumption model. */
5422
5508
  consumption?: Maybe<VehiclePremiumRoutingConsumption>;
5423
- /** Amount of petrol that an equivalent petrol vehicle would consume, default in l/100 km */
5509
+ /** Amount of petrol that an equivalent petrol vehicle would consume, default in l/100 km. */
5424
5510
  fuel_consumption?: Maybe<Scalars["Float"]>;
5425
5511
  };
5426
5512
  export declare type VehiclePremiumRoutingtire_pressureArgs = {
@@ -5430,80 +5516,92 @@ export declare type VehiclePremiumRoutingfuel_consumptionArgs = {
5430
5516
  unit?: Maybe<FuelConsumptionUnit>;
5431
5517
  };
5432
5518
  export declare type VehiclePremiumRoutingConsumption = {
5433
- /** Consumption, in kWh, of the auxiliaries */
5519
+ /** Consumption, in kWh, of the auxiliaries. */
5434
5520
  aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
5435
- /** Consumption, in kWh, of the battery management system */
5521
+ /** Consumption, in kWh, of the battery management system. */
5436
5522
  bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
5437
- /** Consumption, in kWh, of the vehicle in idle mode */
5523
+ /** Consumption, in kWh, of the vehicle in idle mode. */
5438
5524
  idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
5439
5525
  };
5440
5526
  export declare type VehiclePremiumRoutingConsumptionValue = {
5441
- /** Best (lowest) consumption in summer */
5527
+ /** Best (lowest) consumption in summer. */
5442
5528
  best?: Maybe<Scalars["Float"]>;
5443
- /** Best (lowest) consumption in winter */
5529
+ /** Best (lowest) consumption in winter. */
5444
5530
  worst?: Maybe<Scalars["Float"]>;
5445
5531
  };
5446
5532
  export declare type VehiclePremiumSafety = {
5447
- /** Number of seats equipped with ISOFIX */
5533
+ /** Number of seats equipped with ISOFIX. */
5448
5534
  isofix_seats?: Maybe<Scalars["Int"]>;
5449
- /** EuroNCAP results */
5535
+ /** EuroNCAP results. */
5450
5536
  euro_ncap?: Maybe<VehiclePremiumSafetyEuroNcap>;
5451
5537
  };
5452
5538
  export declare type VehiclePremiumSafetyEuroNcap = {
5453
- /** EuroNCAP rating (out of 5 stars) */
5539
+ /** EuroNCAP rating (out of 5 stars). */
5454
5540
  rating?: Maybe<Scalars["Int"]>;
5455
- /** EuroNCAP year of rating */
5541
+ /** EuroNCAP year of rating. */
5456
5542
  year?: Maybe<Scalars["Int"]>;
5457
- /** EuroNCAP rating of adult protection (out of 100%) */
5543
+ /** EuroNCAP rating of adult protection (out of 100%). */
5458
5544
  adult?: Maybe<Scalars["Int"]>;
5459
- /** EuroNCAP rating of child protection (out of 100%) */
5545
+ /** EuroNCAP rating of child protection (out of 100%). */
5460
5546
  child?: Maybe<Scalars["Int"]>;
5461
- /** EuroNCAP rating of vulnerable road users (out of 100%) */
5547
+ /** EuroNCAP rating of vulnerable road users (out of 100%). */
5462
5548
  vru?: Maybe<Scalars["Int"]>;
5463
- /** EuroNCAP rating of safety assists (out of 100%) */
5549
+ /** EuroNCAP rating of safety assists (out of 100%). */
5464
5550
  sa?: Maybe<Scalars["Int"]>;
5465
5551
  };
5466
- /** Propulsion */
5552
+ /** Propulsion. */
5467
5553
  export declare enum VehiclePropulsion {
5468
- /** All-wheel drive vehicle */
5554
+ /** All-wheel drive vehicle. */
5469
5555
  AWD = "AWD",
5470
- /** Front-wheel drive vehicle */
5556
+ /** Front-wheel drive vehicle. */
5471
5557
  FRONT = "Front",
5472
- /** Rear-wheel drive vehicle */
5558
+ /** Rear-wheel drive vehicle. */
5473
5559
  REAR = "Rear"
5474
5560
  }
5475
- /** Status of a vehicle provider */
5561
+ /** Status of a vehicle provider. */
5476
5562
  export declare enum VehicleProviderStatus {
5477
- /** Is imported from any of the data providers */
5563
+ /** Is imported from any of the data providers. */
5478
5564
  NEW = "new",
5479
- /** Has been attached to core vehicle */
5565
+ /** Has been attached to core vehicle. */
5480
5566
  ATTACHED = "attached",
5481
- /** Has been detached from a core vehicle */
5567
+ /** Has been detached from a core vehicle. */
5482
5568
  DETACHED = "detached",
5483
- /** Has been archived by database maintainer */
5569
+ /** Has been archived by database maintainer. */
5484
5570
  ARCHIVED = "archived"
5485
5571
  }
5572
+ export declare enum VehiclePurpose {
5573
+ /** Vehicle intended for the transportation of passengers. */
5574
+ PASSENGER = "passenger",
5575
+ /** Vehicle intended for the transportation of cargo. */
5576
+ CARGO = "cargo",
5577
+ /** Vehicle intended for the transportation of everything except cargo or passengers. Eg: ambulances, agricultural vehicles, etcetera. */
5578
+ UTILITY = "utility"
5579
+ }
5486
5580
  export declare type VehicleRange = {
5487
- /** Index range, default in km */
5581
+ /** Index range, default in km. */
5488
5582
  provider?: Maybe<Scalars["Float"]>;
5489
- /** Indicates if index range is estimated */
5583
+ /** Indicates if index range is estimated. */
5490
5584
  provider_is_estimated?: Maybe<Scalars["Boolean"]>;
5491
- /** Worst conditions are based on -10°C and use of heating */
5585
+ /** Worst conditions are based on -10°C and use of heating. */
5492
5586
  worst: VehicleRangeValue;
5493
- /** Best conditions are based on 23°C and no use of A/C */
5587
+ /** Best conditions are based on 23°C and no use of A/C. */
5494
5588
  best: VehicleRangeValue;
5495
- /** 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 */
5589
+ /**
5590
+ * 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.
5591
+ * CT range is based on the theoretical distance driven using only the electric engine.
5592
+ * Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
5593
+ */
5496
5594
  chargetrip_range: ChargetripRange;
5497
5595
  };
5498
5596
  export declare type VehicleRangeproviderArgs = {
5499
5597
  unit?: Maybe<DistanceUnit>;
5500
5598
  };
5501
5599
  export declare type VehicleRangeValue = {
5502
- /** Estimated value on the highway or express roads, default in km */
5600
+ /** Estimated value on the highway or express roads, default in km. */
5503
5601
  highway: Scalars["Float"];
5504
- /** Estimated value on the cities road, default in km */
5602
+ /** Estimated value on the cities road, default in km. */
5505
5603
  city: Scalars["Float"];
5506
- /** Estimated combined value, default in km */
5604
+ /** Estimated combined value, default in km. */
5507
5605
  combined: Scalars["Float"];
5508
5606
  };
5509
5607
  export declare type VehicleRangeValuehighwayArgs = {
@@ -5515,8 +5613,22 @@ export declare type VehicleRangeValuecityArgs = {
5515
5613
  export declare type VehicleRangeValuecombinedArgs = {
5516
5614
  unit?: Maybe<DistanceUnit>;
5517
5615
  };
5616
+ export declare enum VehicleRegion {
5617
+ /** Africa. */
5618
+ AF = "AF",
5619
+ /** Asia. */
5620
+ AS = "AS",
5621
+ /** Europe. */
5622
+ EU = "EU",
5623
+ /** North America. */
5624
+ NA = "NA",
5625
+ /** Oceania. */
5626
+ OC = "OC",
5627
+ /** South America. */
5628
+ SA = "SA"
5629
+ }
5518
5630
  export declare type VehicleRouting = {
5519
- /** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
5631
+ /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
5520
5632
  fast_charging_support: Scalars["Boolean"];
5521
5633
  };
5522
5634
  export declare type VehicleSpeedInput = {
@@ -5527,21 +5639,51 @@ export declare type VehicleSpeedInput = {
5527
5639
  /** Source of inputted data, defaults to 'manual' */
5528
5640
  source?: Maybe<TelemetryInputSource>;
5529
5641
  };
5530
- /** Status of a vehicle */
5642
+ /** Status of a vehicle. */
5531
5643
  export declare enum VehicleStatus {
5532
- /** Is being reviewed by a human operator */
5644
+ /** Is being reviewed by a human operator. */
5533
5645
  DRAFT = "draft",
5534
- /** Is public and can be used by a customer */
5646
+ /** Is public and can be used by a customer. */
5535
5647
  PUBLIC = "public",
5536
- /** Is private and can be used by a human operator */
5648
+ /** Is private and can be used by a human operator. */
5537
5649
  PRIVATE = "private",
5538
- /** Is archived and can not be used */
5650
+ /** Is archived and can not be used. */
5539
5651
  ARCHIVED = "archived"
5540
5652
  }
5653
+ export declare enum VehicleType {
5654
+ /** 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. */
5655
+ MOTORCYCLE = "motorcycle",
5656
+ /** 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. */
5657
+ MICROCAR = "microcar",
5658
+ /** 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. */
5659
+ CAR = "car",
5660
+ /** 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. */
5661
+ PICKUP = "pickup",
5662
+ /**
5663
+ * A motor vehicle that does not have an enclosed cab, is not a utility vehicle, that fulfills exactly one of the following conditions:
5664
+ * 1) It is capable of carrying more than eight but less than twenty people.
5665
+ * 2) At least one third of its internal volume is dedicated to cargo space in its default configuration.
5666
+ * 3) It is the passenger variant of a vehicle that meets criterion 2.
5667
+ */
5668
+ VAN = "van",
5669
+ /** 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. */
5670
+ BUS = "bus",
5671
+ /** A motor vehicle that has an enclosed cab and is not a Pickup or Utility vehicle. */
5672
+ TRUCK = "truck",
5673
+ /**
5674
+ * A motor vehicle that fulfills at least one of the following conditions:
5675
+ * 1) It does not have wheels.
5676
+ * 2) It has some mode of locomotion other than wheels in its default configuration such as treads, skis, or floats.
5677
+ * 3) It is capable of air or water travel in its default configuration.
5678
+ * 4) It was manufactured primarily for some purpose other than transporting cargo or passengers.
5679
+ * 5) It does not conform to any of the criteria for the other vehicle categories.
5680
+ */
5681
+ UTILITY = "utility"
5682
+ }
5541
5683
  export declare type VehicleVideo = {
5542
- /** Video id */
5684
+ /** Video id. */
5543
5685
  id?: Maybe<Scalars["ID"]>;
5544
- /** Full path URL of a video */
5686
+ /** Full path URL of a video. */
5545
5687
  url?: Maybe<Scalars["String"]>;
5546
5688
  };
5547
5689
  export declare enum VolumeUnit {