@chargetrip/types 1.36.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +46 -11
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +46 -11
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +476 -371
- package/graphql.schema.json +813 -414
- package/package.json +1 -1
- package/src/graphql.ts +479 -371
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -27,6 +27,8 @@ export declare type Scalars = {
|
|
|
27
27
|
JSON: {
|
|
28
28
|
[key: string]: number | string | boolean | null | Scalars["JSON"];
|
|
29
29
|
};
|
|
30
|
+
/** The non empty string scalar */
|
|
31
|
+
NonEmptyString: any;
|
|
30
32
|
/**
|
|
31
33
|
* The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.
|
|
32
34
|
* The PlainString type represents free-form human-readable text with HTML sanitization.
|
|
@@ -1384,18 +1386,30 @@ export declare type ChargerStatuses = {
|
|
|
1384
1386
|
/** How many are not available */
|
|
1385
1387
|
error?: Maybe<Scalars["Int"]>;
|
|
1386
1388
|
};
|
|
1387
|
-
/**
|
|
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
|
+
*/
|
|
1388
1394
|
export declare type ChargetripRange = {
|
|
1389
1395
|
/** Worst conditions are based on -10°C and use of heating */
|
|
1390
1396
|
worst?: Maybe<Scalars["Float"]>;
|
|
1391
1397
|
/** Best conditions are based on 23°C and no use of A/C */
|
|
1392
1398
|
best?: Maybe<Scalars["Float"]>;
|
|
1393
1399
|
};
|
|
1394
|
-
/**
|
|
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
|
+
*/
|
|
1395
1405
|
export declare type ChargetripRangeworstArgs = {
|
|
1396
1406
|
unit?: Maybe<DistanceUnit>;
|
|
1397
1407
|
};
|
|
1398
|
-
/**
|
|
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
|
+
*/
|
|
1399
1413
|
export declare type ChargetripRangebestArgs = {
|
|
1400
1414
|
unit?: Maybe<DistanceUnit>;
|
|
1401
1415
|
};
|
|
@@ -1420,8 +1434,8 @@ export declare enum ChargingBehaviourCode {
|
|
|
1420
1434
|
OFFICE_CHARGING = "OFFICE_CHARGING"
|
|
1421
1435
|
}
|
|
1422
1436
|
export declare type Connect = {
|
|
1423
|
-
/** List of connectivity providers to which
|
|
1424
|
-
providers
|
|
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>>;
|
|
1425
1439
|
};
|
|
1426
1440
|
export declare type ConnectBattery = {
|
|
1427
1441
|
/** Estimated range by OEM */
|
|
@@ -3226,11 +3240,11 @@ export declare type Query = {
|
|
|
3226
3240
|
tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
3227
3241
|
/** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
|
|
3228
3242
|
navigationMapping?: Maybe<Scalars["JSON"]>;
|
|
3229
|
-
/** [BETA] Get information about a vehicle by its ID */
|
|
3243
|
+
/** [BETA] Get information about a vehicle by its ID. */
|
|
3230
3244
|
vehicle?: Maybe<Vehicle>;
|
|
3231
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. */
|
|
3232
3246
|
vehiclePremium?: Maybe<VehiclePremium>;
|
|
3233
|
-
/** [BETA] Get a full list of vehicles */
|
|
3247
|
+
/** [BETA] Get a full list of vehicles. */
|
|
3234
3248
|
vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
|
|
3235
3249
|
};
|
|
3236
3250
|
export declare type QueryamenityListArgs = {
|
|
@@ -4522,85 +4536,91 @@ export declare type UpdateConnectedVehicleInput = {
|
|
|
4522
4536
|
/** New label for a connected vehicle */
|
|
4523
4537
|
label?: Maybe<Scalars["PlainString"]>;
|
|
4524
4538
|
};
|
|
4525
|
-
/** Output of a vehicle query */
|
|
4539
|
+
/** Output of a vehicle query. */
|
|
4526
4540
|
export declare type Vehicle = {
|
|
4527
|
-
/** Vehicles unique ID */
|
|
4541
|
+
/** Vehicles unique ID. */
|
|
4528
4542
|
id: Scalars["ID"];
|
|
4529
|
-
/** Naming of the vehicle */
|
|
4543
|
+
/** Naming of the vehicle. */
|
|
4530
4544
|
naming: VehicleNaming;
|
|
4531
|
-
/** Drivetrain of the vehicle */
|
|
4545
|
+
/** Drivetrain of the vehicle. */
|
|
4532
4546
|
drivetrain: VehicleDrivetrain;
|
|
4533
|
-
/** Available connectors for the vehicle */
|
|
4547
|
+
/** Available connectors for the vehicle. */
|
|
4534
4548
|
connectors: Array<VehicleConnector>;
|
|
4535
|
-
/** Adapters for the connectors of the vehicle */
|
|
4549
|
+
/** Adapters for the connectors of the vehicle. */
|
|
4536
4550
|
adapters: Array<VehicleConnector>;
|
|
4537
|
-
/** Battery of the vehicle */
|
|
4551
|
+
/** Battery of the vehicle. */
|
|
4538
4552
|
battery: VehicleBattery;
|
|
4539
|
-
/** Body of the vehicle */
|
|
4553
|
+
/** Body of the vehicle. */
|
|
4540
4554
|
body: VehicleBody;
|
|
4541
|
-
/** Availability of the vehicle */
|
|
4555
|
+
/** Availability of the vehicle. */
|
|
4542
4556
|
availability: VehicleAvailability;
|
|
4543
|
-
/** Performance of the vehicle */
|
|
4557
|
+
/** Performance of the vehicle. */
|
|
4544
4558
|
performance?: Maybe<VehiclePerformance>;
|
|
4545
|
-
/** Range of the vehicle */
|
|
4559
|
+
/** Range of the vehicle. */
|
|
4546
4560
|
range: VehicleRange;
|
|
4547
|
-
/** Media of the vehicle */
|
|
4561
|
+
/** Media of the vehicle. */
|
|
4548
4562
|
media: VehicleMedia;
|
|
4549
|
-
/** Routing of the vehicle */
|
|
4563
|
+
/** Routing of the vehicle. */
|
|
4550
4564
|
routing: VehicleRouting;
|
|
4551
|
-
/** Information about vehicle connectivity */
|
|
4565
|
+
/** Information about vehicle connectivity. */
|
|
4552
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;
|
|
4553
4573
|
};
|
|
4554
4574
|
export declare type VehicleAvailability = {
|
|
4555
|
-
/** Availability of the vehicle */
|
|
4575
|
+
/** Availability of the vehicle. */
|
|
4556
4576
|
status: VehicleAvailabilityStatus;
|
|
4557
4577
|
};
|
|
4558
|
-
/** Availability status of a vehicle */
|
|
4578
|
+
/** Availability status of a vehicle. */
|
|
4559
4579
|
export declare enum VehicleAvailabilityStatus {
|
|
4560
|
-
/** Vehicle no longer for sale in any market / region */
|
|
4580
|
+
/** Vehicle no longer for sale in any market / region. */
|
|
4561
4581
|
NO_LONGER_AVAILABLE = "no_longer_available",
|
|
4562
|
-
/** Vehicle currently for sale in at least one market / region */
|
|
4582
|
+
/** Vehicle currently for sale in at least one market / region. */
|
|
4563
4583
|
AVAILABLE = "available",
|
|
4564
|
-
/** Vehicle expected in market from Date_From (estimated), pre-order open */
|
|
4584
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order open. */
|
|
4565
4585
|
RELEASE_DATE_ANNOUNCED_PREORDERABLE = "release_date_announced_preorderable",
|
|
4566
|
-
/** 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. */
|
|
4567
4587
|
RELEASE_DATE_ANNOUNCED = "release_date_announced",
|
|
4568
|
-
/** Concept vehicle, nearing production and/or confirmed, pre-order open */
|
|
4588
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order open. */
|
|
4569
4589
|
CONCEPT_VEHICLE_PREORDERABLE = "concept_vehicle_preorderable",
|
|
4570
|
-
/** 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. */
|
|
4571
4591
|
CONCEPT_VEHICLE = "concept_vehicle",
|
|
4572
|
-
/** 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. */
|
|
4573
4593
|
CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE = "concept_vehicle_release_date_tba_preorderable",
|
|
4574
|
-
/** 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. */
|
|
4575
4595
|
CONCEPT_VEHICLE_RELEASE_DATE_TBA = "concept_vehicle_release_date_tba",
|
|
4576
|
-
/** Status uncertain, introduction date and/or pricing unclear */
|
|
4596
|
+
/** Status uncertain, introduction date and/or pricing unclear. */
|
|
4577
4597
|
UNCERTAIN = "uncertain"
|
|
4578
4598
|
}
|
|
4579
4599
|
export declare type VehicleBattery = {
|
|
4580
|
-
/** Full battery capacity in kWh */
|
|
4600
|
+
/** Full battery capacity in kWh. */
|
|
4581
4601
|
full_kwh: Scalars["Float"];
|
|
4582
|
-
/** Usable battery capacity in kWh */
|
|
4602
|
+
/** Usable battery capacity in kWh. */
|
|
4583
4603
|
usable_kwh: Scalars["Float"];
|
|
4584
4604
|
};
|
|
4585
|
-
/** Battery field estimated */
|
|
4605
|
+
/** Battery field estimated. */
|
|
4586
4606
|
export declare enum VehicleBatteryFieldEstimations {
|
|
4587
|
-
/** Both of the battery kWh fields are estimations */
|
|
4607
|
+
/** Both of the battery kWh fields are estimations. */
|
|
4588
4608
|
B = "B",
|
|
4589
|
-
/** full_kwh field is estimated */
|
|
4609
|
+
/** full_kwh field is estimated. */
|
|
4590
4610
|
F = "F",
|
|
4591
|
-
/** None of the battery kWh fields are estimations */
|
|
4611
|
+
/** None of the battery kWh fields are estimations. */
|
|
4592
4612
|
N = "N",
|
|
4593
|
-
/** usable_kwh field is estimated */
|
|
4613
|
+
/** usable_kwh field is estimated. */
|
|
4594
4614
|
U = "U"
|
|
4595
4615
|
}
|
|
4596
4616
|
export declare type VehicleBody = {
|
|
4597
|
-
/** Width with folded mirrors, default in mm */
|
|
4617
|
+
/** Width with folded mirrors, default in mm. */
|
|
4598
4618
|
width: Scalars["Float"];
|
|
4599
|
-
/** Height (average height for adjustable suspensions), default in mm */
|
|
4619
|
+
/** Height (average height for adjustable suspensions), default in mm. */
|
|
4600
4620
|
height: Scalars["Float"];
|
|
4601
|
-
/** Weight (unladen), default in kg */
|
|
4621
|
+
/** Weight (unladen), default in kg. */
|
|
4602
4622
|
weight: VehicleBodyWeight;
|
|
4603
|
-
/** Number of seats */
|
|
4623
|
+
/** Number of seats. */
|
|
4604
4624
|
seats: Scalars["Int"];
|
|
4605
4625
|
};
|
|
4606
4626
|
export declare type VehicleBodywidthArgs = {
|
|
@@ -4610,11 +4630,11 @@ export declare type VehicleBodyheightArgs = {
|
|
|
4610
4630
|
unit?: Maybe<MeasurementUnit>;
|
|
4611
4631
|
};
|
|
4612
4632
|
export declare type VehicleBodyWeight = {
|
|
4613
|
-
/** Minimum weight, default in kg */
|
|
4633
|
+
/** Minimum weight, default in kg. */
|
|
4614
4634
|
minimum?: Maybe<Scalars["Float"]>;
|
|
4615
|
-
/** Nominal weight, default in kg */
|
|
4635
|
+
/** Nominal weight, default in kg. */
|
|
4616
4636
|
nominal?: Maybe<Scalars["Float"]>;
|
|
4617
|
-
/** Maximal weight, default in kg */
|
|
4637
|
+
/** Maximal weight, default in kg. */
|
|
4618
4638
|
maximal?: Maybe<Scalars["Float"]>;
|
|
4619
4639
|
};
|
|
4620
4640
|
export declare type VehicleBodyWeightminimumArgs = {
|
|
@@ -4626,28 +4646,28 @@ export declare type VehicleBodyWeightnominalArgs = {
|
|
|
4626
4646
|
export declare type VehicleBodyWeightmaximalArgs = {
|
|
4627
4647
|
unit?: Maybe<WeightUnit>;
|
|
4628
4648
|
};
|
|
4629
|
-
/** Vehicle plug model */
|
|
4649
|
+
/** Vehicle plug model. */
|
|
4630
4650
|
export declare type VehicleConnector = {
|
|
4631
|
-
/** Connector type, known as connector standard in OCPI */
|
|
4651
|
+
/** Connector type, known as connector standard in OCPI. */
|
|
4632
4652
|
standard: ConnectorType;
|
|
4633
|
-
/** Usable electric power in kW */
|
|
4653
|
+
/** Usable electric power in kW. */
|
|
4634
4654
|
power: Scalars["Float"];
|
|
4635
|
-
/** Maximum electric power in kW */
|
|
4655
|
+
/** Maximum electric power in kW. */
|
|
4636
4656
|
max_electric_power: Scalars["Float"];
|
|
4637
|
-
/** 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. */
|
|
4638
4658
|
time: Scalars["Int"];
|
|
4639
|
-
/** Charging speed, default in kmph */
|
|
4659
|
+
/** Charging speed, default in kmph. */
|
|
4640
4660
|
speed: Scalars["Float"];
|
|
4641
4661
|
};
|
|
4642
|
-
/** Vehicle plug model */
|
|
4662
|
+
/** Vehicle plug model. */
|
|
4643
4663
|
export declare type VehicleConnectorspeedArgs = {
|
|
4644
4664
|
unit?: Maybe<SpeedUnit>;
|
|
4645
4665
|
};
|
|
4646
|
-
/** The consumption of the vehicle */
|
|
4666
|
+
/** The consumption of the vehicle. */
|
|
4647
4667
|
export declare type VehicleConsumptionInput = {
|
|
4648
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
4668
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
4649
4669
|
worst?: Maybe<Scalars["Float"]>;
|
|
4650
|
-
/** 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. */
|
|
4651
4671
|
best?: Maybe<Scalars["Float"]>;
|
|
4652
4672
|
};
|
|
4653
4673
|
export declare type VehicleData = {
|
|
@@ -4661,190 +4681,209 @@ export declare type VehicleData = {
|
|
|
4661
4681
|
odometer?: Maybe<ConnectOdometer>;
|
|
4662
4682
|
};
|
|
4663
4683
|
export declare enum VehicleDataProvider {
|
|
4664
|
-
/** Internal data provider */
|
|
4684
|
+
/** Internal data provider. */
|
|
4665
4685
|
CHARGETRIP = "chargetrip",
|
|
4666
|
-
/** EV database data provider */
|
|
4686
|
+
/** EV database data provider. */
|
|
4667
4687
|
EVDATABASE = "evdatabase"
|
|
4668
4688
|
}
|
|
4669
4689
|
export declare type VehicleDrivetrain = {
|
|
4670
|
-
/** Type of drivetrain */
|
|
4690
|
+
/** Type of drivetrain. */
|
|
4671
4691
|
type: VehicleDrivetrainType;
|
|
4672
4692
|
};
|
|
4673
|
-
/** Drivetrain */
|
|
4693
|
+
/** Drivetrain. */
|
|
4674
4694
|
export declare enum VehicleDrivetrainType {
|
|
4675
|
-
/** Battery Electric Vehicle */
|
|
4695
|
+
/** Battery Electric Vehicle. */
|
|
4676
4696
|
BEV = "BEV",
|
|
4677
|
-
/** Extended Range Electric Vehicle */
|
|
4697
|
+
/** Extended Range Electric Vehicle. */
|
|
4678
4698
|
EREV = "EREV",
|
|
4679
|
-
/** Hybrid Electric Vehicle */
|
|
4699
|
+
/** Hybrid Electric Vehicle. */
|
|
4680
4700
|
HEV = "HEV",
|
|
4681
|
-
/** Plug-in Hybrid Electric Vehicle */
|
|
4701
|
+
/** Plug-in Hybrid Electric Vehicle. */
|
|
4682
4702
|
PHEV = "PHEV"
|
|
4683
4703
|
}
|
|
4684
|
-
/** Fuel type */
|
|
4704
|
+
/** Fuel type. */
|
|
4685
4705
|
export declare enum VehicleFuel {
|
|
4686
|
-
/** ICE engine available. Uses diesel */
|
|
4706
|
+
/** ICE engine available. Uses diesel. */
|
|
4687
4707
|
D = "D",
|
|
4688
|
-
/** Electricity only. Full electric vehicle */
|
|
4708
|
+
/** Electricity only. Full electric vehicle. */
|
|
4689
4709
|
E = "E",
|
|
4690
|
-
/** ICE engine available. Uses petrol */
|
|
4710
|
+
/** ICE engine available. Uses petrol. */
|
|
4691
4711
|
P = "P"
|
|
4692
4712
|
}
|
|
4693
4713
|
export declare type VehicleImage = {
|
|
4694
|
-
/** Image id */
|
|
4714
|
+
/** Image id. */
|
|
4695
4715
|
id?: Maybe<Scalars["ID"]>;
|
|
4696
|
-
/** Image type */
|
|
4716
|
+
/** Image type. */
|
|
4697
4717
|
type: VehicleImageType;
|
|
4698
|
-
/** Full path URL of a large image */
|
|
4718
|
+
/** Full path URL of a large image. */
|
|
4699
4719
|
url: Scalars["String"];
|
|
4700
|
-
/** Height of a large image in pixels */
|
|
4720
|
+
/** Height of a large image in pixels. */
|
|
4701
4721
|
height: Scalars["Int"];
|
|
4702
|
-
/** Width of a large image in pixels */
|
|
4722
|
+
/** Width of a large image in pixels. */
|
|
4703
4723
|
width: Scalars["Int"];
|
|
4704
|
-
/** Full path URL of a thumbnail image */
|
|
4724
|
+
/** Full path URL of a thumbnail image. */
|
|
4705
4725
|
thumbnail_url: Scalars["String"];
|
|
4706
|
-
/** Height of a thumbnail image in pixels */
|
|
4726
|
+
/** Height of a thumbnail image in pixels. */
|
|
4707
4727
|
thumbnail_height: Scalars["Int"];
|
|
4708
|
-
/** Width of a thumbnail image in pixels */
|
|
4728
|
+
/** Width of a thumbnail image in pixels. */
|
|
4709
4729
|
thumbnail_width: Scalars["Int"];
|
|
4710
4730
|
};
|
|
4711
|
-
/** 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. */
|
|
4712
4732
|
export declare enum VehicleImageType {
|
|
4713
|
-
/** Images provided by a Vehicle Datasource */
|
|
4733
|
+
/** Images provided by a Vehicle Datasource. */
|
|
4714
4734
|
PROVIDER = "provider",
|
|
4715
|
-
/** Full-sized image at 1536x864 px */
|
|
4735
|
+
/** Full-sized image at 1536x864 px. */
|
|
4716
4736
|
IMAGE = "image",
|
|
4717
|
-
/** Thumbnail of a full-sized image at 131x72 px */
|
|
4737
|
+
/** Thumbnail of a full-sized image at 131x72 px. */
|
|
4718
4738
|
IMAGE_THUMBNAIL = "image_thumbnail",
|
|
4719
|
-
/**
|
|
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. */
|
|
4720
4744
|
BRAND = "brand",
|
|
4721
|
-
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
4745
|
+
/** Thumbnail of a full-sized brand logo at 56x24 px. */
|
|
4722
4746
|
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
4723
|
-
/** Placeholder image at 1536x864 px */
|
|
4747
|
+
/** Placeholder image at 1536x864 px. */
|
|
4724
4748
|
PLACEHOLDER = "placeholder"
|
|
4725
4749
|
}
|
|
4726
|
-
/** 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. */
|
|
4727
4751
|
export declare enum VehicleImageTypeUploadable {
|
|
4728
|
-
/**
|
|
4729
|
-
IMAGE = "image"
|
|
4752
|
+
/** Freemium vehicle image. */
|
|
4753
|
+
IMAGE = "image",
|
|
4754
|
+
/** Premium vehicle image. */
|
|
4755
|
+
IMAGE_PREMIUM = "image_premium"
|
|
4730
4756
|
}
|
|
4731
|
-
/** The output element of the vehicleList query */
|
|
4757
|
+
/** The output element of the vehicleList query. */
|
|
4732
4758
|
export declare type VehicleList = {
|
|
4733
|
-
/** Vehicles unique ID */
|
|
4759
|
+
/** Vehicles unique ID. */
|
|
4734
4760
|
id: Scalars["ID"];
|
|
4735
|
-
/** Naming of the vehicle */
|
|
4761
|
+
/** Naming of the vehicle. */
|
|
4736
4762
|
naming: VehicleListNaming;
|
|
4737
|
-
/** Drivetrain of the vehicle */
|
|
4763
|
+
/** Drivetrain of the vehicle. */
|
|
4738
4764
|
drivetrain: VehicleDrivetrain;
|
|
4739
|
-
/** Connectors available for the vehicle */
|
|
4765
|
+
/** Connectors available for the vehicle. */
|
|
4740
4766
|
connectors: Array<VehicleConnector>;
|
|
4741
|
-
/** Adapters available for the vehicle */
|
|
4767
|
+
/** Adapters available for the vehicle. */
|
|
4742
4768
|
adapters: Array<VehicleConnector>;
|
|
4743
|
-
/** Battery of the vehicle */
|
|
4769
|
+
/** Battery of the vehicle. */
|
|
4744
4770
|
battery: VehicleListBattery;
|
|
4745
|
-
/** Body of the vehicle */
|
|
4771
|
+
/** Body of the vehicle. */
|
|
4746
4772
|
body: VehicleListBody;
|
|
4747
|
-
/** Availability of the vehicle */
|
|
4773
|
+
/** Availability of the vehicle. */
|
|
4748
4774
|
availability: VehicleListAvailability;
|
|
4749
|
-
/** Range of the vehicle */
|
|
4775
|
+
/** Range of the vehicle. */
|
|
4750
4776
|
range: VehicleListRange;
|
|
4751
|
-
/** Media of the vehicle */
|
|
4777
|
+
/** Media of the vehicle. */
|
|
4752
4778
|
media: VehicleListMedia;
|
|
4753
|
-
/** Routing of the vehicle */
|
|
4779
|
+
/** Routing of the vehicle. */
|
|
4754
4780
|
routing: VehicleListRouting;
|
|
4755
|
-
/** Information about vehicle connectivity */
|
|
4781
|
+
/** Information about vehicle connectivity. */
|
|
4756
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;
|
|
4757
4789
|
};
|
|
4758
4790
|
export declare type VehicleListAvailability = {
|
|
4759
|
-
/** Availability of the vehicle */
|
|
4791
|
+
/** Availability of the vehicle. */
|
|
4760
4792
|
status: VehicleAvailabilityStatus;
|
|
4761
4793
|
};
|
|
4762
4794
|
export declare type VehicleListBattery = {
|
|
4763
|
-
/** Full battery capacity in kWh */
|
|
4795
|
+
/** Full battery capacity in kWh. */
|
|
4764
4796
|
full_kwh: Scalars["Float"];
|
|
4765
|
-
/** Usable battery capacity in kWh */
|
|
4797
|
+
/** Usable battery capacity in kWh. */
|
|
4766
4798
|
usable_kwh: Scalars["Float"];
|
|
4767
4799
|
};
|
|
4768
4800
|
export declare type VehicleListBody = {
|
|
4769
|
-
/** Number of seats in a vehicle */
|
|
4801
|
+
/** Number of seats in a vehicle. */
|
|
4770
4802
|
seats: Scalars["Int"];
|
|
4771
4803
|
};
|
|
4772
4804
|
export declare type VehicleListFilter = {
|
|
4773
|
-
/** Availability of a vehicle */
|
|
4805
|
+
/** Availability of a vehicle. */
|
|
4774
4806
|
availability?: Maybe<Array<VehicleAvailabilityStatus>>;
|
|
4775
|
-
/** Drivetrain type of a vehicle */
|
|
4807
|
+
/** Drivetrain type of a vehicle. */
|
|
4776
4808
|
drivetrain?: Maybe<Array<VehicleDrivetrainType>>;
|
|
4777
|
-
/** Information about vehicle connectivity */
|
|
4809
|
+
/** Information about vehicle connectivity. */
|
|
4778
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>>;
|
|
4779
4817
|
};
|
|
4780
4818
|
export declare type VehicleListMedia = {
|
|
4781
|
-
/**
|
|
4819
|
+
/** Featured image of the vehicle from a 45-degree angle. */
|
|
4782
4820
|
image: VehicleImage;
|
|
4783
|
-
/** Latest maker logo of the vehicle */
|
|
4821
|
+
/** Latest maker logo of the vehicle. */
|
|
4784
4822
|
brand: VehicleImage;
|
|
4785
|
-
/** Latest video of the vehicle */
|
|
4823
|
+
/** Latest video of the vehicle. */
|
|
4786
4824
|
video?: Maybe<VehicleVideo>;
|
|
4787
4825
|
};
|
|
4788
4826
|
export declare type VehicleListNaming = {
|
|
4789
|
-
/** Vehicle manufacturer name */
|
|
4827
|
+
/** Vehicle manufacturer name. */
|
|
4790
4828
|
make: Scalars["String"];
|
|
4791
|
-
/** Vehicle model name */
|
|
4829
|
+
/** Vehicle model name. */
|
|
4792
4830
|
model: Scalars["String"];
|
|
4793
|
-
/** Version, edition or submodel of the vehicle */
|
|
4831
|
+
/** Version, edition or submodel of the vehicle. */
|
|
4794
4832
|
version?: Maybe<Scalars["String"]>;
|
|
4795
|
-
/** Another submodel level of the vehicle */
|
|
4833
|
+
/** Another submodel level of the vehicle. */
|
|
4796
4834
|
edition?: Maybe<Scalars["String"]>;
|
|
4797
|
-
/** 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. */
|
|
4798
4836
|
chargetrip_version: Scalars["String"];
|
|
4799
4837
|
};
|
|
4800
4838
|
export declare type VehicleListRange = {
|
|
4801
4839
|
/**
|
|
4802
|
-
*
|
|
4803
|
-
*
|
|
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.
|
|
4804
4843
|
*/
|
|
4805
4844
|
chargetrip_range: ChargetripRange;
|
|
4806
4845
|
};
|
|
4807
4846
|
export declare type VehicleListRouting = {
|
|
4808
|
-
/** 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. */
|
|
4809
4848
|
fast_charging_support: Scalars["Boolean"];
|
|
4810
4849
|
};
|
|
4811
4850
|
export declare type VehicleMedia = {
|
|
4812
|
-
/**
|
|
4851
|
+
/** Featured image of the vehicle from a 45-degree angle. */
|
|
4813
4852
|
image: VehicleImage;
|
|
4814
|
-
/** Latest maker logo */
|
|
4853
|
+
/** Latest maker logo. */
|
|
4815
4854
|
brand: VehicleImage;
|
|
4816
|
-
/** All images */
|
|
4855
|
+
/** All images of the vehicle. */
|
|
4817
4856
|
image_list: Array<VehicleImage>;
|
|
4818
|
-
/** Latest video */
|
|
4857
|
+
/** Latest video. */
|
|
4819
4858
|
video?: Maybe<VehicleVideo>;
|
|
4820
|
-
/** All videos */
|
|
4859
|
+
/** All videos of the vehicle. */
|
|
4821
4860
|
video_list?: Maybe<Array<VehicleVideo>>;
|
|
4822
4861
|
};
|
|
4823
|
-
/** Mode (state) of the current production */
|
|
4862
|
+
/** Mode (state) of the current production. */
|
|
4824
4863
|
export declare enum VehicleMode {
|
|
4825
|
-
/** Old vehicle that is no longer manufactured */
|
|
4864
|
+
/** Old vehicle that is no longer manufactured. */
|
|
4826
4865
|
INDEX_ONLY = "index_only",
|
|
4827
|
-
/** Vehicle is in production and has been released */
|
|
4866
|
+
/** Vehicle is in production and has been released. */
|
|
4828
4867
|
PRODUCTION = "production",
|
|
4829
|
-
/** 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. */
|
|
4830
4869
|
CONCEPT = "concept"
|
|
4831
4870
|
}
|
|
4832
4871
|
export declare type VehicleNaming = {
|
|
4833
|
-
/** Vehicle manufacturer name */
|
|
4872
|
+
/** Vehicle manufacturer name. */
|
|
4834
4873
|
make: Scalars["String"];
|
|
4835
|
-
/** Vehicle model name */
|
|
4874
|
+
/** Vehicle model name. */
|
|
4836
4875
|
model: Scalars["String"];
|
|
4837
|
-
/** Version, edition or submodel of the vehicle */
|
|
4876
|
+
/** Version, edition or submodel of the vehicle. */
|
|
4838
4877
|
version?: Maybe<Scalars["String"]>;
|
|
4839
|
-
/** Another submodel level of the vehicle */
|
|
4878
|
+
/** Another submodel level of the vehicle. */
|
|
4840
4879
|
edition?: Maybe<Scalars["String"]>;
|
|
4841
|
-
/** 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. */
|
|
4842
4881
|
chargetrip_version: Scalars["String"];
|
|
4843
4882
|
};
|
|
4844
4883
|
export declare type VehiclePerformance = {
|
|
4845
|
-
/** Acceleration in seconds, default in kmph to 100 */
|
|
4884
|
+
/** Acceleration in seconds, default in kmph to 100. */
|
|
4846
4885
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
4847
|
-
/** Top speed of the vehicle, default in kmph */
|
|
4886
|
+
/** Top speed of the vehicle, default in kmph. */
|
|
4848
4887
|
top_speed?: Maybe<Scalars["Float"]>;
|
|
4849
4888
|
};
|
|
4850
4889
|
export declare type VehiclePerformanceaccelerationArgs = {
|
|
@@ -4853,143 +4892,149 @@ export declare type VehiclePerformanceaccelerationArgs = {
|
|
|
4853
4892
|
export declare type VehiclePerformancetop_speedArgs = {
|
|
4854
4893
|
unit?: Maybe<SpeedUnit>;
|
|
4855
4894
|
};
|
|
4856
|
-
/** The output element of the vehiclePremium query */
|
|
4895
|
+
/** The output element of the vehiclePremium query. */
|
|
4857
4896
|
export declare type VehiclePremium = {
|
|
4858
|
-
/** Vehicles unique ID */
|
|
4897
|
+
/** Vehicles unique ID. */
|
|
4859
4898
|
id: Scalars["ID"];
|
|
4860
|
-
/** Internal ID of the successor vehicle trim */
|
|
4899
|
+
/** Internal ID of the successor vehicle trim. */
|
|
4861
4900
|
succesor_id?: Maybe<Scalars["String"]>;
|
|
4862
|
-
/** Naming of the vehicle */
|
|
4901
|
+
/** Naming of the vehicle. */
|
|
4863
4902
|
naming: VehiclePremiumNaming;
|
|
4864
|
-
/** Connectors available for the vehicle */
|
|
4903
|
+
/** Connectors available for the vehicle. */
|
|
4865
4904
|
connectors: Array<VehicleConnector>;
|
|
4866
|
-
/** Charge details */
|
|
4905
|
+
/** Charge details. */
|
|
4867
4906
|
charge: VehiclePremiumCharge;
|
|
4868
|
-
/** Fast charge details */
|
|
4907
|
+
/** Fast charge details. */
|
|
4869
4908
|
fast_charge: VehiclePremiumFastCharge;
|
|
4870
|
-
/** Adapters of connectors available for a connectors of the vehicle */
|
|
4909
|
+
/** Adapters of connectors available for a connectors of the vehicle. */
|
|
4871
4910
|
adapters: Array<VehicleConnector>;
|
|
4872
|
-
/** Battery of the vehicle */
|
|
4911
|
+
/** Battery of the vehicle. */
|
|
4873
4912
|
battery: VehiclePremiumBattery;
|
|
4874
|
-
/** Body of the vehicle */
|
|
4913
|
+
/** Body of the vehicle. */
|
|
4875
4914
|
body: VehiclePremiumBody;
|
|
4876
|
-
/** Availability of the vehicle */
|
|
4915
|
+
/** Availability of the vehicle. */
|
|
4877
4916
|
availability: VehiclePremiumAvailability;
|
|
4878
|
-
/** Pricing of the vehicle */
|
|
4917
|
+
/** Pricing of the vehicle. */
|
|
4879
4918
|
price: VehiclePremiumPrice;
|
|
4880
|
-
/** Drivetrain of the vehicle */
|
|
4919
|
+
/** Drivetrain of the vehicle. */
|
|
4881
4920
|
drivetrain: VehiclePremiumDrivetrain;
|
|
4882
|
-
/** Performance of the vehicle */
|
|
4921
|
+
/** Performance of the vehicle. */
|
|
4883
4922
|
performance?: Maybe<VehiclePremiumPerformance>;
|
|
4884
|
-
/** Range of the vehicle */
|
|
4923
|
+
/** Range of the vehicle. */
|
|
4885
4924
|
range: VehiclePremiumRange;
|
|
4886
|
-
/** Efficiency of the vehicle */
|
|
4925
|
+
/** Efficiency of the vehicle. */
|
|
4887
4926
|
efficiency: VehiclePremiumEfficiency;
|
|
4888
|
-
/** Safety of the vehicle */
|
|
4927
|
+
/** Safety of the vehicle. */
|
|
4889
4928
|
safety?: Maybe<VehiclePremiumSafety>;
|
|
4890
|
-
/** Media of the vehicle */
|
|
4929
|
+
/** Media of the vehicle. */
|
|
4891
4930
|
media: VehiclePremiumMedia;
|
|
4892
|
-
/** Routing of the vehicle */
|
|
4931
|
+
/** Routing of the vehicle. */
|
|
4893
4932
|
routing: VehiclePremiumRouting;
|
|
4894
|
-
/** Information about vehicle connectivity */
|
|
4933
|
+
/** Information about vehicle connectivity. */
|
|
4895
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;
|
|
4896
4941
|
};
|
|
4897
4942
|
export declare type VehiclePremiumAvailability = {
|
|
4898
|
-
/** Availability of the vehicle */
|
|
4943
|
+
/** Availability of the vehicle. */
|
|
4899
4944
|
status: VehicleAvailabilityStatus;
|
|
4900
|
-
/** Date of introduction, mm-yyyy */
|
|
4945
|
+
/** Date of introduction, mm-yyyy. */
|
|
4901
4946
|
date_from?: Maybe<Scalars["String"]>;
|
|
4902
|
-
/** Indicates if date from field is estimated */
|
|
4947
|
+
/** Indicates if date from field is estimated. */
|
|
4903
4948
|
date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4904
|
-
/** Date last available, mm-yyyy */
|
|
4949
|
+
/** Date last available, mm-yyyy. */
|
|
4905
4950
|
date_to?: Maybe<Scalars["String"]>;
|
|
4906
4951
|
};
|
|
4907
4952
|
export declare type VehiclePremiumBattery = {
|
|
4908
|
-
/** Usable battery capacity in kWh */
|
|
4953
|
+
/** Usable battery capacity in kWh. */
|
|
4909
4954
|
usable_kwh: Scalars["Float"];
|
|
4910
|
-
/** Full battery capacity in kWh */
|
|
4955
|
+
/** Full battery capacity in kWh. */
|
|
4911
4956
|
full_kwh: Scalars["Float"];
|
|
4912
|
-
/** Indicates which battery fields are estimated */
|
|
4957
|
+
/** Indicates which battery fields are estimated. */
|
|
4913
4958
|
estimated_fields?: Maybe<VehicleBatteryFieldEstimations>;
|
|
4914
|
-
/** Battery thermal management system (active/passive, air/liquid) */
|
|
4959
|
+
/** Battery thermal management system (active/passive, air/liquid). */
|
|
4915
4960
|
thermal_management_system?: Maybe<Scalars["String"]>;
|
|
4916
|
-
/** Duration of battery warranty */
|
|
4961
|
+
/** Duration of battery warranty. */
|
|
4917
4962
|
warranty_period?: Maybe<Scalars["Float"]>;
|
|
4918
|
-
/** Mileage of battery warranty */
|
|
4963
|
+
/** Mileage of battery warranty. */
|
|
4919
4964
|
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
4920
|
-
/** Chemistry of the battery */
|
|
4965
|
+
/** Chemistry of the battery. */
|
|
4921
4966
|
chemistry?: Maybe<Scalars["String"]>;
|
|
4922
|
-
/** Manufacturer of the battery */
|
|
4967
|
+
/** Manufacturer of the battery. */
|
|
4923
4968
|
manufacturer?: Maybe<Scalars["String"]>;
|
|
4924
|
-
/** Number of battery modules */
|
|
4969
|
+
/** Number of battery modules. */
|
|
4925
4970
|
modules?: Maybe<Scalars["Float"]>;
|
|
4926
|
-
/** 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). */
|
|
4927
4972
|
cells?: Maybe<Scalars["String"]>;
|
|
4928
|
-
/** Weight of the battery pack */
|
|
4973
|
+
/** Weight of the battery pack. */
|
|
4929
4974
|
weight?: Maybe<Scalars["Float"]>;
|
|
4930
|
-
/** Nominal voltage of battery */
|
|
4975
|
+
/** Nominal voltage of battery. */
|
|
4931
4976
|
nominal_voltage?: Maybe<Scalars["Float"]>;
|
|
4932
4977
|
};
|
|
4933
4978
|
export declare type VehiclePremiumBody = {
|
|
4934
|
-
/** Length, default in mm */
|
|
4979
|
+
/** Length, default in mm. */
|
|
4935
4980
|
length?: Maybe<Scalars["Float"]>;
|
|
4936
|
-
/** Width with folded mirrors, default in mm */
|
|
4981
|
+
/** Width with folded mirrors, default in mm. */
|
|
4937
4982
|
width: Scalars["Float"];
|
|
4938
|
-
/** Width of vehicle including mirrors, default in mm */
|
|
4983
|
+
/** Width of vehicle including mirrors, default in mm. */
|
|
4939
4984
|
full_width?: Maybe<Scalars["Float"]>;
|
|
4940
|
-
/** Height (average height for adjustable suspensions), default in mm */
|
|
4985
|
+
/** Height (average height for adjustable suspensions), default in mm. */
|
|
4941
4986
|
height: Scalars["Float"];
|
|
4942
|
-
/** Indicates if length/width/height fields are estimations */
|
|
4987
|
+
/** Indicates if length/width/height fields are estimations. */
|
|
4943
4988
|
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4944
|
-
/** Wheelbase, default in mm */
|
|
4989
|
+
/** Wheelbase, default in mm. */
|
|
4945
4990
|
wheelbase?: Maybe<Scalars["Float"]>;
|
|
4946
|
-
/** Indicates if wheelbase field is estimated */
|
|
4991
|
+
/** Indicates if wheelbase field is estimated. */
|
|
4947
4992
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4948
|
-
/** Weight (unladen EU) */
|
|
4993
|
+
/** Weight (unladen EU). */
|
|
4949
4994
|
weight: VehicleBodyWeight;
|
|
4950
|
-
/** Maximum allowed vehicle weight with payload */
|
|
4995
|
+
/** Maximum allowed vehicle weight with payload. */
|
|
4951
4996
|
weight_gvwr?: Maybe<VehicleBodyWeight>;
|
|
4952
|
-
/** Maximum allowed vehicle and trailer weight with payload */
|
|
4997
|
+
/** Maximum allowed vehicle and trailer weight with payload. */
|
|
4953
4998
|
weight_gtw?: Maybe<VehicleBodyWeight>;
|
|
4954
|
-
/** Allowed payload weight */
|
|
4999
|
+
/** Allowed payload weight. */
|
|
4955
5000
|
weight_payload?: Maybe<VehicleBodyWeight>;
|
|
4956
|
-
/** Indicates if weight field is estimated */
|
|
5001
|
+
/** Indicates if weight field is estimated. */
|
|
4957
5002
|
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4958
|
-
/** Maximum payload allowed for the vehicle, default in kg */
|
|
5003
|
+
/** Maximum payload allowed for the vehicle, default in kg. */
|
|
4959
5004
|
weight_max_payload?: Maybe<Scalars["Float"]>;
|
|
4960
|
-
/** 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. */
|
|
4961
5006
|
max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
|
|
4962
|
-
/** Standard luggage capacity, default in l */
|
|
5007
|
+
/** Standard luggage capacity, default in l. */
|
|
4963
5008
|
boot_capacity?: Maybe<Scalars["Float"]>;
|
|
4964
|
-
/** 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. */
|
|
4965
5010
|
boot_front_capacity?: Maybe<Scalars["Float"]>;
|
|
4966
|
-
/** Maximum luggage capacity, default in l */
|
|
5011
|
+
/** Maximum luggage capacity, default in l. */
|
|
4967
5012
|
boot_capacity_max?: Maybe<Scalars["Float"]>;
|
|
4968
|
-
/** 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. */
|
|
4969
5014
|
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
4970
|
-
/** Maximum unbraked towing weight, default in kg */
|
|
5015
|
+
/** Maximum unbraked towing weight, default in kg. */
|
|
4971
5016
|
tow_weight_unbraked?: Maybe<Scalars["Float"]>;
|
|
4972
|
-
/** Maximum braked towing weight, default in kg */
|
|
5017
|
+
/** Maximum braked towing weight, default in kg. */
|
|
4973
5018
|
tow_weight_braked?: Maybe<Scalars["Float"]>;
|
|
4974
|
-
/** Indicates if tow weight fields are estimations */
|
|
5019
|
+
/** Indicates if tow weight fields are estimations. */
|
|
4975
5020
|
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4976
|
-
/** 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. */
|
|
4977
5022
|
tow_weight_vertical_load?: Maybe<Scalars["Float"]>;
|
|
4978
|
-
/** Maximum load on roof of the vehicle, default in kg */
|
|
5023
|
+
/** Maximum load on roof of the vehicle, default in kg. */
|
|
4979
5024
|
roof_load_max?: Maybe<Scalars["Float"]>;
|
|
4980
|
-
/** Body type, listed in local naming convention where applicable */
|
|
5025
|
+
/** Body type, listed in local naming convention where applicable. */
|
|
4981
5026
|
body_type?: Maybe<Scalars["String"]>;
|
|
4982
|
-
/** Segment, listed in local naming convention where applicable */
|
|
5027
|
+
/** Segment, listed in local naming convention where applicable. */
|
|
4983
5028
|
segment?: Maybe<Scalars["String"]>;
|
|
4984
|
-
/** Number of seats */
|
|
5029
|
+
/** Number of seats. */
|
|
4985
5030
|
seats: Scalars["Int"];
|
|
4986
|
-
/** Indicates whether a vehicle has roof rails as a standard */
|
|
5031
|
+
/** Indicates whether a vehicle has roof rails as a standard. */
|
|
4987
5032
|
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
4988
|
-
/** Turning circle of the vehicle kerb-to-kerb, default in meters */
|
|
5033
|
+
/** Turning circle of the vehicle kerb-to-kerb, default in meters. */
|
|
4989
5034
|
turning_circle?: Maybe<Scalars["Float"]>;
|
|
4990
|
-
/** 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). */
|
|
4991
5036
|
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
4992
|
-
/** 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. */
|
|
4993
5038
|
vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
4994
5039
|
};
|
|
4995
5040
|
export declare type VehiclePremiumBodylengthArgs = {
|
|
@@ -5035,131 +5080,131 @@ export declare type VehiclePremiumBodyturning_circleArgs = {
|
|
|
5035
5080
|
unit?: Maybe<TurningCircleUnit>;
|
|
5036
5081
|
};
|
|
5037
5082
|
export declare type VehiclePremiumCharge = {
|
|
5038
|
-
/** Information about the main connector */
|
|
5083
|
+
/** Information about the main connector. */
|
|
5039
5084
|
plug?: Maybe<VehiclePremiumChargePlug>;
|
|
5040
|
-
/** Information about vehicles secondary onboard charger */
|
|
5085
|
+
/** Information about vehicles secondary onboard charger. */
|
|
5041
5086
|
second_plug?: Maybe<VehiclePremiumChargeSecondPlug>;
|
|
5042
|
-
/** Information about the vehicle standard onboard charger */
|
|
5087
|
+
/** Information about the vehicle standard onboard charger. */
|
|
5043
5088
|
standard?: Maybe<VehiclePremiumChargeStandardOBC>;
|
|
5044
|
-
/** Optional upgrade for the standard onboard charger when available */
|
|
5089
|
+
/** Optional upgrade for the standard onboard charger when available. */
|
|
5045
5090
|
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
5046
|
-
/** Alternative upgrade for the standard onboard charger when available */
|
|
5091
|
+
/** Alternative upgrade for the standard onboard charger when available. */
|
|
5047
5092
|
alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
|
|
5048
5093
|
};
|
|
5049
5094
|
export declare type VehiclePremiumChargeAlternativeOBC = {
|
|
5050
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5095
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
5051
5096
|
power?: Maybe<Scalars["Float"]>;
|
|
5052
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
5097
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
5053
5098
|
phases?: Maybe<Scalars["Int"]>;
|
|
5054
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
5099
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
5055
5100
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5056
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5101
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
5057
5102
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5058
|
-
/** Charging speed when charging at maximum power (standard OBC), default in kmph */
|
|
5103
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph. */
|
|
5059
5104
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5060
|
-
/** Charging details for the standard OBC at several charging points */
|
|
5105
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
5061
5106
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5062
5107
|
};
|
|
5063
5108
|
export declare type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {
|
|
5064
5109
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
5065
5110
|
};
|
|
5066
5111
|
export declare type VehiclePremiumChargeOBCTable = {
|
|
5067
|
-
/** Voltage between phase and neutral for this EVSE (phase voltage) */
|
|
5112
|
+
/** Voltage between phase and neutral for this EVSE (phase voltage). */
|
|
5068
5113
|
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
5069
|
-
/** Current per phase for this EVSE (phase current) */
|
|
5114
|
+
/** Current per phase for this EVSE (phase current). */
|
|
5070
5115
|
evse_phase_amperage?: Maybe<Scalars["Int"]>;
|
|
5071
|
-
/** Number of phases for this EVSE */
|
|
5116
|
+
/** Number of phases for this EVSE. */
|
|
5072
5117
|
evse_phases?: Maybe<Scalars["Int"]>;
|
|
5073
|
-
/** Voltage between phase and neutral used by standard OBC (phase voltage) */
|
|
5118
|
+
/** Voltage between phase and neutral used by standard OBC (phase voltage). */
|
|
5074
5119
|
charge_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
5075
|
-
/** Current per phase used by standard OBC (phase current) */
|
|
5120
|
+
/** Current per phase used by standard OBC (phase current). */
|
|
5076
5121
|
charge_phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5077
|
-
/** Number of phases used by standard OBC */
|
|
5122
|
+
/** Number of phases used by standard OBC. */
|
|
5078
5123
|
charge_phases?: Maybe<Scalars["Int"]>;
|
|
5079
|
-
/** Power used by standard OBC (before OBC losses) */
|
|
5124
|
+
/** Power used by standard OBC (before OBC losses). */
|
|
5080
5125
|
charge_power?: Maybe<Scalars["Float"]>;
|
|
5081
|
-
/** 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). */
|
|
5082
5127
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5083
|
-
/** 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. */
|
|
5084
5129
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5085
5130
|
};
|
|
5086
5131
|
export declare type VehiclePremiumChargeOBCTablecharge_speedArgs = {
|
|
5087
5132
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
5088
5133
|
};
|
|
5089
5134
|
export declare type VehiclePremiumChargeOptionOBC = {
|
|
5090
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5135
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
5091
5136
|
power?: Maybe<Scalars["Float"]>;
|
|
5092
|
-
/** 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). */
|
|
5093
5138
|
phases?: Maybe<Scalars["Int"]>;
|
|
5094
|
-
/** 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). */
|
|
5095
5140
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5096
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5141
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
5097
5142
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5098
|
-
/** 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. */
|
|
5099
5144
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5100
|
-
/** Charging details for the standard OBC at several charging points */
|
|
5145
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
5101
5146
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5102
5147
|
};
|
|
5103
5148
|
export declare type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
|
|
5104
5149
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
5105
5150
|
};
|
|
5106
5151
|
export declare type VehiclePremiumChargePlug = {
|
|
5107
|
-
/** Type of charge port on vehicle */
|
|
5152
|
+
/** Type of charge port on vehicle. */
|
|
5108
5153
|
value?: Maybe<ConnectorType>;
|
|
5109
|
-
/** Indicates if value is an estimate */
|
|
5154
|
+
/** Indicates if value is an estimate. */
|
|
5110
5155
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5111
|
-
/** Location of charge port */
|
|
5156
|
+
/** Location of charge port. */
|
|
5112
5157
|
location?: Maybe<Scalars["String"]>;
|
|
5113
5158
|
};
|
|
5114
5159
|
export declare type VehiclePremiumChargePower = {
|
|
5115
|
-
/** Maximum value */
|
|
5160
|
+
/** Maximum value. */
|
|
5116
5161
|
max?: Maybe<Scalars["Float"]>;
|
|
5117
|
-
/** Average value */
|
|
5162
|
+
/** Average value. */
|
|
5118
5163
|
average?: Maybe<Scalars["Float"]>;
|
|
5119
5164
|
};
|
|
5120
5165
|
export declare type VehiclePremiumChargeSecondPlug = {
|
|
5121
|
-
/** Location of charge port */
|
|
5166
|
+
/** Location of charge port. */
|
|
5122
5167
|
location?: Maybe<Scalars["String"]>;
|
|
5123
|
-
/** Indicates if second charge port is optional */
|
|
5168
|
+
/** Indicates if second charge port is optional. */
|
|
5124
5169
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
5125
5170
|
};
|
|
5126
5171
|
export declare type VehiclePremiumChargeStandardOBC = {
|
|
5127
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5172
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
5128
5173
|
power?: Maybe<Scalars["Float"]>;
|
|
5129
|
-
/** 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). */
|
|
5130
5175
|
phases?: Maybe<Scalars["Int"]>;
|
|
5131
|
-
/** 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). */
|
|
5132
5177
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5133
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5178
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
5134
5179
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5135
|
-
/** 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. */
|
|
5136
5181
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5137
|
-
/** Indicates if Charge_Standard fields are estimated */
|
|
5182
|
+
/** Indicates if Charge_Standard fields are estimated. */
|
|
5138
5183
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5139
|
-
/** Charging details for the standard OBC at several charging points */
|
|
5184
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
5140
5185
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5141
5186
|
};
|
|
5142
5187
|
export declare type VehiclePremiumChargeStandardOBCcharge_speedArgs = {
|
|
5143
5188
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
5144
5189
|
};
|
|
5145
5190
|
export declare type VehiclePremiumDrivetrain = {
|
|
5146
|
-
/** Type of drivetrain */
|
|
5191
|
+
/** Type of drivetrain. */
|
|
5147
5192
|
type: VehicleDrivetrainType;
|
|
5148
|
-
/** Fuel type */
|
|
5193
|
+
/** Fuel type. */
|
|
5149
5194
|
fuel?: Maybe<VehicleFuel>;
|
|
5150
|
-
/** Propulsion type */
|
|
5195
|
+
/** Propulsion type. */
|
|
5151
5196
|
propulsion?: Maybe<VehiclePropulsion>;
|
|
5152
|
-
/** Indicates if propulsion field is estimated */
|
|
5197
|
+
/** Indicates if propulsion field is estimated. */
|
|
5153
5198
|
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5154
|
-
/** Maximum (combined) power output, default in kw */
|
|
5199
|
+
/** Maximum (combined) power output, default in kw. */
|
|
5155
5200
|
power?: Maybe<Scalars["Float"]>;
|
|
5156
|
-
/** Indicates if power field is estimated */
|
|
5201
|
+
/** Indicates if power field is estimated. */
|
|
5157
5202
|
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5158
|
-
/** Maximum (combine) power output, default in horsepower (PS) */
|
|
5203
|
+
/** Maximum (combine) power output, default in horsepower (PS). */
|
|
5159
5204
|
power_hp?: Maybe<Scalars["Float"]>;
|
|
5160
|
-
/** Maximum (combine) torque output, default in newton meter */
|
|
5205
|
+
/** Maximum (combine) torque output, default in newton meter. */
|
|
5161
5206
|
torque?: Maybe<Scalars["Float"]>;
|
|
5162
|
-
/** Indicates if torque field is estimated */
|
|
5207
|
+
/** Indicates if torque field is estimated. */
|
|
5163
5208
|
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5164
5209
|
};
|
|
5165
5210
|
export declare type VehiclePremiumDrivetrainpowerArgs = {
|
|
@@ -5172,25 +5217,25 @@ export declare type VehiclePremiumDrivetraintorqueArgs = {
|
|
|
5172
5217
|
unit?: Maybe<TorqueUnit>;
|
|
5173
5218
|
};
|
|
5174
5219
|
export declare type VehiclePremiumEfficiency = {
|
|
5175
|
-
/** Rated efficiency in WLTP combined cycle */
|
|
5220
|
+
/** Rated efficiency in WLTP combined cycle. */
|
|
5176
5221
|
wltp?: Maybe<VehiclePremiumEfficiencyWLTP>;
|
|
5177
|
-
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
|
|
5222
|
+
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */
|
|
5178
5223
|
wltp_teh?: Maybe<VehiclePremiumEfficiencyWLTPTEH>;
|
|
5179
|
-
/** Rated efficiency in NEDC combined cycle */
|
|
5224
|
+
/** Rated efficiency in NEDC combined cycle. */
|
|
5180
5225
|
nedc?: Maybe<VehiclePremiumEfficiencyNEDC>;
|
|
5181
|
-
/** Vehicle efficiency based on provider range */
|
|
5226
|
+
/** Vehicle efficiency based on provider range. */
|
|
5182
5227
|
provider?: Maybe<VehiclePremiumEfficiencyProvider>;
|
|
5183
5228
|
};
|
|
5184
5229
|
export declare type VehiclePremiumEfficiencyNEDC = {
|
|
5185
|
-
/** Rated efficiency in NEDC combined cycle, default in kWh/100 km */
|
|
5230
|
+
/** Rated efficiency in NEDC combined cycle, default in kWh/100 km. */
|
|
5186
5231
|
value?: Maybe<Scalars["Float"]>;
|
|
5187
|
-
/** 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. */
|
|
5188
5233
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5189
|
-
/** 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. */
|
|
5190
5235
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
5191
|
-
/** 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. */
|
|
5192
5237
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5193
|
-
/** 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. */
|
|
5194
5239
|
co2?: Maybe<Scalars["Float"]>;
|
|
5195
5240
|
};
|
|
5196
5241
|
export declare type VehiclePremiumEfficiencyNEDCvalueArgs = {
|
|
@@ -5209,13 +5254,13 @@ export declare type VehiclePremiumEfficiencyNEDCco2Args = {
|
|
|
5209
5254
|
unit?: Maybe<EmissionRateUnit>;
|
|
5210
5255
|
};
|
|
5211
5256
|
export declare type VehiclePremiumEfficiencyProvider = {
|
|
5212
|
-
/** 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. */
|
|
5213
5258
|
value?: Maybe<Scalars["Float"]>;
|
|
5214
|
-
/** 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. */
|
|
5215
5260
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5216
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
5261
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
5217
5262
|
worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
5218
|
-
/** 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. */
|
|
5219
5264
|
best?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
5220
5265
|
};
|
|
5221
5266
|
export declare type VehiclePremiumEfficiencyProvidervalueArgs = {
|
|
@@ -5225,11 +5270,11 @@ export declare type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {
|
|
|
5225
5270
|
unit?: Maybe<FuelConsumptionUnit>;
|
|
5226
5271
|
};
|
|
5227
5272
|
export declare type VehiclePremiumEfficiencyProviderValue = {
|
|
5228
|
-
/** Estimated value on highway or express roads, default in km */
|
|
5273
|
+
/** Estimated value on highway or express roads, default in km. */
|
|
5229
5274
|
highway?: Maybe<Scalars["Float"]>;
|
|
5230
|
-
/** Estimated value on city roads, default in km */
|
|
5275
|
+
/** Estimated value on city roads, default in km. */
|
|
5231
5276
|
city?: Maybe<Scalars["Float"]>;
|
|
5232
|
-
/** Estimated combined value, default in km */
|
|
5277
|
+
/** Estimated combined value, default in km. */
|
|
5233
5278
|
combined?: Maybe<Scalars["Float"]>;
|
|
5234
5279
|
};
|
|
5235
5280
|
export declare type VehiclePremiumEfficiencyProviderValuehighwayArgs = {
|
|
@@ -5242,15 +5287,15 @@ export declare type VehiclePremiumEfficiencyProviderValuecombinedArgs = {
|
|
|
5242
5287
|
unit?: Maybe<DistanceUnit>;
|
|
5243
5288
|
};
|
|
5244
5289
|
export declare type VehiclePremiumEfficiencyWLTP = {
|
|
5245
|
-
/** Rated efficiency in WLTP combined cycle, default in kWh/100 km */
|
|
5290
|
+
/** Rated efficiency in WLTP combined cycle, default in kWh/100 km. */
|
|
5246
5291
|
value?: Maybe<Scalars["Float"]>;
|
|
5247
|
-
/** 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. */
|
|
5248
5293
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5249
|
-
/** 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. */
|
|
5250
5295
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
5251
|
-
/** 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. */
|
|
5252
5297
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5253
|
-
/** 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. */
|
|
5254
5299
|
co2?: Maybe<Scalars["Float"]>;
|
|
5255
5300
|
};
|
|
5256
5301
|
export declare type VehiclePremiumEfficiencyWLTPvalueArgs = {
|
|
@@ -5269,15 +5314,15 @@ export declare type VehiclePremiumEfficiencyWLTPco2Args = {
|
|
|
5269
5314
|
unit?: Maybe<EmissionRateUnit>;
|
|
5270
5315
|
};
|
|
5271
5316
|
export declare type VehiclePremiumEfficiencyWLTPTEH = {
|
|
5272
|
-
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
|
|
5317
|
+
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
|
|
5273
5318
|
value?: Maybe<Scalars["Float"]>;
|
|
5274
|
-
/** 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. */
|
|
5275
5320
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5276
|
-
/** 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. */
|
|
5277
5322
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
5278
|
-
/** 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. */
|
|
5279
5324
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5280
|
-
/** 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. */
|
|
5281
5326
|
co2?: Maybe<Scalars["Float"]>;
|
|
5282
5327
|
};
|
|
5283
5328
|
export declare type VehiclePremiumEfficiencyWLTPTEHvalueArgs = {
|
|
@@ -5296,81 +5341,81 @@ export declare type VehiclePremiumEfficiencyWLTPTEHco2Args = {
|
|
|
5296
5341
|
unit?: Maybe<EmissionRateUnit>;
|
|
5297
5342
|
};
|
|
5298
5343
|
export declare type VehiclePremiumFastCharge = {
|
|
5299
|
-
/** Details about the connector */
|
|
5344
|
+
/** Details about the connector. */
|
|
5300
5345
|
plug?: Maybe<VehiclePremiumChargePlug>;
|
|
5301
|
-
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
|
|
5346
|
+
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger). */
|
|
5302
5347
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
5303
|
-
/** 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). */
|
|
5304
5349
|
charge_time?: Maybe<Scalars["Float"]>;
|
|
5305
|
-
/** 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. */
|
|
5306
5351
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5307
|
-
/** Indicates if fast charge is optional in some markets/regions */
|
|
5352
|
+
/** Indicates if fast charge is optional in some markets/regions. */
|
|
5308
5353
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
5309
|
-
/** Indicates what fields are estimated */
|
|
5354
|
+
/** Indicates what fields are estimated. */
|
|
5310
5355
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5311
|
-
/** Charging details for fast charging */
|
|
5356
|
+
/** Charging details for fast charging. */
|
|
5312
5357
|
table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
|
|
5313
5358
|
};
|
|
5314
5359
|
export declare type VehiclePremiumFastChargecharge_speedArgs = {
|
|
5315
5360
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
5316
5361
|
};
|
|
5317
5362
|
export declare type VehiclePremiumFastChargeTable = {
|
|
5318
|
-
/** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC) */
|
|
5363
|
+
/** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC). */
|
|
5319
5364
|
format?: Maybe<Scalars["String"]>;
|
|
5320
|
-
/** Fast charge power */
|
|
5365
|
+
/** Fast charge power. */
|
|
5321
5366
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
5322
|
-
/** Minutes needed to charge from 10% to 80% (optimal conditions) */
|
|
5367
|
+
/** Minutes needed to charge from 10% to 80% (optimal conditions). */
|
|
5323
5368
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5324
|
-
/** 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. */
|
|
5325
5370
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5326
|
-
/** 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. */
|
|
5327
5372
|
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
5328
|
-
/** 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. */
|
|
5329
5374
|
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
5330
5375
|
};
|
|
5331
5376
|
export declare type VehiclePremiumFastChargeTablecharge_speedArgs = {
|
|
5332
5377
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
5333
5378
|
};
|
|
5334
5379
|
export declare type VehiclePremiumMedia = {
|
|
5335
|
-
/** URL for more details */
|
|
5380
|
+
/** URL for more details. */
|
|
5336
5381
|
provider_details_url?: Maybe<Scalars["String"]>;
|
|
5337
|
-
/**
|
|
5382
|
+
/** Featured image of the vehicle from a 45-degree angle. */
|
|
5338
5383
|
image: VehicleImage;
|
|
5339
|
-
/** Latest maker logo */
|
|
5384
|
+
/** Latest maker logo. */
|
|
5340
5385
|
brand: VehicleImage;
|
|
5341
|
-
/** All images */
|
|
5386
|
+
/** All images of the vehicle. */
|
|
5342
5387
|
image_list: Array<VehicleImage>;
|
|
5343
|
-
/** Latest video */
|
|
5388
|
+
/** Latest video. */
|
|
5344
5389
|
video?: Maybe<VehicleVideo>;
|
|
5345
|
-
/** All videos */
|
|
5390
|
+
/** All videos of the vehicle. */
|
|
5346
5391
|
video_list?: Maybe<Array<VehicleVideo>>;
|
|
5347
|
-
/** URL of the OEM page for this vehicle */
|
|
5392
|
+
/** URL of the OEM page for this vehicle. */
|
|
5348
5393
|
oem_details_url?: Maybe<Scalars["String"]>;
|
|
5349
5394
|
};
|
|
5350
5395
|
export declare type VehiclePremiumNaming = {
|
|
5351
|
-
/** Vehicle manufacturer name */
|
|
5396
|
+
/** Vehicle manufacturer name. */
|
|
5352
5397
|
make: Scalars["String"];
|
|
5353
|
-
/** Vehicle model name */
|
|
5398
|
+
/** Vehicle model name. */
|
|
5354
5399
|
model: Scalars["String"];
|
|
5355
|
-
/** Version, edition or submodel of the vehicle */
|
|
5400
|
+
/** Version, edition or submodel of the vehicle. */
|
|
5356
5401
|
version?: Maybe<Scalars["String"]>;
|
|
5357
|
-
/** Another submodel level of the vehicle */
|
|
5402
|
+
/** Another submodel level of the vehicle. */
|
|
5358
5403
|
edition?: Maybe<Scalars["String"]>;
|
|
5359
|
-
/** 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. */
|
|
5360
5405
|
chargetrip_version: Scalars["String"];
|
|
5361
|
-
/** Vehicle model length version */
|
|
5406
|
+
/** Vehicle model length version. */
|
|
5362
5407
|
length_version?: Maybe<Scalars["String"]>;
|
|
5363
|
-
/** Vehicle model height version */
|
|
5408
|
+
/** Vehicle model height version. */
|
|
5364
5409
|
height_version?: Maybe<Scalars["String"]>;
|
|
5365
5410
|
};
|
|
5366
5411
|
export declare type VehiclePremiumPerformance = {
|
|
5367
|
-
/** Acceleration 0-100 km/h, default in seconds */
|
|
5412
|
+
/** Acceleration 0-100 km/h, default in seconds. */
|
|
5368
5413
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
5369
|
-
/** Indicates if acceleration field is estimated */
|
|
5414
|
+
/** Indicates if acceleration field is estimated. */
|
|
5370
5415
|
acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5371
|
-
/** Top speed of the vehicle, default in km/h */
|
|
5416
|
+
/** Top speed of the vehicle, default in km/h. */
|
|
5372
5417
|
top_speed?: Maybe<Scalars["Float"]>;
|
|
5373
|
-
/** Indicates if top_speed field is estimated */
|
|
5418
|
+
/** Indicates if top_speed field is estimated. */
|
|
5374
5419
|
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5375
5420
|
};
|
|
5376
5421
|
export declare type VehiclePremiumPerformanceaccelerationArgs = {
|
|
@@ -5380,46 +5425,50 @@ export declare type VehiclePremiumPerformancetop_speedArgs = {
|
|
|
5380
5425
|
unit?: Maybe<SpeedUnit>;
|
|
5381
5426
|
};
|
|
5382
5427
|
export declare type VehiclePremiumPrice = {
|
|
5383
|
-
/** Starting price for German market */
|
|
5428
|
+
/** Starting price for German market. */
|
|
5384
5429
|
DE?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5385
|
-
/** Starting price for Dutch market */
|
|
5430
|
+
/** Starting price for Dutch market. */
|
|
5386
5431
|
NL?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5387
|
-
/** Starting price for British market */
|
|
5432
|
+
/** Starting price for British market. */
|
|
5388
5433
|
GB?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5389
5434
|
};
|
|
5390
5435
|
export declare type VehiclePremiumPriceValueWithGrant = {
|
|
5391
|
-
/** Starting price for local market expressed in the currency in the field currency */
|
|
5436
|
+
/** Starting price for local market expressed in the currency in the field currency. */
|
|
5392
5437
|
value?: Maybe<Scalars["Float"]>;
|
|
5393
|
-
/** Currency in which the value without optional field conversion is expressed */
|
|
5438
|
+
/** Currency in which the value without optional field conversion is expressed. */
|
|
5394
5439
|
currency?: Maybe<CurrencyUnit>;
|
|
5395
|
-
/** Indicates if price value is based on estimates */
|
|
5440
|
+
/** Indicates if price value is based on estimates. */
|
|
5396
5441
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5397
|
-
/** Grant is applied to value */
|
|
5442
|
+
/** Grant is applied to value. */
|
|
5398
5443
|
grant_applied?: Maybe<Scalars["Int"]>;
|
|
5399
5444
|
};
|
|
5400
5445
|
export declare type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
5401
5446
|
unit?: Maybe<CurrencyUnit>;
|
|
5402
5447
|
};
|
|
5403
5448
|
export declare type VehiclePremiumRange = {
|
|
5404
|
-
/** 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. */
|
|
5405
5450
|
wltp?: Maybe<Scalars["Float"]>;
|
|
5406
|
-
/** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
|
|
5451
|
+
/** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
|
|
5407
5452
|
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5408
|
-
/** 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). */
|
|
5409
5454
|
wltp_teh?: Maybe<Scalars["Int"]>;
|
|
5410
|
-
/** 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. */
|
|
5411
5456
|
nedc?: Maybe<Scalars["Float"]>;
|
|
5412
|
-
/** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
|
|
5457
|
+
/** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
|
|
5413
5458
|
nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5414
|
-
/** Index range, default in km */
|
|
5459
|
+
/** Index range, default in km. */
|
|
5415
5460
|
provider?: Maybe<Scalars["Float"]>;
|
|
5416
|
-
/** Indicates if index range is estimated */
|
|
5461
|
+
/** Indicates if index range is estimated. */
|
|
5417
5462
|
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5418
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
5463
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
5419
5464
|
worst: VehiclePremiumRangeValue;
|
|
5420
|
-
/** 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. */
|
|
5421
5466
|
best: VehiclePremiumRangeValue;
|
|
5422
|
-
/**
|
|
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
|
+
*/
|
|
5423
5472
|
chargetrip_range: ChargetripRange;
|
|
5424
5473
|
};
|
|
5425
5474
|
export declare type VehiclePremiumRangewltpArgs = {
|
|
@@ -5432,12 +5481,12 @@ export declare type VehiclePremiumRangeproviderArgs = {
|
|
|
5432
5481
|
unit?: Maybe<ConsumptionUnit>;
|
|
5433
5482
|
};
|
|
5434
5483
|
export declare type VehiclePremiumRangeValue = {
|
|
5435
|
-
/** Estimated value on highway or express roads, default in km */
|
|
5436
|
-
highway
|
|
5437
|
-
/** Estimated value on city roads, default in km */
|
|
5438
|
-
city
|
|
5439
|
-
/** Estimated combined value, default in km */
|
|
5440
|
-
combined
|
|
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"];
|
|
5441
5490
|
};
|
|
5442
5491
|
export declare type VehiclePremiumRangeValuehighwayArgs = {
|
|
5443
5492
|
unit?: Maybe<DistanceUnit>;
|
|
@@ -5449,15 +5498,15 @@ export declare type VehiclePremiumRangeValuecombinedArgs = {
|
|
|
5449
5498
|
unit?: Maybe<DistanceUnit>;
|
|
5450
5499
|
};
|
|
5451
5500
|
export declare type VehiclePremiumRouting = {
|
|
5452
|
-
/** 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. */
|
|
5453
5502
|
fast_charging_support: Scalars["Boolean"];
|
|
5454
|
-
/** Drag coefficient */
|
|
5503
|
+
/** Drag coefficient. */
|
|
5455
5504
|
drag_coefficient: Scalars["Float"];
|
|
5456
|
-
/** Tire pressure recommended by manufacturer, default in bar */
|
|
5505
|
+
/** Tire pressure recommended by manufacturer, default in bar. */
|
|
5457
5506
|
tire_pressure: Scalars["Float"];
|
|
5458
|
-
/** Extra consumption model */
|
|
5507
|
+
/** Extra consumption model. */
|
|
5459
5508
|
consumption?: Maybe<VehiclePremiumRoutingConsumption>;
|
|
5460
|
-
/** 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. */
|
|
5461
5510
|
fuel_consumption?: Maybe<Scalars["Float"]>;
|
|
5462
5511
|
};
|
|
5463
5512
|
export declare type VehiclePremiumRoutingtire_pressureArgs = {
|
|
@@ -5467,80 +5516,92 @@ export declare type VehiclePremiumRoutingfuel_consumptionArgs = {
|
|
|
5467
5516
|
unit?: Maybe<FuelConsumptionUnit>;
|
|
5468
5517
|
};
|
|
5469
5518
|
export declare type VehiclePremiumRoutingConsumption = {
|
|
5470
|
-
/** Consumption, in kWh, of the auxiliaries */
|
|
5519
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
5471
5520
|
aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5472
|
-
/** Consumption, in kWh, of the battery management system */
|
|
5521
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
5473
5522
|
bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5474
|
-
/** Consumption, in kWh, of the vehicle in idle mode */
|
|
5523
|
+
/** Consumption, in kWh, of the vehicle in idle mode. */
|
|
5475
5524
|
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5476
5525
|
};
|
|
5477
5526
|
export declare type VehiclePremiumRoutingConsumptionValue = {
|
|
5478
|
-
/** Best (lowest) consumption in summer */
|
|
5527
|
+
/** Best (lowest) consumption in summer. */
|
|
5479
5528
|
best?: Maybe<Scalars["Float"]>;
|
|
5480
|
-
/** Best (lowest) consumption in winter */
|
|
5529
|
+
/** Best (lowest) consumption in winter. */
|
|
5481
5530
|
worst?: Maybe<Scalars["Float"]>;
|
|
5482
5531
|
};
|
|
5483
5532
|
export declare type VehiclePremiumSafety = {
|
|
5484
|
-
/** Number of seats equipped with ISOFIX */
|
|
5533
|
+
/** Number of seats equipped with ISOFIX. */
|
|
5485
5534
|
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
5486
|
-
/** EuroNCAP results */
|
|
5535
|
+
/** EuroNCAP results. */
|
|
5487
5536
|
euro_ncap?: Maybe<VehiclePremiumSafetyEuroNcap>;
|
|
5488
5537
|
};
|
|
5489
5538
|
export declare type VehiclePremiumSafetyEuroNcap = {
|
|
5490
|
-
/** EuroNCAP rating (out of 5 stars) */
|
|
5539
|
+
/** EuroNCAP rating (out of 5 stars). */
|
|
5491
5540
|
rating?: Maybe<Scalars["Int"]>;
|
|
5492
|
-
/** EuroNCAP year of rating */
|
|
5541
|
+
/** EuroNCAP year of rating. */
|
|
5493
5542
|
year?: Maybe<Scalars["Int"]>;
|
|
5494
|
-
/** EuroNCAP rating of adult protection (out of 100%) */
|
|
5543
|
+
/** EuroNCAP rating of adult protection (out of 100%). */
|
|
5495
5544
|
adult?: Maybe<Scalars["Int"]>;
|
|
5496
|
-
/** EuroNCAP rating of child protection (out of 100%) */
|
|
5545
|
+
/** EuroNCAP rating of child protection (out of 100%). */
|
|
5497
5546
|
child?: Maybe<Scalars["Int"]>;
|
|
5498
|
-
/** EuroNCAP rating of vulnerable road users (out of 100%) */
|
|
5547
|
+
/** EuroNCAP rating of vulnerable road users (out of 100%). */
|
|
5499
5548
|
vru?: Maybe<Scalars["Int"]>;
|
|
5500
|
-
/** EuroNCAP rating of safety assists (out of 100%) */
|
|
5549
|
+
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
5501
5550
|
sa?: Maybe<Scalars["Int"]>;
|
|
5502
5551
|
};
|
|
5503
|
-
/** Propulsion */
|
|
5552
|
+
/** Propulsion. */
|
|
5504
5553
|
export declare enum VehiclePropulsion {
|
|
5505
|
-
/** All-wheel drive vehicle */
|
|
5554
|
+
/** All-wheel drive vehicle. */
|
|
5506
5555
|
AWD = "AWD",
|
|
5507
|
-
/** Front-wheel drive vehicle */
|
|
5556
|
+
/** Front-wheel drive vehicle. */
|
|
5508
5557
|
FRONT = "Front",
|
|
5509
|
-
/** Rear-wheel drive vehicle */
|
|
5558
|
+
/** Rear-wheel drive vehicle. */
|
|
5510
5559
|
REAR = "Rear"
|
|
5511
5560
|
}
|
|
5512
|
-
/** Status of a vehicle provider */
|
|
5561
|
+
/** Status of a vehicle provider. */
|
|
5513
5562
|
export declare enum VehicleProviderStatus {
|
|
5514
|
-
/** Is imported from any of the data providers */
|
|
5563
|
+
/** Is imported from any of the data providers. */
|
|
5515
5564
|
NEW = "new",
|
|
5516
|
-
/** Has been attached to core vehicle */
|
|
5565
|
+
/** Has been attached to core vehicle. */
|
|
5517
5566
|
ATTACHED = "attached",
|
|
5518
|
-
/** Has been detached from a core vehicle */
|
|
5567
|
+
/** Has been detached from a core vehicle. */
|
|
5519
5568
|
DETACHED = "detached",
|
|
5520
|
-
/** Has been archived by database maintainer */
|
|
5569
|
+
/** Has been archived by database maintainer. */
|
|
5521
5570
|
ARCHIVED = "archived"
|
|
5522
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
|
+
}
|
|
5523
5580
|
export declare type VehicleRange = {
|
|
5524
|
-
/** Index range, default in km */
|
|
5581
|
+
/** Index range, default in km. */
|
|
5525
5582
|
provider?: Maybe<Scalars["Float"]>;
|
|
5526
|
-
/** Indicates if index range is estimated */
|
|
5583
|
+
/** Indicates if index range is estimated. */
|
|
5527
5584
|
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5528
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
5585
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
5529
5586
|
worst: VehicleRangeValue;
|
|
5530
|
-
/** 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. */
|
|
5531
5588
|
best: VehicleRangeValue;
|
|
5532
|
-
/**
|
|
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
|
+
*/
|
|
5533
5594
|
chargetrip_range: ChargetripRange;
|
|
5534
5595
|
};
|
|
5535
5596
|
export declare type VehicleRangeproviderArgs = {
|
|
5536
5597
|
unit?: Maybe<DistanceUnit>;
|
|
5537
5598
|
};
|
|
5538
5599
|
export declare type VehicleRangeValue = {
|
|
5539
|
-
/** Estimated value on the highway or express roads, default in km */
|
|
5600
|
+
/** Estimated value on the highway or express roads, default in km. */
|
|
5540
5601
|
highway: Scalars["Float"];
|
|
5541
|
-
/** Estimated value on the cities road, default in km */
|
|
5602
|
+
/** Estimated value on the cities road, default in km. */
|
|
5542
5603
|
city: Scalars["Float"];
|
|
5543
|
-
/** Estimated combined value, default in km */
|
|
5604
|
+
/** Estimated combined value, default in km. */
|
|
5544
5605
|
combined: Scalars["Float"];
|
|
5545
5606
|
};
|
|
5546
5607
|
export declare type VehicleRangeValuehighwayArgs = {
|
|
@@ -5552,8 +5613,22 @@ export declare type VehicleRangeValuecityArgs = {
|
|
|
5552
5613
|
export declare type VehicleRangeValuecombinedArgs = {
|
|
5553
5614
|
unit?: Maybe<DistanceUnit>;
|
|
5554
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
|
+
}
|
|
5555
5630
|
export declare type VehicleRouting = {
|
|
5556
|
-
/** 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. */
|
|
5557
5632
|
fast_charging_support: Scalars["Boolean"];
|
|
5558
5633
|
};
|
|
5559
5634
|
export declare type VehicleSpeedInput = {
|
|
@@ -5564,21 +5639,51 @@ export declare type VehicleSpeedInput = {
|
|
|
5564
5639
|
/** Source of inputted data, defaults to 'manual' */
|
|
5565
5640
|
source?: Maybe<TelemetryInputSource>;
|
|
5566
5641
|
};
|
|
5567
|
-
/** Status of a vehicle */
|
|
5642
|
+
/** Status of a vehicle. */
|
|
5568
5643
|
export declare enum VehicleStatus {
|
|
5569
|
-
/** Is being reviewed by a human operator */
|
|
5644
|
+
/** Is being reviewed by a human operator. */
|
|
5570
5645
|
DRAFT = "draft",
|
|
5571
|
-
/** Is public and can be used by a customer */
|
|
5646
|
+
/** Is public and can be used by a customer. */
|
|
5572
5647
|
PUBLIC = "public",
|
|
5573
|
-
/** Is private and can be used by a human operator */
|
|
5648
|
+
/** Is private and can be used by a human operator. */
|
|
5574
5649
|
PRIVATE = "private",
|
|
5575
|
-
/** Is archived and can not be used */
|
|
5650
|
+
/** Is archived and can not be used. */
|
|
5576
5651
|
ARCHIVED = "archived"
|
|
5577
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
|
+
}
|
|
5578
5683
|
export declare type VehicleVideo = {
|
|
5579
|
-
/** Video id */
|
|
5684
|
+
/** Video id. */
|
|
5580
5685
|
id?: Maybe<Scalars["ID"]>;
|
|
5581
|
-
/** Full path URL of a video */
|
|
5686
|
+
/** Full path URL of a video. */
|
|
5582
5687
|
url?: Maybe<Scalars["String"]>;
|
|
5583
5688
|
};
|
|
5584
5689
|
export declare enum VolumeUnit {
|