@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.
- package/CHANGELOG.md +14 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +51 -15
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +51 -15
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +564 -422
- package/graphql.schema.json +1225 -562
- package/package.json +1 -1
- package/src/graphql.ts +571 -422
package/src/graphql.ts
CHANGED
|
@@ -13,10 +13,16 @@ export type Scalars = {
|
|
|
13
13
|
Boolean: boolean;
|
|
14
14
|
Int: number;
|
|
15
15
|
Float: number;
|
|
16
|
+
/** Returns 'OK' */
|
|
17
|
+
Acknowledgement: any;
|
|
16
18
|
/** The date and time scalar */
|
|
17
19
|
DateTime: string;
|
|
20
|
+
/** Email address scalar, email regex with HTML sanitization */
|
|
21
|
+
Email: any;
|
|
18
22
|
/** Any JSON object */
|
|
19
23
|
JSON: { [key: string]: number | string | boolean | null | Scalars["JSON"] };
|
|
24
|
+
/** The non empty string scalar */
|
|
25
|
+
NonEmptyString: any;
|
|
20
26
|
/**
|
|
21
27
|
* The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.
|
|
22
28
|
* The PlainString type represents free-form human-readable text with HTML sanitization.
|
|
@@ -24,8 +30,6 @@ export type Scalars = {
|
|
|
24
30
|
PlainString: any;
|
|
25
31
|
/** The File Upload scalar */
|
|
26
32
|
Upload: any;
|
|
27
|
-
/** Returns null */
|
|
28
|
-
Void: any;
|
|
29
33
|
};
|
|
30
34
|
|
|
31
35
|
export enum AccelerationUnit {
|
|
@@ -494,7 +498,9 @@ export enum CarImageType {
|
|
|
494
498
|
/** Full-sized brand (maker) logo at 768x432 px */
|
|
495
499
|
BRAND = "brand",
|
|
496
500
|
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
497
|
-
BRAND_THUMBNAIL = "brand_thumbnail"
|
|
501
|
+
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
502
|
+
/** Placeholder image at 1536x864 px */
|
|
503
|
+
PLACEHOLDER = "placeholder"
|
|
498
504
|
}
|
|
499
505
|
|
|
500
506
|
/** When uploading images to a car, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
@@ -1425,7 +1431,7 @@ export type ChargeTotalInput = {
|
|
|
1425
1431
|
/** Value of the temperature of the battery */
|
|
1426
1432
|
value: Scalars["Float"];
|
|
1427
1433
|
/** Type of total charge amount */
|
|
1428
|
-
type:
|
|
1434
|
+
type: StateOfChargeUnit;
|
|
1429
1435
|
/** Source of inputted data, defaults to 'manual' */
|
|
1430
1436
|
source?: Maybe<TelemetryInputSource>;
|
|
1431
1437
|
};
|
|
@@ -1469,7 +1475,11 @@ export type ChargerStatuses = {
|
|
|
1469
1475
|
error?: Maybe<Scalars["Int"]>;
|
|
1470
1476
|
};
|
|
1471
1477
|
|
|
1472
|
-
/**
|
|
1478
|
+
/**
|
|
1479
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
1480
|
+
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
1481
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
|
|
1482
|
+
*/
|
|
1473
1483
|
export type ChargetripRange = {
|
|
1474
1484
|
/** Worst conditions are based on -10°C and use of heating */
|
|
1475
1485
|
worst?: Maybe<Scalars["Float"]>;
|
|
@@ -1477,12 +1487,20 @@ export type ChargetripRange = {
|
|
|
1477
1487
|
best?: Maybe<Scalars["Float"]>;
|
|
1478
1488
|
};
|
|
1479
1489
|
|
|
1480
|
-
/**
|
|
1490
|
+
/**
|
|
1491
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
1492
|
+
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
1493
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
|
|
1494
|
+
*/
|
|
1481
1495
|
export type ChargetripRangeworstArgs = {
|
|
1482
1496
|
unit?: Maybe<DistanceUnit>;
|
|
1483
1497
|
};
|
|
1484
1498
|
|
|
1485
|
-
/**
|
|
1499
|
+
/**
|
|
1500
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
1501
|
+
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
1502
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges
|
|
1503
|
+
*/
|
|
1486
1504
|
export type ChargetripRangebestArgs = {
|
|
1487
1505
|
unit?: Maybe<DistanceUnit>;
|
|
1488
1506
|
};
|
|
@@ -1510,8 +1528,8 @@ export enum ChargingBehaviourCode {
|
|
|
1510
1528
|
}
|
|
1511
1529
|
|
|
1512
1530
|
export type Connect = {
|
|
1513
|
-
/** List of connectivity providers to which
|
|
1514
|
-
providers
|
|
1531
|
+
/** List of connectivity providers to which the vehicle can connect. This field returns null for free users. Please contact customer success for more information. */
|
|
1532
|
+
providers?: Maybe<Array<ConnectProvider>>;
|
|
1515
1533
|
};
|
|
1516
1534
|
|
|
1517
1535
|
export type ConnectBattery = {
|
|
@@ -1756,22 +1774,18 @@ export enum ConnectorType {
|
|
|
1756
1774
|
}
|
|
1757
1775
|
|
|
1758
1776
|
export enum ConsumptionUnit {
|
|
1759
|
-
/** Return the consumption in kilometers */
|
|
1760
|
-
KILOMETER = "kilometer",
|
|
1761
|
-
/** Return the consumption in kilowatt hours */
|
|
1762
|
-
KILOWATT_HOUR = "kilowatt_hour",
|
|
1763
1777
|
/** Return the consumption in kilowatt hours per 100 kilometers */
|
|
1764
1778
|
KILOWATT_HOURS_PER_100_KILOMETERS = "kilowatt_hours_per_100_kilometers",
|
|
1765
|
-
/** Return the consumption in kilowatt hours per 100 miles */
|
|
1766
|
-
KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
|
|
1767
1779
|
/** Return the consumption in watt hours per kilometer */
|
|
1768
1780
|
WATT_HOURS_PER_KILOMETER = "watt_hours_per_kilometer",
|
|
1781
|
+
/** Return the consumption in kilometers per kilowatt hour */
|
|
1782
|
+
KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour",
|
|
1783
|
+
/** Return the consumption in kilowatt hours per 100 miles */
|
|
1784
|
+
KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
|
|
1769
1785
|
/** Return the consumption in watt hours per mile */
|
|
1770
1786
|
WATT_HOURS_PER_MILE = "watt_hours_per_mile",
|
|
1771
1787
|
/** Return the consumption in miles per kilowatt hour */
|
|
1772
|
-
MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour"
|
|
1773
|
-
/** Return the consumption in kilometers per kilowatt hour */
|
|
1774
|
-
KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour"
|
|
1788
|
+
MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour"
|
|
1775
1789
|
}
|
|
1776
1790
|
|
|
1777
1791
|
/** The complete contact information */
|
|
@@ -2069,7 +2083,9 @@ export enum CurrencyUnit {
|
|
|
2069
2083
|
/** Return the currency in EUR */
|
|
2070
2084
|
EUR = "EUR",
|
|
2071
2085
|
/** Return the currency in USD */
|
|
2072
|
-
USD = "USD"
|
|
2086
|
+
USD = "USD",
|
|
2087
|
+
/** Return the currency in GBP */
|
|
2088
|
+
GBP = "GBP"
|
|
2073
2089
|
}
|
|
2074
2090
|
|
|
2075
2091
|
export enum DistanceUnit {
|
|
@@ -2398,11 +2414,11 @@ export type Mutation = {
|
|
|
2398
2414
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
2399
2415
|
startNavigation?: Maybe<Scalars["ID"]>;
|
|
2400
2416
|
/** [BETA] Update the navigation session */
|
|
2401
|
-
updateNavigation?: Maybe<Scalars["
|
|
2417
|
+
updateNavigation?: Maybe<Scalars["Acknowledgement"]>;
|
|
2402
2418
|
/** [BETA] Recalculate the current navigation route */
|
|
2403
|
-
recalculateNavigation?: Maybe<Scalars["
|
|
2419
|
+
recalculateNavigation?: Maybe<Scalars["Acknowledgement"]>;
|
|
2404
2420
|
/** [BETA] End a navigation session */
|
|
2405
|
-
finishNavigation?: Maybe<Scalars["
|
|
2421
|
+
finishNavigation?: Maybe<Scalars["Acknowledgement"]>;
|
|
2406
2422
|
/**
|
|
2407
2423
|
* Add a new review.
|
|
2408
2424
|
* 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
|
|
@@ -2473,28 +2489,26 @@ export type Navigation = {
|
|
|
2473
2489
|
/** ID of the navigation session */
|
|
2474
2490
|
id: Scalars["ID"];
|
|
2475
2491
|
/** The current route used for navigation */
|
|
2476
|
-
route_id
|
|
2492
|
+
route_id: Scalars["ID"];
|
|
2477
2493
|
/** The current route alternative used for navigation */
|
|
2478
|
-
route_alternative_id
|
|
2494
|
+
route_alternative_id: Scalars["ID"];
|
|
2479
2495
|
/** The state of a navigation session. The status can be driving, charging, finished, or error */
|
|
2480
|
-
state
|
|
2496
|
+
state: NavigationState;
|
|
2481
2497
|
/** State of charge at the last known location */
|
|
2482
|
-
state_of_charge
|
|
2498
|
+
state_of_charge: Scalars["Float"];
|
|
2483
2499
|
/** Last known location */
|
|
2484
|
-
last_known_location
|
|
2500
|
+
last_known_location: Point;
|
|
2485
2501
|
/** Next charging station */
|
|
2486
2502
|
next_station?: Maybe<NavigationStation>;
|
|
2487
2503
|
/** A set of alternative charging stations to next station */
|
|
2488
|
-
alternative_stations
|
|
2504
|
+
alternative_stations: Array<NavigationStation>;
|
|
2489
2505
|
/** Navigation instructions */
|
|
2490
2506
|
instructions?: Maybe<Scalars["JSON"]>;
|
|
2491
2507
|
};
|
|
2492
2508
|
|
|
2493
2509
|
/** The navigation session data */
|
|
2494
|
-
export type
|
|
2495
|
-
|
|
2496
|
-
language?: Maybe<MappingLanguage>;
|
|
2497
|
-
precision?: Maybe<Scalars["Int"]>;
|
|
2510
|
+
export type Navigationstate_of_chargeArgs = {
|
|
2511
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2498
2512
|
};
|
|
2499
2513
|
|
|
2500
2514
|
/** Input for the navigation recalculate */
|
|
@@ -2505,16 +2519,25 @@ export type NavigationFinishInput = {
|
|
|
2505
2519
|
current_location: PointInput;
|
|
2506
2520
|
};
|
|
2507
2521
|
|
|
2522
|
+
export type NavigationInstructionsInput = {
|
|
2523
|
+
/** Turn by turn instructions format for a route */
|
|
2524
|
+
instructions_format: InstructionsFormat;
|
|
2525
|
+
/** Preferred navigation instructions language. Default: en */
|
|
2526
|
+
language?: Maybe<MappingLanguage>;
|
|
2527
|
+
/** Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6, the default is 5 */
|
|
2528
|
+
precision?: Maybe<Scalars["Int"]>;
|
|
2529
|
+
};
|
|
2530
|
+
|
|
2508
2531
|
/** Input for the navigation recalculate */
|
|
2509
2532
|
export type NavigationRecalculateInput = {
|
|
2510
2533
|
/** ID of the navigation session */
|
|
2511
2534
|
id: Scalars["ID"];
|
|
2512
2535
|
/** State of charge at origin */
|
|
2513
|
-
state_of_charge?: Maybe<
|
|
2536
|
+
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
2514
2537
|
/** Origin location of a new route */
|
|
2515
2538
|
current_location: PointInput;
|
|
2516
2539
|
/** Via points of a new route. If this field is not sent, the original via points will be used */
|
|
2517
|
-
via?: Maybe<Array<
|
|
2540
|
+
via?: Maybe<Array<FeaturePointInput>>;
|
|
2518
2541
|
/** Telemetry data input */
|
|
2519
2542
|
telemetry?: Maybe<TelemetryInput>;
|
|
2520
2543
|
};
|
|
@@ -2527,6 +2550,8 @@ export type NavigationStartInput = {
|
|
|
2527
2550
|
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2528
2551
|
/** Current coordinates */
|
|
2529
2552
|
current_location: PointInput;
|
|
2553
|
+
/** Instruction input format */
|
|
2554
|
+
instructions: NavigationInstructionsInput;
|
|
2530
2555
|
};
|
|
2531
2556
|
|
|
2532
2557
|
/** State of navigation session */
|
|
@@ -2544,17 +2569,22 @@ export enum NavigationState {
|
|
|
2544
2569
|
/** Navigation session station type */
|
|
2545
2570
|
export type NavigationStation = {
|
|
2546
2571
|
/** The ID as string of the charging station */
|
|
2547
|
-
station_id
|
|
2572
|
+
station_id: Scalars["ID"];
|
|
2548
2573
|
/** GPS location of the charging station */
|
|
2549
|
-
station_location
|
|
2574
|
+
station_location: Point;
|
|
2550
2575
|
/** An array with all GPS locations of via points until the next charging station */
|
|
2551
|
-
via
|
|
2552
|
-
/** Estimated state of charge,
|
|
2553
|
-
estimated_state_of_charge
|
|
2576
|
+
via: Array<Point>;
|
|
2577
|
+
/** Estimated state of charge, at arrival on the next charging station */
|
|
2578
|
+
estimated_state_of_charge: Scalars["Float"];
|
|
2554
2579
|
/** Estimated consumption, in kWh, from last the known location until the next charging station */
|
|
2555
|
-
estimated_consumption
|
|
2580
|
+
estimated_consumption: Scalars["Float"];
|
|
2556
2581
|
/** Estimated duration, in seconds, from the last known location until the next charging station */
|
|
2557
|
-
estimated_duration
|
|
2582
|
+
estimated_duration: Scalars["Int"];
|
|
2583
|
+
};
|
|
2584
|
+
|
|
2585
|
+
/** Navigation session station type */
|
|
2586
|
+
export type NavigationStationestimated_state_of_chargeArgs = {
|
|
2587
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2558
2588
|
};
|
|
2559
2589
|
|
|
2560
2590
|
/** Input for the navigation update */
|
|
@@ -2571,12 +2601,12 @@ export type NavigationUpdateInput = {
|
|
|
2571
2601
|
export type NavigationUpdateLocationPropertiesInput = {
|
|
2572
2602
|
/** Current route leg index corresponding to a location */
|
|
2573
2603
|
route_leg: Scalars["Int"];
|
|
2574
|
-
/** Speed at a location
|
|
2575
|
-
speed?: Maybe<
|
|
2604
|
+
/** Speed at a location */
|
|
2605
|
+
speed?: Maybe<VehicleSpeedInput>;
|
|
2576
2606
|
/** UNIX timestamp at location, in seconds */
|
|
2577
2607
|
timestamp: Scalars["Int"];
|
|
2578
|
-
/**
|
|
2579
|
-
|
|
2608
|
+
/** Elevation information */
|
|
2609
|
+
elevation?: Maybe<ElevationInput>;
|
|
2580
2610
|
};
|
|
2581
2611
|
|
|
2582
2612
|
/** Input for the navigation update locations */
|
|
@@ -2780,7 +2810,7 @@ export type OCPIEnvironmentalImpact = {
|
|
|
2780
2810
|
/** The environmental impact category of this value. */
|
|
2781
2811
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2782
2812
|
/** Amount of this portion in g/kWh. */
|
|
2783
|
-
amount?: Maybe<Scalars["
|
|
2813
|
+
amount?: Maybe<Scalars["Float"]>;
|
|
2784
2814
|
};
|
|
2785
2815
|
|
|
2786
2816
|
/** Categories of environmental impact values. */
|
|
@@ -3445,11 +3475,11 @@ export type Query = {
|
|
|
3445
3475
|
tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
3446
3476
|
/** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
|
|
3447
3477
|
navigationMapping?: Maybe<Scalars["JSON"]>;
|
|
3448
|
-
/** [BETA] Get information about a vehicle by its ID */
|
|
3478
|
+
/** [BETA] Get information about a vehicle by its ID. */
|
|
3449
3479
|
vehicle?: Maybe<Vehicle>;
|
|
3450
3480
|
/** [BETA] Vehicle premium data provides even more information about your vehicle: tire pressure, prices, drivetrain data, and more. Please contact us for access to premium data. */
|
|
3451
3481
|
vehiclePremium?: Maybe<VehiclePremium>;
|
|
3452
|
-
/** [BETA] Get a full list of vehicles */
|
|
3482
|
+
/** [BETA] Get a full list of vehicles. */
|
|
3453
3483
|
vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
|
|
3454
3484
|
};
|
|
3455
3485
|
|
|
@@ -4367,7 +4397,7 @@ export type StateOfChargeInput = {
|
|
|
4367
4397
|
/** Value of the state of charge of the vehicle */
|
|
4368
4398
|
value: Scalars["Float"];
|
|
4369
4399
|
/** Type of the state of charge of the vehicle */
|
|
4370
|
-
type:
|
|
4400
|
+
type: StateOfChargeUnit;
|
|
4371
4401
|
/** Source of inputted data, defaults to 'manual' */
|
|
4372
4402
|
source?: Maybe<TelemetryInputSource>;
|
|
4373
4403
|
};
|
|
@@ -4375,11 +4405,11 @@ export type StateOfChargeInput = {
|
|
|
4375
4405
|
export enum StateOfChargeUnit {
|
|
4376
4406
|
/** Return the state of charge in kilometers */
|
|
4377
4407
|
KILOMETER = "kilometer",
|
|
4378
|
-
/** Return the
|
|
4408
|
+
/** Return the state of charge in miles */
|
|
4379
4409
|
MILE = "mile",
|
|
4380
|
-
/** Return the
|
|
4410
|
+
/** Return the state of charge in kilowatt hours */
|
|
4381
4411
|
KILOWATT_HOUR = "kilowatt_hour",
|
|
4382
|
-
/** Return the
|
|
4412
|
+
/** Return the state of charge as a percentage */
|
|
4383
4413
|
PERCENTAGE = "percentage"
|
|
4384
4414
|
}
|
|
4385
4415
|
|
|
@@ -4710,7 +4740,7 @@ export type Telemetrycharge_speedArgs = {
|
|
|
4710
4740
|
};
|
|
4711
4741
|
|
|
4712
4742
|
export type Telemetrycharge_totalArgs = {
|
|
4713
|
-
unit?: Maybe<
|
|
4743
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4714
4744
|
};
|
|
4715
4745
|
|
|
4716
4746
|
export type Telemetrytotal_occupant_weightArgs = {
|
|
@@ -4738,7 +4768,7 @@ export type TelemetrypowerArgs = {
|
|
|
4738
4768
|
};
|
|
4739
4769
|
|
|
4740
4770
|
export type Telemetrystate_of_chargeArgs = {
|
|
4741
|
-
unit?: Maybe<
|
|
4771
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4742
4772
|
};
|
|
4743
4773
|
|
|
4744
4774
|
export type Telemetrytire_pressureArgs = {
|
|
@@ -4858,90 +4888,96 @@ export type UpdateConnectedVehicleInput = {
|
|
|
4858
4888
|
label?: Maybe<Scalars["PlainString"]>;
|
|
4859
4889
|
};
|
|
4860
4890
|
|
|
4861
|
-
/** Output of a vehicle query */
|
|
4891
|
+
/** Output of a vehicle query. */
|
|
4862
4892
|
export type Vehicle = {
|
|
4863
|
-
/** Vehicles unique ID */
|
|
4893
|
+
/** Vehicles unique ID. */
|
|
4864
4894
|
id: Scalars["ID"];
|
|
4865
|
-
/** Naming of the vehicle */
|
|
4895
|
+
/** Naming of the vehicle. */
|
|
4866
4896
|
naming: VehicleNaming;
|
|
4867
|
-
/** Drivetrain of the vehicle */
|
|
4897
|
+
/** Drivetrain of the vehicle. */
|
|
4868
4898
|
drivetrain: VehicleDrivetrain;
|
|
4869
|
-
/** Available connectors for the vehicle */
|
|
4899
|
+
/** Available connectors for the vehicle. */
|
|
4870
4900
|
connectors: Array<VehicleConnector>;
|
|
4871
|
-
/** Adapters for the connectors of the vehicle */
|
|
4901
|
+
/** Adapters for the connectors of the vehicle. */
|
|
4872
4902
|
adapters: Array<VehicleConnector>;
|
|
4873
|
-
/** Battery of the vehicle */
|
|
4903
|
+
/** Battery of the vehicle. */
|
|
4874
4904
|
battery: VehicleBattery;
|
|
4875
|
-
/** Body of the vehicle */
|
|
4905
|
+
/** Body of the vehicle. */
|
|
4876
4906
|
body: VehicleBody;
|
|
4877
|
-
/** Availability of the vehicle */
|
|
4907
|
+
/** Availability of the vehicle. */
|
|
4878
4908
|
availability: VehicleAvailability;
|
|
4879
|
-
/** Performance of the vehicle */
|
|
4909
|
+
/** Performance of the vehicle. */
|
|
4880
4910
|
performance?: Maybe<VehiclePerformance>;
|
|
4881
|
-
/** Range of the vehicle */
|
|
4911
|
+
/** Range of the vehicle. */
|
|
4882
4912
|
range: VehicleRange;
|
|
4883
|
-
/** Media of the vehicle */
|
|
4913
|
+
/** Media of the vehicle. */
|
|
4884
4914
|
media: VehicleMedia;
|
|
4885
|
-
/** Routing of the vehicle */
|
|
4915
|
+
/** Routing of the vehicle. */
|
|
4886
4916
|
routing: VehicleRouting;
|
|
4887
|
-
/** Information about vehicle connectivity */
|
|
4917
|
+
/** Information about vehicle connectivity. */
|
|
4888
4918
|
connect: Connect;
|
|
4919
|
+
/** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
|
|
4920
|
+
region: Array<VehicleRegion>;
|
|
4921
|
+
/** Vehicle intended use. Can be passenger, cargo, or utility. */
|
|
4922
|
+
purpose: VehiclePurpose;
|
|
4923
|
+
/** Type of vehicle. */
|
|
4924
|
+
type: VehicleType;
|
|
4889
4925
|
};
|
|
4890
4926
|
|
|
4891
4927
|
export type VehicleAvailability = {
|
|
4892
|
-
/** Availability of the vehicle */
|
|
4928
|
+
/** Availability of the vehicle. */
|
|
4893
4929
|
status: VehicleAvailabilityStatus;
|
|
4894
4930
|
};
|
|
4895
4931
|
|
|
4896
|
-
/** Availability status of a vehicle */
|
|
4932
|
+
/** Availability status of a vehicle. */
|
|
4897
4933
|
export enum VehicleAvailabilityStatus {
|
|
4898
|
-
/** Vehicle no longer for sale in any market / region */
|
|
4934
|
+
/** Vehicle no longer for sale in any market / region. */
|
|
4899
4935
|
NO_LONGER_AVAILABLE = "no_longer_available",
|
|
4900
|
-
/** Vehicle currently for sale in at least one market / region */
|
|
4936
|
+
/** Vehicle currently for sale in at least one market / region. */
|
|
4901
4937
|
AVAILABLE = "available",
|
|
4902
|
-
/** Vehicle expected in market from Date_From (estimated), pre-order open */
|
|
4938
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order open. */
|
|
4903
4939
|
RELEASE_DATE_ANNOUNCED_PREORDERABLE = "release_date_announced_preorderable",
|
|
4904
|
-
/** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open */
|
|
4940
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open. */
|
|
4905
4941
|
RELEASE_DATE_ANNOUNCED = "release_date_announced",
|
|
4906
|
-
/** Concept vehicle, nearing production and/or confirmed, pre-order open */
|
|
4942
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order open. */
|
|
4907
4943
|
CONCEPT_VEHICLE_PREORDERABLE = "concept_vehicle_preorderable",
|
|
4908
|
-
/** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open */
|
|
4944
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open. */
|
|
4909
4945
|
CONCEPT_VEHICLE = "concept_vehicle",
|
|
4910
|
-
/** Concept vehicle, not close to production and/or unconfirmed, pre-order open */
|
|
4946
|
+
/** Concept vehicle, not close to production and/or unconfirmed, pre-order open. */
|
|
4911
4947
|
CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE = "concept_vehicle_release_date_tba_preorderable",
|
|
4912
|
-
/** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown */
|
|
4948
|
+
/** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown. */
|
|
4913
4949
|
CONCEPT_VEHICLE_RELEASE_DATE_TBA = "concept_vehicle_release_date_tba",
|
|
4914
|
-
/** Status uncertain, introduction date and/or pricing unclear */
|
|
4950
|
+
/** Status uncertain, introduction date and/or pricing unclear. */
|
|
4915
4951
|
UNCERTAIN = "uncertain"
|
|
4916
4952
|
}
|
|
4917
4953
|
|
|
4918
4954
|
export type VehicleBattery = {
|
|
4919
|
-
/** Full battery capacity in kWh */
|
|
4955
|
+
/** Full battery capacity in kWh. */
|
|
4920
4956
|
full_kwh: Scalars["Float"];
|
|
4921
|
-
/** Usable battery capacity in kWh */
|
|
4957
|
+
/** Usable battery capacity in kWh. */
|
|
4922
4958
|
usable_kwh: Scalars["Float"];
|
|
4923
4959
|
};
|
|
4924
4960
|
|
|
4925
|
-
/** Battery field estimated */
|
|
4961
|
+
/** Battery field estimated. */
|
|
4926
4962
|
export enum VehicleBatteryFieldEstimations {
|
|
4927
|
-
/** Both of the battery kWh fields are estimations */
|
|
4963
|
+
/** Both of the battery kWh fields are estimations. */
|
|
4928
4964
|
B = "B",
|
|
4929
|
-
/** full_kwh field is estimated */
|
|
4965
|
+
/** full_kwh field is estimated. */
|
|
4930
4966
|
F = "F",
|
|
4931
|
-
/** None of the battery kWh fields are estimations */
|
|
4967
|
+
/** None of the battery kWh fields are estimations. */
|
|
4932
4968
|
N = "N",
|
|
4933
|
-
/** usable_kwh field is estimated */
|
|
4969
|
+
/** usable_kwh field is estimated. */
|
|
4934
4970
|
U = "U"
|
|
4935
4971
|
}
|
|
4936
4972
|
|
|
4937
4973
|
export type VehicleBody = {
|
|
4938
|
-
/** Width with folded mirrors, default in mm */
|
|
4974
|
+
/** Width with folded mirrors, default in mm. */
|
|
4939
4975
|
width: Scalars["Float"];
|
|
4940
|
-
/** Height (average height for adjustable suspensions), default in mm */
|
|
4976
|
+
/** Height (average height for adjustable suspensions), default in mm. */
|
|
4941
4977
|
height: Scalars["Float"];
|
|
4942
|
-
/** Weight (unladen), default in kg */
|
|
4978
|
+
/** Weight (unladen), default in kg. */
|
|
4943
4979
|
weight: VehicleBodyWeight;
|
|
4944
|
-
/** Number of seats */
|
|
4980
|
+
/** Number of seats. */
|
|
4945
4981
|
seats: Scalars["Int"];
|
|
4946
4982
|
};
|
|
4947
4983
|
|
|
@@ -4954,11 +4990,11 @@ export type VehicleBodyheightArgs = {
|
|
|
4954
4990
|
};
|
|
4955
4991
|
|
|
4956
4992
|
export type VehicleBodyWeight = {
|
|
4957
|
-
/** Minimum weight, default in kg */
|
|
4993
|
+
/** Minimum weight, default in kg. */
|
|
4958
4994
|
minimum?: Maybe<Scalars["Float"]>;
|
|
4959
|
-
/** Nominal weight, default in kg */
|
|
4960
|
-
nominal
|
|
4961
|
-
/** Maximal weight, default in kg */
|
|
4995
|
+
/** Nominal weight, default in kg. */
|
|
4996
|
+
nominal?: Maybe<Scalars["Float"]>;
|
|
4997
|
+
/** Maximal weight, default in kg. */
|
|
4962
4998
|
maximal?: Maybe<Scalars["Float"]>;
|
|
4963
4999
|
};
|
|
4964
5000
|
|
|
@@ -4974,30 +5010,30 @@ export type VehicleBodyWeightmaximalArgs = {
|
|
|
4974
5010
|
unit?: Maybe<WeightUnit>;
|
|
4975
5011
|
};
|
|
4976
5012
|
|
|
4977
|
-
/** Vehicle plug model */
|
|
5013
|
+
/** Vehicle plug model. */
|
|
4978
5014
|
export type VehicleConnector = {
|
|
4979
|
-
/** Connector type, known as connector standard in OCPI */
|
|
5015
|
+
/** Connector type, known as connector standard in OCPI. */
|
|
4980
5016
|
standard: ConnectorType;
|
|
4981
|
-
/** Usable electric power in kW */
|
|
5017
|
+
/** Usable electric power in kW. */
|
|
4982
5018
|
power: Scalars["Float"];
|
|
4983
|
-
/** Maximum electric power in kW */
|
|
5019
|
+
/** Maximum electric power in kW. */
|
|
4984
5020
|
max_electric_power: Scalars["Float"];
|
|
4985
|
-
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
|
|
5021
|
+
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */
|
|
4986
5022
|
time: Scalars["Int"];
|
|
4987
|
-
/** Charging speed, default in kmph */
|
|
5023
|
+
/** Charging speed, default in kmph. */
|
|
4988
5024
|
speed: Scalars["Float"];
|
|
4989
5025
|
};
|
|
4990
5026
|
|
|
4991
|
-
/** Vehicle plug model */
|
|
5027
|
+
/** Vehicle plug model. */
|
|
4992
5028
|
export type VehicleConnectorspeedArgs = {
|
|
4993
5029
|
unit?: Maybe<SpeedUnit>;
|
|
4994
5030
|
};
|
|
4995
5031
|
|
|
4996
|
-
/** The consumption of the vehicle */
|
|
5032
|
+
/** The consumption of the vehicle. */
|
|
4997
5033
|
export type VehicleConsumptionInput = {
|
|
4998
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
5034
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
4999
5035
|
worst?: Maybe<Scalars["Float"]>;
|
|
5000
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
5036
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
5001
5037
|
best?: Maybe<Scalars["Float"]>;
|
|
5002
5038
|
};
|
|
5003
5039
|
|
|
@@ -5013,207 +5049,228 @@ export type VehicleData = {
|
|
|
5013
5049
|
};
|
|
5014
5050
|
|
|
5015
5051
|
export enum VehicleDataProvider {
|
|
5016
|
-
/** Internal data provider */
|
|
5052
|
+
/** Internal data provider. */
|
|
5017
5053
|
CHARGETRIP = "chargetrip",
|
|
5018
|
-
/** EV database data provider */
|
|
5054
|
+
/** EV database data provider. */
|
|
5019
5055
|
EVDATABASE = "evdatabase"
|
|
5020
5056
|
}
|
|
5021
5057
|
|
|
5022
5058
|
export type VehicleDrivetrain = {
|
|
5023
|
-
/** Type of drivetrain */
|
|
5059
|
+
/** Type of drivetrain. */
|
|
5024
5060
|
type: VehicleDrivetrainType;
|
|
5025
5061
|
};
|
|
5026
5062
|
|
|
5027
|
-
/** Drivetrain */
|
|
5063
|
+
/** Drivetrain. */
|
|
5028
5064
|
export enum VehicleDrivetrainType {
|
|
5029
|
-
/** Battery Electric Vehicle */
|
|
5065
|
+
/** Battery Electric Vehicle. */
|
|
5030
5066
|
BEV = "BEV",
|
|
5031
|
-
/** Extended Range Electric Vehicle */
|
|
5067
|
+
/** Extended Range Electric Vehicle. */
|
|
5032
5068
|
EREV = "EREV",
|
|
5033
|
-
/** Hybrid Electric Vehicle */
|
|
5069
|
+
/** Hybrid Electric Vehicle. */
|
|
5034
5070
|
HEV = "HEV",
|
|
5035
|
-
/** Plug-in Hybrid Electric Vehicle */
|
|
5071
|
+
/** Plug-in Hybrid Electric Vehicle. */
|
|
5036
5072
|
PHEV = "PHEV"
|
|
5037
5073
|
}
|
|
5038
5074
|
|
|
5039
|
-
/** Fuel type */
|
|
5075
|
+
/** Fuel type. */
|
|
5040
5076
|
export enum VehicleFuel {
|
|
5041
|
-
/** ICE engine available. Uses diesel */
|
|
5077
|
+
/** ICE engine available. Uses diesel. */
|
|
5042
5078
|
D = "D",
|
|
5043
|
-
/** Electricity only. Full electric vehicle */
|
|
5079
|
+
/** Electricity only. Full electric vehicle. */
|
|
5044
5080
|
E = "E",
|
|
5045
|
-
/** ICE engine available. Uses petrol */
|
|
5081
|
+
/** ICE engine available. Uses petrol. */
|
|
5046
5082
|
P = "P"
|
|
5047
5083
|
}
|
|
5048
5084
|
|
|
5049
5085
|
export type VehicleImage = {
|
|
5050
|
-
/** Image id */
|
|
5086
|
+
/** Image id. */
|
|
5051
5087
|
id?: Maybe<Scalars["ID"]>;
|
|
5052
|
-
/** Image type */
|
|
5088
|
+
/** Image type. */
|
|
5053
5089
|
type: VehicleImageType;
|
|
5054
|
-
/** Full path URL of a large image */
|
|
5090
|
+
/** Full path URL of a large image. */
|
|
5055
5091
|
url: Scalars["String"];
|
|
5056
|
-
/** Height of a large image in pixels */
|
|
5092
|
+
/** Height of a large image in pixels. */
|
|
5057
5093
|
height: Scalars["Int"];
|
|
5058
|
-
/** Width of a large image in pixels */
|
|
5094
|
+
/** Width of a large image in pixels. */
|
|
5059
5095
|
width: Scalars["Int"];
|
|
5060
|
-
/** Full path URL of a thumbnail image */
|
|
5096
|
+
/** Full path URL of a thumbnail image. */
|
|
5061
5097
|
thumbnail_url: Scalars["String"];
|
|
5062
|
-
/** Height of a thumbnail image in pixels */
|
|
5098
|
+
/** Height of a thumbnail image in pixels. */
|
|
5063
5099
|
thumbnail_height: Scalars["Int"];
|
|
5064
|
-
/** Width of a thumbnail image in pixels */
|
|
5100
|
+
/** Width of a thumbnail image in pixels. */
|
|
5065
5101
|
thumbnail_width: Scalars["Int"];
|
|
5066
5102
|
};
|
|
5067
5103
|
|
|
5068
|
-
/** Available types of images which can be found for a vehicle. Each type has specific image sizes */
|
|
5104
|
+
/** Available types of images which can be found for a vehicle. Each type has specific image sizes. */
|
|
5069
5105
|
export enum VehicleImageType {
|
|
5070
|
-
/** Images provided by a Vehicle Datasource */
|
|
5106
|
+
/** Images provided by a Vehicle Datasource. */
|
|
5071
5107
|
PROVIDER = "provider",
|
|
5072
|
-
/** Full-sized image at 1536x864 px */
|
|
5108
|
+
/** Full-sized image at 1536x864 px. */
|
|
5073
5109
|
IMAGE = "image",
|
|
5074
|
-
/** Thumbnail of a full-sized image at 131x72 px */
|
|
5110
|
+
/** Thumbnail of a full-sized image at 131x72 px. */
|
|
5075
5111
|
IMAGE_THUMBNAIL = "image_thumbnail",
|
|
5076
|
-
/**
|
|
5112
|
+
/** Premium image. */
|
|
5113
|
+
IMAGE_PREMIUM = "image_premium",
|
|
5114
|
+
/** Thumbnail of a premium image. */
|
|
5115
|
+
PREMIUM_IMAGE_THUMBNAIL = "premium_image_thumbnail",
|
|
5116
|
+
/** Full-sized brand (maker) logo at 768x432 px. */
|
|
5077
5117
|
BRAND = "brand",
|
|
5078
|
-
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
5079
|
-
BRAND_THUMBNAIL = "brand_thumbnail"
|
|
5118
|
+
/** Thumbnail of a full-sized brand logo at 56x24 px. */
|
|
5119
|
+
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
5120
|
+
/** Placeholder image at 1536x864 px. */
|
|
5121
|
+
PLACEHOLDER = "placeholder"
|
|
5080
5122
|
}
|
|
5081
5123
|
|
|
5082
|
-
/** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
5124
|
+
/** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system. */
|
|
5083
5125
|
export enum VehicleImageTypeUploadable {
|
|
5084
|
-
/**
|
|
5085
|
-
IMAGE = "image"
|
|
5126
|
+
/** Freemium vehicle image. */
|
|
5127
|
+
IMAGE = "image",
|
|
5128
|
+
/** Premium vehicle image. */
|
|
5129
|
+
IMAGE_PREMIUM = "image_premium"
|
|
5086
5130
|
}
|
|
5087
5131
|
|
|
5088
|
-
/** The output element of the vehicleList query */
|
|
5132
|
+
/** The output element of the vehicleList query. */
|
|
5089
5133
|
export type VehicleList = {
|
|
5090
|
-
/** Vehicles unique ID */
|
|
5134
|
+
/** Vehicles unique ID. */
|
|
5091
5135
|
id: Scalars["ID"];
|
|
5092
|
-
/** Naming of the vehicle */
|
|
5136
|
+
/** Naming of the vehicle. */
|
|
5093
5137
|
naming: VehicleListNaming;
|
|
5094
|
-
/** Drivetrain of the vehicle */
|
|
5138
|
+
/** Drivetrain of the vehicle. */
|
|
5095
5139
|
drivetrain: VehicleDrivetrain;
|
|
5096
|
-
/** Connectors available for the vehicle */
|
|
5140
|
+
/** Connectors available for the vehicle. */
|
|
5097
5141
|
connectors: Array<VehicleConnector>;
|
|
5098
|
-
/** Adapters available for the vehicle */
|
|
5142
|
+
/** Adapters available for the vehicle. */
|
|
5099
5143
|
adapters: Array<VehicleConnector>;
|
|
5100
|
-
/** Battery of the vehicle */
|
|
5144
|
+
/** Battery of the vehicle. */
|
|
5101
5145
|
battery: VehicleListBattery;
|
|
5102
|
-
/** Body of the vehicle */
|
|
5146
|
+
/** Body of the vehicle. */
|
|
5103
5147
|
body: VehicleListBody;
|
|
5104
|
-
/** Availability of the vehicle */
|
|
5148
|
+
/** Availability of the vehicle. */
|
|
5105
5149
|
availability: VehicleListAvailability;
|
|
5106
|
-
/** Range of the vehicle */
|
|
5150
|
+
/** Range of the vehicle. */
|
|
5107
5151
|
range: VehicleListRange;
|
|
5108
|
-
/** Media of the vehicle */
|
|
5152
|
+
/** Media of the vehicle. */
|
|
5109
5153
|
media: VehicleListMedia;
|
|
5110
|
-
/** Routing of the vehicle */
|
|
5154
|
+
/** Routing of the vehicle. */
|
|
5111
5155
|
routing: VehicleListRouting;
|
|
5112
|
-
/** Information about vehicle connectivity */
|
|
5156
|
+
/** Information about vehicle connectivity. */
|
|
5113
5157
|
connect: Connect;
|
|
5158
|
+
/** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
|
|
5159
|
+
region: Array<VehicleRegion>;
|
|
5160
|
+
/** Vehicle intended use. Can be passenger, cargo, or utility. */
|
|
5161
|
+
purpose: VehiclePurpose;
|
|
5162
|
+
/** Type of vehicle. */
|
|
5163
|
+
type: VehicleType;
|
|
5114
5164
|
};
|
|
5115
5165
|
|
|
5116
5166
|
export type VehicleListAvailability = {
|
|
5117
|
-
/** Availability of the vehicle */
|
|
5167
|
+
/** Availability of the vehicle. */
|
|
5118
5168
|
status: VehicleAvailabilityStatus;
|
|
5119
5169
|
};
|
|
5120
5170
|
|
|
5121
5171
|
export type VehicleListBattery = {
|
|
5122
|
-
/** Full battery capacity in kWh */
|
|
5172
|
+
/** Full battery capacity in kWh. */
|
|
5123
5173
|
full_kwh: Scalars["Float"];
|
|
5124
|
-
/** Usable battery capacity in kWh */
|
|
5174
|
+
/** Usable battery capacity in kWh. */
|
|
5125
5175
|
usable_kwh: Scalars["Float"];
|
|
5126
5176
|
};
|
|
5127
5177
|
|
|
5128
5178
|
export type VehicleListBody = {
|
|
5129
|
-
/** Number of seats in a vehicle */
|
|
5179
|
+
/** Number of seats in a vehicle. */
|
|
5130
5180
|
seats: Scalars["Int"];
|
|
5131
5181
|
};
|
|
5132
5182
|
|
|
5133
5183
|
export type VehicleListFilter = {
|
|
5134
|
-
/** Availability of a vehicle */
|
|
5135
|
-
availability?: Maybe<Array<
|
|
5136
|
-
/** Drivetrain type of a vehicle */
|
|
5137
|
-
drivetrain?: Maybe<VehicleDrivetrainType
|
|
5138
|
-
/** Information about vehicle connectivity */
|
|
5184
|
+
/** Availability of a vehicle. */
|
|
5185
|
+
availability?: Maybe<Array<VehicleAvailabilityStatus>>;
|
|
5186
|
+
/** Drivetrain type of a vehicle. */
|
|
5187
|
+
drivetrain?: Maybe<Array<VehicleDrivetrainType>>;
|
|
5188
|
+
/** Information about vehicle connectivity. */
|
|
5139
5189
|
connect?: Maybe<ConnectFilter>;
|
|
5190
|
+
/** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
|
|
5191
|
+
region?: Maybe<Array<VehicleRegion>>;
|
|
5192
|
+
/** Vehicle intended use. Can be passenger, cargo, or utility. */
|
|
5193
|
+
purpose?: Maybe<Array<VehiclePurpose>>;
|
|
5194
|
+
/** Type of vehicle. */
|
|
5195
|
+
type?: Maybe<Array<VehicleType>>;
|
|
5140
5196
|
};
|
|
5141
5197
|
|
|
5142
5198
|
export type VehicleListMedia = {
|
|
5143
|
-
/**
|
|
5199
|
+
/** Featured image of the vehicle from a 45-degree angle. */
|
|
5144
5200
|
image: VehicleImage;
|
|
5145
|
-
/** Latest maker logo of the vehicle */
|
|
5201
|
+
/** Latest maker logo of the vehicle. */
|
|
5146
5202
|
brand: VehicleImage;
|
|
5147
|
-
/** Latest video of the vehicle */
|
|
5203
|
+
/** Latest video of the vehicle. */
|
|
5148
5204
|
video?: Maybe<VehicleVideo>;
|
|
5149
5205
|
};
|
|
5150
5206
|
|
|
5151
5207
|
export type VehicleListNaming = {
|
|
5152
|
-
/** Vehicle manufacturer name */
|
|
5208
|
+
/** Vehicle manufacturer name. */
|
|
5153
5209
|
make: Scalars["String"];
|
|
5154
|
-
/** Vehicle model name */
|
|
5210
|
+
/** Vehicle model name. */
|
|
5155
5211
|
model: Scalars["String"];
|
|
5156
|
-
/** Version, edition or submodel of the vehicle */
|
|
5212
|
+
/** Version, edition or submodel of the vehicle. */
|
|
5157
5213
|
version?: Maybe<Scalars["String"]>;
|
|
5158
|
-
/** Another submodel level of the vehicle */
|
|
5214
|
+
/** Another submodel level of the vehicle. */
|
|
5159
5215
|
edition?: Maybe<Scalars["String"]>;
|
|
5160
|
-
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
5216
|
+
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */
|
|
5161
5217
|
chargetrip_version: Scalars["String"];
|
|
5162
5218
|
};
|
|
5163
5219
|
|
|
5164
5220
|
export type VehicleListRange = {
|
|
5165
5221
|
/**
|
|
5166
|
-
*
|
|
5167
|
-
*
|
|
5222
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
5223
|
+
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
5224
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
5168
5225
|
*/
|
|
5169
5226
|
chargetrip_range: ChargetripRange;
|
|
5170
5227
|
};
|
|
5171
5228
|
|
|
5172
5229
|
export type VehicleListRouting = {
|
|
5173
|
-
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
5230
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
|
|
5174
5231
|
fast_charging_support: Scalars["Boolean"];
|
|
5175
5232
|
};
|
|
5176
5233
|
|
|
5177
5234
|
export type VehicleMedia = {
|
|
5178
|
-
/**
|
|
5235
|
+
/** Featured image of the vehicle from a 45-degree angle. */
|
|
5179
5236
|
image: VehicleImage;
|
|
5180
|
-
/** Latest maker logo */
|
|
5237
|
+
/** Latest maker logo. */
|
|
5181
5238
|
brand: VehicleImage;
|
|
5182
|
-
/** All images */
|
|
5239
|
+
/** All images of the vehicle. */
|
|
5183
5240
|
image_list: Array<VehicleImage>;
|
|
5184
|
-
/** Latest video */
|
|
5241
|
+
/** Latest video. */
|
|
5185
5242
|
video?: Maybe<VehicleVideo>;
|
|
5186
|
-
/** All videos */
|
|
5243
|
+
/** All videos of the vehicle. */
|
|
5187
5244
|
video_list?: Maybe<Array<VehicleVideo>>;
|
|
5188
5245
|
};
|
|
5189
5246
|
|
|
5190
|
-
/** Mode (state) of the current production */
|
|
5247
|
+
/** Mode (state) of the current production. */
|
|
5191
5248
|
export enum VehicleMode {
|
|
5192
|
-
/** Old vehicle that is no longer manufactured */
|
|
5249
|
+
/** Old vehicle that is no longer manufactured. */
|
|
5193
5250
|
INDEX_ONLY = "index_only",
|
|
5194
|
-
/** Vehicle is in production and has been released */
|
|
5251
|
+
/** Vehicle is in production and has been released. */
|
|
5195
5252
|
PRODUCTION = "production",
|
|
5196
|
-
/** Future releases of a vehicle, a concept of the vehicle, specs may change over time */
|
|
5253
|
+
/** Future releases of a vehicle, a concept of the vehicle, specs may change over time. */
|
|
5197
5254
|
CONCEPT = "concept"
|
|
5198
5255
|
}
|
|
5199
5256
|
|
|
5200
5257
|
export type VehicleNaming = {
|
|
5201
|
-
/** Vehicle manufacturer name */
|
|
5258
|
+
/** Vehicle manufacturer name. */
|
|
5202
5259
|
make: Scalars["String"];
|
|
5203
|
-
/** Vehicle model name */
|
|
5260
|
+
/** Vehicle model name. */
|
|
5204
5261
|
model: Scalars["String"];
|
|
5205
|
-
/** Version, edition or submodel of the vehicle */
|
|
5262
|
+
/** Version, edition or submodel of the vehicle. */
|
|
5206
5263
|
version?: Maybe<Scalars["String"]>;
|
|
5207
|
-
/** Another submodel level of the vehicle */
|
|
5264
|
+
/** Another submodel level of the vehicle. */
|
|
5208
5265
|
edition?: Maybe<Scalars["String"]>;
|
|
5209
|
-
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
5266
|
+
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */
|
|
5210
5267
|
chargetrip_version: Scalars["String"];
|
|
5211
5268
|
};
|
|
5212
5269
|
|
|
5213
5270
|
export type VehiclePerformance = {
|
|
5214
|
-
/** Acceleration in seconds, default in kmph to 100 */
|
|
5271
|
+
/** Acceleration in seconds, default in kmph to 100. */
|
|
5215
5272
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
5216
|
-
/** Top speed of the vehicle, default in kmph */
|
|
5273
|
+
/** Top speed of the vehicle, default in kmph. */
|
|
5217
5274
|
top_speed?: Maybe<Scalars["Float"]>;
|
|
5218
5275
|
};
|
|
5219
5276
|
|
|
@@ -5225,146 +5282,152 @@ export type VehiclePerformancetop_speedArgs = {
|
|
|
5225
5282
|
unit?: Maybe<SpeedUnit>;
|
|
5226
5283
|
};
|
|
5227
5284
|
|
|
5228
|
-
/** The output element of the vehiclePremium query */
|
|
5285
|
+
/** The output element of the vehiclePremium query. */
|
|
5229
5286
|
export type VehiclePremium = {
|
|
5230
|
-
/** Vehicles unique ID */
|
|
5287
|
+
/** Vehicles unique ID. */
|
|
5231
5288
|
id: Scalars["ID"];
|
|
5232
|
-
/** Internal ID of the successor vehicle trim */
|
|
5289
|
+
/** Internal ID of the successor vehicle trim. */
|
|
5233
5290
|
succesor_id?: Maybe<Scalars["String"]>;
|
|
5234
|
-
/** Naming of the vehicle */
|
|
5291
|
+
/** Naming of the vehicle. */
|
|
5235
5292
|
naming: VehiclePremiumNaming;
|
|
5236
|
-
/** Connectors available for the vehicle */
|
|
5293
|
+
/** Connectors available for the vehicle. */
|
|
5237
5294
|
connectors: Array<VehicleConnector>;
|
|
5238
|
-
/** Charge details */
|
|
5295
|
+
/** Charge details. */
|
|
5239
5296
|
charge: VehiclePremiumCharge;
|
|
5240
|
-
/** Fast charge details */
|
|
5297
|
+
/** Fast charge details. */
|
|
5241
5298
|
fast_charge: VehiclePremiumFastCharge;
|
|
5242
|
-
/** Adapters of connectors available for a connectors of the vehicle */
|
|
5299
|
+
/** Adapters of connectors available for a connectors of the vehicle. */
|
|
5243
5300
|
adapters: Array<VehicleConnector>;
|
|
5244
|
-
/** Battery of the vehicle */
|
|
5301
|
+
/** Battery of the vehicle. */
|
|
5245
5302
|
battery: VehiclePremiumBattery;
|
|
5246
|
-
/** Body of the vehicle */
|
|
5303
|
+
/** Body of the vehicle. */
|
|
5247
5304
|
body: VehiclePremiumBody;
|
|
5248
|
-
/** Availability of the vehicle */
|
|
5305
|
+
/** Availability of the vehicle. */
|
|
5249
5306
|
availability: VehiclePremiumAvailability;
|
|
5250
|
-
/** Pricing of the vehicle */
|
|
5307
|
+
/** Pricing of the vehicle. */
|
|
5251
5308
|
price: VehiclePremiumPrice;
|
|
5252
|
-
/** Drivetrain of the vehicle */
|
|
5309
|
+
/** Drivetrain of the vehicle. */
|
|
5253
5310
|
drivetrain: VehiclePremiumDrivetrain;
|
|
5254
|
-
/** Performance of the vehicle */
|
|
5311
|
+
/** Performance of the vehicle. */
|
|
5255
5312
|
performance?: Maybe<VehiclePremiumPerformance>;
|
|
5256
|
-
/** Range of the vehicle */
|
|
5313
|
+
/** Range of the vehicle. */
|
|
5257
5314
|
range: VehiclePremiumRange;
|
|
5258
|
-
/** Efficiency of the vehicle */
|
|
5315
|
+
/** Efficiency of the vehicle. */
|
|
5259
5316
|
efficiency: VehiclePremiumEfficiency;
|
|
5260
|
-
/** Safety of the vehicle */
|
|
5317
|
+
/** Safety of the vehicle. */
|
|
5261
5318
|
safety?: Maybe<VehiclePremiumSafety>;
|
|
5262
|
-
/** Media of the vehicle */
|
|
5319
|
+
/** Media of the vehicle. */
|
|
5263
5320
|
media: VehiclePremiumMedia;
|
|
5264
|
-
/** Routing of the vehicle */
|
|
5321
|
+
/** Routing of the vehicle. */
|
|
5265
5322
|
routing: VehiclePremiumRouting;
|
|
5266
|
-
/** Information about vehicle connectivity */
|
|
5323
|
+
/** Information about vehicle connectivity. */
|
|
5267
5324
|
connect: Connect;
|
|
5325
|
+
/** Regions in which the vehicle is available. Based on the continent code (CC) standard. */
|
|
5326
|
+
region: Array<VehicleRegion>;
|
|
5327
|
+
/** Vehicle intended use. Can be passenger, cargo, or utility. */
|
|
5328
|
+
purpose: VehiclePurpose;
|
|
5329
|
+
/** Type of vehicle. */
|
|
5330
|
+
type: VehicleType;
|
|
5268
5331
|
};
|
|
5269
5332
|
|
|
5270
5333
|
export type VehiclePremiumAvailability = {
|
|
5271
|
-
/** Availability of the vehicle */
|
|
5334
|
+
/** Availability of the vehicle. */
|
|
5272
5335
|
status: VehicleAvailabilityStatus;
|
|
5273
|
-
/** Date of introduction, mm-yyyy */
|
|
5336
|
+
/** Date of introduction, mm-yyyy. */
|
|
5274
5337
|
date_from?: Maybe<Scalars["String"]>;
|
|
5275
|
-
/** Indicates if date from field is estimated */
|
|
5338
|
+
/** Indicates if date from field is estimated. */
|
|
5276
5339
|
date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5277
|
-
/** Date last available, mm-yyyy */
|
|
5340
|
+
/** Date last available, mm-yyyy. */
|
|
5278
5341
|
date_to?: Maybe<Scalars["String"]>;
|
|
5279
5342
|
};
|
|
5280
5343
|
|
|
5281
5344
|
export type VehiclePremiumBattery = {
|
|
5282
|
-
/** Usable battery capacity in kWh */
|
|
5345
|
+
/** Usable battery capacity in kWh. */
|
|
5283
5346
|
usable_kwh: Scalars["Float"];
|
|
5284
|
-
/** Full battery capacity in kWh */
|
|
5347
|
+
/** Full battery capacity in kWh. */
|
|
5285
5348
|
full_kwh: Scalars["Float"];
|
|
5286
|
-
/** Indicates which battery fields are estimated */
|
|
5349
|
+
/** Indicates which battery fields are estimated. */
|
|
5287
5350
|
estimated_fields?: Maybe<VehicleBatteryFieldEstimations>;
|
|
5288
|
-
/** Battery thermal management system (active/passive, air/liquid) */
|
|
5351
|
+
/** Battery thermal management system (active/passive, air/liquid). */
|
|
5289
5352
|
thermal_management_system?: Maybe<Scalars["String"]>;
|
|
5290
|
-
/** Duration of battery warranty */
|
|
5353
|
+
/** Duration of battery warranty. */
|
|
5291
5354
|
warranty_period?: Maybe<Scalars["Float"]>;
|
|
5292
|
-
/** Mileage of battery warranty */
|
|
5355
|
+
/** Mileage of battery warranty. */
|
|
5293
5356
|
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
5294
|
-
/** Chemistry of the battery */
|
|
5357
|
+
/** Chemistry of the battery. */
|
|
5295
5358
|
chemistry?: Maybe<Scalars["String"]>;
|
|
5296
|
-
/** Manufacturer of the battery */
|
|
5359
|
+
/** Manufacturer of the battery. */
|
|
5297
5360
|
manufacturer?: Maybe<Scalars["String"]>;
|
|
5298
|
-
/** Number of battery modules */
|
|
5361
|
+
/** Number of battery modules. */
|
|
5299
5362
|
modules?: Maybe<Scalars["Float"]>;
|
|
5300
|
-
/** Number of cells in the battery pack, can include configuration (s = serial, p = parallel) */
|
|
5363
|
+
/** Number of cells in the battery pack, can include configuration (s = serial, p = parallel). */
|
|
5301
5364
|
cells?: Maybe<Scalars["String"]>;
|
|
5302
|
-
/** Weight of the battery pack */
|
|
5365
|
+
/** Weight of the battery pack. */
|
|
5303
5366
|
weight?: Maybe<Scalars["Float"]>;
|
|
5304
|
-
/** Nominal voltage of battery */
|
|
5367
|
+
/** Nominal voltage of battery. */
|
|
5305
5368
|
nominal_voltage?: Maybe<Scalars["Float"]>;
|
|
5306
5369
|
};
|
|
5307
5370
|
|
|
5308
5371
|
export type VehiclePremiumBody = {
|
|
5309
|
-
/** Length, default in mm */
|
|
5372
|
+
/** Length, default in mm. */
|
|
5310
5373
|
length?: Maybe<Scalars["Float"]>;
|
|
5311
|
-
/** Width with folded mirrors, default in mm */
|
|
5374
|
+
/** Width with folded mirrors, default in mm. */
|
|
5312
5375
|
width: Scalars["Float"];
|
|
5313
|
-
/** Width of vehicle including mirrors, default in mm */
|
|
5376
|
+
/** Width of vehicle including mirrors, default in mm. */
|
|
5314
5377
|
full_width?: Maybe<Scalars["Float"]>;
|
|
5315
|
-
/** Height (average height for adjustable suspensions), default in mm */
|
|
5378
|
+
/** Height (average height for adjustable suspensions), default in mm. */
|
|
5316
5379
|
height: Scalars["Float"];
|
|
5317
|
-
/** Indicates if length/width/height fields are estimations */
|
|
5380
|
+
/** Indicates if length/width/height fields are estimations. */
|
|
5318
5381
|
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5319
|
-
/** Wheelbase, default in mm */
|
|
5382
|
+
/** Wheelbase, default in mm. */
|
|
5320
5383
|
wheelbase?: Maybe<Scalars["Float"]>;
|
|
5321
|
-
/** Indicates if wheelbase field is estimated */
|
|
5384
|
+
/** Indicates if wheelbase field is estimated. */
|
|
5322
5385
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5323
|
-
/** Weight (unladen EU) */
|
|
5386
|
+
/** Weight (unladen EU). */
|
|
5324
5387
|
weight: VehicleBodyWeight;
|
|
5325
|
-
/** Maximum allowed vehicle weight with payload */
|
|
5388
|
+
/** Maximum allowed vehicle weight with payload. */
|
|
5326
5389
|
weight_gvwr?: Maybe<VehicleBodyWeight>;
|
|
5327
|
-
/** Maximum allowed vehicle and trailer weight with payload */
|
|
5390
|
+
/** Maximum allowed vehicle and trailer weight with payload. */
|
|
5328
5391
|
weight_gtw?: Maybe<VehicleBodyWeight>;
|
|
5329
|
-
/** Allowed payload weight */
|
|
5392
|
+
/** Allowed payload weight. */
|
|
5330
5393
|
weight_payload?: Maybe<VehicleBodyWeight>;
|
|
5331
|
-
/** Indicates if weight field is estimated */
|
|
5394
|
+
/** Indicates if weight field is estimated. */
|
|
5332
5395
|
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5333
|
-
/** Maximum payload allowed for the vehicle, default in kg */
|
|
5396
|
+
/** Maximum payload allowed for the vehicle, default in kg. */
|
|
5334
5397
|
weight_max_payload?: Maybe<Scalars["Float"]>;
|
|
5335
|
-
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg */
|
|
5398
|
+
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg. */
|
|
5336
5399
|
max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
|
|
5337
|
-
/** Standard luggage capacity, default in l */
|
|
5400
|
+
/** Standard luggage capacity, default in l. */
|
|
5338
5401
|
boot_capacity?: Maybe<Scalars["Float"]>;
|
|
5339
|
-
/** Storage capacity of front trunk/under the hood (frunk), default in l */
|
|
5402
|
+
/** Storage capacity of front trunk/under the hood (frunk), default in l. */
|
|
5340
5403
|
boot_front_capacity?: Maybe<Scalars["Float"]>;
|
|
5341
|
-
/** Maximum luggage capacity, default in l */
|
|
5404
|
+
/** Maximum luggage capacity, default in l. */
|
|
5342
5405
|
boot_capacity_max?: Maybe<Scalars["Float"]>;
|
|
5343
|
-
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation */
|
|
5406
|
+
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */
|
|
5344
5407
|
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
5345
|
-
/** Maximum unbraked towing weight, default in kg */
|
|
5408
|
+
/** Maximum unbraked towing weight, default in kg. */
|
|
5346
5409
|
tow_weight_unbraked?: Maybe<Scalars["Float"]>;
|
|
5347
|
-
/** Maximum braked towing weight, default in kg */
|
|
5410
|
+
/** Maximum braked towing weight, default in kg. */
|
|
5348
5411
|
tow_weight_braked?: Maybe<Scalars["Float"]>;
|
|
5349
|
-
/** Indicates if tow weight fields are estimations */
|
|
5412
|
+
/** Indicates if tow weight fields are estimations. */
|
|
5350
5413
|
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5351
|
-
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation, default in kg */
|
|
5414
|
+
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation, default in kg. */
|
|
5352
5415
|
tow_weight_vertical_load?: Maybe<Scalars["Float"]>;
|
|
5353
|
-
/** Maximum load on roof of the vehicle, default in kg */
|
|
5416
|
+
/** Maximum load on roof of the vehicle, default in kg. */
|
|
5354
5417
|
roof_load_max?: Maybe<Scalars["Float"]>;
|
|
5355
|
-
/** Body type, listed in local naming convention where applicable */
|
|
5418
|
+
/** Body type, listed in local naming convention where applicable. */
|
|
5356
5419
|
body_type?: Maybe<Scalars["String"]>;
|
|
5357
|
-
/** Segment, listed in local naming convention where applicable */
|
|
5420
|
+
/** Segment, listed in local naming convention where applicable. */
|
|
5358
5421
|
segment?: Maybe<Scalars["String"]>;
|
|
5359
|
-
/** Number of seats */
|
|
5360
|
-
seats
|
|
5361
|
-
/** Indicates whether a vehicle has roof rails as a standard */
|
|
5422
|
+
/** Number of seats. */
|
|
5423
|
+
seats: Scalars["Int"];
|
|
5424
|
+
/** Indicates whether a vehicle has roof rails as a standard. */
|
|
5362
5425
|
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
5363
|
-
/** Turning circle of the vehicle kerb-to-kerb, default in meters */
|
|
5426
|
+
/** Turning circle of the vehicle kerb-to-kerb, default in meters. */
|
|
5364
5427
|
turning_circle?: Maybe<Scalars["Float"]>;
|
|
5365
|
-
/** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms) */
|
|
5428
|
+
/** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms). */
|
|
5366
5429
|
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
5367
|
-
/** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform */
|
|
5430
|
+
/** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform. */
|
|
5368
5431
|
vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
5369
5432
|
};
|
|
5370
5433
|
|
|
@@ -5425,43 +5488,55 @@ export type VehiclePremiumBodyturning_circleArgs = {
|
|
|
5425
5488
|
};
|
|
5426
5489
|
|
|
5427
5490
|
export type VehiclePremiumCharge = {
|
|
5428
|
-
/** Information about the main connector */
|
|
5429
|
-
plug?: Maybe<
|
|
5430
|
-
/** Information about vehicles secondary onboard charger */
|
|
5431
|
-
second_plug?: Maybe<
|
|
5432
|
-
/** Information about the vehicle standard onboard charger */
|
|
5491
|
+
/** Information about the main connector. */
|
|
5492
|
+
plug?: Maybe<VehiclePremiumChargePlug>;
|
|
5493
|
+
/** Information about vehicles secondary onboard charger. */
|
|
5494
|
+
second_plug?: Maybe<VehiclePremiumChargeSecondPlug>;
|
|
5495
|
+
/** Information about the vehicle standard onboard charger. */
|
|
5433
5496
|
standard?: Maybe<VehiclePremiumChargeStandardOBC>;
|
|
5434
|
-
/** Optional upgrade for the standard onboard charger when available */
|
|
5497
|
+
/** Optional upgrade for the standard onboard charger when available. */
|
|
5435
5498
|
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
5499
|
+
/** Alternative upgrade for the standard onboard charger when available. */
|
|
5500
|
+
alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
|
|
5436
5501
|
};
|
|
5437
5502
|
|
|
5438
|
-
export type
|
|
5439
|
-
/**
|
|
5440
|
-
|
|
5441
|
-
/**
|
|
5442
|
-
|
|
5443
|
-
/**
|
|
5444
|
-
|
|
5503
|
+
export type VehiclePremiumChargeAlternativeOBC = {
|
|
5504
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
5505
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5506
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
5507
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
5508
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
5509
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5510
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
5511
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5512
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph. */
|
|
5513
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5514
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
5515
|
+
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5516
|
+
};
|
|
5517
|
+
|
|
5518
|
+
export type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {
|
|
5519
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5445
5520
|
};
|
|
5446
5521
|
|
|
5447
5522
|
export type VehiclePremiumChargeOBCTable = {
|
|
5448
|
-
/** Voltage between phase and neutral for this EVSE (phase voltage) */
|
|
5523
|
+
/** Voltage between phase and neutral for this EVSE (phase voltage). */
|
|
5449
5524
|
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
5450
|
-
/** Current per phase for this EVSE (phase current) */
|
|
5525
|
+
/** Current per phase for this EVSE (phase current). */
|
|
5451
5526
|
evse_phase_amperage?: Maybe<Scalars["Int"]>;
|
|
5452
|
-
/** Number of phases for this EVSE */
|
|
5527
|
+
/** Number of phases for this EVSE. */
|
|
5453
5528
|
evse_phases?: Maybe<Scalars["Int"]>;
|
|
5454
|
-
/** Voltage between phase and neutral used by standard OBC (phase voltage) */
|
|
5529
|
+
/** Voltage between phase and neutral used by standard OBC (phase voltage). */
|
|
5455
5530
|
charge_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
5456
|
-
/** Current per phase used by standard OBC (phase current) */
|
|
5531
|
+
/** Current per phase used by standard OBC (phase current). */
|
|
5457
5532
|
charge_phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5458
|
-
/** Number of phases used by standard OBC */
|
|
5533
|
+
/** Number of phases used by standard OBC. */
|
|
5459
5534
|
charge_phases?: Maybe<Scalars["Int"]>;
|
|
5460
|
-
/** Power used by standard OBC (before OBC losses) */
|
|
5535
|
+
/** Power used by standard OBC (before OBC losses). */
|
|
5461
5536
|
charge_power?: Maybe<Scalars["Float"]>;
|
|
5462
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE) */
|
|
5537
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */
|
|
5463
5538
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5464
|
-
/** Charging speed when charging at maximum power (standard OBC with this EVSE), default in kmph */
|
|
5539
|
+
/** Charging speed when charging at maximum power (standard OBC with this EVSE), default in kmph. */
|
|
5465
5540
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5466
5541
|
};
|
|
5467
5542
|
|
|
@@ -5470,17 +5545,17 @@ export type VehiclePremiumChargeOBCTablecharge_speedArgs = {
|
|
|
5470
5545
|
};
|
|
5471
5546
|
|
|
5472
5547
|
export type VehiclePremiumChargeOptionOBC = {
|
|
5473
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5548
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
5474
5549
|
power?: Maybe<Scalars["Float"]>;
|
|
5475
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
5550
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
5476
5551
|
phases?: Maybe<Scalars["Int"]>;
|
|
5477
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
5552
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
5478
5553
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5479
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5554
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
5480
5555
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5481
|
-
/** Charging speed when charging at maximum power (standard OBC), default in kmph */
|
|
5556
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph. */
|
|
5482
5557
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5483
|
-
/** Charging details for the standard OBC at several charging points */
|
|
5558
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
5484
5559
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5485
5560
|
};
|
|
5486
5561
|
|
|
@@ -5488,34 +5563,43 @@ export type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
|
|
|
5488
5563
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
5489
5564
|
};
|
|
5490
5565
|
|
|
5566
|
+
export type VehiclePremiumChargePlug = {
|
|
5567
|
+
/** Type of charge port on vehicle. */
|
|
5568
|
+
value?: Maybe<ConnectorType>;
|
|
5569
|
+
/** Indicates if value is an estimate. */
|
|
5570
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5571
|
+
/** Location of charge port. */
|
|
5572
|
+
location?: Maybe<Scalars["String"]>;
|
|
5573
|
+
};
|
|
5574
|
+
|
|
5491
5575
|
export type VehiclePremiumChargePower = {
|
|
5492
|
-
/** Maximum value */
|
|
5576
|
+
/** Maximum value. */
|
|
5493
5577
|
max?: Maybe<Scalars["Float"]>;
|
|
5494
|
-
/** Average value */
|
|
5578
|
+
/** Average value. */
|
|
5495
5579
|
average?: Maybe<Scalars["Float"]>;
|
|
5496
5580
|
};
|
|
5497
5581
|
|
|
5498
|
-
export type
|
|
5499
|
-
/** Location of charge port */
|
|
5582
|
+
export type VehiclePremiumChargeSecondPlug = {
|
|
5583
|
+
/** Location of charge port. */
|
|
5500
5584
|
location?: Maybe<Scalars["String"]>;
|
|
5501
|
-
/** Indicates if second charge port is optional */
|
|
5585
|
+
/** Indicates if second charge port is optional. */
|
|
5502
5586
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
5503
5587
|
};
|
|
5504
5588
|
|
|
5505
5589
|
export type VehiclePremiumChargeStandardOBC = {
|
|
5506
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5590
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
5507
5591
|
power?: Maybe<Scalars["Float"]>;
|
|
5508
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
5592
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC). */
|
|
5509
5593
|
phases?: Maybe<Scalars["Int"]>;
|
|
5510
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
5594
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */
|
|
5511
5595
|
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5512
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5596
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC). */
|
|
5513
5597
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5514
|
-
/** Charging speed when charging at maximum power (standard OBC), default in kmph */
|
|
5598
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph. */
|
|
5515
5599
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5516
|
-
/** Indicates if Charge_Standard fields are estimated */
|
|
5600
|
+
/** Indicates if Charge_Standard fields are estimated. */
|
|
5517
5601
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5518
|
-
/** Charging details for the standard OBC at several charging points */
|
|
5602
|
+
/** Charging details for the standard OBC at several charging points. */
|
|
5519
5603
|
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5520
5604
|
};
|
|
5521
5605
|
|
|
@@ -5524,23 +5608,23 @@ export type VehiclePremiumChargeStandardOBCcharge_speedArgs = {
|
|
|
5524
5608
|
};
|
|
5525
5609
|
|
|
5526
5610
|
export type VehiclePremiumDrivetrain = {
|
|
5527
|
-
/** Type of drivetrain */
|
|
5611
|
+
/** Type of drivetrain. */
|
|
5528
5612
|
type: VehicleDrivetrainType;
|
|
5529
|
-
/** Fuel type */
|
|
5613
|
+
/** Fuel type. */
|
|
5530
5614
|
fuel?: Maybe<VehicleFuel>;
|
|
5531
|
-
/** Propulsion type */
|
|
5615
|
+
/** Propulsion type. */
|
|
5532
5616
|
propulsion?: Maybe<VehiclePropulsion>;
|
|
5533
|
-
/** Indicates if propulsion field is estimated */
|
|
5617
|
+
/** Indicates if propulsion field is estimated. */
|
|
5534
5618
|
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5535
|
-
/** Maximum (combined) power output, default in kw */
|
|
5619
|
+
/** Maximum (combined) power output, default in kw. */
|
|
5536
5620
|
power?: Maybe<Scalars["Float"]>;
|
|
5537
|
-
/** Indicates if power field is estimated */
|
|
5621
|
+
/** Indicates if power field is estimated. */
|
|
5538
5622
|
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5539
|
-
/** Maximum (combine) power output, default in horsepower (PS) */
|
|
5623
|
+
/** Maximum (combine) power output, default in horsepower (PS). */
|
|
5540
5624
|
power_hp?: Maybe<Scalars["Float"]>;
|
|
5541
|
-
/** Maximum (combine) torque output, default in newton meter */
|
|
5625
|
+
/** Maximum (combine) torque output, default in newton meter. */
|
|
5542
5626
|
torque?: Maybe<Scalars["Float"]>;
|
|
5543
|
-
/** Indicates if torque field is estimated */
|
|
5627
|
+
/** Indicates if torque field is estimated. */
|
|
5544
5628
|
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5545
5629
|
};
|
|
5546
5630
|
|
|
@@ -5557,26 +5641,26 @@ export type VehiclePremiumDrivetraintorqueArgs = {
|
|
|
5557
5641
|
};
|
|
5558
5642
|
|
|
5559
5643
|
export type VehiclePremiumEfficiency = {
|
|
5560
|
-
/** Rated efficiency in WLTP combined cycle */
|
|
5644
|
+
/** Rated efficiency in WLTP combined cycle. */
|
|
5561
5645
|
wltp?: Maybe<VehiclePremiumEfficiencyWLTP>;
|
|
5562
|
-
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
|
|
5646
|
+
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */
|
|
5563
5647
|
wltp_teh?: Maybe<VehiclePremiumEfficiencyWLTPTEH>;
|
|
5564
|
-
/** Rated efficiency in NEDC combined cycle */
|
|
5648
|
+
/** Rated efficiency in NEDC combined cycle. */
|
|
5565
5649
|
nedc?: Maybe<VehiclePremiumEfficiencyNEDC>;
|
|
5566
|
-
/** Vehicle efficiency based on provider range */
|
|
5650
|
+
/** Vehicle efficiency based on provider range. */
|
|
5567
5651
|
provider?: Maybe<VehiclePremiumEfficiencyProvider>;
|
|
5568
5652
|
};
|
|
5569
5653
|
|
|
5570
5654
|
export type VehiclePremiumEfficiencyNEDC = {
|
|
5571
|
-
/** Rated efficiency in NEDC combined cycle, default in kWh/100 km */
|
|
5655
|
+
/** Rated efficiency in NEDC combined cycle, default in kWh/100 km. */
|
|
5572
5656
|
value?: Maybe<Scalars["Float"]>;
|
|
5573
|
-
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
|
|
5657
|
+
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km. */
|
|
5574
5658
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5575
|
-
/** Rated vehicle efficiency in NEDC combined cycle (based on value), default in kWh/100 km */
|
|
5659
|
+
/** Rated vehicle efficiency in NEDC combined cycle (based on value), default in kWh/100 km. */
|
|
5576
5660
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
5577
|
-
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
|
|
5661
|
+
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km. */
|
|
5578
5662
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5579
|
-
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated), default in gr/km */
|
|
5663
|
+
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated), default in gr/km. */
|
|
5580
5664
|
co2?: Maybe<Scalars["Float"]>;
|
|
5581
5665
|
};
|
|
5582
5666
|
|
|
@@ -5601,13 +5685,13 @@ export type VehiclePremiumEfficiencyNEDCco2Args = {
|
|
|
5601
5685
|
};
|
|
5602
5686
|
|
|
5603
5687
|
export type VehiclePremiumEfficiencyProvider = {
|
|
5604
|
-
/** Vehicle efficiency based on RealRange (usable battery/range), default in kWh/100 km */
|
|
5688
|
+
/** Vehicle efficiency based on RealRange (usable battery/range), default in kWh/100 km. */
|
|
5605
5689
|
value?: Maybe<Scalars["Float"]>;
|
|
5606
|
-
/** Vehicle efficiency based on RealRange presented in gas equivalent, default in l/100 km */
|
|
5690
|
+
/** Vehicle efficiency based on RealRange presented in gas equivalent, default in l/100 km. */
|
|
5607
5691
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5608
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
5692
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
5609
5693
|
worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
5610
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
5694
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
5611
5695
|
best?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
5612
5696
|
};
|
|
5613
5697
|
|
|
@@ -5620,11 +5704,11 @@ export type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {
|
|
|
5620
5704
|
};
|
|
5621
5705
|
|
|
5622
5706
|
export type VehiclePremiumEfficiencyProviderValue = {
|
|
5623
|
-
/** Estimated value on highway or express roads, default in km */
|
|
5707
|
+
/** Estimated value on highway or express roads, default in km. */
|
|
5624
5708
|
highway?: Maybe<Scalars["Float"]>;
|
|
5625
|
-
/** Estimated value on city roads, default in km */
|
|
5709
|
+
/** Estimated value on city roads, default in km. */
|
|
5626
5710
|
city?: Maybe<Scalars["Float"]>;
|
|
5627
|
-
/** Estimated combined value, default in km */
|
|
5711
|
+
/** Estimated combined value, default in km. */
|
|
5628
5712
|
combined?: Maybe<Scalars["Float"]>;
|
|
5629
5713
|
};
|
|
5630
5714
|
|
|
@@ -5641,15 +5725,15 @@ export type VehiclePremiumEfficiencyProviderValuecombinedArgs = {
|
|
|
5641
5725
|
};
|
|
5642
5726
|
|
|
5643
5727
|
export type VehiclePremiumEfficiencyWLTP = {
|
|
5644
|
-
/** Rated efficiency in WLTP combined cycle, default in kWh/100 km */
|
|
5728
|
+
/** Rated efficiency in WLTP combined cycle, default in kWh/100 km. */
|
|
5645
5729
|
value?: Maybe<Scalars["Float"]>;
|
|
5646
|
-
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
|
|
5730
|
+
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km. */
|
|
5647
5731
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5648
|
-
/** Rated vehicle efficiency in WLTP combined cycle (based on value), default in kWh/100 km */
|
|
5732
|
+
/** Rated vehicle efficiency in WLTP combined cycle (based on value), default in kWh/100 km. */
|
|
5649
5733
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
5650
|
-
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
|
|
5734
|
+
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km. */
|
|
5651
5735
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5652
|
-
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated), default in gr/km */
|
|
5736
|
+
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated), default in gr/km. */
|
|
5653
5737
|
co2?: Maybe<Scalars["Float"]>;
|
|
5654
5738
|
};
|
|
5655
5739
|
|
|
@@ -5674,15 +5758,15 @@ export type VehiclePremiumEfficiencyWLTPco2Args = {
|
|
|
5674
5758
|
};
|
|
5675
5759
|
|
|
5676
5760
|
export type VehiclePremiumEfficiencyWLTPTEH = {
|
|
5677
|
-
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
|
|
5761
|
+
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */
|
|
5678
5762
|
value?: Maybe<Scalars["Float"]>;
|
|
5679
|
-
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
|
|
5763
|
+
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km. */
|
|
5680
5764
|
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5681
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value), default in kWh/100 km */
|
|
5765
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value), default in kWh/100 km. */
|
|
5682
5766
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
5683
|
-
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
|
|
5767
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km. */
|
|
5684
5768
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5685
|
-
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated), default in gr/km */
|
|
5769
|
+
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated), default in gr/km. */
|
|
5686
5770
|
co2?: Maybe<Scalars["Float"]>;
|
|
5687
5771
|
};
|
|
5688
5772
|
|
|
@@ -5707,19 +5791,19 @@ export type VehiclePremiumEfficiencyWLTPTEHco2Args = {
|
|
|
5707
5791
|
};
|
|
5708
5792
|
|
|
5709
5793
|
export type VehiclePremiumFastCharge = {
|
|
5710
|
-
/**
|
|
5711
|
-
|
|
5712
|
-
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
|
|
5794
|
+
/** Details about the connector. */
|
|
5795
|
+
plug?: Maybe<VehiclePremiumChargePlug>;
|
|
5796
|
+
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger). */
|
|
5713
5797
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
5714
|
-
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
|
|
5798
|
+
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */
|
|
5715
5799
|
charge_time?: Maybe<Scalars["Float"]>;
|
|
5716
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger), default is kmph */
|
|
5800
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger), default is kmph. */
|
|
5717
5801
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5718
|
-
/** Indicates if fast charge is optional in some markets/regions */
|
|
5802
|
+
/** Indicates if fast charge is optional in some markets/regions. */
|
|
5719
5803
|
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
5720
|
-
/** Indicates what fields are estimated */
|
|
5804
|
+
/** Indicates what fields are estimated. */
|
|
5721
5805
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5722
|
-
/** Charging details for fast charging */
|
|
5806
|
+
/** Charging details for fast charging. */
|
|
5723
5807
|
table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
|
|
5724
5808
|
};
|
|
5725
5809
|
|
|
@@ -5728,17 +5812,17 @@ export type VehiclePremiumFastChargecharge_speedArgs = {
|
|
|
5728
5812
|
};
|
|
5729
5813
|
|
|
5730
5814
|
export type VehiclePremiumFastChargeTable = {
|
|
5731
|
-
/** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC) */
|
|
5815
|
+
/** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC). */
|
|
5732
5816
|
format?: Maybe<Scalars["String"]>;
|
|
5733
|
-
/** Fast charge power */
|
|
5817
|
+
/** Fast charge power. */
|
|
5734
5818
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
5735
|
-
/** Minutes needed to charge from 10% to 80% (optimal conditions) */
|
|
5819
|
+
/** Minutes needed to charge from 10% to 80% (optimal conditions). */
|
|
5736
5820
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
5737
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions), default is kmph */
|
|
5821
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions), default is kmph. */
|
|
5738
5822
|
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5739
|
-
/** Indicates if maximum power during fast charging is limited by the vehicle */
|
|
5823
|
+
/** Indicates if maximum power during fast charging is limited by the vehicle. */
|
|
5740
5824
|
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
5741
|
-
/** Indicates if average power during fast charging is limited by the vehicle */
|
|
5825
|
+
/** Indicates if average power during fast charging is limited by the vehicle. */
|
|
5742
5826
|
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
5743
5827
|
};
|
|
5744
5828
|
|
|
@@ -5747,47 +5831,47 @@ export type VehiclePremiumFastChargeTablecharge_speedArgs = {
|
|
|
5747
5831
|
};
|
|
5748
5832
|
|
|
5749
5833
|
export type VehiclePremiumMedia = {
|
|
5750
|
-
/** URL for more details */
|
|
5834
|
+
/** URL for more details. */
|
|
5751
5835
|
provider_details_url?: Maybe<Scalars["String"]>;
|
|
5752
|
-
/**
|
|
5836
|
+
/** Featured image of the vehicle from a 45-degree angle. */
|
|
5753
5837
|
image: VehicleImage;
|
|
5754
|
-
/** Latest maker logo */
|
|
5838
|
+
/** Latest maker logo. */
|
|
5755
5839
|
brand: VehicleImage;
|
|
5756
|
-
/** All images */
|
|
5840
|
+
/** All images of the vehicle. */
|
|
5757
5841
|
image_list: Array<VehicleImage>;
|
|
5758
|
-
/** Latest video */
|
|
5842
|
+
/** Latest video. */
|
|
5759
5843
|
video?: Maybe<VehicleVideo>;
|
|
5760
|
-
/** All videos */
|
|
5844
|
+
/** All videos of the vehicle. */
|
|
5761
5845
|
video_list?: Maybe<Array<VehicleVideo>>;
|
|
5762
|
-
/** URL of the OEM page for this vehicle */
|
|
5846
|
+
/** URL of the OEM page for this vehicle. */
|
|
5763
5847
|
oem_details_url?: Maybe<Scalars["String"]>;
|
|
5764
5848
|
};
|
|
5765
5849
|
|
|
5766
5850
|
export type VehiclePremiumNaming = {
|
|
5767
|
-
/** Vehicle manufacturer name */
|
|
5851
|
+
/** Vehicle manufacturer name. */
|
|
5768
5852
|
make: Scalars["String"];
|
|
5769
|
-
/** Vehicle model name */
|
|
5853
|
+
/** Vehicle model name. */
|
|
5770
5854
|
model: Scalars["String"];
|
|
5771
|
-
/** Version, edition or submodel of the vehicle */
|
|
5855
|
+
/** Version, edition or submodel of the vehicle. */
|
|
5772
5856
|
version?: Maybe<Scalars["String"]>;
|
|
5773
|
-
/** Another submodel level of the vehicle */
|
|
5857
|
+
/** Another submodel level of the vehicle. */
|
|
5774
5858
|
edition?: Maybe<Scalars["String"]>;
|
|
5775
|
-
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years */
|
|
5859
|
+
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years. */
|
|
5776
5860
|
chargetrip_version: Scalars["String"];
|
|
5777
|
-
/** Vehicle model length version */
|
|
5861
|
+
/** Vehicle model length version. */
|
|
5778
5862
|
length_version?: Maybe<Scalars["String"]>;
|
|
5779
|
-
/** Vehicle model height version */
|
|
5863
|
+
/** Vehicle model height version. */
|
|
5780
5864
|
height_version?: Maybe<Scalars["String"]>;
|
|
5781
5865
|
};
|
|
5782
5866
|
|
|
5783
5867
|
export type VehiclePremiumPerformance = {
|
|
5784
|
-
/** Acceleration 0-100 km/h, default in seconds */
|
|
5868
|
+
/** Acceleration 0-100 km/h, default in seconds. */
|
|
5785
5869
|
acceleration?: Maybe<Scalars["Float"]>;
|
|
5786
|
-
/** Indicates if acceleration field is estimated */
|
|
5870
|
+
/** Indicates if acceleration field is estimated. */
|
|
5787
5871
|
acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5788
|
-
/** Top speed of the vehicle, default in km/h */
|
|
5872
|
+
/** Top speed of the vehicle, default in km/h. */
|
|
5789
5873
|
top_speed?: Maybe<Scalars["Float"]>;
|
|
5790
|
-
/** Indicates if top_speed field is estimated */
|
|
5874
|
+
/** Indicates if top_speed field is estimated. */
|
|
5791
5875
|
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5792
5876
|
};
|
|
5793
5877
|
|
|
@@ -5800,20 +5884,22 @@ export type VehiclePremiumPerformancetop_speedArgs = {
|
|
|
5800
5884
|
};
|
|
5801
5885
|
|
|
5802
5886
|
export type VehiclePremiumPrice = {
|
|
5803
|
-
/** Starting price for German market */
|
|
5887
|
+
/** Starting price for German market. */
|
|
5804
5888
|
DE?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5805
|
-
/** Starting price for Dutch market */
|
|
5889
|
+
/** Starting price for Dutch market. */
|
|
5806
5890
|
NL?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5807
|
-
/** Starting price for British market */
|
|
5891
|
+
/** Starting price for British market. */
|
|
5808
5892
|
GB?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5809
5893
|
};
|
|
5810
5894
|
|
|
5811
5895
|
export type VehiclePremiumPriceValueWithGrant = {
|
|
5812
|
-
/** Starting price for local market
|
|
5896
|
+
/** Starting price for local market expressed in the currency in the field currency. */
|
|
5813
5897
|
value?: Maybe<Scalars["Float"]>;
|
|
5814
|
-
/**
|
|
5898
|
+
/** Currency in which the value without optional field conversion is expressed. */
|
|
5899
|
+
currency?: Maybe<CurrencyUnit>;
|
|
5900
|
+
/** Indicates if price value is based on estimates. */
|
|
5815
5901
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5816
|
-
/** Grant is applied to value */
|
|
5902
|
+
/** Grant is applied to value. */
|
|
5817
5903
|
grant_applied?: Maybe<Scalars["Int"]>;
|
|
5818
5904
|
};
|
|
5819
5905
|
|
|
@@ -5822,25 +5908,29 @@ export type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
|
5822
5908
|
};
|
|
5823
5909
|
|
|
5824
5910
|
export type VehiclePremiumRange = {
|
|
5825
|
-
/** Rated range in WLTP combined cycle (NULL if not WLTP rated), default in km */
|
|
5911
|
+
/** Rated range in WLTP combined cycle (NULL if not WLTP rated), default in km. */
|
|
5826
5912
|
wltp?: Maybe<Scalars["Float"]>;
|
|
5827
|
-
/** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
|
|
5913
|
+
/** Indicates if WLTP range is estimated (NULL if not WLTP rated). */
|
|
5828
5914
|
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5829
|
-
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
|
|
5915
|
+
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */
|
|
5830
5916
|
wltp_teh?: Maybe<Scalars["Int"]>;
|
|
5831
|
-
/** Rated range in NEDC combined cycle (NULL if not NEDC rated), default in km */
|
|
5917
|
+
/** Rated range in NEDC combined cycle (NULL if not NEDC rated), default in km. */
|
|
5832
5918
|
nedc?: Maybe<Scalars["Float"]>;
|
|
5833
|
-
/** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
|
|
5919
|
+
/** Indicates if NEDC range is estimated (NULL if not NEDC rated). */
|
|
5834
5920
|
nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5835
|
-
/** Index range, default in km */
|
|
5921
|
+
/** Index range, default in km. */
|
|
5836
5922
|
provider?: Maybe<Scalars["Float"]>;
|
|
5837
|
-
/** Indicates if index range is estimated */
|
|
5923
|
+
/** Indicates if index range is estimated. */
|
|
5838
5924
|
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5839
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
5925
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
5840
5926
|
worst: VehiclePremiumRangeValue;
|
|
5841
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
5927
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
5842
5928
|
best: VehiclePremiumRangeValue;
|
|
5843
|
-
/**
|
|
5929
|
+
/**
|
|
5930
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
5931
|
+
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
5932
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
5933
|
+
*/
|
|
5844
5934
|
chargetrip_range: ChargetripRange;
|
|
5845
5935
|
};
|
|
5846
5936
|
|
|
@@ -5857,12 +5947,12 @@ export type VehiclePremiumRangeproviderArgs = {
|
|
|
5857
5947
|
};
|
|
5858
5948
|
|
|
5859
5949
|
export type VehiclePremiumRangeValue = {
|
|
5860
|
-
/** Estimated value on highway or express roads, default in km */
|
|
5861
|
-
highway
|
|
5862
|
-
/** Estimated value on city roads, default in km */
|
|
5863
|
-
city
|
|
5864
|
-
/** Estimated combined value, default in km */
|
|
5865
|
-
combined
|
|
5950
|
+
/** Estimated value on highway or express roads, default in km. */
|
|
5951
|
+
highway: Scalars["Float"];
|
|
5952
|
+
/** Estimated value on city roads, default in km. */
|
|
5953
|
+
city: Scalars["Float"];
|
|
5954
|
+
/** Estimated combined value, default in km. */
|
|
5955
|
+
combined: Scalars["Float"];
|
|
5866
5956
|
};
|
|
5867
5957
|
|
|
5868
5958
|
export type VehiclePremiumRangeValuehighwayArgs = {
|
|
@@ -5878,15 +5968,15 @@ export type VehiclePremiumRangeValuecombinedArgs = {
|
|
|
5878
5968
|
};
|
|
5879
5969
|
|
|
5880
5970
|
export type VehiclePremiumRouting = {
|
|
5881
|
-
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
5971
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
|
|
5882
5972
|
fast_charging_support: Scalars["Boolean"];
|
|
5883
|
-
/** Drag coefficient */
|
|
5973
|
+
/** Drag coefficient. */
|
|
5884
5974
|
drag_coefficient: Scalars["Float"];
|
|
5885
|
-
/** Tire pressure recommended by manufacturer, default in bar */
|
|
5975
|
+
/** Tire pressure recommended by manufacturer, default in bar. */
|
|
5886
5976
|
tire_pressure: Scalars["Float"];
|
|
5887
|
-
/** Extra consumption model */
|
|
5977
|
+
/** Extra consumption model. */
|
|
5888
5978
|
consumption?: Maybe<VehiclePremiumRoutingConsumption>;
|
|
5889
|
-
/** Amount of petrol that an equivalent petrol vehicle would consume, default in l/100 km */
|
|
5979
|
+
/** Amount of petrol that an equivalent petrol vehicle would consume, default in l/100 km. */
|
|
5890
5980
|
fuel_consumption?: Maybe<Scalars["Float"]>;
|
|
5891
5981
|
};
|
|
5892
5982
|
|
|
@@ -5899,75 +5989,88 @@ export type VehiclePremiumRoutingfuel_consumptionArgs = {
|
|
|
5899
5989
|
};
|
|
5900
5990
|
|
|
5901
5991
|
export type VehiclePremiumRoutingConsumption = {
|
|
5902
|
-
/** Consumption, in kWh, of the auxiliaries */
|
|
5992
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
5903
5993
|
aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5904
|
-
/** Consumption, in kWh, of the battery management system */
|
|
5994
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
5905
5995
|
bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5906
|
-
/** Consumption, in kWh, of the vehicle in idle mode */
|
|
5996
|
+
/** Consumption, in kWh, of the vehicle in idle mode. */
|
|
5907
5997
|
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5908
5998
|
};
|
|
5909
5999
|
|
|
5910
6000
|
export type VehiclePremiumRoutingConsumptionValue = {
|
|
5911
|
-
/** Best (lowest) consumption in summer */
|
|
6001
|
+
/** Best (lowest) consumption in summer. */
|
|
5912
6002
|
best?: Maybe<Scalars["Float"]>;
|
|
5913
|
-
/** Best (lowest) consumption in winter */
|
|
6003
|
+
/** Best (lowest) consumption in winter. */
|
|
5914
6004
|
worst?: Maybe<Scalars["Float"]>;
|
|
5915
6005
|
};
|
|
5916
6006
|
|
|
5917
6007
|
export type VehiclePremiumSafety = {
|
|
5918
|
-
/** Number of seats equipped with ISOFIX */
|
|
6008
|
+
/** Number of seats equipped with ISOFIX. */
|
|
5919
6009
|
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
5920
|
-
/** EuroNCAP results */
|
|
6010
|
+
/** EuroNCAP results. */
|
|
5921
6011
|
euro_ncap?: Maybe<VehiclePremiumSafetyEuroNcap>;
|
|
5922
6012
|
};
|
|
5923
6013
|
|
|
5924
6014
|
export type VehiclePremiumSafetyEuroNcap = {
|
|
5925
|
-
/** EuroNCAP rating (out of 5 stars) */
|
|
6015
|
+
/** EuroNCAP rating (out of 5 stars). */
|
|
5926
6016
|
rating?: Maybe<Scalars["Int"]>;
|
|
5927
|
-
/** EuroNCAP year of rating */
|
|
6017
|
+
/** EuroNCAP year of rating. */
|
|
5928
6018
|
year?: Maybe<Scalars["Int"]>;
|
|
5929
|
-
/** EuroNCAP rating of adult protection (out of 100%) */
|
|
6019
|
+
/** EuroNCAP rating of adult protection (out of 100%). */
|
|
5930
6020
|
adult?: Maybe<Scalars["Int"]>;
|
|
5931
|
-
/** EuroNCAP rating of child protection (out of 100%) */
|
|
6021
|
+
/** EuroNCAP rating of child protection (out of 100%). */
|
|
5932
6022
|
child?: Maybe<Scalars["Int"]>;
|
|
5933
|
-
/** EuroNCAP rating of vulnerable road users (out of 100%) */
|
|
6023
|
+
/** EuroNCAP rating of vulnerable road users (out of 100%). */
|
|
5934
6024
|
vru?: Maybe<Scalars["Int"]>;
|
|
5935
|
-
/** EuroNCAP rating of safety assists (out of 100%) */
|
|
6025
|
+
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
5936
6026
|
sa?: Maybe<Scalars["Int"]>;
|
|
5937
6027
|
};
|
|
5938
6028
|
|
|
5939
|
-
/** Propulsion */
|
|
6029
|
+
/** Propulsion. */
|
|
5940
6030
|
export enum VehiclePropulsion {
|
|
5941
|
-
/** All-wheel drive vehicle */
|
|
6031
|
+
/** All-wheel drive vehicle. */
|
|
5942
6032
|
AWD = "AWD",
|
|
5943
|
-
/** Front-wheel drive vehicle */
|
|
6033
|
+
/** Front-wheel drive vehicle. */
|
|
5944
6034
|
FRONT = "Front",
|
|
5945
|
-
/** Rear-wheel drive vehicle */
|
|
6035
|
+
/** Rear-wheel drive vehicle. */
|
|
5946
6036
|
REAR = "Rear"
|
|
5947
6037
|
}
|
|
5948
6038
|
|
|
5949
|
-
/** Status of a vehicle provider */
|
|
6039
|
+
/** Status of a vehicle provider. */
|
|
5950
6040
|
export enum VehicleProviderStatus {
|
|
5951
|
-
/** Is imported from any of the data providers */
|
|
6041
|
+
/** Is imported from any of the data providers. */
|
|
5952
6042
|
NEW = "new",
|
|
5953
|
-
/** Has been attached to core vehicle */
|
|
6043
|
+
/** Has been attached to core vehicle. */
|
|
5954
6044
|
ATTACHED = "attached",
|
|
5955
|
-
/** Has been detached from a core vehicle */
|
|
6045
|
+
/** Has been detached from a core vehicle. */
|
|
5956
6046
|
DETACHED = "detached",
|
|
5957
|
-
/** Has been archived by database maintainer */
|
|
6047
|
+
/** Has been archived by database maintainer. */
|
|
5958
6048
|
ARCHIVED = "archived"
|
|
5959
6049
|
}
|
|
5960
6050
|
|
|
6051
|
+
export enum VehiclePurpose {
|
|
6052
|
+
/** Vehicle intended for the transportation of passengers. */
|
|
6053
|
+
PASSENGER = "passenger",
|
|
6054
|
+
/** Vehicle intended for the transportation of cargo. */
|
|
6055
|
+
CARGO = "cargo",
|
|
6056
|
+
/** Vehicle intended for the transportation of everything except cargo or passengers. Eg: ambulances, agricultural vehicles, etcetera. */
|
|
6057
|
+
UTILITY = "utility"
|
|
6058
|
+
}
|
|
6059
|
+
|
|
5961
6060
|
export type VehicleRange = {
|
|
5962
|
-
/** Index range, default in km */
|
|
6061
|
+
/** Index range, default in km. */
|
|
5963
6062
|
provider?: Maybe<Scalars["Float"]>;
|
|
5964
|
-
/** Indicates if index range is estimated */
|
|
6063
|
+
/** Indicates if index range is estimated. */
|
|
5965
6064
|
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5966
|
-
/** Worst conditions are based on -10°C and use of heating */
|
|
6065
|
+
/** Worst conditions are based on -10°C and use of heating. */
|
|
5967
6066
|
worst: VehicleRangeValue;
|
|
5968
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
6067
|
+
/** Best conditions are based on 23°C and no use of A/C. */
|
|
5969
6068
|
best: VehicleRangeValue;
|
|
5970
|
-
/**
|
|
6069
|
+
/**
|
|
6070
|
+
* Chargetrip's custom real-world range provides a carefully calculated display range for all electric vehicle models based on our own research and driving data.
|
|
6071
|
+
* CT range is based on the theoretical distance driven using only the electric engine.
|
|
6072
|
+
* Vehicles that do not have a full electric drivetrain type ( all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.
|
|
6073
|
+
*/
|
|
5971
6074
|
chargetrip_range: ChargetripRange;
|
|
5972
6075
|
};
|
|
5973
6076
|
|
|
@@ -5976,11 +6079,11 @@ export type VehicleRangeproviderArgs = {
|
|
|
5976
6079
|
};
|
|
5977
6080
|
|
|
5978
6081
|
export type VehicleRangeValue = {
|
|
5979
|
-
/** Estimated value on the highway or express roads, default in km */
|
|
6082
|
+
/** Estimated value on the highway or express roads, default in km. */
|
|
5980
6083
|
highway: Scalars["Float"];
|
|
5981
|
-
/** Estimated value on the cities road, default in km */
|
|
6084
|
+
/** Estimated value on the cities road, default in km. */
|
|
5982
6085
|
city: Scalars["Float"];
|
|
5983
|
-
/** Estimated combined value, default in km */
|
|
6086
|
+
/** Estimated combined value, default in km. */
|
|
5984
6087
|
combined: Scalars["Float"];
|
|
5985
6088
|
};
|
|
5986
6089
|
|
|
@@ -5996,8 +6099,23 @@ export type VehicleRangeValuecombinedArgs = {
|
|
|
5996
6099
|
unit?: Maybe<DistanceUnit>;
|
|
5997
6100
|
};
|
|
5998
6101
|
|
|
6102
|
+
export enum VehicleRegion {
|
|
6103
|
+
/** Africa. */
|
|
6104
|
+
AF = "AF",
|
|
6105
|
+
/** Asia. */
|
|
6106
|
+
AS = "AS",
|
|
6107
|
+
/** Europe. */
|
|
6108
|
+
EU = "EU",
|
|
6109
|
+
/** North America. */
|
|
6110
|
+
NA = "NA",
|
|
6111
|
+
/** Oceania. */
|
|
6112
|
+
OC = "OC",
|
|
6113
|
+
/** South America. */
|
|
6114
|
+
SA = "SA"
|
|
6115
|
+
}
|
|
6116
|
+
|
|
5999
6117
|
export type VehicleRouting = {
|
|
6000
|
-
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
6118
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */
|
|
6001
6119
|
fast_charging_support: Scalars["Boolean"];
|
|
6002
6120
|
};
|
|
6003
6121
|
|
|
@@ -6010,22 +6128,53 @@ export type VehicleSpeedInput = {
|
|
|
6010
6128
|
source?: Maybe<TelemetryInputSource>;
|
|
6011
6129
|
};
|
|
6012
6130
|
|
|
6013
|
-
/** Status of a vehicle */
|
|
6131
|
+
/** Status of a vehicle. */
|
|
6014
6132
|
export enum VehicleStatus {
|
|
6015
|
-
/** Is being reviewed by a human operator */
|
|
6133
|
+
/** Is being reviewed by a human operator. */
|
|
6016
6134
|
DRAFT = "draft",
|
|
6017
|
-
/** Is public and can be used by a customer */
|
|
6135
|
+
/** Is public and can be used by a customer. */
|
|
6018
6136
|
PUBLIC = "public",
|
|
6019
|
-
/** Is private and can be used by a human operator */
|
|
6137
|
+
/** Is private and can be used by a human operator. */
|
|
6020
6138
|
PRIVATE = "private",
|
|
6021
|
-
/** Is archived and can not be used */
|
|
6139
|
+
/** Is archived and can not be used. */
|
|
6022
6140
|
ARCHIVED = "archived"
|
|
6023
6141
|
}
|
|
6024
6142
|
|
|
6143
|
+
export enum VehicleType {
|
|
6144
|
+
/** Any motor vehicle with two wheels or a motor vehicle with no more than four wheels, does not have parallel seating, and is controlled by means of handlebars. */
|
|
6145
|
+
MOTORCYCLE = "motorcycle",
|
|
6146
|
+
/** A motor vehicle with three or four wheels that is not a Motorcycle, Pickup, Van, Truck, or Utility vehicle and either has a top speed of less than 60kph or an unladen weight of less than 400kg. */
|
|
6147
|
+
MICROCAR = "microcar",
|
|
6148
|
+
/** A motor vehicle that does not have an enclosed cab, is not a microcar or utility vehicle, is capable of carrying eight or fewer people, and that has less than one third of its internal volume dedicated to cargo, living, or sleeping space in its default configuration. */
|
|
6149
|
+
CAR = "car",
|
|
6150
|
+
/** A motor vehicle that has an enclosed cab, is not a utility vehicle, and has a fixed, non-articulated, open-top back cargo bed that is enclosed on at least three sides. */
|
|
6151
|
+
PICKUP = "pickup",
|
|
6152
|
+
/**
|
|
6153
|
+
* A motor vehicle that does not have an enclosed cab, is not a utility vehicle, that fulfills exactly one of the following conditions:
|
|
6154
|
+
* 1) It is capable of carrying more than eight but less than twenty people.
|
|
6155
|
+
* 2) At least one third of its internal volume is dedicated to cargo space in its default configuration.
|
|
6156
|
+
* 3) It is the passenger variant of a vehicle that meets criterion 2.
|
|
6157
|
+
*/
|
|
6158
|
+
VAN = "van",
|
|
6159
|
+
/** A motor vehicle that does not have an enclosed cab, is not a Utility vehicle, and is capable of carrying 20 or more people in its default configuration. */
|
|
6160
|
+
BUS = "bus",
|
|
6161
|
+
/** A motor vehicle that has an enclosed cab and is not a Pickup or Utility vehicle. */
|
|
6162
|
+
TRUCK = "truck",
|
|
6163
|
+
/**
|
|
6164
|
+
* A motor vehicle that fulfills at least one of the following conditions:
|
|
6165
|
+
* 1) It does not have wheels.
|
|
6166
|
+
* 2) It has some mode of locomotion other than wheels in its default configuration such as treads, skis, or floats.
|
|
6167
|
+
* 3) It is capable of air or water travel in its default configuration.
|
|
6168
|
+
* 4) It was manufactured primarily for some purpose other than transporting cargo or passengers.
|
|
6169
|
+
* 5) It does not conform to any of the criteria for the other vehicle categories.
|
|
6170
|
+
*/
|
|
6171
|
+
UTILITY = "utility"
|
|
6172
|
+
}
|
|
6173
|
+
|
|
6025
6174
|
export type VehicleVideo = {
|
|
6026
|
-
/** Video id */
|
|
6175
|
+
/** Video id. */
|
|
6027
6176
|
id?: Maybe<Scalars["ID"]>;
|
|
6028
|
-
/** Full path URL of a video */
|
|
6177
|
+
/** Full path URL of a video. */
|
|
6029
6178
|
url?: Maybe<Scalars["String"]>;
|
|
6030
6179
|
};
|
|
6031
6180
|
|