@chargetrip/types 1.33.0 → 1.35.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 +366 -16
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +366 -16
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +1706 -94
- package/graphql.schema.json +14969 -5807
- package/package.json +1 -1
- package/src/graphql.ts +1920 -100
package/src/graphql.ts
CHANGED
|
@@ -28,6 +28,13 @@ export type Scalars = {
|
|
|
28
28
|
Void: any;
|
|
29
29
|
};
|
|
30
30
|
|
|
31
|
+
export enum AccelerationUnit {
|
|
32
|
+
/** Return the acceleration in seconds to 100 kilometers per hour */
|
|
33
|
+
SECONDS_TO_100_KILOMETERS_PER_HOUR = "seconds_to_100_kilometers_per_hour",
|
|
34
|
+
/** Return the acceleration in seconds to 60 miles per hour */
|
|
35
|
+
SECONDS_TO_60_MILES_PER_HOUR = "seconds_to_60_miles_per_hour"
|
|
36
|
+
}
|
|
37
|
+
|
|
31
38
|
export enum AccessType {
|
|
32
39
|
PUBLIC = "Public",
|
|
33
40
|
RESTRICTED = "Restricted",
|
|
@@ -107,6 +114,14 @@ export type Amenity = {
|
|
|
107
114
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
108
115
|
};
|
|
109
116
|
|
|
117
|
+
/** Amenity preferences for a route */
|
|
118
|
+
export type AmenityPreferencesInput = {
|
|
119
|
+
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius */
|
|
120
|
+
all_charge_stops?: Maybe<Array<AmenityType>>;
|
|
121
|
+
/** Scheduled charge stops, with a specified amenity and timeline */
|
|
122
|
+
scheduled_charge_stops?: Maybe<Array<ScheduledChargeStopInput>>;
|
|
123
|
+
};
|
|
124
|
+
|
|
110
125
|
/** Amenities stats model */
|
|
111
126
|
export type AmenityStats = {
|
|
112
127
|
/** The amenity type */
|
|
@@ -115,6 +130,20 @@ export type AmenityStats = {
|
|
|
115
130
|
total?: Maybe<Scalars["Int"]>;
|
|
116
131
|
};
|
|
117
132
|
|
|
133
|
+
/** A list of amenity types */
|
|
134
|
+
export enum AmenityType {
|
|
135
|
+
PARK = "park",
|
|
136
|
+
RESTAURANT = "restaurant",
|
|
137
|
+
MUSEUM = "museum",
|
|
138
|
+
COFFEE = "coffee",
|
|
139
|
+
HOTEL = "hotel",
|
|
140
|
+
SHOPPING = "shopping",
|
|
141
|
+
BATHROOM = "bathroom",
|
|
142
|
+
SUPERMARKET = "supermarket",
|
|
143
|
+
PLAYGROUND = "playground",
|
|
144
|
+
PHARMACY = "pharmacy"
|
|
145
|
+
}
|
|
146
|
+
|
|
118
147
|
export type AuthorizeConnectedVehicleInput = {
|
|
119
148
|
/** Id from the connected vehicle */
|
|
120
149
|
id: Scalars["ID"];
|
|
@@ -127,6 +156,20 @@ export type AuthorizeConnectedVehicleOptions = {
|
|
|
127
156
|
code?: Maybe<Scalars["PlainString"]>;
|
|
128
157
|
};
|
|
129
158
|
|
|
159
|
+
export type AuxiliaryConsumptionInput = {
|
|
160
|
+
/** Value of the auxiliary power consumption of the vehicle */
|
|
161
|
+
value: Scalars["Float"];
|
|
162
|
+
/** Type of auxiliary power consumption of the vehicle */
|
|
163
|
+
type: AuxiliaryConsumptionUnit;
|
|
164
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
165
|
+
source?: Maybe<TelemetryInputSource>;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
export enum AuxiliaryConsumptionUnit {
|
|
169
|
+
/** Return the auxiliary consumption in kilowatt hours */
|
|
170
|
+
KILOWATT_HOUR = "kilowatt_hour"
|
|
171
|
+
}
|
|
172
|
+
|
|
130
173
|
/** The type of the battery value */
|
|
131
174
|
export enum BatteryInputType {
|
|
132
175
|
KWH = "kwh",
|
|
@@ -135,6 +178,15 @@ export enum BatteryInputType {
|
|
|
135
178
|
PERCENTAGE = "percentage"
|
|
136
179
|
}
|
|
137
180
|
|
|
181
|
+
export type BatteryTemperatureInput = {
|
|
182
|
+
/** Value of the temperature of the battery */
|
|
183
|
+
value: Scalars["Float"];
|
|
184
|
+
/** Type of temperature of the battery */
|
|
185
|
+
type: TemperatureUnit;
|
|
186
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
187
|
+
source?: Maybe<TelemetryInputSource>;
|
|
188
|
+
};
|
|
189
|
+
|
|
138
190
|
/** Output of a car query */
|
|
139
191
|
export type Car = {
|
|
140
192
|
/** Cars unique ID */
|
|
@@ -1351,6 +1403,33 @@ export enum ChargeMode {
|
|
|
1351
1403
|
ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE"
|
|
1352
1404
|
}
|
|
1353
1405
|
|
|
1406
|
+
export type ChargeSpeedInput = {
|
|
1407
|
+
/** Value of the charge speed of the battery */
|
|
1408
|
+
value: Scalars["Float"];
|
|
1409
|
+
/** Type of the charge speed of the battery */
|
|
1410
|
+
type: ChargeSpeedUnit;
|
|
1411
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
1412
|
+
source?: Maybe<TelemetryInputSource>;
|
|
1413
|
+
};
|
|
1414
|
+
|
|
1415
|
+
export enum ChargeSpeedUnit {
|
|
1416
|
+
/** Return the charge speed in kilowatt hours */
|
|
1417
|
+
KILOWATT_HOUR = "kilowatt_hour",
|
|
1418
|
+
/** Return the charge speed in kilometers per hour */
|
|
1419
|
+
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
1420
|
+
/** Return the charge speed in miles per hour */
|
|
1421
|
+
MILES_PER_HOUR = "miles_per_hour"
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
export type ChargeTotalInput = {
|
|
1425
|
+
/** Value of the temperature of the battery */
|
|
1426
|
+
value: Scalars["Float"];
|
|
1427
|
+
/** Type of total charge amount */
|
|
1428
|
+
type: BatteryInputType;
|
|
1429
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
1430
|
+
source?: Maybe<TelemetryInputSource>;
|
|
1431
|
+
};
|
|
1432
|
+
|
|
1354
1433
|
/** A groupped representation of EVSEs */
|
|
1355
1434
|
export type Charger = {
|
|
1356
1435
|
/** Type of charger */
|
|
@@ -1398,6 +1477,16 @@ export type ChargetripRange = {
|
|
|
1398
1477
|
best?: Maybe<Scalars["Float"]>;
|
|
1399
1478
|
};
|
|
1400
1479
|
|
|
1480
|
+
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
1481
|
+
export type ChargetripRangeworstArgs = {
|
|
1482
|
+
unit?: Maybe<DistanceUnit>;
|
|
1483
|
+
};
|
|
1484
|
+
|
|
1485
|
+
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
1486
|
+
export type ChargetripRangebestArgs = {
|
|
1487
|
+
unit?: Maybe<DistanceUnit>;
|
|
1488
|
+
};
|
|
1489
|
+
|
|
1401
1490
|
export type ChargingBehaviour = {
|
|
1402
1491
|
/** Charging behaviour of users divided in groups, based on real-time information */
|
|
1403
1492
|
code?: Maybe<ChargingBehaviourCode>;
|
|
@@ -1422,16 +1511,16 @@ export enum ChargingBehaviourCode {
|
|
|
1422
1511
|
|
|
1423
1512
|
export type Connect = {
|
|
1424
1513
|
/** List of connectivity providers to which a vehicle can connect */
|
|
1425
|
-
providers
|
|
1514
|
+
providers: Array<ConnectProvider>;
|
|
1426
1515
|
};
|
|
1427
1516
|
|
|
1428
1517
|
export type ConnectBattery = {
|
|
1429
1518
|
/** Estimated range by OEM */
|
|
1430
|
-
range?: Maybe<Scalars["
|
|
1519
|
+
range?: Maybe<Scalars["Float"]>;
|
|
1431
1520
|
/** Percentage of the battery remaining */
|
|
1432
|
-
percentage?: Maybe<Scalars["
|
|
1521
|
+
percentage?: Maybe<Scalars["Float"]>;
|
|
1433
1522
|
/** Capacity of the battery, in kwh */
|
|
1434
|
-
capacity?: Maybe<Scalars["
|
|
1523
|
+
capacity?: Maybe<Scalars["Float"]>;
|
|
1435
1524
|
/** Date when the battery data was retrieved, as ISO-8601 date */
|
|
1436
1525
|
date?: Maybe<Scalars["DateTime"]>;
|
|
1437
1526
|
};
|
|
@@ -1478,7 +1567,7 @@ export type ConnectLocationProperties = {
|
|
|
1478
1567
|
|
|
1479
1568
|
export type ConnectOdometer = {
|
|
1480
1569
|
/** Odometer value, distance driven, default in km */
|
|
1481
|
-
distance?: Maybe<Scalars["
|
|
1570
|
+
distance?: Maybe<Scalars["Float"]>;
|
|
1482
1571
|
/** Date when the odometer data was retrieved, as ISO-8601 date */
|
|
1483
1572
|
date?: Maybe<Scalars["DateTime"]>;
|
|
1484
1573
|
};
|
|
@@ -1515,13 +1604,20 @@ export type ConnectedVehicle = {
|
|
|
1515
1604
|
vin?: Maybe<Scalars["String"]>;
|
|
1516
1605
|
};
|
|
1517
1606
|
|
|
1607
|
+
export type ConnectedVehicleListFilter = {
|
|
1608
|
+
/** Status of the connected vehicle */
|
|
1609
|
+
status?: Maybe<Array<ConnectedVehicleStatus>>;
|
|
1610
|
+
};
|
|
1611
|
+
|
|
1518
1612
|
export enum ConnectedVehicleStatus {
|
|
1519
|
-
/** Vehicle was added to the Chargetrip platform but not yet authorized */
|
|
1520
|
-
|
|
1613
|
+
/** Vehicle was added to the Chargetrip Connect platform but not yet authorized */
|
|
1614
|
+
PENDING_AUTHORIZATION = "pending_authorization",
|
|
1521
1615
|
/** Vehicle was authorized. Chargetrip can retrieve data on behave of the user */
|
|
1522
1616
|
AUTHORIZED = "authorized",
|
|
1523
|
-
/**
|
|
1524
|
-
|
|
1617
|
+
/** Pending vehicle removal */
|
|
1618
|
+
PENDING_REMOVAL = "pending_removal",
|
|
1619
|
+
/** Vehicle was removed and access has been revoked */
|
|
1620
|
+
REMOVED = "removed"
|
|
1525
1621
|
}
|
|
1526
1622
|
|
|
1527
1623
|
/** Connector data which extends OCPI Connector */
|
|
@@ -1540,7 +1636,7 @@ export type Connector = {
|
|
|
1540
1636
|
max_amperage?: Maybe<Scalars["Int"]>;
|
|
1541
1637
|
/**
|
|
1542
1638
|
* Maximum electric power that can be delivered by a connector, in watt [W]. When the maximum electric power is lower than the calculated value from voltage and amperage, this value should be set.
|
|
1543
|
-
* For example: A DC Charge Point which can deliver up to 920V and up to 400A can be limited to a maximum of 150kW. Depending on the
|
|
1639
|
+
* For example: A DC Charge Point which can deliver up to 920V and up to 400A can be limited to a maximum of 150kW. Depending on the vehicle, it may supply maximum voltage or current, but not both at the same time.
|
|
1544
1640
|
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
1545
1641
|
*/
|
|
1546
1642
|
max_electric_power?: Maybe<Scalars["Int"]>;
|
|
@@ -1569,9 +1665,12 @@ export type Connector = {
|
|
|
1569
1665
|
custom_properties?: Maybe<ConnectorCustomProperties>;
|
|
1570
1666
|
};
|
|
1571
1667
|
|
|
1668
|
+
/** Custom properties for connectors */
|
|
1572
1669
|
export type ConnectorCustomProperties = {
|
|
1573
1670
|
/** Charging prices */
|
|
1574
1671
|
pricing?: Maybe<Pricing>;
|
|
1672
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
1673
|
+
oicp?: Maybe<OICPConnectorCustomProperties>;
|
|
1575
1674
|
};
|
|
1576
1675
|
|
|
1577
1676
|
/** The socket or plug standard of the charging point. */
|
|
@@ -1656,6 +1755,25 @@ export enum ConnectorType {
|
|
|
1656
1755
|
NEMA_14_50 = "NEMA_14_50"
|
|
1657
1756
|
}
|
|
1658
1757
|
|
|
1758
|
+
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
|
+
/** Return the consumption in kilowatt hours per 100 kilometers */
|
|
1764
|
+
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
|
+
/** Return the consumption in watt hours per kilometer */
|
|
1768
|
+
WATT_HOURS_PER_KILOMETER = "watt_hours_per_kilometer",
|
|
1769
|
+
/** Return the consumption in watt hours per mile */
|
|
1770
|
+
WATT_HOURS_PER_MILE = "watt_hours_per_mile",
|
|
1771
|
+
/** 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"
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1659
1777
|
/** The complete contact information */
|
|
1660
1778
|
export type Contact = {
|
|
1661
1779
|
/** The phone number in international format */
|
|
@@ -1936,9 +2054,24 @@ export type CreateConnectedVehicleInput = {
|
|
|
1936
2054
|
/** Label for a connected vehicle */
|
|
1937
2055
|
label?: Maybe<Scalars["PlainString"]>;
|
|
1938
2056
|
/** Provider specific options. See the developer portal for more details */
|
|
1939
|
-
options:
|
|
2057
|
+
options: CreateConnectedVehicleOptions;
|
|
2058
|
+
};
|
|
2059
|
+
|
|
2060
|
+
export type CreateConnectedVehicleOptions = {
|
|
2061
|
+
/** Redirect uri */
|
|
2062
|
+
redirect_uri?: Maybe<Scalars["PlainString"]>;
|
|
2063
|
+
/** Scope */
|
|
2064
|
+
scope?: Maybe<Array<ConnectScope>>;
|
|
1940
2065
|
};
|
|
1941
2066
|
|
|
2067
|
+
/** Currency according to the ISO 4217 standard */
|
|
2068
|
+
export enum CurrencyUnit {
|
|
2069
|
+
/** Return the currency in EUR */
|
|
2070
|
+
EUR = "EUR",
|
|
2071
|
+
/** Return the currency in USD */
|
|
2072
|
+
USD = "USD"
|
|
2073
|
+
}
|
|
2074
|
+
|
|
1942
2075
|
export enum DistanceUnit {
|
|
1943
2076
|
/** Return the distance in meters */
|
|
1944
2077
|
METER = "meter",
|
|
@@ -1983,6 +2116,72 @@ export type EVSE = {
|
|
|
1983
2116
|
parking_cost?: Maybe<ParkingCost>;
|
|
1984
2117
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1985
2118
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2119
|
+
/** Custom properties of an EVSE */
|
|
2120
|
+
custom_properties?: Maybe<EvseCustomProperties>;
|
|
2121
|
+
};
|
|
2122
|
+
|
|
2123
|
+
export type ElevationInput = {
|
|
2124
|
+
/** Value of the elevation */
|
|
2125
|
+
value: Scalars["Float"];
|
|
2126
|
+
/** Type of the value of elevation */
|
|
2127
|
+
type: DistanceUnit;
|
|
2128
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
2129
|
+
source?: Maybe<TelemetryInputSource>;
|
|
2130
|
+
};
|
|
2131
|
+
|
|
2132
|
+
export enum ElevationUnit {
|
|
2133
|
+
/** Return the elevation in meters */
|
|
2134
|
+
METER = "meter",
|
|
2135
|
+
/** Return the elevation in feet */
|
|
2136
|
+
FOOT = "foot"
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
export enum EmissionRateUnit {
|
|
2140
|
+
/** Return the emission rate in grams per kilometer */
|
|
2141
|
+
GRAMS_PER_KILOMETER = "grams_per_kilometer",
|
|
2142
|
+
/** Return the emission rate in ounces per mile */
|
|
2143
|
+
OUNCES_PER_MILE = "ounces_per_mile"
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
export enum EmissionUnit {
|
|
2147
|
+
/** Return the emission in grams */
|
|
2148
|
+
GRAM = "gram",
|
|
2149
|
+
/** Return the emission in ounces */
|
|
2150
|
+
OUNCE = "ounce"
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2154
|
+
export type EvseCustomProperties = {
|
|
2155
|
+
/** OICP standard custom properties */
|
|
2156
|
+
oicp?: Maybe<OICPEvseCustomProperties>;
|
|
2157
|
+
};
|
|
2158
|
+
|
|
2159
|
+
/** A GeoJSON Feature<LineString> */
|
|
2160
|
+
export type FeatureLineString = {
|
|
2161
|
+
/** Feature type */
|
|
2162
|
+
type: FeatureType;
|
|
2163
|
+
/** Geometry of the feature */
|
|
2164
|
+
geometry: LineString;
|
|
2165
|
+
};
|
|
2166
|
+
|
|
2167
|
+
/** A GeoJSON Feature<MultiPolygon> */
|
|
2168
|
+
export type FeatureMultiPolygon = {
|
|
2169
|
+
/** Feature type */
|
|
2170
|
+
type: FeatureType;
|
|
2171
|
+
/** Geometry of the feature */
|
|
2172
|
+
geometry: MultiPolygon;
|
|
2173
|
+
/** Properties of the MultiPolygon Feature */
|
|
2174
|
+
properties?: Maybe<PolygonProperties>;
|
|
2175
|
+
};
|
|
2176
|
+
|
|
2177
|
+
/** A GeoJSON Feature<Point> */
|
|
2178
|
+
export type FeatureMultiPolygonPoint = {
|
|
2179
|
+
/** Feature type */
|
|
2180
|
+
type: FeatureType;
|
|
2181
|
+
/** Geometry of the feature */
|
|
2182
|
+
geometry: Point;
|
|
2183
|
+
/** Optional object where you can store custom data you need in your application. */
|
|
2184
|
+
properties?: Maybe<Scalars["JSON"]>;
|
|
1986
2185
|
};
|
|
1987
2186
|
|
|
1988
2187
|
/** A GeoJSON Feature<Point> */
|
|
@@ -2031,31 +2230,18 @@ export type FeaturePointPolygonPropertiesInput = {
|
|
|
2031
2230
|
name?: Maybe<Scalars["String"]>;
|
|
2032
2231
|
};
|
|
2033
2232
|
|
|
2034
|
-
/** A GeoJSON Feature<Polygon> */
|
|
2035
|
-
export type FeaturePolygon = {
|
|
2036
|
-
/** Feature type */
|
|
2037
|
-
type: FeatureType;
|
|
2038
|
-
/** Geometry of the feature */
|
|
2039
|
-
geometry: Polygon;
|
|
2040
|
-
/** Properties of the Polygon Feature */
|
|
2041
|
-
properties?: Maybe<PolygonProperties>;
|
|
2042
|
-
};
|
|
2043
|
-
|
|
2044
|
-
/** A GeoJSON Feature<Point> */
|
|
2045
|
-
export type FeaturePolygonPoint = {
|
|
2046
|
-
/** Feature type */
|
|
2047
|
-
type: FeatureType;
|
|
2048
|
-
/** Geometry of the feature */
|
|
2049
|
-
geometry: Point;
|
|
2050
|
-
/** Optional object where you can store custom data you need in your application. */
|
|
2051
|
-
properties?: Maybe<Scalars["JSON"]>;
|
|
2052
|
-
};
|
|
2053
|
-
|
|
2054
2233
|
/** GeoJSON Feature type */
|
|
2055
2234
|
export enum FeatureType {
|
|
2056
2235
|
FEATURE = "Feature"
|
|
2057
2236
|
}
|
|
2058
2237
|
|
|
2238
|
+
export enum FuelConsumptionUnit {
|
|
2239
|
+
/** Return the fuel consumption in liters per 100 kilometers */
|
|
2240
|
+
LITERS_PER_100_KILOMETERS = "liters_per_100_kilometers",
|
|
2241
|
+
/** Return the fuel consumption in miles per gallon */
|
|
2242
|
+
MILES_PER_GALLON = "miles_per_gallon"
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2059
2245
|
/** Geometry point with GPS coordinates */
|
|
2060
2246
|
export type GeometryPoint = {
|
|
2061
2247
|
type: PointType;
|
|
@@ -2075,28 +2261,53 @@ export type Isoline = {
|
|
|
2075
2261
|
id: Scalars["ID"];
|
|
2076
2262
|
/** Isoline status */
|
|
2077
2263
|
status: IsolineStatus;
|
|
2078
|
-
/** Shape of the isoline consisting in a list of
|
|
2079
|
-
polygons?: Maybe<Array<Maybe<
|
|
2264
|
+
/** Shape of the isoline consisting in a list of multipolygons */
|
|
2265
|
+
polygons?: Maybe<Array<Maybe<FeatureMultiPolygon>>>;
|
|
2266
|
+
/** List of the ferries uniting islands formed by the isoline */
|
|
2267
|
+
ferries?: Maybe<Array<Maybe<FeatureLineString>>>;
|
|
2080
2268
|
/** Origin point of the request */
|
|
2081
|
-
origin:
|
|
2269
|
+
origin: FeatureMultiPolygonPoint;
|
|
2082
2270
|
/** Vehicle id */
|
|
2083
2271
|
vehicle_id: Scalars["ID"];
|
|
2084
|
-
/** Number of Isolines to be generated representing SoC (default: 1,
|
|
2272
|
+
/** Number of Isolines to be generated representing SoC (default: 1, maximum: 20) */
|
|
2085
2273
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
2086
|
-
/** Season to be taken into account when generating the isoline
|
|
2274
|
+
/** Season to be taken into account when generating the isoline. Default: current */
|
|
2087
2275
|
season?: Maybe<RouteSeason>;
|
|
2088
2276
|
};
|
|
2089
2277
|
|
|
2278
|
+
export enum IsolineFerryConnectionsType {
|
|
2279
|
+
/** Ferry connections should not be included */
|
|
2280
|
+
NONE = "none",
|
|
2281
|
+
/** Ferry connections should be taken into account but only one level deep. For example: from the European mainland to England and no other connecting ferries departing from England. */
|
|
2282
|
+
SINGLE = "single"
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2090
2285
|
export type IsolineInput = {
|
|
2091
2286
|
/** Vehicle id */
|
|
2092
2287
|
vehicle_id: Scalars["ID"];
|
|
2093
2288
|
/** Origin point of the request */
|
|
2094
2289
|
origin: FeaturePointPolygonInput;
|
|
2095
|
-
/** Numbers of polygons to be generated (default: 1,
|
|
2290
|
+
/** Numbers of polygons to be generated (default: 1, maximum: 20) */
|
|
2096
2291
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
2097
|
-
/**
|
|
2292
|
+
/** Vehicle should be able to return to the origin point from any point */
|
|
2293
|
+
round_trip?: Maybe<Scalars["Boolean"]>;
|
|
2294
|
+
/** Climate is on */
|
|
2295
|
+
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2296
|
+
/** Season to be taken into account when generating the isoline */
|
|
2098
2297
|
season?: Maybe<RouteSeason>;
|
|
2099
|
-
|
|
2298
|
+
/** Polygons precision quality */
|
|
2299
|
+
quality?: Maybe<IsolineQuality>;
|
|
2300
|
+
/** Include ferry connections. Single and multiple ferry connections increase the calculation time and the number of polygons. */
|
|
2301
|
+
ferry_connections?: Maybe<IsolineFerryConnectionsType>;
|
|
2302
|
+
};
|
|
2303
|
+
|
|
2304
|
+
/** Granularity of the isoline */
|
|
2305
|
+
export enum IsolineQuality {
|
|
2306
|
+
/** High polygons precisions */
|
|
2307
|
+
HIGH = "high",
|
|
2308
|
+
/** Low polygons precisions */
|
|
2309
|
+
LOW = "low"
|
|
2310
|
+
}
|
|
2100
2311
|
|
|
2101
2312
|
/** Status of the isoline label */
|
|
2102
2313
|
export enum IsolineStatus {
|
|
@@ -2110,10 +2321,12 @@ export enum IsolineStatus {
|
|
|
2110
2321
|
|
|
2111
2322
|
/** Types of a leg */
|
|
2112
2323
|
export enum LegType {
|
|
2113
|
-
/** This leg ends at a charging station and the
|
|
2324
|
+
/** This leg ends at a charging station and the vehicle must recharge */
|
|
2114
2325
|
STATION = "station",
|
|
2115
|
-
/** This leg ends at a via charging station and the
|
|
2326
|
+
/** This leg ends at a via charging station and the vehicle must recharge */
|
|
2116
2327
|
STATIONVIA = "stationVia",
|
|
2328
|
+
/** This leg ends at a scheduled charging station and the vehicle must recharge */
|
|
2329
|
+
STATIONAMENITY = "stationAmenity",
|
|
2117
2330
|
/** This leg ends at a via location */
|
|
2118
2331
|
VIA = "via",
|
|
2119
2332
|
/** This leg ends at the destination, and is the last leg of the route */
|
|
@@ -2122,6 +2335,19 @@ export enum LegType {
|
|
|
2122
2335
|
STATIONFINAL = "stationFinal"
|
|
2123
2336
|
}
|
|
2124
2337
|
|
|
2338
|
+
/** A GeoJSON LineString */
|
|
2339
|
+
export type LineString = {
|
|
2340
|
+
/** LineString type */
|
|
2341
|
+
type: LineStringType;
|
|
2342
|
+
/** List of coordinates arrays with longitude as first value and latitude as second one */
|
|
2343
|
+
coordinates: Array<Maybe<Array<Scalars["Float"]>>>;
|
|
2344
|
+
};
|
|
2345
|
+
|
|
2346
|
+
/** GeoJSON LineString type */
|
|
2347
|
+
export enum LineStringType {
|
|
2348
|
+
LINESTRING = "LineString"
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2125
2351
|
/** Preferred language for the mapping */
|
|
2126
2352
|
export enum MappingLanguage {
|
|
2127
2353
|
/** English(US) */
|
|
@@ -2136,6 +2362,28 @@ export enum MappingProvider {
|
|
|
2136
2362
|
MAPBOXV5 = "MapboxV5"
|
|
2137
2363
|
}
|
|
2138
2364
|
|
|
2365
|
+
export enum MeasurementUnit {
|
|
2366
|
+
/** Return the measurement in millimeters */
|
|
2367
|
+
MILLIMETER = "millimeter",
|
|
2368
|
+
/** Return the measurement in inches */
|
|
2369
|
+
INCH = "inch"
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
/** A GeoJSON Polygon */
|
|
2373
|
+
export type MultiPolygon = {
|
|
2374
|
+
/** MultiPolygon type */
|
|
2375
|
+
type: MultiPolygonType;
|
|
2376
|
+
/** List of coordinates representing a polygon */
|
|
2377
|
+
coordinates: Array<
|
|
2378
|
+
Maybe<Array<Maybe<Array<Maybe<Array<Scalars["Float"]>>>>>>
|
|
2379
|
+
>;
|
|
2380
|
+
};
|
|
2381
|
+
|
|
2382
|
+
/** GeoJSON MultiPolygon type */
|
|
2383
|
+
export enum MultiPolygonType {
|
|
2384
|
+
MULTIPOLYGON = "MultiPolygon"
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2139
2387
|
export type Mutation = {
|
|
2140
2388
|
/** [BETA] Create a connected vehicle for a given vehicle id and a connectivity provider */
|
|
2141
2389
|
createConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
@@ -2143,8 +2391,8 @@ export type Mutation = {
|
|
|
2143
2391
|
authorizeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2144
2392
|
/** [BETA] Update a connected vehicle */
|
|
2145
2393
|
updateConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2146
|
-
/** [BETA]
|
|
2147
|
-
removeConnectedVehicle?: Maybe<
|
|
2394
|
+
/** [BETA] Remove a connected vehicle and revoke access */
|
|
2395
|
+
removeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2148
2396
|
/** [BETA] Generate a set of consumption based Isolines */
|
|
2149
2397
|
createIsoline?: Maybe<Scalars["ID"]>;
|
|
2150
2398
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
@@ -2225,9 +2473,9 @@ export type Navigation = {
|
|
|
2225
2473
|
/** ID of the navigation session */
|
|
2226
2474
|
id: Scalars["ID"];
|
|
2227
2475
|
/** The current route used for navigation */
|
|
2228
|
-
route_id?: Maybe<Scalars["
|
|
2476
|
+
route_id?: Maybe<Scalars["ID"]>;
|
|
2229
2477
|
/** The current route alternative used for navigation */
|
|
2230
|
-
route_alternative_id?: Maybe<Scalars["
|
|
2478
|
+
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2231
2479
|
/** The state of a navigation session. The status can be driving, charging, finished, or error */
|
|
2232
2480
|
state?: Maybe<NavigationState>;
|
|
2233
2481
|
/** State of charge at the last known location */
|
|
@@ -2267,16 +2515,16 @@ export type NavigationRecalculateInput = {
|
|
|
2267
2515
|
current_location: PointInput;
|
|
2268
2516
|
/** Via points of a new route. If this field is not sent, the original via points will be used */
|
|
2269
2517
|
via?: Maybe<Array<Maybe<FeaturePointInput>>>;
|
|
2270
|
-
/**
|
|
2271
|
-
|
|
2518
|
+
/** Telemetry data input */
|
|
2519
|
+
telemetry?: Maybe<TelemetryInput>;
|
|
2272
2520
|
};
|
|
2273
2521
|
|
|
2274
2522
|
/** Input for the navigation start */
|
|
2275
2523
|
export type NavigationStartInput = {
|
|
2276
2524
|
/** ID of the route of the navigation session */
|
|
2277
|
-
route_id: Scalars["
|
|
2525
|
+
route_id: Scalars["ID"];
|
|
2278
2526
|
/** ID of the route alternative of the navigation session */
|
|
2279
|
-
route_alternative_id?: Maybe<Scalars["
|
|
2527
|
+
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2280
2528
|
/** Current coordinates */
|
|
2281
2529
|
current_location: PointInput;
|
|
2282
2530
|
};
|
|
@@ -2296,7 +2544,7 @@ export enum NavigationState {
|
|
|
2296
2544
|
/** Navigation session station type */
|
|
2297
2545
|
export type NavigationStation = {
|
|
2298
2546
|
/** The ID as string of the charging station */
|
|
2299
|
-
station_id?: Maybe<Scalars["
|
|
2547
|
+
station_id?: Maybe<Scalars["ID"]>;
|
|
2300
2548
|
/** GPS location of the charging station */
|
|
2301
2549
|
station_location?: Maybe<Point>;
|
|
2302
2550
|
/** An array with all GPS locations of via points until the next charging station */
|
|
@@ -2309,26 +2557,14 @@ export type NavigationStation = {
|
|
|
2309
2557
|
estimated_duration?: Maybe<Scalars["Int"]>;
|
|
2310
2558
|
};
|
|
2311
2559
|
|
|
2312
|
-
/** Input for the navigation session update telemetry data */
|
|
2313
|
-
export type NavigationTelemetryUpdateInput = {
|
|
2314
|
-
/** State of charge at the last known location, in kwh */
|
|
2315
|
-
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
2316
|
-
/** Indicates if a vehicle is charging */
|
|
2317
|
-
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
2318
|
-
/** Average tire pressure, in bars. This information should come from telemetry */
|
|
2319
|
-
tire_pressure?: Maybe<Scalars["Float"]>;
|
|
2320
|
-
};
|
|
2321
|
-
|
|
2322
2560
|
/** Input for the navigation update */
|
|
2323
2561
|
export type NavigationUpdateInput = {
|
|
2324
2562
|
/** ID of the navigation session */
|
|
2325
2563
|
id: Scalars["ID"];
|
|
2326
|
-
/** Heading of a vehicle, in degrees */
|
|
2327
|
-
heading?: Maybe<Scalars["Float"]>;
|
|
2328
2564
|
/** A list of locations that were collected since the last update */
|
|
2329
2565
|
location_data: Array<NavigationUpdateLocationsInput>;
|
|
2330
2566
|
/** Telemetry data input */
|
|
2331
|
-
telemetry?: Maybe<
|
|
2567
|
+
telemetry?: Maybe<TelemetryInput>;
|
|
2332
2568
|
};
|
|
2333
2569
|
|
|
2334
2570
|
/** Properties of the location */
|
|
@@ -2336,7 +2572,7 @@ export type NavigationUpdateLocationPropertiesInput = {
|
|
|
2336
2572
|
/** Current route leg index corresponding to a location */
|
|
2337
2573
|
route_leg: Scalars["Int"];
|
|
2338
2574
|
/** Speed at a location, in km/h */
|
|
2339
|
-
speed
|
|
2575
|
+
speed?: Maybe<Scalars["Float"]>;
|
|
2340
2576
|
/** UNIX timestamp at location, in seconds */
|
|
2341
2577
|
timestamp: Scalars["Int"];
|
|
2342
2578
|
/** Altitude information, in meters. This is optional */
|
|
@@ -2351,13 +2587,6 @@ export type NavigationUpdateLocationsInput = {
|
|
|
2351
2587
|
properties: NavigationUpdateLocationPropertiesInput;
|
|
2352
2588
|
};
|
|
2353
2589
|
|
|
2354
|
-
export type NewConnectedVehicleOptions = {
|
|
2355
|
-
/** Redirect uri */
|
|
2356
|
-
redirect_uri?: Maybe<Scalars["PlainString"]>;
|
|
2357
|
-
/** Scope */
|
|
2358
|
-
scope?: Maybe<Array<Maybe<ConnectScope>>>;
|
|
2359
|
-
};
|
|
2360
|
-
|
|
2361
2590
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2362
2591
|
export type OCPIAdditionalGeoLocation = {
|
|
2363
2592
|
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
@@ -2869,6 +3098,98 @@ export enum OCPITariffType {
|
|
|
2869
3098
|
REGULAR = "REGULAR"
|
|
2870
3099
|
}
|
|
2871
3100
|
|
|
3101
|
+
/** List of charging modes that are supported */
|
|
3102
|
+
export enum OICPChargingModes {
|
|
3103
|
+
MODE_1 = "mode_1",
|
|
3104
|
+
MODE_2 = "mode_2",
|
|
3105
|
+
MODE_3 = "mode_3",
|
|
3106
|
+
MODE_4 = "mode_4",
|
|
3107
|
+
CHADEMO = "chademo"
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
3111
|
+
export type OICPConnectorCustomProperties = {
|
|
3112
|
+
/** Returns whether the connector is able to deliver different power outputs */
|
|
3113
|
+
dynamic_power_level?: Maybe<Scalars["Boolean"]>;
|
|
3114
|
+
/** List of charging modes that are supported as specified by IEC 61851-1 */
|
|
3115
|
+
charging_modes?: Maybe<Array<OICPChargingModes>>;
|
|
3116
|
+
};
|
|
3117
|
+
|
|
3118
|
+
/** List of authentication modes that are supported */
|
|
3119
|
+
export enum OICPEvseAuthenticationMode {
|
|
3120
|
+
NFC_RFID_CLASSIC = "nfc_rfid_classic",
|
|
3121
|
+
NFC_RFID_DESFIRE = "nfc_rfid_desfire",
|
|
3122
|
+
PNC = "pnc",
|
|
3123
|
+
REMOTE = "remote",
|
|
3124
|
+
DIRECT_PAYMENT = "direct_payment",
|
|
3125
|
+
NO_AUTHENTICATION_REQUIRED = "no_authentication_required"
|
|
3126
|
+
}
|
|
3127
|
+
|
|
3128
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3129
|
+
export type OICPEvseCustomProperties = {
|
|
3130
|
+
/** List of authentication modes that are supported */
|
|
3131
|
+
authentication_modes: Array<OICPEvseAuthenticationMode>;
|
|
3132
|
+
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh */
|
|
3133
|
+
max_capacity?: Maybe<Scalars["Int"]>;
|
|
3134
|
+
/** List of payment options that are supported */
|
|
3135
|
+
payment_options: Array<OICPPaymentOptions>;
|
|
3136
|
+
/** List of value added services that are supported */
|
|
3137
|
+
value_added_services: Array<OICPValueAddedServices>;
|
|
3138
|
+
/** List of additional info by locale */
|
|
3139
|
+
additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;
|
|
3140
|
+
/** When the value is set to false this station does not support remote start and stop by Hubject */
|
|
3141
|
+
is_hubject_compatible: Scalars["Boolean"];
|
|
3142
|
+
/** Name of the charging point manufacturer */
|
|
3143
|
+
hardware_manufacturer?: Maybe<Scalars["String"]>;
|
|
3144
|
+
};
|
|
3145
|
+
|
|
3146
|
+
export type OICPEvseCustomPropertiesAdditionalInfo = {
|
|
3147
|
+
/** The language in which the additional info text is provided */
|
|
3148
|
+
lang?: Maybe<Scalars["String"]>;
|
|
3149
|
+
/** Additional info text value */
|
|
3150
|
+
value?: Maybe<Scalars["String"]>;
|
|
3151
|
+
};
|
|
3152
|
+
|
|
3153
|
+
/** List of payment options that are supported */
|
|
3154
|
+
export enum OICPPaymentOptions {
|
|
3155
|
+
NO_PAYMENT = "no_payment",
|
|
3156
|
+
DIRECT = "direct",
|
|
3157
|
+
CONTRACT = "contract"
|
|
3158
|
+
}
|
|
3159
|
+
|
|
3160
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3161
|
+
export type OICPStationCustomProperties = {
|
|
3162
|
+
/** Returns whether the station is a parking facility */
|
|
3163
|
+
parking_facility?: Maybe<Scalars["Boolean"]>;
|
|
3164
|
+
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1 */
|
|
3165
|
+
parking_spot?: Maybe<Scalars["String"]>;
|
|
3166
|
+
/** Returns information on how the charging station provides metering law data */
|
|
3167
|
+
calibration_law_data_availability: Scalars["String"];
|
|
3168
|
+
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future */
|
|
3169
|
+
clearinghouse_id?: Maybe<Scalars["String"]>;
|
|
3170
|
+
};
|
|
3171
|
+
|
|
3172
|
+
/** List of value added services that are supported */
|
|
3173
|
+
export enum OICPValueAddedServices {
|
|
3174
|
+
RESERVATION = "reservation",
|
|
3175
|
+
DYNAMIC_PRICING = "dynamic_pricing",
|
|
3176
|
+
PARKING_SENSORS = "parking_sensors",
|
|
3177
|
+
MAXIMUM_POWER_CHARGING = "maximum_power_charging",
|
|
3178
|
+
PREDICTIVE_CHARGE_POINT_USAGE = "predictive_charge_point_usage",
|
|
3179
|
+
CHARGING_PLANS = "charging_plans",
|
|
3180
|
+
ROOF_PROVIDED = "roof_provided",
|
|
3181
|
+
NONE = "none"
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
export type OdometerInput = {
|
|
3185
|
+
/** Value of the vehicle's odometer */
|
|
3186
|
+
value: Scalars["Float"];
|
|
3187
|
+
/** Type of the value of the vehicle's odometer */
|
|
3188
|
+
type: DistanceUnit;
|
|
3189
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
3190
|
+
source?: Maybe<TelemetryInputSource>;
|
|
3191
|
+
};
|
|
3192
|
+
|
|
2872
3193
|
/** The operator data which extends OCPI BusinessDetails */
|
|
2873
3194
|
export type Operator = {
|
|
2874
3195
|
/** Unique operator ID */
|
|
@@ -2915,6 +3236,15 @@ export type OperatorListQuery = {
|
|
|
2915
3236
|
country?: Maybe<Scalars["String"]>;
|
|
2916
3237
|
};
|
|
2917
3238
|
|
|
3239
|
+
export type OutsideTempInput = {
|
|
3240
|
+
/** Value of the outside temperature */
|
|
3241
|
+
value: Scalars["Float"];
|
|
3242
|
+
/** Type of the value of the outside temperature */
|
|
3243
|
+
type: TemperatureUnit;
|
|
3244
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
3245
|
+
source?: Maybe<TelemetryInputSource>;
|
|
3246
|
+
};
|
|
3247
|
+
|
|
2918
3248
|
export enum ParkingCost {
|
|
2919
3249
|
/** Parking is free */
|
|
2920
3250
|
FREE = "free",
|
|
@@ -2960,24 +3290,20 @@ export enum PointType {
|
|
|
2960
3290
|
POINT = "Point"
|
|
2961
3291
|
}
|
|
2962
3292
|
|
|
2963
|
-
/** A GeoJSON Polygon */
|
|
2964
|
-
export type Polygon = {
|
|
2965
|
-
/** Polygon type */
|
|
2966
|
-
type: PolygonType;
|
|
2967
|
-
/** List of coordinates representing a polygon */
|
|
2968
|
-
coordinates: Array<Maybe<Array<Maybe<Array<Maybe<Scalars["Float"]>>>>>>;
|
|
2969
|
-
};
|
|
2970
|
-
|
|
2971
3293
|
/** Polygon properties */
|
|
2972
3294
|
export type PolygonProperties = {
|
|
2973
3295
|
/** Index of the feature inside the list */
|
|
2974
3296
|
index?: Maybe<Scalars["Int"]>;
|
|
2975
3297
|
};
|
|
2976
3298
|
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
3299
|
+
export type PowerInput = {
|
|
3300
|
+
/** Value of the positive or negative power. When negative the vehicle is charging */
|
|
3301
|
+
value: Scalars["Float"];
|
|
3302
|
+
/** Type of the value of the power */
|
|
3303
|
+
type: PowerUnit;
|
|
3304
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
3305
|
+
source?: Maybe<TelemetryInputSource>;
|
|
3306
|
+
};
|
|
2981
3307
|
|
|
2982
3308
|
/** The list of powers for the speed type */
|
|
2983
3309
|
export type PowerList = {
|
|
@@ -2995,6 +3321,20 @@ export type PowerStats = {
|
|
|
2995
3321
|
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
2996
3322
|
};
|
|
2997
3323
|
|
|
3324
|
+
export enum PowerUnit {
|
|
3325
|
+
/** Return the power in kilowatts */
|
|
3326
|
+
KILOWATT = "kilowatt",
|
|
3327
|
+
/** Return the power in horsepower */
|
|
3328
|
+
HORSEPOWER = "horsepower"
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
export enum PressureUnit {
|
|
3332
|
+
/** Return the pressure in bar */
|
|
3333
|
+
BAR = "bar",
|
|
3334
|
+
/** Return the pressure in pounds per square inch */
|
|
3335
|
+
POUNDS_PER_SQUARE_INCH = "pounds_per_square_inch"
|
|
3336
|
+
}
|
|
3337
|
+
|
|
2998
3338
|
/** The price model */
|
|
2999
3339
|
export type Price = {
|
|
3000
3340
|
/** The value of the price */
|
|
@@ -3065,9 +3405,9 @@ export type Query = {
|
|
|
3065
3405
|
carPremium?: Maybe<CarPremium>;
|
|
3066
3406
|
/** Get a full list of cars */
|
|
3067
3407
|
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
3068
|
-
/** [BETA] Get connected vehicles
|
|
3408
|
+
/** [BETA] Get a connected vehicles by id */
|
|
3069
3409
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
3070
|
-
/** [BETA] Get
|
|
3410
|
+
/** [BETA] Get the connected vehicles for the current user */
|
|
3071
3411
|
connectedVehicleList?: Maybe<Array<Maybe<ConnectedVehicle>>>;
|
|
3072
3412
|
/** [BETA] Retrieve live vehicle data by connected vehicle id */
|
|
3073
3413
|
connectedVehicleData?: Maybe<VehicleData>;
|
|
@@ -3105,6 +3445,12 @@ export type Query = {
|
|
|
3105
3445
|
tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
3106
3446
|
/** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
|
|
3107
3447
|
navigationMapping?: Maybe<Scalars["JSON"]>;
|
|
3448
|
+
/** [BETA] Get information about a vehicle by its ID */
|
|
3449
|
+
vehicle?: Maybe<Vehicle>;
|
|
3450
|
+
/** [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
|
+
vehiclePremium?: Maybe<VehiclePremium>;
|
|
3452
|
+
/** [BETA] Get a full list of vehicles */
|
|
3453
|
+
vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
|
|
3108
3454
|
};
|
|
3109
3455
|
|
|
3110
3456
|
export type QueryamenityListArgs = {
|
|
@@ -3132,6 +3478,12 @@ export type QueryconnectedVehicleArgs = {
|
|
|
3132
3478
|
id: Scalars["ID"];
|
|
3133
3479
|
};
|
|
3134
3480
|
|
|
3481
|
+
export type QueryconnectedVehicleListArgs = {
|
|
3482
|
+
filter?: Maybe<ConnectedVehicleListFilter>;
|
|
3483
|
+
size?: Maybe<Scalars["Int"]>;
|
|
3484
|
+
page?: Maybe<Scalars["Int"]>;
|
|
3485
|
+
};
|
|
3486
|
+
|
|
3135
3487
|
export type QueryconnectedVehicleDataArgs = {
|
|
3136
3488
|
id: Scalars["ID"];
|
|
3137
3489
|
};
|
|
@@ -3178,7 +3530,8 @@ export type QueryroutePathArgs = {
|
|
|
3178
3530
|
};
|
|
3179
3531
|
|
|
3180
3532
|
export type QuerystationArgs = {
|
|
3181
|
-
id
|
|
3533
|
+
id?: Maybe<Scalars["ID"]>;
|
|
3534
|
+
evse_id?: Maybe<Scalars["String"]>;
|
|
3182
3535
|
};
|
|
3183
3536
|
|
|
3184
3537
|
export type QuerystationListArgs = {
|
|
@@ -3213,6 +3566,24 @@ export type QuerynavigationMappingArgs = {
|
|
|
3213
3566
|
language?: Maybe<MappingLanguage>;
|
|
3214
3567
|
};
|
|
3215
3568
|
|
|
3569
|
+
export type QueryvehicleArgs = {
|
|
3570
|
+
id: Scalars["ID"];
|
|
3571
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3572
|
+
};
|
|
3573
|
+
|
|
3574
|
+
export type QueryvehiclePremiumArgs = {
|
|
3575
|
+
id: Scalars["ID"];
|
|
3576
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3577
|
+
};
|
|
3578
|
+
|
|
3579
|
+
export type QueryvehicleListArgs = {
|
|
3580
|
+
search?: Maybe<Scalars["String"]>;
|
|
3581
|
+
filter?: Maybe<VehicleListFilter>;
|
|
3582
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3583
|
+
size?: Maybe<Scalars["Int"]>;
|
|
3584
|
+
page?: Maybe<Scalars["Int"]>;
|
|
3585
|
+
};
|
|
3586
|
+
|
|
3216
3587
|
export type RemoveConnectedVehicleInput = {
|
|
3217
3588
|
/** Id from the connected vehicle */
|
|
3218
3589
|
id: Scalars["ID"];
|
|
@@ -3220,7 +3591,7 @@ export type RemoveConnectedVehicleInput = {
|
|
|
3220
3591
|
|
|
3221
3592
|
/** EV specific data for a route request */
|
|
3222
3593
|
export type RequestEv = {
|
|
3223
|
-
/** Internal ID of a
|
|
3594
|
+
/** Internal ID of a Vehicle */
|
|
3224
3595
|
id?: Maybe<Scalars["ID"]>;
|
|
3225
3596
|
/** EV battery specific data */
|
|
3226
3597
|
battery?: Maybe<RequestEvBattery>;
|
|
@@ -3246,7 +3617,7 @@ export type RequestEv = {
|
|
|
3246
3617
|
};
|
|
3247
3618
|
|
|
3248
3619
|
export type RequestEvBattery = {
|
|
3249
|
-
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the
|
|
3620
|
+
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the vehicle battery.usable_kwh */
|
|
3250
3621
|
capacity?: Maybe<RequestEvBatteryValue>;
|
|
3251
3622
|
/** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value */
|
|
3252
3623
|
capacityKwh?: Maybe<Scalars["Float"]>;
|
|
@@ -3254,18 +3625,18 @@ export type RequestEvBattery = {
|
|
|
3254
3625
|
stateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
3255
3626
|
/** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge */
|
|
3256
3627
|
stateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
3257
|
-
/** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the
|
|
3628
|
+
/** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the vehicle battery.usable_kwh */
|
|
3258
3629
|
finalStateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
3259
3630
|
/** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge */
|
|
3260
3631
|
finalStateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
3261
3632
|
};
|
|
3262
3633
|
|
|
3263
3634
|
export type RequestEvBatteryInput = {
|
|
3264
|
-
/** Usable capacity of a battery used to compute a route. We recommend you stay between 50% and 150%. If this in not filled in, we assume it is the same value as the
|
|
3635
|
+
/** Usable capacity of a battery used to compute a route. We recommend you stay between 50% and 150%. If this in not filled in, we assume it is the same value as the vehicle battery.usable_kwh */
|
|
3265
3636
|
capacity?: Maybe<RequestEvBatteryInputValue>;
|
|
3266
|
-
/** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and we fill it in with
|
|
3637
|
+
/** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and we fill it in with vehicle battery.usable_kwh */
|
|
3267
3638
|
stateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
3268
|
-
/** Desired final amount of energy in a battery. The value should be between 0 and 80% of the
|
|
3639
|
+
/** Desired final amount of energy in a battery. The value should be between 0 and 80% of the vehicle battery.usable_kwh If this is not filled in, we assume it is 20% of the vehicle battery.usable_kwh */
|
|
3269
3640
|
finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
3270
3641
|
};
|
|
3271
3642
|
|
|
@@ -3288,7 +3659,7 @@ export type RequestEvConsumption = {
|
|
|
3288
3659
|
aux?: Maybe<CarConsumption>;
|
|
3289
3660
|
/** The consumption, in kWh, of the battery management system */
|
|
3290
3661
|
bms?: Maybe<CarConsumption>;
|
|
3291
|
-
/** The consumption, in kWh, of the
|
|
3662
|
+
/** The consumption, in kWh, of the vehicle in idle mode */
|
|
3292
3663
|
idle?: Maybe<CarConsumption>;
|
|
3293
3664
|
};
|
|
3294
3665
|
|
|
@@ -3297,12 +3668,12 @@ export type RequestEvConsumptionInput = {
|
|
|
3297
3668
|
aux?: Maybe<CarConsumptionInput>;
|
|
3298
3669
|
/** Consumption, in kWh, of the battery management system */
|
|
3299
3670
|
bms?: Maybe<CarConsumptionInput>;
|
|
3300
|
-
/** Consumption, in kWh, of the
|
|
3671
|
+
/** Consumption, in kWh, of the vehicle in idle mode */
|
|
3301
3672
|
idle?: Maybe<CarConsumptionInput>;
|
|
3302
3673
|
};
|
|
3303
3674
|
|
|
3304
3675
|
export type RequestEvInput = {
|
|
3305
|
-
/** Internal ID of a
|
|
3676
|
+
/** Internal ID of a Vehicle */
|
|
3306
3677
|
id: Scalars["ID"];
|
|
3307
3678
|
/** The EV battery specific data */
|
|
3308
3679
|
battery?: Maybe<RequestEvBatteryInput>;
|
|
@@ -3350,8 +3721,13 @@ export type RequestInput = {
|
|
|
3350
3721
|
};
|
|
3351
3722
|
|
|
3352
3723
|
export type RequestRoute = {
|
|
3353
|
-
/**
|
|
3724
|
+
/**
|
|
3725
|
+
* Requested amenities near the stations, within a 1 kilometer radius
|
|
3726
|
+
* @deprecated Will be removed. Use the amenity preferences instead
|
|
3727
|
+
*/
|
|
3354
3728
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3729
|
+
/** Amenity preferences for a route */
|
|
3730
|
+
amenity_preferences?: Maybe<RouteAmenityPreferences>;
|
|
3355
3731
|
/**
|
|
3356
3732
|
* Requested operators
|
|
3357
3733
|
* @deprecated Will be removed. Use the operators property instead
|
|
@@ -3388,8 +3764,10 @@ export type RequestRoute = {
|
|
|
3388
3764
|
};
|
|
3389
3765
|
|
|
3390
3766
|
export type RequestRouteInput = {
|
|
3391
|
-
/** A list of desired amenities near the stations, with a 1
|
|
3767
|
+
/** Deprecated: in favor of amenity preferences. A list of desired amenities near the stations, with a 1 kilometer radius */
|
|
3392
3768
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3769
|
+
/** Amenity preferences for a route */
|
|
3770
|
+
amenity_preferences?: Maybe<AmenityPreferencesInput>;
|
|
3393
3771
|
/** Deprecated: in favor of operators. A list of requested operators */
|
|
3394
3772
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3395
3773
|
/** Deprecated: in favor of operators. Flag which indicates if the operators are required */
|
|
@@ -3435,7 +3813,7 @@ export type Review = {
|
|
|
3435
3813
|
message?: Maybe<Scalars["String"]>;
|
|
3436
3814
|
/** Locale of a message */
|
|
3437
3815
|
locale?: Maybe<Scalars["String"]>;
|
|
3438
|
-
/**
|
|
3816
|
+
/** Vehicle that was provided/selected by a user */
|
|
3439
3817
|
ev?: Maybe<Car>;
|
|
3440
3818
|
/** Plug type that was provided/selected by a user */
|
|
3441
3819
|
plugType?: Maybe<ConnectorType>;
|
|
@@ -3459,7 +3837,7 @@ export type ReviewAdd = {
|
|
|
3459
3837
|
message?: Maybe<Scalars["String"]>;
|
|
3460
3838
|
/** Locale of a message */
|
|
3461
3839
|
locale?: Maybe<Scalars["String"]>;
|
|
3462
|
-
/** ID of the
|
|
3840
|
+
/** ID of the vehicle that was provided/selected by a user */
|
|
3463
3841
|
ev?: Maybe<Scalars["String"]>;
|
|
3464
3842
|
/** Plug type that was provided/selected by a user */
|
|
3465
3843
|
plugType?: Maybe<ConnectorType>;
|
|
@@ -3643,6 +4021,14 @@ export enum RouteAlternativeType {
|
|
|
3643
4021
|
ALTERNATIVE = "alternative"
|
|
3644
4022
|
}
|
|
3645
4023
|
|
|
4024
|
+
/** Amenity preferences for a route */
|
|
4025
|
+
export type RouteAmenityPreferences = {
|
|
4026
|
+
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius */
|
|
4027
|
+
all_charge_stops?: Maybe<Array<AmenityType>>;
|
|
4028
|
+
/** Scheduled charge stops, with a specified amenity and timeline */
|
|
4029
|
+
scheduled_charge_stops?: Maybe<Array<RouteScheduledChargeStop>>;
|
|
4030
|
+
};
|
|
4031
|
+
|
|
3646
4032
|
export type RouteApp = {
|
|
3647
4033
|
/** ID of the app who requested a route */
|
|
3648
4034
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -3866,6 +4252,20 @@ export type RoutePath = {
|
|
|
3866
4252
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
3867
4253
|
};
|
|
3868
4254
|
|
|
4255
|
+
/** Scheduled charge stop along a route */
|
|
4256
|
+
export type RouteScheduledChargeStop = {
|
|
4257
|
+
/** List of amenity types */
|
|
4258
|
+
types?: Maybe<Array<Maybe<AmenityType>>>;
|
|
4259
|
+
/** Duration at the amenity, in seconds */
|
|
4260
|
+
duration?: Maybe<Scalars["Int"]>;
|
|
4261
|
+
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800 */
|
|
4262
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
4263
|
+
/** Desired drive time before a scheduled stop after leaving the previous stop, in seconds */
|
|
4264
|
+
stop_after?: Maybe<Scalars["Int"]>;
|
|
4265
|
+
/** Maximum distance from a station to an amenity, in meters */
|
|
4266
|
+
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
4267
|
+
};
|
|
4268
|
+
|
|
3869
4269
|
/** The season of the route */
|
|
3870
4270
|
export enum RouteSeason {
|
|
3871
4271
|
/** We suppose it is summer and we have the best weather conditions */
|
|
@@ -3934,6 +4334,27 @@ export enum RouteTagType {
|
|
|
3934
4334
|
CROSSBORDER = "crossborder"
|
|
3935
4335
|
}
|
|
3936
4336
|
|
|
4337
|
+
/** Scheduled charge stop along a route */
|
|
4338
|
+
export type ScheduledChargeStopInput = {
|
|
4339
|
+
/** List of amenity types */
|
|
4340
|
+
types: Array<AmenityType>;
|
|
4341
|
+
/** Duration at the amenity, in seconds. The value should be between 900 and 86400 */
|
|
4342
|
+
duration: Scalars["Int"];
|
|
4343
|
+
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800 */
|
|
4344
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
4345
|
+
/** Desired drive time for a scheduled stop after leaving the origin point, in seconds */
|
|
4346
|
+
stop_after: Scalars["Int"];
|
|
4347
|
+
/** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000. Default is 1000 */
|
|
4348
|
+
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
4349
|
+
};
|
|
4350
|
+
|
|
4351
|
+
export enum SpeedUnit {
|
|
4352
|
+
/** Return the speed in kilometers per hour */
|
|
4353
|
+
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
4354
|
+
/** Return the speed in miles per hour */
|
|
4355
|
+
MILES_PER_HOUR = "miles_per_hour"
|
|
4356
|
+
}
|
|
4357
|
+
|
|
3937
4358
|
/** Standards(plug type) stats model */
|
|
3938
4359
|
export type StandardStats = {
|
|
3939
4360
|
/** The plug type */
|
|
@@ -3942,6 +4363,26 @@ export type StandardStats = {
|
|
|
3942
4363
|
total?: Maybe<Scalars["Int"]>;
|
|
3943
4364
|
};
|
|
3944
4365
|
|
|
4366
|
+
export type StateOfChargeInput = {
|
|
4367
|
+
/** Value of the state of charge of the vehicle */
|
|
4368
|
+
value: Scalars["Float"];
|
|
4369
|
+
/** Type of the state of charge of the vehicle */
|
|
4370
|
+
type: BatteryInputType;
|
|
4371
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4372
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4373
|
+
};
|
|
4374
|
+
|
|
4375
|
+
export enum StateOfChargeUnit {
|
|
4376
|
+
/** Return the state of charge in kilometers */
|
|
4377
|
+
KILOMETER = "kilometer",
|
|
4378
|
+
/** Return the speed of charge in miles */
|
|
4379
|
+
MILE = "mile",
|
|
4380
|
+
/** Return the speed of charge in kilowatt hours */
|
|
4381
|
+
KILOWATT_HOUR = "kilowatt_hour",
|
|
4382
|
+
/** Return the speed of charge in a percentage */
|
|
4383
|
+
PERCENTAGE = "percentage"
|
|
4384
|
+
}
|
|
4385
|
+
|
|
3945
4386
|
/** Station data which extends OCPI Location */
|
|
3946
4387
|
export type Station = {
|
|
3947
4388
|
/** Review of a station */
|
|
@@ -4085,6 +4526,8 @@ export type StationCustomProperties = {
|
|
|
4085
4526
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
4086
4527
|
/** Type of access to the charging station */
|
|
4087
4528
|
access_type?: Maybe<AccessType>;
|
|
4529
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
4530
|
+
oicp?: Maybe<OICPStationCustomProperties>;
|
|
4088
4531
|
};
|
|
4089
4532
|
|
|
4090
4533
|
/** Filter which can be applied to retrieve the station list action */
|
|
@@ -4207,6 +4650,207 @@ export type SubscriptionrouteUpdatedByIdArgs = {
|
|
|
4207
4650
|
id: Scalars["ID"];
|
|
4208
4651
|
};
|
|
4209
4652
|
|
|
4653
|
+
export type Telemetry = {
|
|
4654
|
+
/** Value of the auxiliary power consumption of the vehicle */
|
|
4655
|
+
auxiliary_consumption?: Maybe<Scalars["Float"]>;
|
|
4656
|
+
/** Battery current in ampere */
|
|
4657
|
+
battery_current?: Maybe<Scalars["Float"]>;
|
|
4658
|
+
/** Value of the temperature of the battery */
|
|
4659
|
+
battery_temperature?: Maybe<Scalars["Float"]>;
|
|
4660
|
+
/** Battery voltage in volts */
|
|
4661
|
+
battery_voltage?: Maybe<Scalars["Float"]>;
|
|
4662
|
+
/** Is the vehicle currently charging */
|
|
4663
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
4664
|
+
/** Value of the rate of charge of the battery */
|
|
4665
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
4666
|
+
/** Value of the amount of battery charged */
|
|
4667
|
+
charge_total?: Maybe<Scalars["Float"]>;
|
|
4668
|
+
/** Value of the current weight of the occupants */
|
|
4669
|
+
total_occupant_weight?: Maybe<Scalars["Float"]>;
|
|
4670
|
+
/** Value of the current weight of the cargo */
|
|
4671
|
+
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
4672
|
+
/** Value of the current elevation */
|
|
4673
|
+
elevation?: Maybe<Scalars["Float"]>;
|
|
4674
|
+
/** Current heading in degrees */
|
|
4675
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
4676
|
+
/** RPM of the motor */
|
|
4677
|
+
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
4678
|
+
/** Number of occupants present in the vehicle */
|
|
4679
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
4680
|
+
/** Value of the vehicle's odometer */
|
|
4681
|
+
odometer?: Maybe<Scalars["Float"]>;
|
|
4682
|
+
/** Value of the outside temperature */
|
|
4683
|
+
outside_temperature?: Maybe<Scalars["Float"]>;
|
|
4684
|
+
/** Vehicle is in park, neutral or turned off */
|
|
4685
|
+
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
4686
|
+
/** Value of the positive or negative power. When negative the vehicle is charging */
|
|
4687
|
+
power?: Maybe<Scalars["Float"]>;
|
|
4688
|
+
/** Value of the state of charge of the vehicle */
|
|
4689
|
+
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
4690
|
+
/** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear */
|
|
4691
|
+
tire_pressure?: Maybe<Array<Scalars["Float"]>>;
|
|
4692
|
+
/** UNIX timestamp in seconds */
|
|
4693
|
+
timestamp?: Maybe<Scalars["Int"]>;
|
|
4694
|
+
/** Value of the vehicle speed */
|
|
4695
|
+
vehicle_speed?: Maybe<Scalars["Float"]>;
|
|
4696
|
+
/** Custom input fields can be added based on telemetry architecture */
|
|
4697
|
+
custom?: Maybe<Scalars["JSON"]>;
|
|
4698
|
+
};
|
|
4699
|
+
|
|
4700
|
+
export type Telemetryauxiliary_consumptionArgs = {
|
|
4701
|
+
unit?: Maybe<AuxiliaryConsumptionUnit>;
|
|
4702
|
+
};
|
|
4703
|
+
|
|
4704
|
+
export type Telemetrybattery_temperatureArgs = {
|
|
4705
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4706
|
+
};
|
|
4707
|
+
|
|
4708
|
+
export type Telemetrycharge_speedArgs = {
|
|
4709
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
4710
|
+
};
|
|
4711
|
+
|
|
4712
|
+
export type Telemetrycharge_totalArgs = {
|
|
4713
|
+
unit?: Maybe<BatteryInputType>;
|
|
4714
|
+
};
|
|
4715
|
+
|
|
4716
|
+
export type Telemetrytotal_occupant_weightArgs = {
|
|
4717
|
+
unit?: Maybe<WeightUnit>;
|
|
4718
|
+
};
|
|
4719
|
+
|
|
4720
|
+
export type Telemetrytotal_cargo_weightArgs = {
|
|
4721
|
+
unit?: Maybe<WeightUnit>;
|
|
4722
|
+
};
|
|
4723
|
+
|
|
4724
|
+
export type TelemetryelevationArgs = {
|
|
4725
|
+
unit?: Maybe<ElevationUnit>;
|
|
4726
|
+
};
|
|
4727
|
+
|
|
4728
|
+
export type TelemetryodometerArgs = {
|
|
4729
|
+
unit?: Maybe<DistanceUnit>;
|
|
4730
|
+
};
|
|
4731
|
+
|
|
4732
|
+
export type Telemetryoutside_temperatureArgs = {
|
|
4733
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4734
|
+
};
|
|
4735
|
+
|
|
4736
|
+
export type TelemetrypowerArgs = {
|
|
4737
|
+
unit?: Maybe<PowerUnit>;
|
|
4738
|
+
};
|
|
4739
|
+
|
|
4740
|
+
export type Telemetrystate_of_chargeArgs = {
|
|
4741
|
+
unit?: Maybe<BatteryInputType>;
|
|
4742
|
+
};
|
|
4743
|
+
|
|
4744
|
+
export type Telemetrytire_pressureArgs = {
|
|
4745
|
+
unit?: Maybe<PressureUnit>;
|
|
4746
|
+
};
|
|
4747
|
+
|
|
4748
|
+
export type Telemetryvehicle_speedArgs = {
|
|
4749
|
+
unit?: Maybe<SpeedUnit>;
|
|
4750
|
+
};
|
|
4751
|
+
|
|
4752
|
+
export type TelemetryInput = {
|
|
4753
|
+
/** Average auxiliary power consumption */
|
|
4754
|
+
auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;
|
|
4755
|
+
/** Battery current in ampere */
|
|
4756
|
+
battery_current?: Maybe<Scalars["Float"]>;
|
|
4757
|
+
/** Battery temperature */
|
|
4758
|
+
battery_temperature?: Maybe<BatteryTemperatureInput>;
|
|
4759
|
+
/** Battery voltage in volts */
|
|
4760
|
+
battery_voltage?: Maybe<Scalars["Float"]>;
|
|
4761
|
+
/** Is the vehicle currently charging */
|
|
4762
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
4763
|
+
/** Rate of charge */
|
|
4764
|
+
charge_speed?: Maybe<ChargeSpeedInput>;
|
|
4765
|
+
/** Amount charged */
|
|
4766
|
+
charge_total?: Maybe<ChargeTotalInput>;
|
|
4767
|
+
/** Cumulated weight of the occupants */
|
|
4768
|
+
total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
|
|
4769
|
+
/** Weight of the cargo */
|
|
4770
|
+
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
4771
|
+
/** Current elevation */
|
|
4772
|
+
elevation?: Maybe<ElevationInput>;
|
|
4773
|
+
/** Current heading in degrees */
|
|
4774
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
4775
|
+
/** RPM of the motor */
|
|
4776
|
+
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
4777
|
+
/** Number of occupants in the vehicle */
|
|
4778
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
4779
|
+
/** Mileage or odometer reading */
|
|
4780
|
+
odometer?: Maybe<OdometerInput>;
|
|
4781
|
+
/** Outside temperature */
|
|
4782
|
+
outside_temperature?: Maybe<OutsideTempInput>;
|
|
4783
|
+
/** Vehicle is in park, neutral or turned off */
|
|
4784
|
+
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
4785
|
+
/** Vehicle power */
|
|
4786
|
+
power?: Maybe<PowerInput>;
|
|
4787
|
+
/** Battery state of charge */
|
|
4788
|
+
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
4789
|
+
/** Average tire pressures of all wheels, starting from the front side right to left and to the rear */
|
|
4790
|
+
tire_pressure?: Maybe<TirePressureInput>;
|
|
4791
|
+
/** UNIX timestamp in seconds */
|
|
4792
|
+
timestamp?: Maybe<Scalars["Int"]>;
|
|
4793
|
+
/** Vehicle speed */
|
|
4794
|
+
vehicle_speed?: Maybe<VehicleSpeedInput>;
|
|
4795
|
+
/** Custom input fields can be added based on telemetry architecture */
|
|
4796
|
+
custom?: Maybe<Scalars["JSON"]>;
|
|
4797
|
+
};
|
|
4798
|
+
|
|
4799
|
+
export enum TelemetryInputSource {
|
|
4800
|
+
/** Manually inputted value */
|
|
4801
|
+
MANUAL = "manual",
|
|
4802
|
+
/** Value from the vehicle's telemetry */
|
|
4803
|
+
TELEMETRY = "telemetry"
|
|
4804
|
+
}
|
|
4805
|
+
|
|
4806
|
+
export enum TemperatureUnit {
|
|
4807
|
+
/** Return the temperature in Celsius */
|
|
4808
|
+
CELSIUS = "Celsius",
|
|
4809
|
+
/** Return the temperature in Fahrenheit */
|
|
4810
|
+
FAHRENHEIT = "Fahrenheit"
|
|
4811
|
+
}
|
|
4812
|
+
|
|
4813
|
+
export type TirePressureInput = {
|
|
4814
|
+
/** Values for the tire pressure, starting from the front side right to left and to the rear */
|
|
4815
|
+
value: Array<Scalars["Float"]>;
|
|
4816
|
+
/** Type of the value of pressure */
|
|
4817
|
+
type: PressureUnit;
|
|
4818
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4819
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4820
|
+
};
|
|
4821
|
+
|
|
4822
|
+
export enum TorqueUnit {
|
|
4823
|
+
/** Return the torque in newton meters */
|
|
4824
|
+
NEWTON_METER = "newton_meter",
|
|
4825
|
+
/** Return the torque in foot pounds */
|
|
4826
|
+
FOOT_POUND = "foot_pound"
|
|
4827
|
+
}
|
|
4828
|
+
|
|
4829
|
+
export type TotalCargoWeightInput = {
|
|
4830
|
+
/** Value of the current weight of the cargo */
|
|
4831
|
+
value: Scalars["Float"];
|
|
4832
|
+
/** Type of the current weight of the cargo */
|
|
4833
|
+
type: WeightUnit;
|
|
4834
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4835
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4836
|
+
};
|
|
4837
|
+
|
|
4838
|
+
export type TotalOccupantWeightInput = {
|
|
4839
|
+
/** Value of the current weight of the occupants */
|
|
4840
|
+
value: Scalars["Float"];
|
|
4841
|
+
/** Type of the current weight of the occupants */
|
|
4842
|
+
type: WeightUnit;
|
|
4843
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4844
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4845
|
+
};
|
|
4846
|
+
|
|
4847
|
+
export enum TurningCircleUnit {
|
|
4848
|
+
/** Return the turning circle in meters */
|
|
4849
|
+
METER = "meter",
|
|
4850
|
+
/** Return the turning circle in feet */
|
|
4851
|
+
FOOT = "foot"
|
|
4852
|
+
}
|
|
4853
|
+
|
|
4210
4854
|
export type UpdateConnectedVehicleInput = {
|
|
4211
4855
|
/** Id from the connected vehicle */
|
|
4212
4856
|
id: Scalars["ID"];
|
|
@@ -4214,7 +4858,150 @@ export type UpdateConnectedVehicleInput = {
|
|
|
4214
4858
|
label?: Maybe<Scalars["PlainString"]>;
|
|
4215
4859
|
};
|
|
4216
4860
|
|
|
4217
|
-
|
|
4861
|
+
/** Output of a vehicle query */
|
|
4862
|
+
export type Vehicle = {
|
|
4863
|
+
/** Vehicles unique ID */
|
|
4864
|
+
id: Scalars["ID"];
|
|
4865
|
+
/** Naming of the vehicle */
|
|
4866
|
+
naming: VehicleNaming;
|
|
4867
|
+
/** Drivetrain of the vehicle */
|
|
4868
|
+
drivetrain: VehicleDrivetrain;
|
|
4869
|
+
/** Available connectors for the vehicle */
|
|
4870
|
+
connectors: Array<VehicleConnector>;
|
|
4871
|
+
/** Adapters for the connectors of the vehicle */
|
|
4872
|
+
adapters: Array<VehicleConnector>;
|
|
4873
|
+
/** Battery of the vehicle */
|
|
4874
|
+
battery: VehicleBattery;
|
|
4875
|
+
/** Body of the vehicle */
|
|
4876
|
+
body: VehicleBody;
|
|
4877
|
+
/** Availability of the vehicle */
|
|
4878
|
+
availability: VehicleAvailability;
|
|
4879
|
+
/** Performance of the vehicle */
|
|
4880
|
+
performance?: Maybe<VehiclePerformance>;
|
|
4881
|
+
/** Range of the vehicle */
|
|
4882
|
+
range: VehicleRange;
|
|
4883
|
+
/** Media of the vehicle */
|
|
4884
|
+
media: VehicleMedia;
|
|
4885
|
+
/** Routing of the vehicle */
|
|
4886
|
+
routing: VehicleRouting;
|
|
4887
|
+
/** Information about vehicle connectivity */
|
|
4888
|
+
connect: Connect;
|
|
4889
|
+
};
|
|
4890
|
+
|
|
4891
|
+
export type VehicleAvailability = {
|
|
4892
|
+
/** Availability of the vehicle */
|
|
4893
|
+
status: VehicleAvailabilityStatus;
|
|
4894
|
+
};
|
|
4895
|
+
|
|
4896
|
+
/** Availability status of a vehicle */
|
|
4897
|
+
export enum VehicleAvailabilityStatus {
|
|
4898
|
+
/** Vehicle no longer for sale in any market / region */
|
|
4899
|
+
NO_LONGER_AVAILABLE = "no_longer_available",
|
|
4900
|
+
/** Vehicle currently for sale in at least one market / region */
|
|
4901
|
+
AVAILABLE = "available",
|
|
4902
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order open */
|
|
4903
|
+
RELEASE_DATE_ANNOUNCED_PREORDERABLE = "release_date_announced_preorderable",
|
|
4904
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open */
|
|
4905
|
+
RELEASE_DATE_ANNOUNCED = "release_date_announced",
|
|
4906
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order open */
|
|
4907
|
+
CONCEPT_VEHICLE_PREORDERABLE = "concept_vehicle_preorderable",
|
|
4908
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open */
|
|
4909
|
+
CONCEPT_VEHICLE = "concept_vehicle",
|
|
4910
|
+
/** Concept vehicle, not close to production and/or unconfirmed, pre-order open */
|
|
4911
|
+
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 */
|
|
4913
|
+
CONCEPT_VEHICLE_RELEASE_DATE_TBA = "concept_vehicle_release_date_tba",
|
|
4914
|
+
/** Status uncertain, introduction date and/or pricing unclear */
|
|
4915
|
+
UNCERTAIN = "uncertain"
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4918
|
+
export type VehicleBattery = {
|
|
4919
|
+
/** Full battery capacity in kWh */
|
|
4920
|
+
full_kwh: Scalars["Float"];
|
|
4921
|
+
/** Usable battery capacity in kWh */
|
|
4922
|
+
usable_kwh: Scalars["Float"];
|
|
4923
|
+
};
|
|
4924
|
+
|
|
4925
|
+
/** Battery field estimated */
|
|
4926
|
+
export enum VehicleBatteryFieldEstimations {
|
|
4927
|
+
/** Both of the battery kWh fields are estimations */
|
|
4928
|
+
B = "B",
|
|
4929
|
+
/** full_kwh field is estimated */
|
|
4930
|
+
F = "F",
|
|
4931
|
+
/** None of the battery kWh fields are estimations */
|
|
4932
|
+
N = "N",
|
|
4933
|
+
/** usable_kwh field is estimated */
|
|
4934
|
+
U = "U"
|
|
4935
|
+
}
|
|
4936
|
+
|
|
4937
|
+
export type VehicleBody = {
|
|
4938
|
+
/** Width with folded mirrors, default in mm */
|
|
4939
|
+
width: Scalars["Float"];
|
|
4940
|
+
/** Height (average height for adjustable suspensions), default in mm */
|
|
4941
|
+
height: Scalars["Float"];
|
|
4942
|
+
/** Weight (unladen), default in kg */
|
|
4943
|
+
weight: VehicleBodyWeight;
|
|
4944
|
+
/** Number of seats */
|
|
4945
|
+
seats: Scalars["Int"];
|
|
4946
|
+
};
|
|
4947
|
+
|
|
4948
|
+
export type VehicleBodywidthArgs = {
|
|
4949
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4950
|
+
};
|
|
4951
|
+
|
|
4952
|
+
export type VehicleBodyheightArgs = {
|
|
4953
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4954
|
+
};
|
|
4955
|
+
|
|
4956
|
+
export type VehicleBodyWeight = {
|
|
4957
|
+
/** Minimum weight, default in kg */
|
|
4958
|
+
minimum?: Maybe<Scalars["Float"]>;
|
|
4959
|
+
/** Nominal weight, default in kg */
|
|
4960
|
+
nominal: Scalars["Float"];
|
|
4961
|
+
/** Maximal weight, default in kg */
|
|
4962
|
+
maximal?: Maybe<Scalars["Float"]>;
|
|
4963
|
+
};
|
|
4964
|
+
|
|
4965
|
+
export type VehicleBodyWeightminimumArgs = {
|
|
4966
|
+
unit?: Maybe<WeightUnit>;
|
|
4967
|
+
};
|
|
4968
|
+
|
|
4969
|
+
export type VehicleBodyWeightnominalArgs = {
|
|
4970
|
+
unit?: Maybe<WeightUnit>;
|
|
4971
|
+
};
|
|
4972
|
+
|
|
4973
|
+
export type VehicleBodyWeightmaximalArgs = {
|
|
4974
|
+
unit?: Maybe<WeightUnit>;
|
|
4975
|
+
};
|
|
4976
|
+
|
|
4977
|
+
/** Vehicle plug model */
|
|
4978
|
+
export type VehicleConnector = {
|
|
4979
|
+
/** Connector type, known as connector standard in OCPI */
|
|
4980
|
+
standard: ConnectorType;
|
|
4981
|
+
/** Usable electric power in kW */
|
|
4982
|
+
power: Scalars["Float"];
|
|
4983
|
+
/** Maximum electric power in kW */
|
|
4984
|
+
max_electric_power: Scalars["Float"];
|
|
4985
|
+
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
|
|
4986
|
+
time: Scalars["Int"];
|
|
4987
|
+
/** Charging speed, default in kmph */
|
|
4988
|
+
speed: Scalars["Float"];
|
|
4989
|
+
};
|
|
4990
|
+
|
|
4991
|
+
/** Vehicle plug model */
|
|
4992
|
+
export type VehicleConnectorspeedArgs = {
|
|
4993
|
+
unit?: Maybe<SpeedUnit>;
|
|
4994
|
+
};
|
|
4995
|
+
|
|
4996
|
+
/** The consumption of the vehicle */
|
|
4997
|
+
export type VehicleConsumptionInput = {
|
|
4998
|
+
/** Worst conditions are based on -10°C and use of heating */
|
|
4999
|
+
worst?: Maybe<Scalars["Float"]>;
|
|
5000
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
5001
|
+
best?: Maybe<Scalars["Float"]>;
|
|
5002
|
+
};
|
|
5003
|
+
|
|
5004
|
+
export type VehicleData = {
|
|
4218
5005
|
/** Battery data */
|
|
4219
5006
|
battery?: Maybe<ConnectBattery>;
|
|
4220
5007
|
/** Charge data */
|
|
@@ -4224,3 +5011,1036 @@ export type VehicleData = {
|
|
|
4224
5011
|
/** Odometer data */
|
|
4225
5012
|
odometer?: Maybe<ConnectOdometer>;
|
|
4226
5013
|
};
|
|
5014
|
+
|
|
5015
|
+
export enum VehicleDataProvider {
|
|
5016
|
+
/** Internal data provider */
|
|
5017
|
+
CHARGETRIP = "chargetrip",
|
|
5018
|
+
/** EV database data provider */
|
|
5019
|
+
EVDATABASE = "evdatabase"
|
|
5020
|
+
}
|
|
5021
|
+
|
|
5022
|
+
export type VehicleDrivetrain = {
|
|
5023
|
+
/** Type of drivetrain */
|
|
5024
|
+
type: VehicleDrivetrainType;
|
|
5025
|
+
};
|
|
5026
|
+
|
|
5027
|
+
/** Drivetrain */
|
|
5028
|
+
export enum VehicleDrivetrainType {
|
|
5029
|
+
/** Battery Electric Vehicle */
|
|
5030
|
+
BEV = "BEV",
|
|
5031
|
+
/** Extended Range Electric Vehicle */
|
|
5032
|
+
EREV = "EREV",
|
|
5033
|
+
/** Hybrid Electric Vehicle */
|
|
5034
|
+
HEV = "HEV",
|
|
5035
|
+
/** Plug-in Hybrid Electric Vehicle */
|
|
5036
|
+
PHEV = "PHEV"
|
|
5037
|
+
}
|
|
5038
|
+
|
|
5039
|
+
/** Fuel type */
|
|
5040
|
+
export enum VehicleFuel {
|
|
5041
|
+
/** ICE engine available. Uses diesel */
|
|
5042
|
+
D = "D",
|
|
5043
|
+
/** Electricity only. Full electric vehicle */
|
|
5044
|
+
E = "E",
|
|
5045
|
+
/** ICE engine available. Uses petrol */
|
|
5046
|
+
P = "P"
|
|
5047
|
+
}
|
|
5048
|
+
|
|
5049
|
+
export type VehicleImage = {
|
|
5050
|
+
/** Image id */
|
|
5051
|
+
id?: Maybe<Scalars["ID"]>;
|
|
5052
|
+
/** Image type */
|
|
5053
|
+
type: VehicleImageType;
|
|
5054
|
+
/** Full path URL of a large image */
|
|
5055
|
+
url: Scalars["String"];
|
|
5056
|
+
/** Height of a large image in pixels */
|
|
5057
|
+
height: Scalars["Int"];
|
|
5058
|
+
/** Width of a large image in pixels */
|
|
5059
|
+
width: Scalars["Int"];
|
|
5060
|
+
/** Full path URL of a thumbnail image */
|
|
5061
|
+
thumbnail_url: Scalars["String"];
|
|
5062
|
+
/** Height of a thumbnail image in pixels */
|
|
5063
|
+
thumbnail_height: Scalars["Int"];
|
|
5064
|
+
/** Width of a thumbnail image in pixels */
|
|
5065
|
+
thumbnail_width: Scalars["Int"];
|
|
5066
|
+
};
|
|
5067
|
+
|
|
5068
|
+
/** Available types of images which can be found for a vehicle. Each type has specific image sizes */
|
|
5069
|
+
export enum VehicleImageType {
|
|
5070
|
+
/** Images provided by a Vehicle Datasource */
|
|
5071
|
+
PROVIDER = "provider",
|
|
5072
|
+
/** Full-sized image at 1536x864 px */
|
|
5073
|
+
IMAGE = "image",
|
|
5074
|
+
/** Thumbnail of a full-sized image at 131x72 px */
|
|
5075
|
+
IMAGE_THUMBNAIL = "image_thumbnail",
|
|
5076
|
+
/** Full-sized brand (maker) logo at 768x432 px */
|
|
5077
|
+
BRAND = "brand",
|
|
5078
|
+
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
5079
|
+
BRAND_THUMBNAIL = "brand_thumbnail"
|
|
5080
|
+
}
|
|
5081
|
+
|
|
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 */
|
|
5083
|
+
export enum VehicleImageTypeUploadable {
|
|
5084
|
+
/** Full size image with a resolution at least 1536x864 px */
|
|
5085
|
+
IMAGE = "image"
|
|
5086
|
+
}
|
|
5087
|
+
|
|
5088
|
+
/** The output element of the vehicleList query */
|
|
5089
|
+
export type VehicleList = {
|
|
5090
|
+
/** Vehicles unique ID */
|
|
5091
|
+
id: Scalars["ID"];
|
|
5092
|
+
/** Naming of the vehicle */
|
|
5093
|
+
naming: VehicleListNaming;
|
|
5094
|
+
/** Drivetrain of the vehicle */
|
|
5095
|
+
drivetrain: VehicleDrivetrain;
|
|
5096
|
+
/** Connectors available for the vehicle */
|
|
5097
|
+
connectors: Array<VehicleConnector>;
|
|
5098
|
+
/** Adapters available for the vehicle */
|
|
5099
|
+
adapters: Array<VehicleConnector>;
|
|
5100
|
+
/** Battery of the vehicle */
|
|
5101
|
+
battery: VehicleListBattery;
|
|
5102
|
+
/** Body of the vehicle */
|
|
5103
|
+
body: VehicleListBody;
|
|
5104
|
+
/** Availability of the vehicle */
|
|
5105
|
+
availability: VehicleListAvailability;
|
|
5106
|
+
/** Range of the vehicle */
|
|
5107
|
+
range: VehicleListRange;
|
|
5108
|
+
/** Media of the vehicle */
|
|
5109
|
+
media: VehicleListMedia;
|
|
5110
|
+
/** Routing of the vehicle */
|
|
5111
|
+
routing: VehicleListRouting;
|
|
5112
|
+
/** Information about vehicle connectivity */
|
|
5113
|
+
connect: Connect;
|
|
5114
|
+
};
|
|
5115
|
+
|
|
5116
|
+
export type VehicleListAvailability = {
|
|
5117
|
+
/** Availability of the vehicle */
|
|
5118
|
+
status: VehicleAvailabilityStatus;
|
|
5119
|
+
};
|
|
5120
|
+
|
|
5121
|
+
export type VehicleListBattery = {
|
|
5122
|
+
/** Full battery capacity in kWh */
|
|
5123
|
+
full_kwh: Scalars["Float"];
|
|
5124
|
+
/** Usable battery capacity in kWh */
|
|
5125
|
+
usable_kwh: Scalars["Float"];
|
|
5126
|
+
};
|
|
5127
|
+
|
|
5128
|
+
export type VehicleListBody = {
|
|
5129
|
+
/** Number of seats in a vehicle */
|
|
5130
|
+
seats: Scalars["Int"];
|
|
5131
|
+
};
|
|
5132
|
+
|
|
5133
|
+
export type VehicleListFilter = {
|
|
5134
|
+
/** Availability of a vehicle */
|
|
5135
|
+
availability?: Maybe<Array<Maybe<VehicleAvailabilityStatus>>>;
|
|
5136
|
+
/** Drivetrain type of a vehicle */
|
|
5137
|
+
drivetrain?: Maybe<VehicleDrivetrainType>;
|
|
5138
|
+
/** Information about vehicle connectivity */
|
|
5139
|
+
connect?: Maybe<ConnectFilter>;
|
|
5140
|
+
};
|
|
5141
|
+
|
|
5142
|
+
export type VehicleListMedia = {
|
|
5143
|
+
/** Latest image of the vehicle */
|
|
5144
|
+
image: VehicleImage;
|
|
5145
|
+
/** Latest maker logo of the vehicle */
|
|
5146
|
+
brand: VehicleImage;
|
|
5147
|
+
/** Latest video of the vehicle */
|
|
5148
|
+
video?: Maybe<VehicleVideo>;
|
|
5149
|
+
};
|
|
5150
|
+
|
|
5151
|
+
export type VehicleListNaming = {
|
|
5152
|
+
/** Vehicle manufacturer name */
|
|
5153
|
+
make: Scalars["String"];
|
|
5154
|
+
/** Vehicle model name */
|
|
5155
|
+
model: Scalars["String"];
|
|
5156
|
+
/** Version, edition or submodel of the vehicle */
|
|
5157
|
+
version?: Maybe<Scalars["String"]>;
|
|
5158
|
+
/** Another submodel level of the vehicle */
|
|
5159
|
+
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 */
|
|
5161
|
+
chargetrip_version: Scalars["String"];
|
|
5162
|
+
};
|
|
5163
|
+
|
|
5164
|
+
export type VehicleListRange = {
|
|
5165
|
+
/**
|
|
5166
|
+
* Is an index value of what we consider to be the real-world range.
|
|
5167
|
+
* (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display in the front-end.
|
|
5168
|
+
*/
|
|
5169
|
+
chargetrip_range: ChargetripRange;
|
|
5170
|
+
};
|
|
5171
|
+
|
|
5172
|
+
export type VehicleListRouting = {
|
|
5173
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
5174
|
+
fast_charging_support: Scalars["Boolean"];
|
|
5175
|
+
};
|
|
5176
|
+
|
|
5177
|
+
export type VehicleMedia = {
|
|
5178
|
+
/** Latest image */
|
|
5179
|
+
image: VehicleImage;
|
|
5180
|
+
/** Latest maker logo */
|
|
5181
|
+
brand: VehicleImage;
|
|
5182
|
+
/** All images */
|
|
5183
|
+
image_list: Array<VehicleImage>;
|
|
5184
|
+
/** Latest video */
|
|
5185
|
+
video?: Maybe<VehicleVideo>;
|
|
5186
|
+
/** All videos */
|
|
5187
|
+
video_list?: Maybe<Array<VehicleVideo>>;
|
|
5188
|
+
};
|
|
5189
|
+
|
|
5190
|
+
/** Mode (state) of the current production */
|
|
5191
|
+
export enum VehicleMode {
|
|
5192
|
+
/** Old vehicle that is no longer manufactured */
|
|
5193
|
+
INDEX_ONLY = "index_only",
|
|
5194
|
+
/** Vehicle is in production and has been released */
|
|
5195
|
+
PRODUCTION = "production",
|
|
5196
|
+
/** Future releases of a vehicle, a concept of the vehicle, specs may change over time */
|
|
5197
|
+
CONCEPT = "concept"
|
|
5198
|
+
}
|
|
5199
|
+
|
|
5200
|
+
export type VehicleNaming = {
|
|
5201
|
+
/** Vehicle manufacturer name */
|
|
5202
|
+
make: Scalars["String"];
|
|
5203
|
+
/** Vehicle model name */
|
|
5204
|
+
model: Scalars["String"];
|
|
5205
|
+
/** Version, edition or submodel of the vehicle */
|
|
5206
|
+
version?: Maybe<Scalars["String"]>;
|
|
5207
|
+
/** Another submodel level of the vehicle */
|
|
5208
|
+
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 */
|
|
5210
|
+
chargetrip_version: Scalars["String"];
|
|
5211
|
+
};
|
|
5212
|
+
|
|
5213
|
+
export type VehiclePerformance = {
|
|
5214
|
+
/** Acceleration in seconds, default in kmph to 100 */
|
|
5215
|
+
acceleration?: Maybe<Scalars["Float"]>;
|
|
5216
|
+
/** Top speed of the vehicle, default in kmph */
|
|
5217
|
+
top_speed?: Maybe<Scalars["Float"]>;
|
|
5218
|
+
};
|
|
5219
|
+
|
|
5220
|
+
export type VehiclePerformanceaccelerationArgs = {
|
|
5221
|
+
unit?: Maybe<AccelerationUnit>;
|
|
5222
|
+
};
|
|
5223
|
+
|
|
5224
|
+
export type VehiclePerformancetop_speedArgs = {
|
|
5225
|
+
unit?: Maybe<SpeedUnit>;
|
|
5226
|
+
};
|
|
5227
|
+
|
|
5228
|
+
/** The output element of the vehiclePremium query */
|
|
5229
|
+
export type VehiclePremium = {
|
|
5230
|
+
/** Vehicles unique ID */
|
|
5231
|
+
id: Scalars["ID"];
|
|
5232
|
+
/** Internal ID of the successor vehicle trim */
|
|
5233
|
+
succesor_id?: Maybe<Scalars["String"]>;
|
|
5234
|
+
/** Naming of the vehicle */
|
|
5235
|
+
naming: VehiclePremiumNaming;
|
|
5236
|
+
/** Connectors available for the vehicle */
|
|
5237
|
+
connectors: Array<VehicleConnector>;
|
|
5238
|
+
/** Charge details */
|
|
5239
|
+
charge: VehiclePremiumCharge;
|
|
5240
|
+
/** Fast charge details */
|
|
5241
|
+
fast_charge: VehiclePremiumFastCharge;
|
|
5242
|
+
/** Adapters of connectors available for a connectors of the vehicle */
|
|
5243
|
+
adapters: Array<VehicleConnector>;
|
|
5244
|
+
/** Battery of the vehicle */
|
|
5245
|
+
battery: VehiclePremiumBattery;
|
|
5246
|
+
/** Body of the vehicle */
|
|
5247
|
+
body: VehiclePremiumBody;
|
|
5248
|
+
/** Availability of the vehicle */
|
|
5249
|
+
availability: VehiclePremiumAvailability;
|
|
5250
|
+
/** Pricing of the vehicle */
|
|
5251
|
+
price: VehiclePremiumPrice;
|
|
5252
|
+
/** Drivetrain of the vehicle */
|
|
5253
|
+
drivetrain: VehiclePremiumDrivetrain;
|
|
5254
|
+
/** Performance of the vehicle */
|
|
5255
|
+
performance?: Maybe<VehiclePremiumPerformance>;
|
|
5256
|
+
/** Range of the vehicle */
|
|
5257
|
+
range: VehiclePremiumRange;
|
|
5258
|
+
/** Efficiency of the vehicle */
|
|
5259
|
+
efficiency: VehiclePremiumEfficiency;
|
|
5260
|
+
/** Safety of the vehicle */
|
|
5261
|
+
safety?: Maybe<VehiclePremiumSafety>;
|
|
5262
|
+
/** Media of the vehicle */
|
|
5263
|
+
media: VehiclePremiumMedia;
|
|
5264
|
+
/** Routing of the vehicle */
|
|
5265
|
+
routing: VehiclePremiumRouting;
|
|
5266
|
+
/** Information about vehicle connectivity */
|
|
5267
|
+
connect: Connect;
|
|
5268
|
+
};
|
|
5269
|
+
|
|
5270
|
+
export type VehiclePremiumAvailability = {
|
|
5271
|
+
/** Availability of the vehicle */
|
|
5272
|
+
status: VehicleAvailabilityStatus;
|
|
5273
|
+
/** Date of introduction, mm-yyyy */
|
|
5274
|
+
date_from?: Maybe<Scalars["String"]>;
|
|
5275
|
+
/** Indicates if date from field is estimated */
|
|
5276
|
+
date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5277
|
+
/** Date last available, mm-yyyy */
|
|
5278
|
+
date_to?: Maybe<Scalars["String"]>;
|
|
5279
|
+
};
|
|
5280
|
+
|
|
5281
|
+
export type VehiclePremiumBattery = {
|
|
5282
|
+
/** Usable battery capacity in kWh */
|
|
5283
|
+
usable_kwh: Scalars["Float"];
|
|
5284
|
+
/** Full battery capacity in kWh */
|
|
5285
|
+
full_kwh: Scalars["Float"];
|
|
5286
|
+
/** Indicates which battery fields are estimated */
|
|
5287
|
+
estimated_fields?: Maybe<VehicleBatteryFieldEstimations>;
|
|
5288
|
+
/** Battery thermal management system (active/passive, air/liquid) */
|
|
5289
|
+
thermal_management_system?: Maybe<Scalars["String"]>;
|
|
5290
|
+
/** Duration of battery warranty */
|
|
5291
|
+
warranty_period?: Maybe<Scalars["Float"]>;
|
|
5292
|
+
/** Mileage of battery warranty */
|
|
5293
|
+
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
5294
|
+
/** Chemistry of the battery */
|
|
5295
|
+
chemistry?: Maybe<Scalars["String"]>;
|
|
5296
|
+
/** Manufacturer of the battery */
|
|
5297
|
+
manufacturer?: Maybe<Scalars["String"]>;
|
|
5298
|
+
/** Number of battery modules */
|
|
5299
|
+
modules?: Maybe<Scalars["Float"]>;
|
|
5300
|
+
/** Number of cells in the battery pack, can include configuration (s = serial, p = parallel) */
|
|
5301
|
+
cells?: Maybe<Scalars["String"]>;
|
|
5302
|
+
/** Weight of the battery pack */
|
|
5303
|
+
weight?: Maybe<Scalars["Float"]>;
|
|
5304
|
+
/** Nominal voltage of battery */
|
|
5305
|
+
nominal_voltage?: Maybe<Scalars["Float"]>;
|
|
5306
|
+
};
|
|
5307
|
+
|
|
5308
|
+
export type VehiclePremiumBody = {
|
|
5309
|
+
/** Length, default in mm */
|
|
5310
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5311
|
+
/** Width with folded mirrors, default in mm */
|
|
5312
|
+
width: Scalars["Float"];
|
|
5313
|
+
/** Width of vehicle including mirrors, default in mm */
|
|
5314
|
+
full_width?: Maybe<Scalars["Float"]>;
|
|
5315
|
+
/** Height (average height for adjustable suspensions), default in mm */
|
|
5316
|
+
height: Scalars["Float"];
|
|
5317
|
+
/** Indicates if length/width/height fields are estimations */
|
|
5318
|
+
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5319
|
+
/** Wheelbase, default in mm */
|
|
5320
|
+
wheelbase?: Maybe<Scalars["Float"]>;
|
|
5321
|
+
/** Indicates if wheelbase field is estimated */
|
|
5322
|
+
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5323
|
+
/** Weight (unladen EU) */
|
|
5324
|
+
weight: VehicleBodyWeight;
|
|
5325
|
+
/** Maximum allowed vehicle weight with payload */
|
|
5326
|
+
weight_gvwr?: Maybe<VehicleBodyWeight>;
|
|
5327
|
+
/** Maximum allowed vehicle and trailer weight with payload */
|
|
5328
|
+
weight_gtw?: Maybe<VehicleBodyWeight>;
|
|
5329
|
+
/** Allowed payload weight */
|
|
5330
|
+
weight_payload?: Maybe<VehicleBodyWeight>;
|
|
5331
|
+
/** Indicates if weight field is estimated */
|
|
5332
|
+
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5333
|
+
/** Maximum payload allowed for the vehicle, default in kg */
|
|
5334
|
+
weight_max_payload?: Maybe<Scalars["Float"]>;
|
|
5335
|
+
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg */
|
|
5336
|
+
max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
|
|
5337
|
+
/** Standard luggage capacity, default in l */
|
|
5338
|
+
boot_capacity?: Maybe<Scalars["Float"]>;
|
|
5339
|
+
/** Storage capacity of front trunk/under the hood (frunk), default in l */
|
|
5340
|
+
boot_front_capacity?: Maybe<Scalars["Float"]>;
|
|
5341
|
+
/** Maximum luggage capacity, default in l */
|
|
5342
|
+
boot_capacity_max?: Maybe<Scalars["Float"]>;
|
|
5343
|
+
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation */
|
|
5344
|
+
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
5345
|
+
/** Maximum unbraked towing weight, default in kg */
|
|
5346
|
+
tow_weight_unbraked?: Maybe<Scalars["Float"]>;
|
|
5347
|
+
/** Maximum braked towing weight, default in kg */
|
|
5348
|
+
tow_weight_braked?: Maybe<Scalars["Float"]>;
|
|
5349
|
+
/** Indicates if tow weight fields are estimations */
|
|
5350
|
+
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5351
|
+
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation, default in kg */
|
|
5352
|
+
tow_weight_vertical_load?: Maybe<Scalars["Float"]>;
|
|
5353
|
+
/** Maximum load on roof of the vehicle, default in kg */
|
|
5354
|
+
roof_load_max?: Maybe<Scalars["Float"]>;
|
|
5355
|
+
/** Body type, listed in local naming convention where applicable */
|
|
5356
|
+
body_type?: Maybe<Scalars["String"]>;
|
|
5357
|
+
/** Segment, listed in local naming convention where applicable */
|
|
5358
|
+
segment?: Maybe<Scalars["String"]>;
|
|
5359
|
+
/** Number of seats */
|
|
5360
|
+
seats?: Maybe<Scalars["Int"]>;
|
|
5361
|
+
/** Indicates whether a vehicle has roof rails as a standard */
|
|
5362
|
+
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
5363
|
+
/** Turning circle of the vehicle kerb-to-kerb, default in meters */
|
|
5364
|
+
turning_circle?: Maybe<Scalars["Float"]>;
|
|
5365
|
+
/** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms) */
|
|
5366
|
+
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
5367
|
+
/** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform */
|
|
5368
|
+
vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
5369
|
+
};
|
|
5370
|
+
|
|
5371
|
+
export type VehiclePremiumBodylengthArgs = {
|
|
5372
|
+
unit?: Maybe<MeasurementUnit>;
|
|
5373
|
+
};
|
|
5374
|
+
|
|
5375
|
+
export type VehiclePremiumBodywidthArgs = {
|
|
5376
|
+
unit?: Maybe<MeasurementUnit>;
|
|
5377
|
+
};
|
|
5378
|
+
|
|
5379
|
+
export type VehiclePremiumBodyfull_widthArgs = {
|
|
5380
|
+
unit?: Maybe<MeasurementUnit>;
|
|
5381
|
+
};
|
|
5382
|
+
|
|
5383
|
+
export type VehiclePremiumBodyheightArgs = {
|
|
5384
|
+
unit?: Maybe<MeasurementUnit>;
|
|
5385
|
+
};
|
|
5386
|
+
|
|
5387
|
+
export type VehiclePremiumBodywheelbaseArgs = {
|
|
5388
|
+
unit?: Maybe<MeasurementUnit>;
|
|
5389
|
+
};
|
|
5390
|
+
|
|
5391
|
+
export type VehiclePremiumBodyweight_max_payloadArgs = {
|
|
5392
|
+
unit?: Maybe<WeightUnit>;
|
|
5393
|
+
};
|
|
5394
|
+
|
|
5395
|
+
export type VehiclePremiumBodymax_gross_vehicle_weightArgs = {
|
|
5396
|
+
unit?: Maybe<WeightUnit>;
|
|
5397
|
+
};
|
|
5398
|
+
|
|
5399
|
+
export type VehiclePremiumBodyboot_capacityArgs = {
|
|
5400
|
+
unit?: Maybe<VolumeUnit>;
|
|
5401
|
+
};
|
|
5402
|
+
|
|
5403
|
+
export type VehiclePremiumBodyboot_capacity_maxArgs = {
|
|
5404
|
+
unit?: Maybe<VolumeUnit>;
|
|
5405
|
+
};
|
|
5406
|
+
|
|
5407
|
+
export type VehiclePremiumBodytow_weight_unbrakedArgs = {
|
|
5408
|
+
unit?: Maybe<WeightUnit>;
|
|
5409
|
+
};
|
|
5410
|
+
|
|
5411
|
+
export type VehiclePremiumBodytow_weight_brakedArgs = {
|
|
5412
|
+
unit?: Maybe<WeightUnit>;
|
|
5413
|
+
};
|
|
5414
|
+
|
|
5415
|
+
export type VehiclePremiumBodytow_weight_vertical_loadArgs = {
|
|
5416
|
+
unit?: Maybe<WeightUnit>;
|
|
5417
|
+
};
|
|
5418
|
+
|
|
5419
|
+
export type VehiclePremiumBodyroof_load_maxArgs = {
|
|
5420
|
+
unit?: Maybe<WeightUnit>;
|
|
5421
|
+
};
|
|
5422
|
+
|
|
5423
|
+
export type VehiclePremiumBodyturning_circleArgs = {
|
|
5424
|
+
unit?: Maybe<TurningCircleUnit>;
|
|
5425
|
+
};
|
|
5426
|
+
|
|
5427
|
+
export type VehiclePremiumCharge = {
|
|
5428
|
+
/** Information about the main connector */
|
|
5429
|
+
plug?: Maybe<VehiclePremiumChargeConnector>;
|
|
5430
|
+
/** Information about vehicles secondary onboard charger */
|
|
5431
|
+
second_plug?: Maybe<VehiclePremiumChargeSecondConnector>;
|
|
5432
|
+
/** Information about the vehicle standard onboard charger */
|
|
5433
|
+
standard?: Maybe<VehiclePremiumChargeStandardOBC>;
|
|
5434
|
+
/** Optional upgrade for the standard onboard charger when available */
|
|
5435
|
+
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
5436
|
+
};
|
|
5437
|
+
|
|
5438
|
+
export type VehiclePremiumChargeConnector = {
|
|
5439
|
+
/** Type of charge port on vehicle */
|
|
5440
|
+
value?: Maybe<ConnectorType>;
|
|
5441
|
+
/** Indicates if value is an estimate */
|
|
5442
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5443
|
+
/** Location of charge port */
|
|
5444
|
+
location?: Maybe<Scalars["String"]>;
|
|
5445
|
+
};
|
|
5446
|
+
|
|
5447
|
+
export type VehiclePremiumChargeOBCTable = {
|
|
5448
|
+
/** Voltage between phase and neutral for this EVSE (phase voltage) */
|
|
5449
|
+
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
5450
|
+
/** Current per phase for this EVSE (phase current) */
|
|
5451
|
+
evse_phase_amperage?: Maybe<Scalars["Int"]>;
|
|
5452
|
+
/** Number of phases for this EVSE */
|
|
5453
|
+
evse_phases?: Maybe<Scalars["Int"]>;
|
|
5454
|
+
/** Voltage between phase and neutral used by standard OBC (phase voltage) */
|
|
5455
|
+
charge_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
5456
|
+
/** Current per phase used by standard OBC (phase current) */
|
|
5457
|
+
charge_phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5458
|
+
/** Number of phases used by standard OBC */
|
|
5459
|
+
charge_phases?: Maybe<Scalars["Int"]>;
|
|
5460
|
+
/** Power used by standard OBC (before OBC losses) */
|
|
5461
|
+
charge_power?: Maybe<Scalars["Float"]>;
|
|
5462
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE) */
|
|
5463
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5464
|
+
/** Charging speed when charging at maximum power (standard OBC with this EVSE), default in kmph */
|
|
5465
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5466
|
+
};
|
|
5467
|
+
|
|
5468
|
+
export type VehiclePremiumChargeOBCTablecharge_speedArgs = {
|
|
5469
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5470
|
+
};
|
|
5471
|
+
|
|
5472
|
+
export type VehiclePremiumChargeOptionOBC = {
|
|
5473
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5474
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5475
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
5476
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
5477
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
5478
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5479
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5480
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5481
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph */
|
|
5482
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5483
|
+
/** Charging details for the standard OBC at several charging points */
|
|
5484
|
+
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5485
|
+
};
|
|
5486
|
+
|
|
5487
|
+
export type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
|
|
5488
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5489
|
+
};
|
|
5490
|
+
|
|
5491
|
+
export type VehiclePremiumChargePower = {
|
|
5492
|
+
/** Maximum value */
|
|
5493
|
+
max?: Maybe<Scalars["Float"]>;
|
|
5494
|
+
/** Average value */
|
|
5495
|
+
average?: Maybe<Scalars["Float"]>;
|
|
5496
|
+
};
|
|
5497
|
+
|
|
5498
|
+
export type VehiclePremiumChargeSecondConnector = {
|
|
5499
|
+
/** Location of charge port */
|
|
5500
|
+
location?: Maybe<Scalars["String"]>;
|
|
5501
|
+
/** Indicates if second charge port is optional */
|
|
5502
|
+
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
5503
|
+
};
|
|
5504
|
+
|
|
5505
|
+
export type VehiclePremiumChargeStandardOBC = {
|
|
5506
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5507
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5508
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
5509
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
5510
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
5511
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5512
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5513
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5514
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph */
|
|
5515
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5516
|
+
/** Indicates if Charge_Standard fields are estimated */
|
|
5517
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5518
|
+
/** Charging details for the standard OBC at several charging points */
|
|
5519
|
+
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5520
|
+
};
|
|
5521
|
+
|
|
5522
|
+
export type VehiclePremiumChargeStandardOBCcharge_speedArgs = {
|
|
5523
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5524
|
+
};
|
|
5525
|
+
|
|
5526
|
+
export type VehiclePremiumDrivetrain = {
|
|
5527
|
+
/** Type of drivetrain */
|
|
5528
|
+
type: VehicleDrivetrainType;
|
|
5529
|
+
/** Fuel type */
|
|
5530
|
+
fuel?: Maybe<VehicleFuel>;
|
|
5531
|
+
/** Propulsion type */
|
|
5532
|
+
propulsion?: Maybe<VehiclePropulsion>;
|
|
5533
|
+
/** Indicates if propulsion field is estimated */
|
|
5534
|
+
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5535
|
+
/** Maximum (combined) power output, default in kw */
|
|
5536
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5537
|
+
/** Indicates if power field is estimated */
|
|
5538
|
+
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5539
|
+
/** Maximum (combine) power output, default in horsepower (PS) */
|
|
5540
|
+
power_hp?: Maybe<Scalars["Float"]>;
|
|
5541
|
+
/** Maximum (combine) torque output, default in newton meter */
|
|
5542
|
+
torque?: Maybe<Scalars["Float"]>;
|
|
5543
|
+
/** Indicates if torque field is estimated */
|
|
5544
|
+
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5545
|
+
};
|
|
5546
|
+
|
|
5547
|
+
export type VehiclePremiumDrivetrainpowerArgs = {
|
|
5548
|
+
unit?: Maybe<PowerUnit>;
|
|
5549
|
+
};
|
|
5550
|
+
|
|
5551
|
+
export type VehiclePremiumDrivetrainpower_hpArgs = {
|
|
5552
|
+
unit?: Maybe<PowerUnit>;
|
|
5553
|
+
};
|
|
5554
|
+
|
|
5555
|
+
export type VehiclePremiumDrivetraintorqueArgs = {
|
|
5556
|
+
unit?: Maybe<TorqueUnit>;
|
|
5557
|
+
};
|
|
5558
|
+
|
|
5559
|
+
export type VehiclePremiumEfficiency = {
|
|
5560
|
+
/** Rated efficiency in WLTP combined cycle */
|
|
5561
|
+
wltp?: Maybe<VehiclePremiumEfficiencyWLTP>;
|
|
5562
|
+
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
|
|
5563
|
+
wltp_teh?: Maybe<VehiclePremiumEfficiencyWLTPTEH>;
|
|
5564
|
+
/** Rated efficiency in NEDC combined cycle */
|
|
5565
|
+
nedc?: Maybe<VehiclePremiumEfficiencyNEDC>;
|
|
5566
|
+
/** Vehicle efficiency based on provider range */
|
|
5567
|
+
provider?: Maybe<VehiclePremiumEfficiencyProvider>;
|
|
5568
|
+
};
|
|
5569
|
+
|
|
5570
|
+
export type VehiclePremiumEfficiencyNEDC = {
|
|
5571
|
+
/** Rated efficiency in NEDC combined cycle, default in kWh/100 km */
|
|
5572
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5573
|
+
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
|
|
5574
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5575
|
+
/** Rated vehicle efficiency in NEDC combined cycle (based on value), default in kWh/100 km */
|
|
5576
|
+
vehicle?: Maybe<Scalars["Float"]>;
|
|
5577
|
+
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
|
|
5578
|
+
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 */
|
|
5580
|
+
co2?: Maybe<Scalars["Float"]>;
|
|
5581
|
+
};
|
|
5582
|
+
|
|
5583
|
+
export type VehiclePremiumEfficiencyNEDCvalueArgs = {
|
|
5584
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5585
|
+
};
|
|
5586
|
+
|
|
5587
|
+
export type VehiclePremiumEfficiencyNEDCfuel_equivalentArgs = {
|
|
5588
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5589
|
+
};
|
|
5590
|
+
|
|
5591
|
+
export type VehiclePremiumEfficiencyNEDCvehicleArgs = {
|
|
5592
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5593
|
+
};
|
|
5594
|
+
|
|
5595
|
+
export type VehiclePremiumEfficiencyNEDCvehicle_fuel_equivalentArgs = {
|
|
5596
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5597
|
+
};
|
|
5598
|
+
|
|
5599
|
+
export type VehiclePremiumEfficiencyNEDCco2Args = {
|
|
5600
|
+
unit?: Maybe<EmissionRateUnit>;
|
|
5601
|
+
};
|
|
5602
|
+
|
|
5603
|
+
export type VehiclePremiumEfficiencyProvider = {
|
|
5604
|
+
/** Vehicle efficiency based on RealRange (usable battery/range), default in kWh/100 km */
|
|
5605
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5606
|
+
/** Vehicle efficiency based on RealRange presented in gas equivalent, default in l/100 km */
|
|
5607
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5608
|
+
/** Worst conditions are based on -10°C and use of heating */
|
|
5609
|
+
worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
5610
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
5611
|
+
best?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
5612
|
+
};
|
|
5613
|
+
|
|
5614
|
+
export type VehiclePremiumEfficiencyProvidervalueArgs = {
|
|
5615
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5616
|
+
};
|
|
5617
|
+
|
|
5618
|
+
export type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {
|
|
5619
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5620
|
+
};
|
|
5621
|
+
|
|
5622
|
+
export type VehiclePremiumEfficiencyProviderValue = {
|
|
5623
|
+
/** Estimated value on highway or express roads, default in km */
|
|
5624
|
+
highway?: Maybe<Scalars["Float"]>;
|
|
5625
|
+
/** Estimated value on city roads, default in km */
|
|
5626
|
+
city?: Maybe<Scalars["Float"]>;
|
|
5627
|
+
/** Estimated combined value, default in km */
|
|
5628
|
+
combined?: Maybe<Scalars["Float"]>;
|
|
5629
|
+
};
|
|
5630
|
+
|
|
5631
|
+
export type VehiclePremiumEfficiencyProviderValuehighwayArgs = {
|
|
5632
|
+
unit?: Maybe<DistanceUnit>;
|
|
5633
|
+
};
|
|
5634
|
+
|
|
5635
|
+
export type VehiclePremiumEfficiencyProviderValuecityArgs = {
|
|
5636
|
+
unit?: Maybe<DistanceUnit>;
|
|
5637
|
+
};
|
|
5638
|
+
|
|
5639
|
+
export type VehiclePremiumEfficiencyProviderValuecombinedArgs = {
|
|
5640
|
+
unit?: Maybe<DistanceUnit>;
|
|
5641
|
+
};
|
|
5642
|
+
|
|
5643
|
+
export type VehiclePremiumEfficiencyWLTP = {
|
|
5644
|
+
/** Rated efficiency in WLTP combined cycle, default in kWh/100 km */
|
|
5645
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5646
|
+
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
|
|
5647
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5648
|
+
/** Rated vehicle efficiency in WLTP combined cycle (based on value), default in kWh/100 km */
|
|
5649
|
+
vehicle?: Maybe<Scalars["Float"]>;
|
|
5650
|
+
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
|
|
5651
|
+
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 */
|
|
5653
|
+
co2?: Maybe<Scalars["Float"]>;
|
|
5654
|
+
};
|
|
5655
|
+
|
|
5656
|
+
export type VehiclePremiumEfficiencyWLTPvalueArgs = {
|
|
5657
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5658
|
+
};
|
|
5659
|
+
|
|
5660
|
+
export type VehiclePremiumEfficiencyWLTPfuel_equivalentArgs = {
|
|
5661
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5662
|
+
};
|
|
5663
|
+
|
|
5664
|
+
export type VehiclePremiumEfficiencyWLTPvehicleArgs = {
|
|
5665
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5666
|
+
};
|
|
5667
|
+
|
|
5668
|
+
export type VehiclePremiumEfficiencyWLTPvehicle_fuel_equivalentArgs = {
|
|
5669
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5670
|
+
};
|
|
5671
|
+
|
|
5672
|
+
export type VehiclePremiumEfficiencyWLTPco2Args = {
|
|
5673
|
+
unit?: Maybe<EmissionRateUnit>;
|
|
5674
|
+
};
|
|
5675
|
+
|
|
5676
|
+
export type VehiclePremiumEfficiencyWLTPTEH = {
|
|
5677
|
+
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
|
|
5678
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5679
|
+
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
|
|
5680
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5681
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value), default in kWh/100 km */
|
|
5682
|
+
vehicle?: Maybe<Scalars["Float"]>;
|
|
5683
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
|
|
5684
|
+
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 */
|
|
5686
|
+
co2?: Maybe<Scalars["Float"]>;
|
|
5687
|
+
};
|
|
5688
|
+
|
|
5689
|
+
export type VehiclePremiumEfficiencyWLTPTEHvalueArgs = {
|
|
5690
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5691
|
+
};
|
|
5692
|
+
|
|
5693
|
+
export type VehiclePremiumEfficiencyWLTPTEHfuel_equivalentArgs = {
|
|
5694
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5695
|
+
};
|
|
5696
|
+
|
|
5697
|
+
export type VehiclePremiumEfficiencyWLTPTEHvehicleArgs = {
|
|
5698
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5699
|
+
};
|
|
5700
|
+
|
|
5701
|
+
export type VehiclePremiumEfficiencyWLTPTEHvehicle_fuel_equivalentArgs = {
|
|
5702
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5703
|
+
};
|
|
5704
|
+
|
|
5705
|
+
export type VehiclePremiumEfficiencyWLTPTEHco2Args = {
|
|
5706
|
+
unit?: Maybe<EmissionRateUnit>;
|
|
5707
|
+
};
|
|
5708
|
+
|
|
5709
|
+
export type VehiclePremiumFastCharge = {
|
|
5710
|
+
/** Location of charge port */
|
|
5711
|
+
charge_port?: Maybe<VehiclePremiumChargeConnector>;
|
|
5712
|
+
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
|
|
5713
|
+
power?: Maybe<VehiclePremiumChargePower>;
|
|
5714
|
+
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
|
|
5715
|
+
charge_time?: Maybe<Scalars["Float"]>;
|
|
5716
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger), default is kmph */
|
|
5717
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5718
|
+
/** Indicates if fast charge is optional in some markets/regions */
|
|
5719
|
+
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
5720
|
+
/** Indicates what fields are estimated */
|
|
5721
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5722
|
+
/** Charging details for fast charging */
|
|
5723
|
+
table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
|
|
5724
|
+
};
|
|
5725
|
+
|
|
5726
|
+
export type VehiclePremiumFastChargecharge_speedArgs = {
|
|
5727
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5728
|
+
};
|
|
5729
|
+
|
|
5730
|
+
export type VehiclePremiumFastChargeTable = {
|
|
5731
|
+
/** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC) */
|
|
5732
|
+
format?: Maybe<Scalars["String"]>;
|
|
5733
|
+
/** Fast charge power */
|
|
5734
|
+
power?: Maybe<VehiclePremiumChargePower>;
|
|
5735
|
+
/** Minutes needed to charge from 10% to 80% (optimal conditions) */
|
|
5736
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5737
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions), default is kmph */
|
|
5738
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5739
|
+
/** Indicates if maximum power during fast charging is limited by the vehicle */
|
|
5740
|
+
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
5741
|
+
/** Indicates if average power during fast charging is limited by the vehicle */
|
|
5742
|
+
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
5743
|
+
};
|
|
5744
|
+
|
|
5745
|
+
export type VehiclePremiumFastChargeTablecharge_speedArgs = {
|
|
5746
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5747
|
+
};
|
|
5748
|
+
|
|
5749
|
+
export type VehiclePremiumMedia = {
|
|
5750
|
+
/** URL for more details */
|
|
5751
|
+
provider_details_url?: Maybe<Scalars["String"]>;
|
|
5752
|
+
/** Latest image */
|
|
5753
|
+
image: VehicleImage;
|
|
5754
|
+
/** Latest maker logo */
|
|
5755
|
+
brand: VehicleImage;
|
|
5756
|
+
/** All images */
|
|
5757
|
+
image_list: Array<VehicleImage>;
|
|
5758
|
+
/** Latest video */
|
|
5759
|
+
video?: Maybe<VehicleVideo>;
|
|
5760
|
+
/** All videos */
|
|
5761
|
+
video_list?: Maybe<Array<VehicleVideo>>;
|
|
5762
|
+
/** URL of the OEM page for this vehicle */
|
|
5763
|
+
oem_details_url?: Maybe<Scalars["String"]>;
|
|
5764
|
+
};
|
|
5765
|
+
|
|
5766
|
+
export type VehiclePremiumNaming = {
|
|
5767
|
+
/** Vehicle manufacturer name */
|
|
5768
|
+
make: Scalars["String"];
|
|
5769
|
+
/** Vehicle model name */
|
|
5770
|
+
model: Scalars["String"];
|
|
5771
|
+
/** Version, edition or submodel of the vehicle */
|
|
5772
|
+
version?: Maybe<Scalars["String"]>;
|
|
5773
|
+
/** Another submodel level of the vehicle */
|
|
5774
|
+
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 */
|
|
5776
|
+
chargetrip_version: Scalars["String"];
|
|
5777
|
+
/** Vehicle model length version */
|
|
5778
|
+
length_version?: Maybe<Scalars["String"]>;
|
|
5779
|
+
/** Vehicle model height version */
|
|
5780
|
+
height_version?: Maybe<Scalars["String"]>;
|
|
5781
|
+
};
|
|
5782
|
+
|
|
5783
|
+
export type VehiclePremiumPerformance = {
|
|
5784
|
+
/** Acceleration 0-100 km/h, default in seconds */
|
|
5785
|
+
acceleration?: Maybe<Scalars["Float"]>;
|
|
5786
|
+
/** Indicates if acceleration field is estimated */
|
|
5787
|
+
acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5788
|
+
/** Top speed of the vehicle, default in km/h */
|
|
5789
|
+
top_speed?: Maybe<Scalars["Float"]>;
|
|
5790
|
+
/** Indicates if top_speed field is estimated */
|
|
5791
|
+
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5792
|
+
};
|
|
5793
|
+
|
|
5794
|
+
export type VehiclePremiumPerformanceaccelerationArgs = {
|
|
5795
|
+
unit?: Maybe<AccelerationUnit>;
|
|
5796
|
+
};
|
|
5797
|
+
|
|
5798
|
+
export type VehiclePremiumPerformancetop_speedArgs = {
|
|
5799
|
+
unit?: Maybe<SpeedUnit>;
|
|
5800
|
+
};
|
|
5801
|
+
|
|
5802
|
+
export type VehiclePremiumPrice = {
|
|
5803
|
+
/** Starting price for German market */
|
|
5804
|
+
DE?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5805
|
+
/** Starting price for Dutch market */
|
|
5806
|
+
NL?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5807
|
+
/** Starting price for British market */
|
|
5808
|
+
GB?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5809
|
+
};
|
|
5810
|
+
|
|
5811
|
+
export type VehiclePremiumPriceValueWithGrant = {
|
|
5812
|
+
/** Starting price for local market, default in EUR */
|
|
5813
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5814
|
+
/** Indicates if price value is based on estimates */
|
|
5815
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5816
|
+
/** Grant is applied to value */
|
|
5817
|
+
grant_applied?: Maybe<Scalars["Int"]>;
|
|
5818
|
+
};
|
|
5819
|
+
|
|
5820
|
+
export type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
5821
|
+
unit?: Maybe<CurrencyUnit>;
|
|
5822
|
+
};
|
|
5823
|
+
|
|
5824
|
+
export type VehiclePremiumRange = {
|
|
5825
|
+
/** Rated range in WLTP combined cycle (NULL if not WLTP rated), default in km */
|
|
5826
|
+
wltp?: Maybe<Scalars["Float"]>;
|
|
5827
|
+
/** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
|
|
5828
|
+
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5829
|
+
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
|
|
5830
|
+
wltp_teh?: Maybe<Scalars["Int"]>;
|
|
5831
|
+
/** Rated range in NEDC combined cycle (NULL if not NEDC rated), default in km */
|
|
5832
|
+
nedc?: Maybe<Scalars["Float"]>;
|
|
5833
|
+
/** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
|
|
5834
|
+
nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5835
|
+
/** Index range, default in km */
|
|
5836
|
+
provider?: Maybe<Scalars["Float"]>;
|
|
5837
|
+
/** Indicates if index range is estimated */
|
|
5838
|
+
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5839
|
+
/** Worst conditions are based on -10°C and use of heating */
|
|
5840
|
+
worst: VehiclePremiumRangeValue;
|
|
5841
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
5842
|
+
best: VehiclePremiumRangeValue;
|
|
5843
|
+
/** Is an index value of what we consider to be the real-world range. (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display on the front-end. */
|
|
5844
|
+
chargetrip_range: ChargetripRange;
|
|
5845
|
+
};
|
|
5846
|
+
|
|
5847
|
+
export type VehiclePremiumRangewltpArgs = {
|
|
5848
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5849
|
+
};
|
|
5850
|
+
|
|
5851
|
+
export type VehiclePremiumRangenedcArgs = {
|
|
5852
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5853
|
+
};
|
|
5854
|
+
|
|
5855
|
+
export type VehiclePremiumRangeproviderArgs = {
|
|
5856
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5857
|
+
};
|
|
5858
|
+
|
|
5859
|
+
export type VehiclePremiumRangeValue = {
|
|
5860
|
+
/** Estimated value on highway or express roads, default in km */
|
|
5861
|
+
highway?: Maybe<Scalars["Float"]>;
|
|
5862
|
+
/** Estimated value on city roads, default in km */
|
|
5863
|
+
city?: Maybe<Scalars["Float"]>;
|
|
5864
|
+
/** Estimated combined value, default in km */
|
|
5865
|
+
combined?: Maybe<Scalars["Float"]>;
|
|
5866
|
+
};
|
|
5867
|
+
|
|
5868
|
+
export type VehiclePremiumRangeValuehighwayArgs = {
|
|
5869
|
+
unit?: Maybe<DistanceUnit>;
|
|
5870
|
+
};
|
|
5871
|
+
|
|
5872
|
+
export type VehiclePremiumRangeValuecityArgs = {
|
|
5873
|
+
unit?: Maybe<DistanceUnit>;
|
|
5874
|
+
};
|
|
5875
|
+
|
|
5876
|
+
export type VehiclePremiumRangeValuecombinedArgs = {
|
|
5877
|
+
unit?: Maybe<DistanceUnit>;
|
|
5878
|
+
};
|
|
5879
|
+
|
|
5880
|
+
export type VehiclePremiumRouting = {
|
|
5881
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
5882
|
+
fast_charging_support: Scalars["Boolean"];
|
|
5883
|
+
/** Drag coefficient */
|
|
5884
|
+
drag_coefficient: Scalars["Float"];
|
|
5885
|
+
/** Tire pressure recommended by manufacturer, default in bar */
|
|
5886
|
+
tire_pressure: Scalars["Float"];
|
|
5887
|
+
/** Extra consumption model */
|
|
5888
|
+
consumption?: Maybe<VehiclePremiumRoutingConsumption>;
|
|
5889
|
+
/** Amount of petrol that an equivalent petrol vehicle would consume, default in l/100 km */
|
|
5890
|
+
fuel_consumption?: Maybe<Scalars["Float"]>;
|
|
5891
|
+
};
|
|
5892
|
+
|
|
5893
|
+
export type VehiclePremiumRoutingtire_pressureArgs = {
|
|
5894
|
+
unit?: Maybe<PressureUnit>;
|
|
5895
|
+
};
|
|
5896
|
+
|
|
5897
|
+
export type VehiclePremiumRoutingfuel_consumptionArgs = {
|
|
5898
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5899
|
+
};
|
|
5900
|
+
|
|
5901
|
+
export type VehiclePremiumRoutingConsumption = {
|
|
5902
|
+
/** Consumption, in kWh, of the auxiliaries */
|
|
5903
|
+
aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5904
|
+
/** Consumption, in kWh, of the battery management system */
|
|
5905
|
+
bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5906
|
+
/** Consumption, in kWh, of the vehicle in idle mode */
|
|
5907
|
+
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5908
|
+
};
|
|
5909
|
+
|
|
5910
|
+
export type VehiclePremiumRoutingConsumptionValue = {
|
|
5911
|
+
/** Best (lowest) consumption in summer */
|
|
5912
|
+
best?: Maybe<Scalars["Float"]>;
|
|
5913
|
+
/** Best (lowest) consumption in winter */
|
|
5914
|
+
worst?: Maybe<Scalars["Float"]>;
|
|
5915
|
+
};
|
|
5916
|
+
|
|
5917
|
+
export type VehiclePremiumSafety = {
|
|
5918
|
+
/** Number of seats equipped with ISOFIX */
|
|
5919
|
+
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
5920
|
+
/** EuroNCAP results */
|
|
5921
|
+
euro_ncap?: Maybe<VehiclePremiumSafetyEuroNcap>;
|
|
5922
|
+
};
|
|
5923
|
+
|
|
5924
|
+
export type VehiclePremiumSafetyEuroNcap = {
|
|
5925
|
+
/** EuroNCAP rating (out of 5 stars) */
|
|
5926
|
+
rating?: Maybe<Scalars["Int"]>;
|
|
5927
|
+
/** EuroNCAP year of rating */
|
|
5928
|
+
year?: Maybe<Scalars["Int"]>;
|
|
5929
|
+
/** EuroNCAP rating of adult protection (out of 100%) */
|
|
5930
|
+
adult?: Maybe<Scalars["Int"]>;
|
|
5931
|
+
/** EuroNCAP rating of child protection (out of 100%) */
|
|
5932
|
+
child?: Maybe<Scalars["Int"]>;
|
|
5933
|
+
/** EuroNCAP rating of vulnerable road users (out of 100%) */
|
|
5934
|
+
vru?: Maybe<Scalars["Int"]>;
|
|
5935
|
+
/** EuroNCAP rating of safety assists (out of 100%) */
|
|
5936
|
+
sa?: Maybe<Scalars["Int"]>;
|
|
5937
|
+
};
|
|
5938
|
+
|
|
5939
|
+
/** Propulsion */
|
|
5940
|
+
export enum VehiclePropulsion {
|
|
5941
|
+
/** All-wheel drive vehicle */
|
|
5942
|
+
AWD = "AWD",
|
|
5943
|
+
/** Front-wheel drive vehicle */
|
|
5944
|
+
FRONT = "Front",
|
|
5945
|
+
/** Rear-wheel drive vehicle */
|
|
5946
|
+
REAR = "Rear"
|
|
5947
|
+
}
|
|
5948
|
+
|
|
5949
|
+
/** Status of a vehicle provider */
|
|
5950
|
+
export enum VehicleProviderStatus {
|
|
5951
|
+
/** Is imported from any of the data providers */
|
|
5952
|
+
NEW = "new",
|
|
5953
|
+
/** Has been attached to core vehicle */
|
|
5954
|
+
ATTACHED = "attached",
|
|
5955
|
+
/** Has been detached from a core vehicle */
|
|
5956
|
+
DETACHED = "detached",
|
|
5957
|
+
/** Has been archived by database maintainer */
|
|
5958
|
+
ARCHIVED = "archived"
|
|
5959
|
+
}
|
|
5960
|
+
|
|
5961
|
+
export type VehicleRange = {
|
|
5962
|
+
/** Index range, default in km */
|
|
5963
|
+
provider?: Maybe<Scalars["Float"]>;
|
|
5964
|
+
/** Indicates if index range is estimated */
|
|
5965
|
+
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5966
|
+
/** Worst conditions are based on -10°C and use of heating */
|
|
5967
|
+
worst: VehicleRangeValue;
|
|
5968
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
5969
|
+
best: VehicleRangeValue;
|
|
5970
|
+
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
5971
|
+
chargetrip_range: ChargetripRange;
|
|
5972
|
+
};
|
|
5973
|
+
|
|
5974
|
+
export type VehicleRangeproviderArgs = {
|
|
5975
|
+
unit?: Maybe<DistanceUnit>;
|
|
5976
|
+
};
|
|
5977
|
+
|
|
5978
|
+
export type VehicleRangeValue = {
|
|
5979
|
+
/** Estimated value on the highway or express roads, default in km */
|
|
5980
|
+
highway: Scalars["Float"];
|
|
5981
|
+
/** Estimated value on the cities road, default in km */
|
|
5982
|
+
city: Scalars["Float"];
|
|
5983
|
+
/** Estimated combined value, default in km */
|
|
5984
|
+
combined: Scalars["Float"];
|
|
5985
|
+
};
|
|
5986
|
+
|
|
5987
|
+
export type VehicleRangeValuehighwayArgs = {
|
|
5988
|
+
unit?: Maybe<DistanceUnit>;
|
|
5989
|
+
};
|
|
5990
|
+
|
|
5991
|
+
export type VehicleRangeValuecityArgs = {
|
|
5992
|
+
unit?: Maybe<DistanceUnit>;
|
|
5993
|
+
};
|
|
5994
|
+
|
|
5995
|
+
export type VehicleRangeValuecombinedArgs = {
|
|
5996
|
+
unit?: Maybe<DistanceUnit>;
|
|
5997
|
+
};
|
|
5998
|
+
|
|
5999
|
+
export type VehicleRouting = {
|
|
6000
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
6001
|
+
fast_charging_support: Scalars["Boolean"];
|
|
6002
|
+
};
|
|
6003
|
+
|
|
6004
|
+
export type VehicleSpeedInput = {
|
|
6005
|
+
/** Value of the vehicle speed */
|
|
6006
|
+
value: Scalars["Float"];
|
|
6007
|
+
/** Type of the vehicle speed */
|
|
6008
|
+
type: SpeedUnit;
|
|
6009
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
6010
|
+
source?: Maybe<TelemetryInputSource>;
|
|
6011
|
+
};
|
|
6012
|
+
|
|
6013
|
+
/** Status of a vehicle */
|
|
6014
|
+
export enum VehicleStatus {
|
|
6015
|
+
/** Is being reviewed by a human operator */
|
|
6016
|
+
DRAFT = "draft",
|
|
6017
|
+
/** Is public and can be used by a customer */
|
|
6018
|
+
PUBLIC = "public",
|
|
6019
|
+
/** Is private and can be used by a human operator */
|
|
6020
|
+
PRIVATE = "private",
|
|
6021
|
+
/** Is archived and can not be used */
|
|
6022
|
+
ARCHIVED = "archived"
|
|
6023
|
+
}
|
|
6024
|
+
|
|
6025
|
+
export type VehicleVideo = {
|
|
6026
|
+
/** Video id */
|
|
6027
|
+
id?: Maybe<Scalars["ID"]>;
|
|
6028
|
+
/** Full path URL of a video */
|
|
6029
|
+
url?: Maybe<Scalars["String"]>;
|
|
6030
|
+
};
|
|
6031
|
+
|
|
6032
|
+
export enum VolumeUnit {
|
|
6033
|
+
/** Return the volume in liters */
|
|
6034
|
+
LITER = "liter",
|
|
6035
|
+
/** Return the volume in cubic meters */
|
|
6036
|
+
CUBIC_METER = "cubic_meter",
|
|
6037
|
+
/** Return the volume in cubic feet */
|
|
6038
|
+
CUBIC_FOOT = "cubic_foot"
|
|
6039
|
+
}
|
|
6040
|
+
|
|
6041
|
+
export enum WeightUnit {
|
|
6042
|
+
/** Return the weight in kilograms */
|
|
6043
|
+
KILOGRAM = "kilogram",
|
|
6044
|
+
/** Return the weight in pounds */
|
|
6045
|
+
POUND = "pound"
|
|
6046
|
+
}
|