@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/dist/ts/graphql.d.ts
CHANGED
|
@@ -33,6 +33,12 @@ export declare type Scalars = {
|
|
|
33
33
|
/** Returns null */
|
|
34
34
|
Void: any;
|
|
35
35
|
};
|
|
36
|
+
export declare enum AccelerationUnit {
|
|
37
|
+
/** Return the acceleration in seconds to 100 kilometers per hour */
|
|
38
|
+
SECONDS_TO_100_KILOMETERS_PER_HOUR = "seconds_to_100_kilometers_per_hour",
|
|
39
|
+
/** Return the acceleration in seconds to 60 miles per hour */
|
|
40
|
+
SECONDS_TO_60_MILES_PER_HOUR = "seconds_to_60_miles_per_hour"
|
|
41
|
+
}
|
|
36
42
|
export declare enum AccessType {
|
|
37
43
|
PUBLIC = "Public",
|
|
38
44
|
RESTRICTED = "Restricted",
|
|
@@ -107,6 +113,13 @@ export declare type Amenity = {
|
|
|
107
113
|
/** Date and time when an amenity was last updated */
|
|
108
114
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
109
115
|
};
|
|
116
|
+
/** Amenity preferences for a route */
|
|
117
|
+
export declare type AmenityPreferencesInput = {
|
|
118
|
+
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius */
|
|
119
|
+
all_charge_stops?: Maybe<Array<AmenityType>>;
|
|
120
|
+
/** Scheduled charge stops, with a specified amenity and timeline */
|
|
121
|
+
scheduled_charge_stops?: Maybe<Array<ScheduledChargeStopInput>>;
|
|
122
|
+
};
|
|
110
123
|
/** Amenities stats model */
|
|
111
124
|
export declare type AmenityStats = {
|
|
112
125
|
/** The amenity type */
|
|
@@ -114,6 +127,19 @@ export declare type AmenityStats = {
|
|
|
114
127
|
/** The total number of stations with the specified amenity */
|
|
115
128
|
total?: Maybe<Scalars["Int"]>;
|
|
116
129
|
};
|
|
130
|
+
/** A list of amenity types */
|
|
131
|
+
export declare enum AmenityType {
|
|
132
|
+
PARK = "park",
|
|
133
|
+
RESTAURANT = "restaurant",
|
|
134
|
+
MUSEUM = "museum",
|
|
135
|
+
COFFEE = "coffee",
|
|
136
|
+
HOTEL = "hotel",
|
|
137
|
+
SHOPPING = "shopping",
|
|
138
|
+
BATHROOM = "bathroom",
|
|
139
|
+
SUPERMARKET = "supermarket",
|
|
140
|
+
PLAYGROUND = "playground",
|
|
141
|
+
PHARMACY = "pharmacy"
|
|
142
|
+
}
|
|
117
143
|
export declare type AuthorizeConnectedVehicleInput = {
|
|
118
144
|
/** Id from the connected vehicle */
|
|
119
145
|
id: Scalars["ID"];
|
|
@@ -124,6 +150,18 @@ export declare type AuthorizeConnectedVehicleOptions = {
|
|
|
124
150
|
/** OAuth code returned as a query parameter on the OAuth callback */
|
|
125
151
|
code?: Maybe<Scalars["PlainString"]>;
|
|
126
152
|
};
|
|
153
|
+
export declare type AuxiliaryConsumptionInput = {
|
|
154
|
+
/** Value of the auxiliary power consumption of the vehicle */
|
|
155
|
+
value: Scalars["Float"];
|
|
156
|
+
/** Type of auxiliary power consumption of the vehicle */
|
|
157
|
+
type: AuxiliaryConsumptionUnit;
|
|
158
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
159
|
+
source?: Maybe<TelemetryInputSource>;
|
|
160
|
+
};
|
|
161
|
+
export declare enum AuxiliaryConsumptionUnit {
|
|
162
|
+
/** Return the auxiliary consumption in kilowatt hours */
|
|
163
|
+
KILOWATT_HOUR = "kilowatt_hour"
|
|
164
|
+
}
|
|
127
165
|
/** The type of the battery value */
|
|
128
166
|
export declare enum BatteryInputType {
|
|
129
167
|
KWH = "kwh",
|
|
@@ -131,6 +169,14 @@ export declare enum BatteryInputType {
|
|
|
131
169
|
MILES = "miles",
|
|
132
170
|
PERCENTAGE = "percentage"
|
|
133
171
|
}
|
|
172
|
+
export declare type BatteryTemperatureInput = {
|
|
173
|
+
/** Value of the temperature of the battery */
|
|
174
|
+
value: Scalars["Float"];
|
|
175
|
+
/** Type of temperature of the battery */
|
|
176
|
+
type: TemperatureUnit;
|
|
177
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
178
|
+
source?: Maybe<TelemetryInputSource>;
|
|
179
|
+
};
|
|
134
180
|
/** Output of a car query */
|
|
135
181
|
export declare type Car = {
|
|
136
182
|
/** Cars unique ID */
|
|
@@ -1274,6 +1320,30 @@ export declare enum ChargeMode {
|
|
|
1274
1320
|
/** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80% */
|
|
1275
1321
|
ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE"
|
|
1276
1322
|
}
|
|
1323
|
+
export declare type ChargeSpeedInput = {
|
|
1324
|
+
/** Value of the charge speed of the battery */
|
|
1325
|
+
value: Scalars["Float"];
|
|
1326
|
+
/** Type of the charge speed of the battery */
|
|
1327
|
+
type: ChargeSpeedUnit;
|
|
1328
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
1329
|
+
source?: Maybe<TelemetryInputSource>;
|
|
1330
|
+
};
|
|
1331
|
+
export declare enum ChargeSpeedUnit {
|
|
1332
|
+
/** Return the charge speed in kilowatt hours */
|
|
1333
|
+
KILOWATT_HOUR = "kilowatt_hour",
|
|
1334
|
+
/** Return the charge speed in kilometers per hour */
|
|
1335
|
+
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
1336
|
+
/** Return the charge speed in miles per hour */
|
|
1337
|
+
MILES_PER_HOUR = "miles_per_hour"
|
|
1338
|
+
}
|
|
1339
|
+
export declare type ChargeTotalInput = {
|
|
1340
|
+
/** Value of the temperature of the battery */
|
|
1341
|
+
value: Scalars["Float"];
|
|
1342
|
+
/** Type of total charge amount */
|
|
1343
|
+
type: BatteryInputType;
|
|
1344
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
1345
|
+
source?: Maybe<TelemetryInputSource>;
|
|
1346
|
+
};
|
|
1277
1347
|
/** A groupped representation of EVSEs */
|
|
1278
1348
|
export declare type Charger = {
|
|
1279
1349
|
/** Type of charger */
|
|
@@ -1317,6 +1387,14 @@ export declare type ChargetripRange = {
|
|
|
1317
1387
|
/** Best conditions are based on 23°C and no use of A/C */
|
|
1318
1388
|
best?: Maybe<Scalars["Float"]>;
|
|
1319
1389
|
};
|
|
1390
|
+
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
1391
|
+
export declare type ChargetripRangeworstArgs = {
|
|
1392
|
+
unit?: Maybe<DistanceUnit>;
|
|
1393
|
+
};
|
|
1394
|
+
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
1395
|
+
export declare type ChargetripRangebestArgs = {
|
|
1396
|
+
unit?: Maybe<DistanceUnit>;
|
|
1397
|
+
};
|
|
1320
1398
|
export declare type ChargingBehaviour = {
|
|
1321
1399
|
/** Charging behaviour of users divided in groups, based on real-time information */
|
|
1322
1400
|
code?: Maybe<ChargingBehaviourCode>;
|
|
@@ -1339,15 +1417,15 @@ export declare enum ChargingBehaviourCode {
|
|
|
1339
1417
|
}
|
|
1340
1418
|
export declare type Connect = {
|
|
1341
1419
|
/** List of connectivity providers to which a vehicle can connect */
|
|
1342
|
-
providers
|
|
1420
|
+
providers: Array<ConnectProvider>;
|
|
1343
1421
|
};
|
|
1344
1422
|
export declare type ConnectBattery = {
|
|
1345
1423
|
/** Estimated range by OEM */
|
|
1346
|
-
range?: Maybe<Scalars["
|
|
1424
|
+
range?: Maybe<Scalars["Float"]>;
|
|
1347
1425
|
/** Percentage of the battery remaining */
|
|
1348
|
-
percentage?: Maybe<Scalars["
|
|
1426
|
+
percentage?: Maybe<Scalars["Float"]>;
|
|
1349
1427
|
/** Capacity of the battery, in kwh */
|
|
1350
|
-
capacity?: Maybe<Scalars["
|
|
1428
|
+
capacity?: Maybe<Scalars["Float"]>;
|
|
1351
1429
|
/** Date when the battery data was retrieved, as ISO-8601 date */
|
|
1352
1430
|
date?: Maybe<Scalars["DateTime"]>;
|
|
1353
1431
|
};
|
|
@@ -1389,7 +1467,7 @@ export declare type ConnectLocationProperties = {
|
|
|
1389
1467
|
};
|
|
1390
1468
|
export declare type ConnectOdometer = {
|
|
1391
1469
|
/** Odometer value, distance driven, default in km */
|
|
1392
|
-
distance?: Maybe<Scalars["
|
|
1470
|
+
distance?: Maybe<Scalars["Float"]>;
|
|
1393
1471
|
/** Date when the odometer data was retrieved, as ISO-8601 date */
|
|
1394
1472
|
date?: Maybe<Scalars["DateTime"]>;
|
|
1395
1473
|
};
|
|
@@ -1422,13 +1500,19 @@ export declare type ConnectedVehicle = {
|
|
|
1422
1500
|
/** Vehicle identification number, unique identifier for a vehicle */
|
|
1423
1501
|
vin?: Maybe<Scalars["String"]>;
|
|
1424
1502
|
};
|
|
1503
|
+
export declare type ConnectedVehicleListFilter = {
|
|
1504
|
+
/** Status of the connected vehicle */
|
|
1505
|
+
status?: Maybe<Array<ConnectedVehicleStatus>>;
|
|
1506
|
+
};
|
|
1425
1507
|
export declare enum ConnectedVehicleStatus {
|
|
1426
|
-
/** Vehicle was added to the Chargetrip platform but not yet authorized */
|
|
1427
|
-
|
|
1508
|
+
/** Vehicle was added to the Chargetrip Connect platform but not yet authorized */
|
|
1509
|
+
PENDING_AUTHORIZATION = "pending_authorization",
|
|
1428
1510
|
/** Vehicle was authorized. Chargetrip can retrieve data on behave of the user */
|
|
1429
1511
|
AUTHORIZED = "authorized",
|
|
1430
|
-
/**
|
|
1431
|
-
|
|
1512
|
+
/** Pending vehicle removal */
|
|
1513
|
+
PENDING_REMOVAL = "pending_removal",
|
|
1514
|
+
/** Vehicle was removed and access has been revoked */
|
|
1515
|
+
REMOVED = "removed"
|
|
1432
1516
|
}
|
|
1433
1517
|
/** Connector data which extends OCPI Connector */
|
|
1434
1518
|
export declare type Connector = {
|
|
@@ -1446,7 +1530,7 @@ export declare type Connector = {
|
|
|
1446
1530
|
max_amperage?: Maybe<Scalars["Int"]>;
|
|
1447
1531
|
/**
|
|
1448
1532
|
* 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.
|
|
1449
|
-
* 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
|
|
1533
|
+
* 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.
|
|
1450
1534
|
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
1451
1535
|
*/
|
|
1452
1536
|
max_electric_power?: Maybe<Scalars["Int"]>;
|
|
@@ -1474,9 +1558,12 @@ export declare type Connector = {
|
|
|
1474
1558
|
/** Custom properties of a connector. These are vendor specific and will return null values on the fields that are not supported by your station database */
|
|
1475
1559
|
custom_properties?: Maybe<ConnectorCustomProperties>;
|
|
1476
1560
|
};
|
|
1561
|
+
/** Custom properties for connectors */
|
|
1477
1562
|
export declare type ConnectorCustomProperties = {
|
|
1478
1563
|
/** Charging prices */
|
|
1479
1564
|
pricing?: Maybe<Pricing>;
|
|
1565
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
1566
|
+
oicp?: Maybe<OICPConnectorCustomProperties>;
|
|
1480
1567
|
};
|
|
1481
1568
|
/** The socket or plug standard of the charging point. */
|
|
1482
1569
|
export declare enum ConnectorType {
|
|
@@ -1559,6 +1646,24 @@ export declare enum ConnectorType {
|
|
|
1559
1646
|
/** The connector type is NEMA 14-50, 3 pins, rating of 50 A */
|
|
1560
1647
|
NEMA_14_50 = "NEMA_14_50"
|
|
1561
1648
|
}
|
|
1649
|
+
export declare enum ConsumptionUnit {
|
|
1650
|
+
/** Return the consumption in kilometers */
|
|
1651
|
+
KILOMETER = "kilometer",
|
|
1652
|
+
/** Return the consumption in kilowatt hours */
|
|
1653
|
+
KILOWATT_HOUR = "kilowatt_hour",
|
|
1654
|
+
/** Return the consumption in kilowatt hours per 100 kilometers */
|
|
1655
|
+
KILOWATT_HOURS_PER_100_KILOMETERS = "kilowatt_hours_per_100_kilometers",
|
|
1656
|
+
/** Return the consumption in kilowatt hours per 100 miles */
|
|
1657
|
+
KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
|
|
1658
|
+
/** Return the consumption in watt hours per kilometer */
|
|
1659
|
+
WATT_HOURS_PER_KILOMETER = "watt_hours_per_kilometer",
|
|
1660
|
+
/** Return the consumption in watt hours per mile */
|
|
1661
|
+
WATT_HOURS_PER_MILE = "watt_hours_per_mile",
|
|
1662
|
+
/** Return the consumption in miles per kilowatt hour */
|
|
1663
|
+
MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour",
|
|
1664
|
+
/** Return the consumption in kilometers per kilowatt hour */
|
|
1665
|
+
KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour"
|
|
1666
|
+
}
|
|
1562
1667
|
/** The complete contact information */
|
|
1563
1668
|
export declare type Contact = {
|
|
1564
1669
|
/** The phone number in international format */
|
|
@@ -1837,8 +1942,21 @@ export declare type CreateConnectedVehicleInput = {
|
|
|
1837
1942
|
/** Label for a connected vehicle */
|
|
1838
1943
|
label?: Maybe<Scalars["PlainString"]>;
|
|
1839
1944
|
/** Provider specific options. See the developer portal for more details */
|
|
1840
|
-
options:
|
|
1945
|
+
options: CreateConnectedVehicleOptions;
|
|
1841
1946
|
};
|
|
1947
|
+
export declare type CreateConnectedVehicleOptions = {
|
|
1948
|
+
/** Redirect uri */
|
|
1949
|
+
redirect_uri?: Maybe<Scalars["PlainString"]>;
|
|
1950
|
+
/** Scope */
|
|
1951
|
+
scope?: Maybe<Array<ConnectScope>>;
|
|
1952
|
+
};
|
|
1953
|
+
/** Currency according to the ISO 4217 standard */
|
|
1954
|
+
export declare enum CurrencyUnit {
|
|
1955
|
+
/** Return the currency in EUR */
|
|
1956
|
+
EUR = "EUR",
|
|
1957
|
+
/** Return the currency in USD */
|
|
1958
|
+
USD = "USD"
|
|
1959
|
+
}
|
|
1842
1960
|
export declare enum DistanceUnit {
|
|
1843
1961
|
/** Return the distance in meters */
|
|
1844
1962
|
METER = "meter",
|
|
@@ -1882,6 +2000,64 @@ export declare type EVSE = {
|
|
|
1882
2000
|
parking_cost?: Maybe<ParkingCost>;
|
|
1883
2001
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1884
2002
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2003
|
+
/** Custom properties of an EVSE */
|
|
2004
|
+
custom_properties?: Maybe<EvseCustomProperties>;
|
|
2005
|
+
};
|
|
2006
|
+
export declare type ElevationInput = {
|
|
2007
|
+
/** Value of the elevation */
|
|
2008
|
+
value: Scalars["Float"];
|
|
2009
|
+
/** Type of the value of elevation */
|
|
2010
|
+
type: DistanceUnit;
|
|
2011
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
2012
|
+
source?: Maybe<TelemetryInputSource>;
|
|
2013
|
+
};
|
|
2014
|
+
export declare enum ElevationUnit {
|
|
2015
|
+
/** Return the elevation in meters */
|
|
2016
|
+
METER = "meter",
|
|
2017
|
+
/** Return the elevation in feet */
|
|
2018
|
+
FOOT = "foot"
|
|
2019
|
+
}
|
|
2020
|
+
export declare enum EmissionRateUnit {
|
|
2021
|
+
/** Return the emission rate in grams per kilometer */
|
|
2022
|
+
GRAMS_PER_KILOMETER = "grams_per_kilometer",
|
|
2023
|
+
/** Return the emission rate in ounces per mile */
|
|
2024
|
+
OUNCES_PER_MILE = "ounces_per_mile"
|
|
2025
|
+
}
|
|
2026
|
+
export declare enum EmissionUnit {
|
|
2027
|
+
/** Return the emission in grams */
|
|
2028
|
+
GRAM = "gram",
|
|
2029
|
+
/** Return the emission in ounces */
|
|
2030
|
+
OUNCE = "ounce"
|
|
2031
|
+
}
|
|
2032
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2033
|
+
export declare type EvseCustomProperties = {
|
|
2034
|
+
/** OICP standard custom properties */
|
|
2035
|
+
oicp?: Maybe<OICPEvseCustomProperties>;
|
|
2036
|
+
};
|
|
2037
|
+
/** A GeoJSON Feature<LineString> */
|
|
2038
|
+
export declare type FeatureLineString = {
|
|
2039
|
+
/** Feature type */
|
|
2040
|
+
type: FeatureType;
|
|
2041
|
+
/** Geometry of the feature */
|
|
2042
|
+
geometry: LineString;
|
|
2043
|
+
};
|
|
2044
|
+
/** A GeoJSON Feature<MultiPolygon> */
|
|
2045
|
+
export declare type FeatureMultiPolygon = {
|
|
2046
|
+
/** Feature type */
|
|
2047
|
+
type: FeatureType;
|
|
2048
|
+
/** Geometry of the feature */
|
|
2049
|
+
geometry: MultiPolygon;
|
|
2050
|
+
/** Properties of the MultiPolygon Feature */
|
|
2051
|
+
properties?: Maybe<PolygonProperties>;
|
|
2052
|
+
};
|
|
2053
|
+
/** A GeoJSON Feature<Point> */
|
|
2054
|
+
export declare type FeatureMultiPolygonPoint = {
|
|
2055
|
+
/** Feature type */
|
|
2056
|
+
type: FeatureType;
|
|
2057
|
+
/** Geometry of the feature */
|
|
2058
|
+
geometry: Point;
|
|
2059
|
+
/** Optional object where you can store custom data you need in your application. */
|
|
2060
|
+
properties?: Maybe<Scalars["JSON"]>;
|
|
1885
2061
|
};
|
|
1886
2062
|
/** A GeoJSON Feature<Point> */
|
|
1887
2063
|
export declare type FeaturePoint = {
|
|
@@ -1924,28 +2100,16 @@ export declare type FeaturePointPolygonPropertiesInput = {
|
|
|
1924
2100
|
/** Name of the location */
|
|
1925
2101
|
name?: Maybe<Scalars["String"]>;
|
|
1926
2102
|
};
|
|
1927
|
-
/** A GeoJSON Feature<Polygon> */
|
|
1928
|
-
export declare type FeaturePolygon = {
|
|
1929
|
-
/** Feature type */
|
|
1930
|
-
type: FeatureType;
|
|
1931
|
-
/** Geometry of the feature */
|
|
1932
|
-
geometry: Polygon;
|
|
1933
|
-
/** Properties of the Polygon Feature */
|
|
1934
|
-
properties?: Maybe<PolygonProperties>;
|
|
1935
|
-
};
|
|
1936
|
-
/** A GeoJSON Feature<Point> */
|
|
1937
|
-
export declare type FeaturePolygonPoint = {
|
|
1938
|
-
/** Feature type */
|
|
1939
|
-
type: FeatureType;
|
|
1940
|
-
/** Geometry of the feature */
|
|
1941
|
-
geometry: Point;
|
|
1942
|
-
/** Optional object where you can store custom data you need in your application. */
|
|
1943
|
-
properties?: Maybe<Scalars["JSON"]>;
|
|
1944
|
-
};
|
|
1945
2103
|
/** GeoJSON Feature type */
|
|
1946
2104
|
export declare enum FeatureType {
|
|
1947
2105
|
FEATURE = "Feature"
|
|
1948
2106
|
}
|
|
2107
|
+
export declare enum FuelConsumptionUnit {
|
|
2108
|
+
/** Return the fuel consumption in liters per 100 kilometers */
|
|
2109
|
+
LITERS_PER_100_KILOMETERS = "liters_per_100_kilometers",
|
|
2110
|
+
/** Return the fuel consumption in miles per gallon */
|
|
2111
|
+
MILES_PER_GALLON = "miles_per_gallon"
|
|
2112
|
+
}
|
|
1949
2113
|
/** Geometry point with GPS coordinates */
|
|
1950
2114
|
export declare type GeometryPoint = {
|
|
1951
2115
|
type: PointType;
|
|
@@ -1963,27 +2127,50 @@ export declare type Isoline = {
|
|
|
1963
2127
|
id: Scalars["ID"];
|
|
1964
2128
|
/** Isoline status */
|
|
1965
2129
|
status: IsolineStatus;
|
|
1966
|
-
/** Shape of the isoline consisting in a list of
|
|
1967
|
-
polygons?: Maybe<Array<Maybe<
|
|
2130
|
+
/** Shape of the isoline consisting in a list of multipolygons */
|
|
2131
|
+
polygons?: Maybe<Array<Maybe<FeatureMultiPolygon>>>;
|
|
2132
|
+
/** List of the ferries uniting islands formed by the isoline */
|
|
2133
|
+
ferries?: Maybe<Array<Maybe<FeatureLineString>>>;
|
|
1968
2134
|
/** Origin point of the request */
|
|
1969
|
-
origin:
|
|
2135
|
+
origin: FeatureMultiPolygonPoint;
|
|
1970
2136
|
/** Vehicle id */
|
|
1971
2137
|
vehicle_id: Scalars["ID"];
|
|
1972
|
-
/** Number of Isolines to be generated representing SoC (default: 1,
|
|
2138
|
+
/** Number of Isolines to be generated representing SoC (default: 1, maximum: 20) */
|
|
1973
2139
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
1974
|
-
/** Season to be taken into account when generating the isoline
|
|
2140
|
+
/** Season to be taken into account when generating the isoline. Default: current */
|
|
1975
2141
|
season?: Maybe<RouteSeason>;
|
|
1976
2142
|
};
|
|
2143
|
+
export declare enum IsolineFerryConnectionsType {
|
|
2144
|
+
/** Ferry connections should not be included */
|
|
2145
|
+
NONE = "none",
|
|
2146
|
+
/** 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. */
|
|
2147
|
+
SINGLE = "single"
|
|
2148
|
+
}
|
|
1977
2149
|
export declare type IsolineInput = {
|
|
1978
2150
|
/** Vehicle id */
|
|
1979
2151
|
vehicle_id: Scalars["ID"];
|
|
1980
2152
|
/** Origin point of the request */
|
|
1981
2153
|
origin: FeaturePointPolygonInput;
|
|
1982
|
-
/** Numbers of polygons to be generated (default: 1,
|
|
2154
|
+
/** Numbers of polygons to be generated (default: 1, maximum: 20) */
|
|
1983
2155
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
1984
|
-
/**
|
|
2156
|
+
/** Vehicle should be able to return to the origin point from any point */
|
|
2157
|
+
round_trip?: Maybe<Scalars["Boolean"]>;
|
|
2158
|
+
/** Climate is on */
|
|
2159
|
+
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2160
|
+
/** Season to be taken into account when generating the isoline */
|
|
1985
2161
|
season?: Maybe<RouteSeason>;
|
|
1986
|
-
|
|
2162
|
+
/** Polygons precision quality */
|
|
2163
|
+
quality?: Maybe<IsolineQuality>;
|
|
2164
|
+
/** Include ferry connections. Single and multiple ferry connections increase the calculation time and the number of polygons. */
|
|
2165
|
+
ferry_connections?: Maybe<IsolineFerryConnectionsType>;
|
|
2166
|
+
};
|
|
2167
|
+
/** Granularity of the isoline */
|
|
2168
|
+
export declare enum IsolineQuality {
|
|
2169
|
+
/** High polygons precisions */
|
|
2170
|
+
HIGH = "high",
|
|
2171
|
+
/** Low polygons precisions */
|
|
2172
|
+
LOW = "low"
|
|
2173
|
+
}
|
|
1987
2174
|
/** Status of the isoline label */
|
|
1988
2175
|
export declare enum IsolineStatus {
|
|
1989
2176
|
/** Isoline label has been successfully generated */
|
|
@@ -1995,10 +2182,12 @@ export declare enum IsolineStatus {
|
|
|
1995
2182
|
}
|
|
1996
2183
|
/** Types of a leg */
|
|
1997
2184
|
export declare enum LegType {
|
|
1998
|
-
/** This leg ends at a charging station and the
|
|
2185
|
+
/** This leg ends at a charging station and the vehicle must recharge */
|
|
1999
2186
|
STATION = "station",
|
|
2000
|
-
/** This leg ends at a via charging station and the
|
|
2187
|
+
/** This leg ends at a via charging station and the vehicle must recharge */
|
|
2001
2188
|
STATIONVIA = "stationVia",
|
|
2189
|
+
/** This leg ends at a scheduled charging station and the vehicle must recharge */
|
|
2190
|
+
STATIONAMENITY = "stationAmenity",
|
|
2002
2191
|
/** This leg ends at a via location */
|
|
2003
2192
|
VIA = "via",
|
|
2004
2193
|
/** This leg ends at the destination, and is the last leg of the route */
|
|
@@ -2006,6 +2195,17 @@ export declare enum LegType {
|
|
|
2006
2195
|
/** This leg ends at the destination which is a charging station, and is the last leg of the route */
|
|
2007
2196
|
STATIONFINAL = "stationFinal"
|
|
2008
2197
|
}
|
|
2198
|
+
/** A GeoJSON LineString */
|
|
2199
|
+
export declare type LineString = {
|
|
2200
|
+
/** LineString type */
|
|
2201
|
+
type: LineStringType;
|
|
2202
|
+
/** List of coordinates arrays with longitude as first value and latitude as second one */
|
|
2203
|
+
coordinates: Array<Maybe<Array<Scalars["Float"]>>>;
|
|
2204
|
+
};
|
|
2205
|
+
/** GeoJSON LineString type */
|
|
2206
|
+
export declare enum LineStringType {
|
|
2207
|
+
LINESTRING = "LineString"
|
|
2208
|
+
}
|
|
2009
2209
|
/** Preferred language for the mapping */
|
|
2010
2210
|
export declare enum MappingLanguage {
|
|
2011
2211
|
/** English(US) */
|
|
@@ -2018,6 +2218,23 @@ export declare enum MappingProvider {
|
|
|
2018
2218
|
/** Mapbox instructions mapping */
|
|
2019
2219
|
MAPBOXV5 = "MapboxV5"
|
|
2020
2220
|
}
|
|
2221
|
+
export declare enum MeasurementUnit {
|
|
2222
|
+
/** Return the measurement in millimeters */
|
|
2223
|
+
MILLIMETER = "millimeter",
|
|
2224
|
+
/** Return the measurement in inches */
|
|
2225
|
+
INCH = "inch"
|
|
2226
|
+
}
|
|
2227
|
+
/** A GeoJSON Polygon */
|
|
2228
|
+
export declare type MultiPolygon = {
|
|
2229
|
+
/** MultiPolygon type */
|
|
2230
|
+
type: MultiPolygonType;
|
|
2231
|
+
/** List of coordinates representing a polygon */
|
|
2232
|
+
coordinates: Array<Maybe<Array<Maybe<Array<Maybe<Array<Scalars["Float"]>>>>>>>;
|
|
2233
|
+
};
|
|
2234
|
+
/** GeoJSON MultiPolygon type */
|
|
2235
|
+
export declare enum MultiPolygonType {
|
|
2236
|
+
MULTIPOLYGON = "MultiPolygon"
|
|
2237
|
+
}
|
|
2021
2238
|
export declare type Mutation = {
|
|
2022
2239
|
/** [BETA] Create a connected vehicle for a given vehicle id and a connectivity provider */
|
|
2023
2240
|
createConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
@@ -2025,8 +2242,8 @@ export declare type Mutation = {
|
|
|
2025
2242
|
authorizeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2026
2243
|
/** [BETA] Update a connected vehicle */
|
|
2027
2244
|
updateConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2028
|
-
/** [BETA]
|
|
2029
|
-
removeConnectedVehicle?: Maybe<
|
|
2245
|
+
/** [BETA] Remove a connected vehicle and revoke access */
|
|
2246
|
+
removeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2030
2247
|
/** [BETA] Generate a set of consumption based Isolines */
|
|
2031
2248
|
createIsoline?: Maybe<Scalars["ID"]>;
|
|
2032
2249
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
@@ -2094,9 +2311,9 @@ export declare type Navigation = {
|
|
|
2094
2311
|
/** ID of the navigation session */
|
|
2095
2312
|
id: Scalars["ID"];
|
|
2096
2313
|
/** The current route used for navigation */
|
|
2097
|
-
route_id?: Maybe<Scalars["
|
|
2314
|
+
route_id?: Maybe<Scalars["ID"]>;
|
|
2098
2315
|
/** The current route alternative used for navigation */
|
|
2099
|
-
route_alternative_id?: Maybe<Scalars["
|
|
2316
|
+
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2100
2317
|
/** The state of a navigation session. The status can be driving, charging, finished, or error */
|
|
2101
2318
|
state?: Maybe<NavigationState>;
|
|
2102
2319
|
/** State of charge at the last known location */
|
|
@@ -2133,15 +2350,15 @@ export declare type NavigationRecalculateInput = {
|
|
|
2133
2350
|
current_location: PointInput;
|
|
2134
2351
|
/** Via points of a new route. If this field is not sent, the original via points will be used */
|
|
2135
2352
|
via?: Maybe<Array<Maybe<FeaturePointInput>>>;
|
|
2136
|
-
/**
|
|
2137
|
-
|
|
2353
|
+
/** Telemetry data input */
|
|
2354
|
+
telemetry?: Maybe<TelemetryInput>;
|
|
2138
2355
|
};
|
|
2139
2356
|
/** Input for the navigation start */
|
|
2140
2357
|
export declare type NavigationStartInput = {
|
|
2141
2358
|
/** ID of the route of the navigation session */
|
|
2142
|
-
route_id: Scalars["
|
|
2359
|
+
route_id: Scalars["ID"];
|
|
2143
2360
|
/** ID of the route alternative of the navigation session */
|
|
2144
|
-
route_alternative_id?: Maybe<Scalars["
|
|
2361
|
+
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2145
2362
|
/** Current coordinates */
|
|
2146
2363
|
current_location: PointInput;
|
|
2147
2364
|
};
|
|
@@ -2159,7 +2376,7 @@ export declare enum NavigationState {
|
|
|
2159
2376
|
/** Navigation session station type */
|
|
2160
2377
|
export declare type NavigationStation = {
|
|
2161
2378
|
/** The ID as string of the charging station */
|
|
2162
|
-
station_id?: Maybe<Scalars["
|
|
2379
|
+
station_id?: Maybe<Scalars["ID"]>;
|
|
2163
2380
|
/** GPS location of the charging station */
|
|
2164
2381
|
station_location?: Maybe<Point>;
|
|
2165
2382
|
/** An array with all GPS locations of via points until the next charging station */
|
|
@@ -2171,32 +2388,21 @@ export declare type NavigationStation = {
|
|
|
2171
2388
|
/** Estimated duration, in seconds, from the last known location until the next charging station */
|
|
2172
2389
|
estimated_duration?: Maybe<Scalars["Int"]>;
|
|
2173
2390
|
};
|
|
2174
|
-
/** Input for the navigation session update telemetry data */
|
|
2175
|
-
export declare type NavigationTelemetryUpdateInput = {
|
|
2176
|
-
/** State of charge at the last known location, in kwh */
|
|
2177
|
-
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
2178
|
-
/** Indicates if a vehicle is charging */
|
|
2179
|
-
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
2180
|
-
/** Average tire pressure, in bars. This information should come from telemetry */
|
|
2181
|
-
tire_pressure?: Maybe<Scalars["Float"]>;
|
|
2182
|
-
};
|
|
2183
2391
|
/** Input for the navigation update */
|
|
2184
2392
|
export declare type NavigationUpdateInput = {
|
|
2185
2393
|
/** ID of the navigation session */
|
|
2186
2394
|
id: Scalars["ID"];
|
|
2187
|
-
/** Heading of a vehicle, in degrees */
|
|
2188
|
-
heading?: Maybe<Scalars["Float"]>;
|
|
2189
2395
|
/** A list of locations that were collected since the last update */
|
|
2190
2396
|
location_data: Array<NavigationUpdateLocationsInput>;
|
|
2191
2397
|
/** Telemetry data input */
|
|
2192
|
-
telemetry?: Maybe<
|
|
2398
|
+
telemetry?: Maybe<TelemetryInput>;
|
|
2193
2399
|
};
|
|
2194
2400
|
/** Properties of the location */
|
|
2195
2401
|
export declare type NavigationUpdateLocationPropertiesInput = {
|
|
2196
2402
|
/** Current route leg index corresponding to a location */
|
|
2197
2403
|
route_leg: Scalars["Int"];
|
|
2198
2404
|
/** Speed at a location, in km/h */
|
|
2199
|
-
speed
|
|
2405
|
+
speed?: Maybe<Scalars["Float"]>;
|
|
2200
2406
|
/** UNIX timestamp at location, in seconds */
|
|
2201
2407
|
timestamp: Scalars["Int"];
|
|
2202
2408
|
/** Altitude information, in meters. This is optional */
|
|
@@ -2209,12 +2415,6 @@ export declare type NavigationUpdateLocationsInput = {
|
|
|
2209
2415
|
/** Extra information about the location */
|
|
2210
2416
|
properties: NavigationUpdateLocationPropertiesInput;
|
|
2211
2417
|
};
|
|
2212
|
-
export declare type NewConnectedVehicleOptions = {
|
|
2213
|
-
/** Redirect uri */
|
|
2214
|
-
redirect_uri?: Maybe<Scalars["PlainString"]>;
|
|
2215
|
-
/** Scope */
|
|
2216
|
-
scope?: Maybe<Array<Maybe<ConnectScope>>>;
|
|
2217
|
-
};
|
|
2218
2418
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2219
2419
|
export declare type OCPIAdditionalGeoLocation = {
|
|
2220
2420
|
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
@@ -2695,6 +2895,89 @@ export declare enum OCPITariffType {
|
|
|
2695
2895
|
/** Used to describe that a tariff is valid when using an RFID, without any charging preference, or when charging preference: REGULAR is set for the session */
|
|
2696
2896
|
REGULAR = "REGULAR"
|
|
2697
2897
|
}
|
|
2898
|
+
/** List of charging modes that are supported */
|
|
2899
|
+
export declare enum OICPChargingModes {
|
|
2900
|
+
MODE_1 = "mode_1",
|
|
2901
|
+
MODE_2 = "mode_2",
|
|
2902
|
+
MODE_3 = "mode_3",
|
|
2903
|
+
MODE_4 = "mode_4",
|
|
2904
|
+
CHADEMO = "chademo"
|
|
2905
|
+
}
|
|
2906
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
2907
|
+
export declare type OICPConnectorCustomProperties = {
|
|
2908
|
+
/** Returns whether the connector is able to deliver different power outputs */
|
|
2909
|
+
dynamic_power_level?: Maybe<Scalars["Boolean"]>;
|
|
2910
|
+
/** List of charging modes that are supported as specified by IEC 61851-1 */
|
|
2911
|
+
charging_modes?: Maybe<Array<OICPChargingModes>>;
|
|
2912
|
+
};
|
|
2913
|
+
/** List of authentication modes that are supported */
|
|
2914
|
+
export declare enum OICPEvseAuthenticationMode {
|
|
2915
|
+
NFC_RFID_CLASSIC = "nfc_rfid_classic",
|
|
2916
|
+
NFC_RFID_DESFIRE = "nfc_rfid_desfire",
|
|
2917
|
+
PNC = "pnc",
|
|
2918
|
+
REMOTE = "remote",
|
|
2919
|
+
DIRECT_PAYMENT = "direct_payment",
|
|
2920
|
+
NO_AUTHENTICATION_REQUIRED = "no_authentication_required"
|
|
2921
|
+
}
|
|
2922
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2923
|
+
export declare type OICPEvseCustomProperties = {
|
|
2924
|
+
/** List of authentication modes that are supported */
|
|
2925
|
+
authentication_modes: Array<OICPEvseAuthenticationMode>;
|
|
2926
|
+
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh */
|
|
2927
|
+
max_capacity?: Maybe<Scalars["Int"]>;
|
|
2928
|
+
/** List of payment options that are supported */
|
|
2929
|
+
payment_options: Array<OICPPaymentOptions>;
|
|
2930
|
+
/** List of value added services that are supported */
|
|
2931
|
+
value_added_services: Array<OICPValueAddedServices>;
|
|
2932
|
+
/** List of additional info by locale */
|
|
2933
|
+
additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;
|
|
2934
|
+
/** When the value is set to false this station does not support remote start and stop by Hubject */
|
|
2935
|
+
is_hubject_compatible: Scalars["Boolean"];
|
|
2936
|
+
/** Name of the charging point manufacturer */
|
|
2937
|
+
hardware_manufacturer?: Maybe<Scalars["String"]>;
|
|
2938
|
+
};
|
|
2939
|
+
export declare type OICPEvseCustomPropertiesAdditionalInfo = {
|
|
2940
|
+
/** The language in which the additional info text is provided */
|
|
2941
|
+
lang?: Maybe<Scalars["String"]>;
|
|
2942
|
+
/** Additional info text value */
|
|
2943
|
+
value?: Maybe<Scalars["String"]>;
|
|
2944
|
+
};
|
|
2945
|
+
/** List of payment options that are supported */
|
|
2946
|
+
export declare enum OICPPaymentOptions {
|
|
2947
|
+
NO_PAYMENT = "no_payment",
|
|
2948
|
+
DIRECT = "direct",
|
|
2949
|
+
CONTRACT = "contract"
|
|
2950
|
+
}
|
|
2951
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2952
|
+
export declare type OICPStationCustomProperties = {
|
|
2953
|
+
/** Returns whether the station is a parking facility */
|
|
2954
|
+
parking_facility?: Maybe<Scalars["Boolean"]>;
|
|
2955
|
+
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1 */
|
|
2956
|
+
parking_spot?: Maybe<Scalars["String"]>;
|
|
2957
|
+
/** Returns information on how the charging station provides metering law data */
|
|
2958
|
+
calibration_law_data_availability: Scalars["String"];
|
|
2959
|
+
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future */
|
|
2960
|
+
clearinghouse_id?: Maybe<Scalars["String"]>;
|
|
2961
|
+
};
|
|
2962
|
+
/** List of value added services that are supported */
|
|
2963
|
+
export declare enum OICPValueAddedServices {
|
|
2964
|
+
RESERVATION = "reservation",
|
|
2965
|
+
DYNAMIC_PRICING = "dynamic_pricing",
|
|
2966
|
+
PARKING_SENSORS = "parking_sensors",
|
|
2967
|
+
MAXIMUM_POWER_CHARGING = "maximum_power_charging",
|
|
2968
|
+
PREDICTIVE_CHARGE_POINT_USAGE = "predictive_charge_point_usage",
|
|
2969
|
+
CHARGING_PLANS = "charging_plans",
|
|
2970
|
+
ROOF_PROVIDED = "roof_provided",
|
|
2971
|
+
NONE = "none"
|
|
2972
|
+
}
|
|
2973
|
+
export declare type OdometerInput = {
|
|
2974
|
+
/** Value of the vehicle's odometer */
|
|
2975
|
+
value: Scalars["Float"];
|
|
2976
|
+
/** Type of the value of the vehicle's odometer */
|
|
2977
|
+
type: DistanceUnit;
|
|
2978
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
2979
|
+
source?: Maybe<TelemetryInputSource>;
|
|
2980
|
+
};
|
|
2698
2981
|
/** The operator data which extends OCPI BusinessDetails */
|
|
2699
2982
|
export declare type Operator = {
|
|
2700
2983
|
/** Unique operator ID */
|
|
@@ -2738,6 +3021,14 @@ export declare type OperatorListQuery = {
|
|
|
2738
3021
|
/** Exact country code */
|
|
2739
3022
|
country?: Maybe<Scalars["String"]>;
|
|
2740
3023
|
};
|
|
3024
|
+
export declare type OutsideTempInput = {
|
|
3025
|
+
/** Value of the outside temperature */
|
|
3026
|
+
value: Scalars["Float"];
|
|
3027
|
+
/** Type of the value of the outside temperature */
|
|
3028
|
+
type: TemperatureUnit;
|
|
3029
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
3030
|
+
source?: Maybe<TelemetryInputSource>;
|
|
3031
|
+
};
|
|
2741
3032
|
export declare enum ParkingCost {
|
|
2742
3033
|
/** Parking is free */
|
|
2743
3034
|
FREE = "free",
|
|
@@ -2778,22 +3069,19 @@ export declare type PointInput = {
|
|
|
2778
3069
|
export declare enum PointType {
|
|
2779
3070
|
POINT = "Point"
|
|
2780
3071
|
}
|
|
2781
|
-
/** A GeoJSON Polygon */
|
|
2782
|
-
export declare type Polygon = {
|
|
2783
|
-
/** Polygon type */
|
|
2784
|
-
type: PolygonType;
|
|
2785
|
-
/** List of coordinates representing a polygon */
|
|
2786
|
-
coordinates: Array<Maybe<Array<Maybe<Array<Maybe<Scalars["Float"]>>>>>>;
|
|
2787
|
-
};
|
|
2788
3072
|
/** Polygon properties */
|
|
2789
3073
|
export declare type PolygonProperties = {
|
|
2790
3074
|
/** Index of the feature inside the list */
|
|
2791
3075
|
index?: Maybe<Scalars["Int"]>;
|
|
2792
3076
|
};
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
3077
|
+
export declare type PowerInput = {
|
|
3078
|
+
/** Value of the positive or negative power. When negative the vehicle is charging */
|
|
3079
|
+
value: Scalars["Float"];
|
|
3080
|
+
/** Type of the value of the power */
|
|
3081
|
+
type: PowerUnit;
|
|
3082
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
3083
|
+
source?: Maybe<TelemetryInputSource>;
|
|
3084
|
+
};
|
|
2797
3085
|
/** The list of powers for the speed type */
|
|
2798
3086
|
export declare type PowerList = {
|
|
2799
3087
|
/** The maximum power the plug provides in kW */
|
|
@@ -2808,6 +3096,18 @@ export declare type PowerStats = {
|
|
|
2808
3096
|
/** The list of powers for the speed type */
|
|
2809
3097
|
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
2810
3098
|
};
|
|
3099
|
+
export declare enum PowerUnit {
|
|
3100
|
+
/** Return the power in kilowatts */
|
|
3101
|
+
KILOWATT = "kilowatt",
|
|
3102
|
+
/** Return the power in horsepower */
|
|
3103
|
+
HORSEPOWER = "horsepower"
|
|
3104
|
+
}
|
|
3105
|
+
export declare enum PressureUnit {
|
|
3106
|
+
/** Return the pressure in bar */
|
|
3107
|
+
BAR = "bar",
|
|
3108
|
+
/** Return the pressure in pounds per square inch */
|
|
3109
|
+
POUNDS_PER_SQUARE_INCH = "pounds_per_square_inch"
|
|
3110
|
+
}
|
|
2811
3111
|
/** The price model */
|
|
2812
3112
|
export declare type Price = {
|
|
2813
3113
|
/** The value of the price */
|
|
@@ -2872,9 +3172,9 @@ export declare type Query = {
|
|
|
2872
3172
|
carPremium?: Maybe<CarPremium>;
|
|
2873
3173
|
/** Get a full list of cars */
|
|
2874
3174
|
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
2875
|
-
/** [BETA] Get connected vehicles
|
|
3175
|
+
/** [BETA] Get a connected vehicles by id */
|
|
2876
3176
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2877
|
-
/** [BETA] Get
|
|
3177
|
+
/** [BETA] Get the connected vehicles for the current user */
|
|
2878
3178
|
connectedVehicleList?: Maybe<Array<Maybe<ConnectedVehicle>>>;
|
|
2879
3179
|
/** [BETA] Retrieve live vehicle data by connected vehicle id */
|
|
2880
3180
|
connectedVehicleData?: Maybe<VehicleData>;
|
|
@@ -2912,6 +3212,12 @@ export declare type Query = {
|
|
|
2912
3212
|
tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
2913
3213
|
/** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
|
|
2914
3214
|
navigationMapping?: Maybe<Scalars["JSON"]>;
|
|
3215
|
+
/** [BETA] Get information about a vehicle by its ID */
|
|
3216
|
+
vehicle?: Maybe<Vehicle>;
|
|
3217
|
+
/** [BETA] Vehicle premium data provides even more information about your vehicle: tire pressure, prices, drivetrain data, and more. Please contact us for access to premium data. */
|
|
3218
|
+
vehiclePremium?: Maybe<VehiclePremium>;
|
|
3219
|
+
/** [BETA] Get a full list of vehicles */
|
|
3220
|
+
vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
|
|
2915
3221
|
};
|
|
2916
3222
|
export declare type QueryamenityListArgs = {
|
|
2917
3223
|
stationId: Scalars["ID"];
|
|
@@ -2933,6 +3239,11 @@ export declare type QuerycarListArgs = {
|
|
|
2933
3239
|
export declare type QueryconnectedVehicleArgs = {
|
|
2934
3240
|
id: Scalars["ID"];
|
|
2935
3241
|
};
|
|
3242
|
+
export declare type QueryconnectedVehicleListArgs = {
|
|
3243
|
+
filter?: Maybe<ConnectedVehicleListFilter>;
|
|
3244
|
+
size?: Maybe<Scalars["Int"]>;
|
|
3245
|
+
page?: Maybe<Scalars["Int"]>;
|
|
3246
|
+
};
|
|
2936
3247
|
export declare type QueryconnectedVehicleDataArgs = {
|
|
2937
3248
|
id: Scalars["ID"];
|
|
2938
3249
|
};
|
|
@@ -2970,7 +3281,8 @@ export declare type QueryroutePathArgs = {
|
|
|
2970
3281
|
alternativeId?: Maybe<Scalars["ID"]>;
|
|
2971
3282
|
};
|
|
2972
3283
|
export declare type QuerystationArgs = {
|
|
2973
|
-
id
|
|
3284
|
+
id?: Maybe<Scalars["ID"]>;
|
|
3285
|
+
evse_id?: Maybe<Scalars["String"]>;
|
|
2974
3286
|
};
|
|
2975
3287
|
export declare type QuerystationListArgs = {
|
|
2976
3288
|
query?: Maybe<StationListQuery>;
|
|
@@ -2999,13 +3311,28 @@ export declare type QuerynavigationMappingArgs = {
|
|
|
2999
3311
|
precision?: Maybe<Scalars["Int"]>;
|
|
3000
3312
|
language?: Maybe<MappingLanguage>;
|
|
3001
3313
|
};
|
|
3314
|
+
export declare type QueryvehicleArgs = {
|
|
3315
|
+
id: Scalars["ID"];
|
|
3316
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3317
|
+
};
|
|
3318
|
+
export declare type QueryvehiclePremiumArgs = {
|
|
3319
|
+
id: Scalars["ID"];
|
|
3320
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3321
|
+
};
|
|
3322
|
+
export declare type QueryvehicleListArgs = {
|
|
3323
|
+
search?: Maybe<Scalars["String"]>;
|
|
3324
|
+
filter?: Maybe<VehicleListFilter>;
|
|
3325
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3326
|
+
size?: Maybe<Scalars["Int"]>;
|
|
3327
|
+
page?: Maybe<Scalars["Int"]>;
|
|
3328
|
+
};
|
|
3002
3329
|
export declare type RemoveConnectedVehicleInput = {
|
|
3003
3330
|
/** Id from the connected vehicle */
|
|
3004
3331
|
id: Scalars["ID"];
|
|
3005
3332
|
};
|
|
3006
3333
|
/** EV specific data for a route request */
|
|
3007
3334
|
export declare type RequestEv = {
|
|
3008
|
-
/** Internal ID of a
|
|
3335
|
+
/** Internal ID of a Vehicle */
|
|
3009
3336
|
id?: Maybe<Scalars["ID"]>;
|
|
3010
3337
|
/** EV battery specific data */
|
|
3011
3338
|
battery?: Maybe<RequestEvBattery>;
|
|
@@ -3030,7 +3357,7 @@ export declare type RequestEv = {
|
|
|
3030
3357
|
consumption?: Maybe<RequestEvConsumption>;
|
|
3031
3358
|
};
|
|
3032
3359
|
export declare type RequestEvBattery = {
|
|
3033
|
-
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the
|
|
3360
|
+
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the vehicle battery.usable_kwh */
|
|
3034
3361
|
capacity?: Maybe<RequestEvBatteryValue>;
|
|
3035
3362
|
/** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value */
|
|
3036
3363
|
capacityKwh?: Maybe<Scalars["Float"]>;
|
|
@@ -3038,17 +3365,17 @@ export declare type RequestEvBattery = {
|
|
|
3038
3365
|
stateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
3039
3366
|
/** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge */
|
|
3040
3367
|
stateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
3041
|
-
/** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the
|
|
3368
|
+
/** 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 */
|
|
3042
3369
|
finalStateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
3043
3370
|
/** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge */
|
|
3044
3371
|
finalStateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
3045
3372
|
};
|
|
3046
3373
|
export declare type RequestEvBatteryInput = {
|
|
3047
|
-
/** 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
|
|
3374
|
+
/** 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 */
|
|
3048
3375
|
capacity?: Maybe<RequestEvBatteryInputValue>;
|
|
3049
|
-
/** 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
|
|
3376
|
+
/** 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 */
|
|
3050
3377
|
stateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
3051
|
-
/** Desired final amount of energy in a battery. The value should be between 0 and 80% of the
|
|
3378
|
+
/** 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 */
|
|
3052
3379
|
finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
3053
3380
|
};
|
|
3054
3381
|
export declare type RequestEvBatteryInputValue = {
|
|
@@ -3068,7 +3395,7 @@ export declare type RequestEvConsumption = {
|
|
|
3068
3395
|
aux?: Maybe<CarConsumption>;
|
|
3069
3396
|
/** The consumption, in kWh, of the battery management system */
|
|
3070
3397
|
bms?: Maybe<CarConsumption>;
|
|
3071
|
-
/** The consumption, in kWh, of the
|
|
3398
|
+
/** The consumption, in kWh, of the vehicle in idle mode */
|
|
3072
3399
|
idle?: Maybe<CarConsumption>;
|
|
3073
3400
|
};
|
|
3074
3401
|
export declare type RequestEvConsumptionInput = {
|
|
@@ -3076,11 +3403,11 @@ export declare type RequestEvConsumptionInput = {
|
|
|
3076
3403
|
aux?: Maybe<CarConsumptionInput>;
|
|
3077
3404
|
/** Consumption, in kWh, of the battery management system */
|
|
3078
3405
|
bms?: Maybe<CarConsumptionInput>;
|
|
3079
|
-
/** Consumption, in kWh, of the
|
|
3406
|
+
/** Consumption, in kWh, of the vehicle in idle mode */
|
|
3080
3407
|
idle?: Maybe<CarConsumptionInput>;
|
|
3081
3408
|
};
|
|
3082
3409
|
export declare type RequestEvInput = {
|
|
3083
|
-
/** Internal ID of a
|
|
3410
|
+
/** Internal ID of a Vehicle */
|
|
3084
3411
|
id: Scalars["ID"];
|
|
3085
3412
|
/** The EV battery specific data */
|
|
3086
3413
|
battery?: Maybe<RequestEvBatteryInput>;
|
|
@@ -3124,8 +3451,13 @@ export declare type RequestInput = {
|
|
|
3124
3451
|
telemetry?: Maybe<Scalars["JSON"]>;
|
|
3125
3452
|
};
|
|
3126
3453
|
export declare type RequestRoute = {
|
|
3127
|
-
/**
|
|
3454
|
+
/**
|
|
3455
|
+
* Requested amenities near the stations, within a 1 kilometer radius
|
|
3456
|
+
* @deprecated Will be removed. Use the amenity preferences instead
|
|
3457
|
+
*/
|
|
3128
3458
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3459
|
+
/** Amenity preferences for a route */
|
|
3460
|
+
amenity_preferences?: Maybe<RouteAmenityPreferences>;
|
|
3129
3461
|
/**
|
|
3130
3462
|
* Requested operators
|
|
3131
3463
|
* @deprecated Will be removed. Use the operators property instead
|
|
@@ -3161,8 +3493,10 @@ export declare type RequestRoute = {
|
|
|
3161
3493
|
chargeMode?: Maybe<ChargeMode>;
|
|
3162
3494
|
};
|
|
3163
3495
|
export declare type RequestRouteInput = {
|
|
3164
|
-
/** A list of desired amenities near the stations, with a 1
|
|
3496
|
+
/** Deprecated: in favor of amenity preferences. A list of desired amenities near the stations, with a 1 kilometer radius */
|
|
3165
3497
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3498
|
+
/** Amenity preferences for a route */
|
|
3499
|
+
amenity_preferences?: Maybe<AmenityPreferencesInput>;
|
|
3166
3500
|
/** Deprecated: in favor of operators. A list of requested operators */
|
|
3167
3501
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3168
3502
|
/** Deprecated: in favor of operators. Flag which indicates if the operators are required */
|
|
@@ -3206,7 +3540,7 @@ export declare type Review = {
|
|
|
3206
3540
|
message?: Maybe<Scalars["String"]>;
|
|
3207
3541
|
/** Locale of a message */
|
|
3208
3542
|
locale?: Maybe<Scalars["String"]>;
|
|
3209
|
-
/**
|
|
3543
|
+
/** Vehicle that was provided/selected by a user */
|
|
3210
3544
|
ev?: Maybe<Car>;
|
|
3211
3545
|
/** Plug type that was provided/selected by a user */
|
|
3212
3546
|
plugType?: Maybe<ConnectorType>;
|
|
@@ -3229,7 +3563,7 @@ export declare type ReviewAdd = {
|
|
|
3229
3563
|
message?: Maybe<Scalars["String"]>;
|
|
3230
3564
|
/** Locale of a message */
|
|
3231
3565
|
locale?: Maybe<Scalars["String"]>;
|
|
3232
|
-
/** ID of the
|
|
3566
|
+
/** ID of the vehicle that was provided/selected by a user */
|
|
3233
3567
|
ev?: Maybe<Scalars["String"]>;
|
|
3234
3568
|
/** Plug type that was provided/selected by a user */
|
|
3235
3569
|
plugType?: Maybe<ConnectorType>;
|
|
@@ -3402,6 +3736,13 @@ export declare enum RouteAlternativeType {
|
|
|
3402
3736
|
/** An alternative to the fastest route */
|
|
3403
3737
|
ALTERNATIVE = "alternative"
|
|
3404
3738
|
}
|
|
3739
|
+
/** Amenity preferences for a route */
|
|
3740
|
+
export declare type RouteAmenityPreferences = {
|
|
3741
|
+
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius */
|
|
3742
|
+
all_charge_stops?: Maybe<Array<AmenityType>>;
|
|
3743
|
+
/** Scheduled charge stops, with a specified amenity and timeline */
|
|
3744
|
+
scheduled_charge_stops?: Maybe<Array<RouteScheduledChargeStop>>;
|
|
3745
|
+
};
|
|
3405
3746
|
export declare type RouteApp = {
|
|
3406
3747
|
/** ID of the app who requested a route */
|
|
3407
3748
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -3613,6 +3954,19 @@ export declare type RoutePath = {
|
|
|
3613
3954
|
/** State of charge, in kWh, of a route path segment */
|
|
3614
3955
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
3615
3956
|
};
|
|
3957
|
+
/** Scheduled charge stop along a route */
|
|
3958
|
+
export declare type RouteScheduledChargeStop = {
|
|
3959
|
+
/** List of amenity types */
|
|
3960
|
+
types?: Maybe<Array<Maybe<AmenityType>>>;
|
|
3961
|
+
/** Duration at the amenity, in seconds */
|
|
3962
|
+
duration?: Maybe<Scalars["Int"]>;
|
|
3963
|
+
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800 */
|
|
3964
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
3965
|
+
/** Desired drive time before a scheduled stop after leaving the previous stop, in seconds */
|
|
3966
|
+
stop_after?: Maybe<Scalars["Int"]>;
|
|
3967
|
+
/** Maximum distance from a station to an amenity, in meters */
|
|
3968
|
+
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
3969
|
+
};
|
|
3616
3970
|
/** The season of the route */
|
|
3617
3971
|
export declare enum RouteSeason {
|
|
3618
3972
|
/** We suppose it is summer and we have the best weather conditions */
|
|
@@ -3675,6 +4029,25 @@ export declare enum RouteTagType {
|
|
|
3675
4029
|
WALKING = "walking",
|
|
3676
4030
|
CROSSBORDER = "crossborder"
|
|
3677
4031
|
}
|
|
4032
|
+
/** Scheduled charge stop along a route */
|
|
4033
|
+
export declare type ScheduledChargeStopInput = {
|
|
4034
|
+
/** List of amenity types */
|
|
4035
|
+
types: Array<AmenityType>;
|
|
4036
|
+
/** Duration at the amenity, in seconds. The value should be between 900 and 86400 */
|
|
4037
|
+
duration: Scalars["Int"];
|
|
4038
|
+
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800 */
|
|
4039
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
4040
|
+
/** Desired drive time for a scheduled stop after leaving the origin point, in seconds */
|
|
4041
|
+
stop_after: Scalars["Int"];
|
|
4042
|
+
/** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000. Default is 1000 */
|
|
4043
|
+
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
4044
|
+
};
|
|
4045
|
+
export declare enum SpeedUnit {
|
|
4046
|
+
/** Return the speed in kilometers per hour */
|
|
4047
|
+
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
4048
|
+
/** Return the speed in miles per hour */
|
|
4049
|
+
MILES_PER_HOUR = "miles_per_hour"
|
|
4050
|
+
}
|
|
3678
4051
|
/** Standards(plug type) stats model */
|
|
3679
4052
|
export declare type StandardStats = {
|
|
3680
4053
|
/** The plug type */
|
|
@@ -3682,6 +4055,24 @@ export declare type StandardStats = {
|
|
|
3682
4055
|
/** The total number of stations with the specified plug */
|
|
3683
4056
|
total?: Maybe<Scalars["Int"]>;
|
|
3684
4057
|
};
|
|
4058
|
+
export declare type StateOfChargeInput = {
|
|
4059
|
+
/** Value of the state of charge of the vehicle */
|
|
4060
|
+
value: Scalars["Float"];
|
|
4061
|
+
/** Type of the state of charge of the vehicle */
|
|
4062
|
+
type: BatteryInputType;
|
|
4063
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4064
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4065
|
+
};
|
|
4066
|
+
export declare enum StateOfChargeUnit {
|
|
4067
|
+
/** Return the state of charge in kilometers */
|
|
4068
|
+
KILOMETER = "kilometer",
|
|
4069
|
+
/** Return the speed of charge in miles */
|
|
4070
|
+
MILE = "mile",
|
|
4071
|
+
/** Return the speed of charge in kilowatt hours */
|
|
4072
|
+
KILOWATT_HOUR = "kilowatt_hour",
|
|
4073
|
+
/** Return the speed of charge in a percentage */
|
|
4074
|
+
PERCENTAGE = "percentage"
|
|
4075
|
+
}
|
|
3685
4076
|
/** Station data which extends OCPI Location */
|
|
3686
4077
|
export declare type Station = {
|
|
3687
4078
|
/** Review of a station */
|
|
@@ -3822,6 +4213,8 @@ export declare type StationCustomProperties = {
|
|
|
3822
4213
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
3823
4214
|
/** Type of access to the charging station */
|
|
3824
4215
|
access_type?: Maybe<AccessType>;
|
|
4216
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
4217
|
+
oicp?: Maybe<OICPStationCustomProperties>;
|
|
3825
4218
|
};
|
|
3826
4219
|
/** Filter which can be applied to retrieve the station list action */
|
|
3827
4220
|
export declare type StationListFilter = {
|
|
@@ -3930,12 +4323,319 @@ export declare type SubscriptionnavigationUpdatedByIdArgs = {
|
|
|
3930
4323
|
export declare type SubscriptionrouteUpdatedByIdArgs = {
|
|
3931
4324
|
id: Scalars["ID"];
|
|
3932
4325
|
};
|
|
4326
|
+
export declare type Telemetry = {
|
|
4327
|
+
/** Value of the auxiliary power consumption of the vehicle */
|
|
4328
|
+
auxiliary_consumption?: Maybe<Scalars["Float"]>;
|
|
4329
|
+
/** Battery current in ampere */
|
|
4330
|
+
battery_current?: Maybe<Scalars["Float"]>;
|
|
4331
|
+
/** Value of the temperature of the battery */
|
|
4332
|
+
battery_temperature?: Maybe<Scalars["Float"]>;
|
|
4333
|
+
/** Battery voltage in volts */
|
|
4334
|
+
battery_voltage?: Maybe<Scalars["Float"]>;
|
|
4335
|
+
/** Is the vehicle currently charging */
|
|
4336
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
4337
|
+
/** Value of the rate of charge of the battery */
|
|
4338
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
4339
|
+
/** Value of the amount of battery charged */
|
|
4340
|
+
charge_total?: Maybe<Scalars["Float"]>;
|
|
4341
|
+
/** Value of the current weight of the occupants */
|
|
4342
|
+
total_occupant_weight?: Maybe<Scalars["Float"]>;
|
|
4343
|
+
/** Value of the current weight of the cargo */
|
|
4344
|
+
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
4345
|
+
/** Value of the current elevation */
|
|
4346
|
+
elevation?: Maybe<Scalars["Float"]>;
|
|
4347
|
+
/** Current heading in degrees */
|
|
4348
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
4349
|
+
/** RPM of the motor */
|
|
4350
|
+
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
4351
|
+
/** Number of occupants present in the vehicle */
|
|
4352
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
4353
|
+
/** Value of the vehicle's odometer */
|
|
4354
|
+
odometer?: Maybe<Scalars["Float"]>;
|
|
4355
|
+
/** Value of the outside temperature */
|
|
4356
|
+
outside_temperature?: Maybe<Scalars["Float"]>;
|
|
4357
|
+
/** Vehicle is in park, neutral or turned off */
|
|
4358
|
+
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
4359
|
+
/** Value of the positive or negative power. When negative the vehicle is charging */
|
|
4360
|
+
power?: Maybe<Scalars["Float"]>;
|
|
4361
|
+
/** Value of the state of charge of the vehicle */
|
|
4362
|
+
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
4363
|
+
/** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear */
|
|
4364
|
+
tire_pressure?: Maybe<Array<Scalars["Float"]>>;
|
|
4365
|
+
/** UNIX timestamp in seconds */
|
|
4366
|
+
timestamp?: Maybe<Scalars["Int"]>;
|
|
4367
|
+
/** Value of the vehicle speed */
|
|
4368
|
+
vehicle_speed?: Maybe<Scalars["Float"]>;
|
|
4369
|
+
/** Custom input fields can be added based on telemetry architecture */
|
|
4370
|
+
custom?: Maybe<Scalars["JSON"]>;
|
|
4371
|
+
};
|
|
4372
|
+
export declare type Telemetryauxiliary_consumptionArgs = {
|
|
4373
|
+
unit?: Maybe<AuxiliaryConsumptionUnit>;
|
|
4374
|
+
};
|
|
4375
|
+
export declare type Telemetrybattery_temperatureArgs = {
|
|
4376
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4377
|
+
};
|
|
4378
|
+
export declare type Telemetrycharge_speedArgs = {
|
|
4379
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
4380
|
+
};
|
|
4381
|
+
export declare type Telemetrycharge_totalArgs = {
|
|
4382
|
+
unit?: Maybe<BatteryInputType>;
|
|
4383
|
+
};
|
|
4384
|
+
export declare type Telemetrytotal_occupant_weightArgs = {
|
|
4385
|
+
unit?: Maybe<WeightUnit>;
|
|
4386
|
+
};
|
|
4387
|
+
export declare type Telemetrytotal_cargo_weightArgs = {
|
|
4388
|
+
unit?: Maybe<WeightUnit>;
|
|
4389
|
+
};
|
|
4390
|
+
export declare type TelemetryelevationArgs = {
|
|
4391
|
+
unit?: Maybe<ElevationUnit>;
|
|
4392
|
+
};
|
|
4393
|
+
export declare type TelemetryodometerArgs = {
|
|
4394
|
+
unit?: Maybe<DistanceUnit>;
|
|
4395
|
+
};
|
|
4396
|
+
export declare type Telemetryoutside_temperatureArgs = {
|
|
4397
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4398
|
+
};
|
|
4399
|
+
export declare type TelemetrypowerArgs = {
|
|
4400
|
+
unit?: Maybe<PowerUnit>;
|
|
4401
|
+
};
|
|
4402
|
+
export declare type Telemetrystate_of_chargeArgs = {
|
|
4403
|
+
unit?: Maybe<BatteryInputType>;
|
|
4404
|
+
};
|
|
4405
|
+
export declare type Telemetrytire_pressureArgs = {
|
|
4406
|
+
unit?: Maybe<PressureUnit>;
|
|
4407
|
+
};
|
|
4408
|
+
export declare type Telemetryvehicle_speedArgs = {
|
|
4409
|
+
unit?: Maybe<SpeedUnit>;
|
|
4410
|
+
};
|
|
4411
|
+
export declare type TelemetryInput = {
|
|
4412
|
+
/** Average auxiliary power consumption */
|
|
4413
|
+
auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;
|
|
4414
|
+
/** Battery current in ampere */
|
|
4415
|
+
battery_current?: Maybe<Scalars["Float"]>;
|
|
4416
|
+
/** Battery temperature */
|
|
4417
|
+
battery_temperature?: Maybe<BatteryTemperatureInput>;
|
|
4418
|
+
/** Battery voltage in volts */
|
|
4419
|
+
battery_voltage?: Maybe<Scalars["Float"]>;
|
|
4420
|
+
/** Is the vehicle currently charging */
|
|
4421
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
4422
|
+
/** Rate of charge */
|
|
4423
|
+
charge_speed?: Maybe<ChargeSpeedInput>;
|
|
4424
|
+
/** Amount charged */
|
|
4425
|
+
charge_total?: Maybe<ChargeTotalInput>;
|
|
4426
|
+
/** Cumulated weight of the occupants */
|
|
4427
|
+
total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
|
|
4428
|
+
/** Weight of the cargo */
|
|
4429
|
+
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
4430
|
+
/** Current elevation */
|
|
4431
|
+
elevation?: Maybe<ElevationInput>;
|
|
4432
|
+
/** Current heading in degrees */
|
|
4433
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
4434
|
+
/** RPM of the motor */
|
|
4435
|
+
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
4436
|
+
/** Number of occupants in the vehicle */
|
|
4437
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
4438
|
+
/** Mileage or odometer reading */
|
|
4439
|
+
odometer?: Maybe<OdometerInput>;
|
|
4440
|
+
/** Outside temperature */
|
|
4441
|
+
outside_temperature?: Maybe<OutsideTempInput>;
|
|
4442
|
+
/** Vehicle is in park, neutral or turned off */
|
|
4443
|
+
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
4444
|
+
/** Vehicle power */
|
|
4445
|
+
power?: Maybe<PowerInput>;
|
|
4446
|
+
/** Battery state of charge */
|
|
4447
|
+
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
4448
|
+
/** Average tire pressures of all wheels, starting from the front side right to left and to the rear */
|
|
4449
|
+
tire_pressure?: Maybe<TirePressureInput>;
|
|
4450
|
+
/** UNIX timestamp in seconds */
|
|
4451
|
+
timestamp?: Maybe<Scalars["Int"]>;
|
|
4452
|
+
/** Vehicle speed */
|
|
4453
|
+
vehicle_speed?: Maybe<VehicleSpeedInput>;
|
|
4454
|
+
/** Custom input fields can be added based on telemetry architecture */
|
|
4455
|
+
custom?: Maybe<Scalars["JSON"]>;
|
|
4456
|
+
};
|
|
4457
|
+
export declare enum TelemetryInputSource {
|
|
4458
|
+
/** Manually inputted value */
|
|
4459
|
+
MANUAL = "manual",
|
|
4460
|
+
/** Value from the vehicle's telemetry */
|
|
4461
|
+
TELEMETRY = "telemetry"
|
|
4462
|
+
}
|
|
4463
|
+
export declare enum TemperatureUnit {
|
|
4464
|
+
/** Return the temperature in Celsius */
|
|
4465
|
+
CELSIUS = "Celsius",
|
|
4466
|
+
/** Return the temperature in Fahrenheit */
|
|
4467
|
+
FAHRENHEIT = "Fahrenheit"
|
|
4468
|
+
}
|
|
4469
|
+
export declare type TirePressureInput = {
|
|
4470
|
+
/** Values for the tire pressure, starting from the front side right to left and to the rear */
|
|
4471
|
+
value: Array<Scalars["Float"]>;
|
|
4472
|
+
/** Type of the value of pressure */
|
|
4473
|
+
type: PressureUnit;
|
|
4474
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4475
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4476
|
+
};
|
|
4477
|
+
export declare enum TorqueUnit {
|
|
4478
|
+
/** Return the torque in newton meters */
|
|
4479
|
+
NEWTON_METER = "newton_meter",
|
|
4480
|
+
/** Return the torque in foot pounds */
|
|
4481
|
+
FOOT_POUND = "foot_pound"
|
|
4482
|
+
}
|
|
4483
|
+
export declare type TotalCargoWeightInput = {
|
|
4484
|
+
/** Value of the current weight of the cargo */
|
|
4485
|
+
value: Scalars["Float"];
|
|
4486
|
+
/** Type of the current weight of the cargo */
|
|
4487
|
+
type: WeightUnit;
|
|
4488
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4489
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4490
|
+
};
|
|
4491
|
+
export declare type TotalOccupantWeightInput = {
|
|
4492
|
+
/** Value of the current weight of the occupants */
|
|
4493
|
+
value: Scalars["Float"];
|
|
4494
|
+
/** Type of the current weight of the occupants */
|
|
4495
|
+
type: WeightUnit;
|
|
4496
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4497
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4498
|
+
};
|
|
4499
|
+
export declare enum TurningCircleUnit {
|
|
4500
|
+
/** Return the turning circle in meters */
|
|
4501
|
+
METER = "meter",
|
|
4502
|
+
/** Return the turning circle in feet */
|
|
4503
|
+
FOOT = "foot"
|
|
4504
|
+
}
|
|
3933
4505
|
export declare type UpdateConnectedVehicleInput = {
|
|
3934
4506
|
/** Id from the connected vehicle */
|
|
3935
4507
|
id: Scalars["ID"];
|
|
3936
4508
|
/** New label for a connected vehicle */
|
|
3937
4509
|
label?: Maybe<Scalars["PlainString"]>;
|
|
3938
4510
|
};
|
|
4511
|
+
/** Output of a vehicle query */
|
|
4512
|
+
export declare type Vehicle = {
|
|
4513
|
+
/** Vehicles unique ID */
|
|
4514
|
+
id: Scalars["ID"];
|
|
4515
|
+
/** Naming of the vehicle */
|
|
4516
|
+
naming: VehicleNaming;
|
|
4517
|
+
/** Drivetrain of the vehicle */
|
|
4518
|
+
drivetrain: VehicleDrivetrain;
|
|
4519
|
+
/** Available connectors for the vehicle */
|
|
4520
|
+
connectors: Array<VehicleConnector>;
|
|
4521
|
+
/** Adapters for the connectors of the vehicle */
|
|
4522
|
+
adapters: Array<VehicleConnector>;
|
|
4523
|
+
/** Battery of the vehicle */
|
|
4524
|
+
battery: VehicleBattery;
|
|
4525
|
+
/** Body of the vehicle */
|
|
4526
|
+
body: VehicleBody;
|
|
4527
|
+
/** Availability of the vehicle */
|
|
4528
|
+
availability: VehicleAvailability;
|
|
4529
|
+
/** Performance of the vehicle */
|
|
4530
|
+
performance?: Maybe<VehiclePerformance>;
|
|
4531
|
+
/** Range of the vehicle */
|
|
4532
|
+
range: VehicleRange;
|
|
4533
|
+
/** Media of the vehicle */
|
|
4534
|
+
media: VehicleMedia;
|
|
4535
|
+
/** Routing of the vehicle */
|
|
4536
|
+
routing: VehicleRouting;
|
|
4537
|
+
/** Information about vehicle connectivity */
|
|
4538
|
+
connect: Connect;
|
|
4539
|
+
};
|
|
4540
|
+
export declare type VehicleAvailability = {
|
|
4541
|
+
/** Availability of the vehicle */
|
|
4542
|
+
status: VehicleAvailabilityStatus;
|
|
4543
|
+
};
|
|
4544
|
+
/** Availability status of a vehicle */
|
|
4545
|
+
export declare enum VehicleAvailabilityStatus {
|
|
4546
|
+
/** Vehicle no longer for sale in any market / region */
|
|
4547
|
+
NO_LONGER_AVAILABLE = "no_longer_available",
|
|
4548
|
+
/** Vehicle currently for sale in at least one market / region */
|
|
4549
|
+
AVAILABLE = "available",
|
|
4550
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order open */
|
|
4551
|
+
RELEASE_DATE_ANNOUNCED_PREORDERABLE = "release_date_announced_preorderable",
|
|
4552
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open */
|
|
4553
|
+
RELEASE_DATE_ANNOUNCED = "release_date_announced",
|
|
4554
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order open */
|
|
4555
|
+
CONCEPT_VEHICLE_PREORDERABLE = "concept_vehicle_preorderable",
|
|
4556
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open */
|
|
4557
|
+
CONCEPT_VEHICLE = "concept_vehicle",
|
|
4558
|
+
/** Concept vehicle, not close to production and/or unconfirmed, pre-order open */
|
|
4559
|
+
CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE = "concept_vehicle_release_date_tba_preorderable",
|
|
4560
|
+
/** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown */
|
|
4561
|
+
CONCEPT_VEHICLE_RELEASE_DATE_TBA = "concept_vehicle_release_date_tba",
|
|
4562
|
+
/** Status uncertain, introduction date and/or pricing unclear */
|
|
4563
|
+
UNCERTAIN = "uncertain"
|
|
4564
|
+
}
|
|
4565
|
+
export declare type VehicleBattery = {
|
|
4566
|
+
/** Full battery capacity in kWh */
|
|
4567
|
+
full_kwh: Scalars["Float"];
|
|
4568
|
+
/** Usable battery capacity in kWh */
|
|
4569
|
+
usable_kwh: Scalars["Float"];
|
|
4570
|
+
};
|
|
4571
|
+
/** Battery field estimated */
|
|
4572
|
+
export declare enum VehicleBatteryFieldEstimations {
|
|
4573
|
+
/** Both of the battery kWh fields are estimations */
|
|
4574
|
+
B = "B",
|
|
4575
|
+
/** full_kwh field is estimated */
|
|
4576
|
+
F = "F",
|
|
4577
|
+
/** None of the battery kWh fields are estimations */
|
|
4578
|
+
N = "N",
|
|
4579
|
+
/** usable_kwh field is estimated */
|
|
4580
|
+
U = "U"
|
|
4581
|
+
}
|
|
4582
|
+
export declare type VehicleBody = {
|
|
4583
|
+
/** Width with folded mirrors, default in mm */
|
|
4584
|
+
width: Scalars["Float"];
|
|
4585
|
+
/** Height (average height for adjustable suspensions), default in mm */
|
|
4586
|
+
height: Scalars["Float"];
|
|
4587
|
+
/** Weight (unladen), default in kg */
|
|
4588
|
+
weight: VehicleBodyWeight;
|
|
4589
|
+
/** Number of seats */
|
|
4590
|
+
seats: Scalars["Int"];
|
|
4591
|
+
};
|
|
4592
|
+
export declare type VehicleBodywidthArgs = {
|
|
4593
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4594
|
+
};
|
|
4595
|
+
export declare type VehicleBodyheightArgs = {
|
|
4596
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4597
|
+
};
|
|
4598
|
+
export declare type VehicleBodyWeight = {
|
|
4599
|
+
/** Minimum weight, default in kg */
|
|
4600
|
+
minimum?: Maybe<Scalars["Float"]>;
|
|
4601
|
+
/** Nominal weight, default in kg */
|
|
4602
|
+
nominal: Scalars["Float"];
|
|
4603
|
+
/** Maximal weight, default in kg */
|
|
4604
|
+
maximal?: Maybe<Scalars["Float"]>;
|
|
4605
|
+
};
|
|
4606
|
+
export declare type VehicleBodyWeightminimumArgs = {
|
|
4607
|
+
unit?: Maybe<WeightUnit>;
|
|
4608
|
+
};
|
|
4609
|
+
export declare type VehicleBodyWeightnominalArgs = {
|
|
4610
|
+
unit?: Maybe<WeightUnit>;
|
|
4611
|
+
};
|
|
4612
|
+
export declare type VehicleBodyWeightmaximalArgs = {
|
|
4613
|
+
unit?: Maybe<WeightUnit>;
|
|
4614
|
+
};
|
|
4615
|
+
/** Vehicle plug model */
|
|
4616
|
+
export declare type VehicleConnector = {
|
|
4617
|
+
/** Connector type, known as connector standard in OCPI */
|
|
4618
|
+
standard: ConnectorType;
|
|
4619
|
+
/** Usable electric power in kW */
|
|
4620
|
+
power: Scalars["Float"];
|
|
4621
|
+
/** Maximum electric power in kW */
|
|
4622
|
+
max_electric_power: Scalars["Float"];
|
|
4623
|
+
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
|
|
4624
|
+
time: Scalars["Int"];
|
|
4625
|
+
/** Charging speed, default in kmph */
|
|
4626
|
+
speed: Scalars["Float"];
|
|
4627
|
+
};
|
|
4628
|
+
/** Vehicle plug model */
|
|
4629
|
+
export declare type VehicleConnectorspeedArgs = {
|
|
4630
|
+
unit?: Maybe<SpeedUnit>;
|
|
4631
|
+
};
|
|
4632
|
+
/** The consumption of the vehicle */
|
|
4633
|
+
export declare type VehicleConsumptionInput = {
|
|
4634
|
+
/** Worst conditions are based on -10°C and use of heating */
|
|
4635
|
+
worst?: Maybe<Scalars["Float"]>;
|
|
4636
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
4637
|
+
best?: Maybe<Scalars["Float"]>;
|
|
4638
|
+
};
|
|
3939
4639
|
export declare type VehicleData = {
|
|
3940
4640
|
/** Battery data */
|
|
3941
4641
|
battery?: Maybe<ConnectBattery>;
|
|
@@ -3946,3 +4646,915 @@ export declare type VehicleData = {
|
|
|
3946
4646
|
/** Odometer data */
|
|
3947
4647
|
odometer?: Maybe<ConnectOdometer>;
|
|
3948
4648
|
};
|
|
4649
|
+
export declare enum VehicleDataProvider {
|
|
4650
|
+
/** Internal data provider */
|
|
4651
|
+
CHARGETRIP = "chargetrip",
|
|
4652
|
+
/** EV database data provider */
|
|
4653
|
+
EVDATABASE = "evdatabase"
|
|
4654
|
+
}
|
|
4655
|
+
export declare type VehicleDrivetrain = {
|
|
4656
|
+
/** Type of drivetrain */
|
|
4657
|
+
type: VehicleDrivetrainType;
|
|
4658
|
+
};
|
|
4659
|
+
/** Drivetrain */
|
|
4660
|
+
export declare enum VehicleDrivetrainType {
|
|
4661
|
+
/** Battery Electric Vehicle */
|
|
4662
|
+
BEV = "BEV",
|
|
4663
|
+
/** Extended Range Electric Vehicle */
|
|
4664
|
+
EREV = "EREV",
|
|
4665
|
+
/** Hybrid Electric Vehicle */
|
|
4666
|
+
HEV = "HEV",
|
|
4667
|
+
/** Plug-in Hybrid Electric Vehicle */
|
|
4668
|
+
PHEV = "PHEV"
|
|
4669
|
+
}
|
|
4670
|
+
/** Fuel type */
|
|
4671
|
+
export declare enum VehicleFuel {
|
|
4672
|
+
/** ICE engine available. Uses diesel */
|
|
4673
|
+
D = "D",
|
|
4674
|
+
/** Electricity only. Full electric vehicle */
|
|
4675
|
+
E = "E",
|
|
4676
|
+
/** ICE engine available. Uses petrol */
|
|
4677
|
+
P = "P"
|
|
4678
|
+
}
|
|
4679
|
+
export declare type VehicleImage = {
|
|
4680
|
+
/** Image id */
|
|
4681
|
+
id?: Maybe<Scalars["ID"]>;
|
|
4682
|
+
/** Image type */
|
|
4683
|
+
type: VehicleImageType;
|
|
4684
|
+
/** Full path URL of a large image */
|
|
4685
|
+
url: Scalars["String"];
|
|
4686
|
+
/** Height of a large image in pixels */
|
|
4687
|
+
height: Scalars["Int"];
|
|
4688
|
+
/** Width of a large image in pixels */
|
|
4689
|
+
width: Scalars["Int"];
|
|
4690
|
+
/** Full path URL of a thumbnail image */
|
|
4691
|
+
thumbnail_url: Scalars["String"];
|
|
4692
|
+
/** Height of a thumbnail image in pixels */
|
|
4693
|
+
thumbnail_height: Scalars["Int"];
|
|
4694
|
+
/** Width of a thumbnail image in pixels */
|
|
4695
|
+
thumbnail_width: Scalars["Int"];
|
|
4696
|
+
};
|
|
4697
|
+
/** Available types of images which can be found for a vehicle. Each type has specific image sizes */
|
|
4698
|
+
export declare enum VehicleImageType {
|
|
4699
|
+
/** Images provided by a Vehicle Datasource */
|
|
4700
|
+
PROVIDER = "provider",
|
|
4701
|
+
/** Full-sized image at 1536x864 px */
|
|
4702
|
+
IMAGE = "image",
|
|
4703
|
+
/** Thumbnail of a full-sized image at 131x72 px */
|
|
4704
|
+
IMAGE_THUMBNAIL = "image_thumbnail",
|
|
4705
|
+
/** Full-sized brand (maker) logo at 768x432 px */
|
|
4706
|
+
BRAND = "brand",
|
|
4707
|
+
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
4708
|
+
BRAND_THUMBNAIL = "brand_thumbnail"
|
|
4709
|
+
}
|
|
4710
|
+
/** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
4711
|
+
export declare enum VehicleImageTypeUploadable {
|
|
4712
|
+
/** Full size image with a resolution at least 1536x864 px */
|
|
4713
|
+
IMAGE = "image"
|
|
4714
|
+
}
|
|
4715
|
+
/** The output element of the vehicleList query */
|
|
4716
|
+
export declare type VehicleList = {
|
|
4717
|
+
/** Vehicles unique ID */
|
|
4718
|
+
id: Scalars["ID"];
|
|
4719
|
+
/** Naming of the vehicle */
|
|
4720
|
+
naming: VehicleListNaming;
|
|
4721
|
+
/** Drivetrain of the vehicle */
|
|
4722
|
+
drivetrain: VehicleDrivetrain;
|
|
4723
|
+
/** Connectors available for the vehicle */
|
|
4724
|
+
connectors: Array<VehicleConnector>;
|
|
4725
|
+
/** Adapters available for the vehicle */
|
|
4726
|
+
adapters: Array<VehicleConnector>;
|
|
4727
|
+
/** Battery of the vehicle */
|
|
4728
|
+
battery: VehicleListBattery;
|
|
4729
|
+
/** Body of the vehicle */
|
|
4730
|
+
body: VehicleListBody;
|
|
4731
|
+
/** Availability of the vehicle */
|
|
4732
|
+
availability: VehicleListAvailability;
|
|
4733
|
+
/** Range of the vehicle */
|
|
4734
|
+
range: VehicleListRange;
|
|
4735
|
+
/** Media of the vehicle */
|
|
4736
|
+
media: VehicleListMedia;
|
|
4737
|
+
/** Routing of the vehicle */
|
|
4738
|
+
routing: VehicleListRouting;
|
|
4739
|
+
/** Information about vehicle connectivity */
|
|
4740
|
+
connect: Connect;
|
|
4741
|
+
};
|
|
4742
|
+
export declare type VehicleListAvailability = {
|
|
4743
|
+
/** Availability of the vehicle */
|
|
4744
|
+
status: VehicleAvailabilityStatus;
|
|
4745
|
+
};
|
|
4746
|
+
export declare type VehicleListBattery = {
|
|
4747
|
+
/** Full battery capacity in kWh */
|
|
4748
|
+
full_kwh: Scalars["Float"];
|
|
4749
|
+
/** Usable battery capacity in kWh */
|
|
4750
|
+
usable_kwh: Scalars["Float"];
|
|
4751
|
+
};
|
|
4752
|
+
export declare type VehicleListBody = {
|
|
4753
|
+
/** Number of seats in a vehicle */
|
|
4754
|
+
seats: Scalars["Int"];
|
|
4755
|
+
};
|
|
4756
|
+
export declare type VehicleListFilter = {
|
|
4757
|
+
/** Availability of a vehicle */
|
|
4758
|
+
availability?: Maybe<Array<Maybe<VehicleAvailabilityStatus>>>;
|
|
4759
|
+
/** Drivetrain type of a vehicle */
|
|
4760
|
+
drivetrain?: Maybe<VehicleDrivetrainType>;
|
|
4761
|
+
/** Information about vehicle connectivity */
|
|
4762
|
+
connect?: Maybe<ConnectFilter>;
|
|
4763
|
+
};
|
|
4764
|
+
export declare type VehicleListMedia = {
|
|
4765
|
+
/** Latest image of the vehicle */
|
|
4766
|
+
image: VehicleImage;
|
|
4767
|
+
/** Latest maker logo of the vehicle */
|
|
4768
|
+
brand: VehicleImage;
|
|
4769
|
+
/** Latest video of the vehicle */
|
|
4770
|
+
video?: Maybe<VehicleVideo>;
|
|
4771
|
+
};
|
|
4772
|
+
export declare type VehicleListNaming = {
|
|
4773
|
+
/** Vehicle manufacturer name */
|
|
4774
|
+
make: Scalars["String"];
|
|
4775
|
+
/** Vehicle model name */
|
|
4776
|
+
model: Scalars["String"];
|
|
4777
|
+
/** Version, edition or submodel of the vehicle */
|
|
4778
|
+
version?: Maybe<Scalars["String"]>;
|
|
4779
|
+
/** Another submodel level of the vehicle */
|
|
4780
|
+
edition?: Maybe<Scalars["String"]>;
|
|
4781
|
+
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
4782
|
+
chargetrip_version: Scalars["String"];
|
|
4783
|
+
};
|
|
4784
|
+
export declare type VehicleListRange = {
|
|
4785
|
+
/**
|
|
4786
|
+
* Is an index value of what we consider to be the real-world range.
|
|
4787
|
+
* (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display in the front-end.
|
|
4788
|
+
*/
|
|
4789
|
+
chargetrip_range: ChargetripRange;
|
|
4790
|
+
};
|
|
4791
|
+
export declare type VehicleListRouting = {
|
|
4792
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
4793
|
+
fast_charging_support: Scalars["Boolean"];
|
|
4794
|
+
};
|
|
4795
|
+
export declare type VehicleMedia = {
|
|
4796
|
+
/** Latest image */
|
|
4797
|
+
image: VehicleImage;
|
|
4798
|
+
/** Latest maker logo */
|
|
4799
|
+
brand: VehicleImage;
|
|
4800
|
+
/** All images */
|
|
4801
|
+
image_list: Array<VehicleImage>;
|
|
4802
|
+
/** Latest video */
|
|
4803
|
+
video?: Maybe<VehicleVideo>;
|
|
4804
|
+
/** All videos */
|
|
4805
|
+
video_list?: Maybe<Array<VehicleVideo>>;
|
|
4806
|
+
};
|
|
4807
|
+
/** Mode (state) of the current production */
|
|
4808
|
+
export declare enum VehicleMode {
|
|
4809
|
+
/** Old vehicle that is no longer manufactured */
|
|
4810
|
+
INDEX_ONLY = "index_only",
|
|
4811
|
+
/** Vehicle is in production and has been released */
|
|
4812
|
+
PRODUCTION = "production",
|
|
4813
|
+
/** Future releases of a vehicle, a concept of the vehicle, specs may change over time */
|
|
4814
|
+
CONCEPT = "concept"
|
|
4815
|
+
}
|
|
4816
|
+
export declare type VehicleNaming = {
|
|
4817
|
+
/** Vehicle manufacturer name */
|
|
4818
|
+
make: Scalars["String"];
|
|
4819
|
+
/** Vehicle model name */
|
|
4820
|
+
model: Scalars["String"];
|
|
4821
|
+
/** Version, edition or submodel of the vehicle */
|
|
4822
|
+
version?: Maybe<Scalars["String"]>;
|
|
4823
|
+
/** Another submodel level of the vehicle */
|
|
4824
|
+
edition?: Maybe<Scalars["String"]>;
|
|
4825
|
+
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
4826
|
+
chargetrip_version: Scalars["String"];
|
|
4827
|
+
};
|
|
4828
|
+
export declare type VehiclePerformance = {
|
|
4829
|
+
/** Acceleration in seconds, default in kmph to 100 */
|
|
4830
|
+
acceleration?: Maybe<Scalars["Float"]>;
|
|
4831
|
+
/** Top speed of the vehicle, default in kmph */
|
|
4832
|
+
top_speed?: Maybe<Scalars["Float"]>;
|
|
4833
|
+
};
|
|
4834
|
+
export declare type VehiclePerformanceaccelerationArgs = {
|
|
4835
|
+
unit?: Maybe<AccelerationUnit>;
|
|
4836
|
+
};
|
|
4837
|
+
export declare type VehiclePerformancetop_speedArgs = {
|
|
4838
|
+
unit?: Maybe<SpeedUnit>;
|
|
4839
|
+
};
|
|
4840
|
+
/** The output element of the vehiclePremium query */
|
|
4841
|
+
export declare type VehiclePremium = {
|
|
4842
|
+
/** Vehicles unique ID */
|
|
4843
|
+
id: Scalars["ID"];
|
|
4844
|
+
/** Internal ID of the successor vehicle trim */
|
|
4845
|
+
succesor_id?: Maybe<Scalars["String"]>;
|
|
4846
|
+
/** Naming of the vehicle */
|
|
4847
|
+
naming: VehiclePremiumNaming;
|
|
4848
|
+
/** Connectors available for the vehicle */
|
|
4849
|
+
connectors: Array<VehicleConnector>;
|
|
4850
|
+
/** Charge details */
|
|
4851
|
+
charge: VehiclePremiumCharge;
|
|
4852
|
+
/** Fast charge details */
|
|
4853
|
+
fast_charge: VehiclePremiumFastCharge;
|
|
4854
|
+
/** Adapters of connectors available for a connectors of the vehicle */
|
|
4855
|
+
adapters: Array<VehicleConnector>;
|
|
4856
|
+
/** Battery of the vehicle */
|
|
4857
|
+
battery: VehiclePremiumBattery;
|
|
4858
|
+
/** Body of the vehicle */
|
|
4859
|
+
body: VehiclePremiumBody;
|
|
4860
|
+
/** Availability of the vehicle */
|
|
4861
|
+
availability: VehiclePremiumAvailability;
|
|
4862
|
+
/** Pricing of the vehicle */
|
|
4863
|
+
price: VehiclePremiumPrice;
|
|
4864
|
+
/** Drivetrain of the vehicle */
|
|
4865
|
+
drivetrain: VehiclePremiumDrivetrain;
|
|
4866
|
+
/** Performance of the vehicle */
|
|
4867
|
+
performance?: Maybe<VehiclePremiumPerformance>;
|
|
4868
|
+
/** Range of the vehicle */
|
|
4869
|
+
range: VehiclePremiumRange;
|
|
4870
|
+
/** Efficiency of the vehicle */
|
|
4871
|
+
efficiency: VehiclePremiumEfficiency;
|
|
4872
|
+
/** Safety of the vehicle */
|
|
4873
|
+
safety?: Maybe<VehiclePremiumSafety>;
|
|
4874
|
+
/** Media of the vehicle */
|
|
4875
|
+
media: VehiclePremiumMedia;
|
|
4876
|
+
/** Routing of the vehicle */
|
|
4877
|
+
routing: VehiclePremiumRouting;
|
|
4878
|
+
/** Information about vehicle connectivity */
|
|
4879
|
+
connect: Connect;
|
|
4880
|
+
};
|
|
4881
|
+
export declare type VehiclePremiumAvailability = {
|
|
4882
|
+
/** Availability of the vehicle */
|
|
4883
|
+
status: VehicleAvailabilityStatus;
|
|
4884
|
+
/** Date of introduction, mm-yyyy */
|
|
4885
|
+
date_from?: Maybe<Scalars["String"]>;
|
|
4886
|
+
/** Indicates if date from field is estimated */
|
|
4887
|
+
date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4888
|
+
/** Date last available, mm-yyyy */
|
|
4889
|
+
date_to?: Maybe<Scalars["String"]>;
|
|
4890
|
+
};
|
|
4891
|
+
export declare type VehiclePremiumBattery = {
|
|
4892
|
+
/** Usable battery capacity in kWh */
|
|
4893
|
+
usable_kwh: Scalars["Float"];
|
|
4894
|
+
/** Full battery capacity in kWh */
|
|
4895
|
+
full_kwh: Scalars["Float"];
|
|
4896
|
+
/** Indicates which battery fields are estimated */
|
|
4897
|
+
estimated_fields?: Maybe<VehicleBatteryFieldEstimations>;
|
|
4898
|
+
/** Battery thermal management system (active/passive, air/liquid) */
|
|
4899
|
+
thermal_management_system?: Maybe<Scalars["String"]>;
|
|
4900
|
+
/** Duration of battery warranty */
|
|
4901
|
+
warranty_period?: Maybe<Scalars["Float"]>;
|
|
4902
|
+
/** Mileage of battery warranty */
|
|
4903
|
+
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
4904
|
+
/** Chemistry of the battery */
|
|
4905
|
+
chemistry?: Maybe<Scalars["String"]>;
|
|
4906
|
+
/** Manufacturer of the battery */
|
|
4907
|
+
manufacturer?: Maybe<Scalars["String"]>;
|
|
4908
|
+
/** Number of battery modules */
|
|
4909
|
+
modules?: Maybe<Scalars["Float"]>;
|
|
4910
|
+
/** Number of cells in the battery pack, can include configuration (s = serial, p = parallel) */
|
|
4911
|
+
cells?: Maybe<Scalars["String"]>;
|
|
4912
|
+
/** Weight of the battery pack */
|
|
4913
|
+
weight?: Maybe<Scalars["Float"]>;
|
|
4914
|
+
/** Nominal voltage of battery */
|
|
4915
|
+
nominal_voltage?: Maybe<Scalars["Float"]>;
|
|
4916
|
+
};
|
|
4917
|
+
export declare type VehiclePremiumBody = {
|
|
4918
|
+
/** Length, default in mm */
|
|
4919
|
+
length?: Maybe<Scalars["Float"]>;
|
|
4920
|
+
/** Width with folded mirrors, default in mm */
|
|
4921
|
+
width: Scalars["Float"];
|
|
4922
|
+
/** Width of vehicle including mirrors, default in mm */
|
|
4923
|
+
full_width?: Maybe<Scalars["Float"]>;
|
|
4924
|
+
/** Height (average height for adjustable suspensions), default in mm */
|
|
4925
|
+
height: Scalars["Float"];
|
|
4926
|
+
/** Indicates if length/width/height fields are estimations */
|
|
4927
|
+
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4928
|
+
/** Wheelbase, default in mm */
|
|
4929
|
+
wheelbase?: Maybe<Scalars["Float"]>;
|
|
4930
|
+
/** Indicates if wheelbase field is estimated */
|
|
4931
|
+
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4932
|
+
/** Weight (unladen EU) */
|
|
4933
|
+
weight: VehicleBodyWeight;
|
|
4934
|
+
/** Maximum allowed vehicle weight with payload */
|
|
4935
|
+
weight_gvwr?: Maybe<VehicleBodyWeight>;
|
|
4936
|
+
/** Maximum allowed vehicle and trailer weight with payload */
|
|
4937
|
+
weight_gtw?: Maybe<VehicleBodyWeight>;
|
|
4938
|
+
/** Allowed payload weight */
|
|
4939
|
+
weight_payload?: Maybe<VehicleBodyWeight>;
|
|
4940
|
+
/** Indicates if weight field is estimated */
|
|
4941
|
+
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4942
|
+
/** Maximum payload allowed for the vehicle, default in kg */
|
|
4943
|
+
weight_max_payload?: Maybe<Scalars["Float"]>;
|
|
4944
|
+
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload), default in kg */
|
|
4945
|
+
max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
|
|
4946
|
+
/** Standard luggage capacity, default in l */
|
|
4947
|
+
boot_capacity?: Maybe<Scalars["Float"]>;
|
|
4948
|
+
/** Storage capacity of front trunk/under the hood (frunk), default in l */
|
|
4949
|
+
boot_front_capacity?: Maybe<Scalars["Float"]>;
|
|
4950
|
+
/** Maximum luggage capacity, default in l */
|
|
4951
|
+
boot_capacity_max?: Maybe<Scalars["Float"]>;
|
|
4952
|
+
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation */
|
|
4953
|
+
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
4954
|
+
/** Maximum unbraked towing weight, default in kg */
|
|
4955
|
+
tow_weight_unbraked?: Maybe<Scalars["Float"]>;
|
|
4956
|
+
/** Maximum braked towing weight, default in kg */
|
|
4957
|
+
tow_weight_braked?: Maybe<Scalars["Float"]>;
|
|
4958
|
+
/** Indicates if tow weight fields are estimations */
|
|
4959
|
+
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
4960
|
+
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation, default in kg */
|
|
4961
|
+
tow_weight_vertical_load?: Maybe<Scalars["Float"]>;
|
|
4962
|
+
/** Maximum load on roof of the vehicle, default in kg */
|
|
4963
|
+
roof_load_max?: Maybe<Scalars["Float"]>;
|
|
4964
|
+
/** Body type, listed in local naming convention where applicable */
|
|
4965
|
+
body_type?: Maybe<Scalars["String"]>;
|
|
4966
|
+
/** Segment, listed in local naming convention where applicable */
|
|
4967
|
+
segment?: Maybe<Scalars["String"]>;
|
|
4968
|
+
/** Number of seats */
|
|
4969
|
+
seats?: Maybe<Scalars["Int"]>;
|
|
4970
|
+
/** Indicates whether a vehicle has roof rails as a standard */
|
|
4971
|
+
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
4972
|
+
/** Turning circle of the vehicle kerb-to-kerb, default in meters */
|
|
4973
|
+
turning_circle?: Maybe<Scalars["Float"]>;
|
|
4974
|
+
/** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms) */
|
|
4975
|
+
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
4976
|
+
/** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform */
|
|
4977
|
+
vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
4978
|
+
};
|
|
4979
|
+
export declare type VehiclePremiumBodylengthArgs = {
|
|
4980
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4981
|
+
};
|
|
4982
|
+
export declare type VehiclePremiumBodywidthArgs = {
|
|
4983
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4984
|
+
};
|
|
4985
|
+
export declare type VehiclePremiumBodyfull_widthArgs = {
|
|
4986
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4987
|
+
};
|
|
4988
|
+
export declare type VehiclePremiumBodyheightArgs = {
|
|
4989
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4990
|
+
};
|
|
4991
|
+
export declare type VehiclePremiumBodywheelbaseArgs = {
|
|
4992
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4993
|
+
};
|
|
4994
|
+
export declare type VehiclePremiumBodyweight_max_payloadArgs = {
|
|
4995
|
+
unit?: Maybe<WeightUnit>;
|
|
4996
|
+
};
|
|
4997
|
+
export declare type VehiclePremiumBodymax_gross_vehicle_weightArgs = {
|
|
4998
|
+
unit?: Maybe<WeightUnit>;
|
|
4999
|
+
};
|
|
5000
|
+
export declare type VehiclePremiumBodyboot_capacityArgs = {
|
|
5001
|
+
unit?: Maybe<VolumeUnit>;
|
|
5002
|
+
};
|
|
5003
|
+
export declare type VehiclePremiumBodyboot_capacity_maxArgs = {
|
|
5004
|
+
unit?: Maybe<VolumeUnit>;
|
|
5005
|
+
};
|
|
5006
|
+
export declare type VehiclePremiumBodytow_weight_unbrakedArgs = {
|
|
5007
|
+
unit?: Maybe<WeightUnit>;
|
|
5008
|
+
};
|
|
5009
|
+
export declare type VehiclePremiumBodytow_weight_brakedArgs = {
|
|
5010
|
+
unit?: Maybe<WeightUnit>;
|
|
5011
|
+
};
|
|
5012
|
+
export declare type VehiclePremiumBodytow_weight_vertical_loadArgs = {
|
|
5013
|
+
unit?: Maybe<WeightUnit>;
|
|
5014
|
+
};
|
|
5015
|
+
export declare type VehiclePremiumBodyroof_load_maxArgs = {
|
|
5016
|
+
unit?: Maybe<WeightUnit>;
|
|
5017
|
+
};
|
|
5018
|
+
export declare type VehiclePremiumBodyturning_circleArgs = {
|
|
5019
|
+
unit?: Maybe<TurningCircleUnit>;
|
|
5020
|
+
};
|
|
5021
|
+
export declare type VehiclePremiumCharge = {
|
|
5022
|
+
/** Information about the main connector */
|
|
5023
|
+
plug?: Maybe<VehiclePremiumChargeConnector>;
|
|
5024
|
+
/** Information about vehicles secondary onboard charger */
|
|
5025
|
+
second_plug?: Maybe<VehiclePremiumChargeSecondConnector>;
|
|
5026
|
+
/** Information about the vehicle standard onboard charger */
|
|
5027
|
+
standard?: Maybe<VehiclePremiumChargeStandardOBC>;
|
|
5028
|
+
/** Optional upgrade for the standard onboard charger when available */
|
|
5029
|
+
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
5030
|
+
};
|
|
5031
|
+
export declare type VehiclePremiumChargeConnector = {
|
|
5032
|
+
/** Type of charge port on vehicle */
|
|
5033
|
+
value?: Maybe<ConnectorType>;
|
|
5034
|
+
/** Indicates if value is an estimate */
|
|
5035
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5036
|
+
/** Location of charge port */
|
|
5037
|
+
location?: Maybe<Scalars["String"]>;
|
|
5038
|
+
};
|
|
5039
|
+
export declare type VehiclePremiumChargeOBCTable = {
|
|
5040
|
+
/** Voltage between phase and neutral for this EVSE (phase voltage) */
|
|
5041
|
+
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
5042
|
+
/** Current per phase for this EVSE (phase current) */
|
|
5043
|
+
evse_phase_amperage?: Maybe<Scalars["Int"]>;
|
|
5044
|
+
/** Number of phases for this EVSE */
|
|
5045
|
+
evse_phases?: Maybe<Scalars["Int"]>;
|
|
5046
|
+
/** Voltage between phase and neutral used by standard OBC (phase voltage) */
|
|
5047
|
+
charge_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
5048
|
+
/** Current per phase used by standard OBC (phase current) */
|
|
5049
|
+
charge_phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5050
|
+
/** Number of phases used by standard OBC */
|
|
5051
|
+
charge_phases?: Maybe<Scalars["Int"]>;
|
|
5052
|
+
/** Power used by standard OBC (before OBC losses) */
|
|
5053
|
+
charge_power?: Maybe<Scalars["Float"]>;
|
|
5054
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE) */
|
|
5055
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5056
|
+
/** Charging speed when charging at maximum power (standard OBC with this EVSE), default in kmph */
|
|
5057
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5058
|
+
};
|
|
5059
|
+
export declare type VehiclePremiumChargeOBCTablecharge_speedArgs = {
|
|
5060
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5061
|
+
};
|
|
5062
|
+
export declare type VehiclePremiumChargeOptionOBC = {
|
|
5063
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5064
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5065
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
5066
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
5067
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
5068
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5069
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5070
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5071
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph */
|
|
5072
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5073
|
+
/** Charging details for the standard OBC at several charging points */
|
|
5074
|
+
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5075
|
+
};
|
|
5076
|
+
export declare type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
|
|
5077
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5078
|
+
};
|
|
5079
|
+
export declare type VehiclePremiumChargePower = {
|
|
5080
|
+
/** Maximum value */
|
|
5081
|
+
max?: Maybe<Scalars["Float"]>;
|
|
5082
|
+
/** Average value */
|
|
5083
|
+
average?: Maybe<Scalars["Float"]>;
|
|
5084
|
+
};
|
|
5085
|
+
export declare type VehiclePremiumChargeSecondConnector = {
|
|
5086
|
+
/** Location of charge port */
|
|
5087
|
+
location?: Maybe<Scalars["String"]>;
|
|
5088
|
+
/** Indicates if second charge port is optional */
|
|
5089
|
+
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
5090
|
+
};
|
|
5091
|
+
export declare type VehiclePremiumChargeStandardOBC = {
|
|
5092
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5093
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5094
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
5095
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
5096
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
5097
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5098
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5099
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5100
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph */
|
|
5101
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5102
|
+
/** Indicates if Charge_Standard fields are estimated */
|
|
5103
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5104
|
+
/** Charging details for the standard OBC at several charging points */
|
|
5105
|
+
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5106
|
+
};
|
|
5107
|
+
export declare type VehiclePremiumChargeStandardOBCcharge_speedArgs = {
|
|
5108
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5109
|
+
};
|
|
5110
|
+
export declare type VehiclePremiumDrivetrain = {
|
|
5111
|
+
/** Type of drivetrain */
|
|
5112
|
+
type: VehicleDrivetrainType;
|
|
5113
|
+
/** Fuel type */
|
|
5114
|
+
fuel?: Maybe<VehicleFuel>;
|
|
5115
|
+
/** Propulsion type */
|
|
5116
|
+
propulsion?: Maybe<VehiclePropulsion>;
|
|
5117
|
+
/** Indicates if propulsion field is estimated */
|
|
5118
|
+
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5119
|
+
/** Maximum (combined) power output, default in kw */
|
|
5120
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5121
|
+
/** Indicates if power field is estimated */
|
|
5122
|
+
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5123
|
+
/** Maximum (combine) power output, default in horsepower (PS) */
|
|
5124
|
+
power_hp?: Maybe<Scalars["Float"]>;
|
|
5125
|
+
/** Maximum (combine) torque output, default in newton meter */
|
|
5126
|
+
torque?: Maybe<Scalars["Float"]>;
|
|
5127
|
+
/** Indicates if torque field is estimated */
|
|
5128
|
+
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5129
|
+
};
|
|
5130
|
+
export declare type VehiclePremiumDrivetrainpowerArgs = {
|
|
5131
|
+
unit?: Maybe<PowerUnit>;
|
|
5132
|
+
};
|
|
5133
|
+
export declare type VehiclePremiumDrivetrainpower_hpArgs = {
|
|
5134
|
+
unit?: Maybe<PowerUnit>;
|
|
5135
|
+
};
|
|
5136
|
+
export declare type VehiclePremiumDrivetraintorqueArgs = {
|
|
5137
|
+
unit?: Maybe<TorqueUnit>;
|
|
5138
|
+
};
|
|
5139
|
+
export declare type VehiclePremiumEfficiency = {
|
|
5140
|
+
/** Rated efficiency in WLTP combined cycle */
|
|
5141
|
+
wltp?: Maybe<VehiclePremiumEfficiencyWLTP>;
|
|
5142
|
+
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
|
|
5143
|
+
wltp_teh?: Maybe<VehiclePremiumEfficiencyWLTPTEH>;
|
|
5144
|
+
/** Rated efficiency in NEDC combined cycle */
|
|
5145
|
+
nedc?: Maybe<VehiclePremiumEfficiencyNEDC>;
|
|
5146
|
+
/** Vehicle efficiency based on provider range */
|
|
5147
|
+
provider?: Maybe<VehiclePremiumEfficiencyProvider>;
|
|
5148
|
+
};
|
|
5149
|
+
export declare type VehiclePremiumEfficiencyNEDC = {
|
|
5150
|
+
/** Rated efficiency in NEDC combined cycle, default in kWh/100 km */
|
|
5151
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5152
|
+
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
|
|
5153
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5154
|
+
/** Rated vehicle efficiency in NEDC combined cycle (based on value), default in kWh/100 km */
|
|
5155
|
+
vehicle?: Maybe<Scalars["Float"]>;
|
|
5156
|
+
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent, default in l/100 km */
|
|
5157
|
+
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5158
|
+
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated), default in gr/km */
|
|
5159
|
+
co2?: Maybe<Scalars["Float"]>;
|
|
5160
|
+
};
|
|
5161
|
+
export declare type VehiclePremiumEfficiencyNEDCvalueArgs = {
|
|
5162
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5163
|
+
};
|
|
5164
|
+
export declare type VehiclePremiumEfficiencyNEDCfuel_equivalentArgs = {
|
|
5165
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5166
|
+
};
|
|
5167
|
+
export declare type VehiclePremiumEfficiencyNEDCvehicleArgs = {
|
|
5168
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5169
|
+
};
|
|
5170
|
+
export declare type VehiclePremiumEfficiencyNEDCvehicle_fuel_equivalentArgs = {
|
|
5171
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5172
|
+
};
|
|
5173
|
+
export declare type VehiclePremiumEfficiencyNEDCco2Args = {
|
|
5174
|
+
unit?: Maybe<EmissionRateUnit>;
|
|
5175
|
+
};
|
|
5176
|
+
export declare type VehiclePremiumEfficiencyProvider = {
|
|
5177
|
+
/** Vehicle efficiency based on RealRange (usable battery/range), default in kWh/100 km */
|
|
5178
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5179
|
+
/** Vehicle efficiency based on RealRange presented in gas equivalent, default in l/100 km */
|
|
5180
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5181
|
+
/** Worst conditions are based on -10°C and use of heating */
|
|
5182
|
+
worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
5183
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
5184
|
+
best?: Maybe<VehiclePremiumEfficiencyProviderValue>;
|
|
5185
|
+
};
|
|
5186
|
+
export declare type VehiclePremiumEfficiencyProvidervalueArgs = {
|
|
5187
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5188
|
+
};
|
|
5189
|
+
export declare type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {
|
|
5190
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5191
|
+
};
|
|
5192
|
+
export declare type VehiclePremiumEfficiencyProviderValue = {
|
|
5193
|
+
/** Estimated value on highway or express roads, default in km */
|
|
5194
|
+
highway?: Maybe<Scalars["Float"]>;
|
|
5195
|
+
/** Estimated value on city roads, default in km */
|
|
5196
|
+
city?: Maybe<Scalars["Float"]>;
|
|
5197
|
+
/** Estimated combined value, default in km */
|
|
5198
|
+
combined?: Maybe<Scalars["Float"]>;
|
|
5199
|
+
};
|
|
5200
|
+
export declare type VehiclePremiumEfficiencyProviderValuehighwayArgs = {
|
|
5201
|
+
unit?: Maybe<DistanceUnit>;
|
|
5202
|
+
};
|
|
5203
|
+
export declare type VehiclePremiumEfficiencyProviderValuecityArgs = {
|
|
5204
|
+
unit?: Maybe<DistanceUnit>;
|
|
5205
|
+
};
|
|
5206
|
+
export declare type VehiclePremiumEfficiencyProviderValuecombinedArgs = {
|
|
5207
|
+
unit?: Maybe<DistanceUnit>;
|
|
5208
|
+
};
|
|
5209
|
+
export declare type VehiclePremiumEfficiencyWLTP = {
|
|
5210
|
+
/** Rated efficiency in WLTP combined cycle, default in kWh/100 km */
|
|
5211
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5212
|
+
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
|
|
5213
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5214
|
+
/** Rated vehicle efficiency in WLTP combined cycle (based on value), default in kWh/100 km */
|
|
5215
|
+
vehicle?: Maybe<Scalars["Float"]>;
|
|
5216
|
+
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, default in l/100 km */
|
|
5217
|
+
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5218
|
+
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated), default in gr/km */
|
|
5219
|
+
co2?: Maybe<Scalars["Float"]>;
|
|
5220
|
+
};
|
|
5221
|
+
export declare type VehiclePremiumEfficiencyWLTPvalueArgs = {
|
|
5222
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5223
|
+
};
|
|
5224
|
+
export declare type VehiclePremiumEfficiencyWLTPfuel_equivalentArgs = {
|
|
5225
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5226
|
+
};
|
|
5227
|
+
export declare type VehiclePremiumEfficiencyWLTPvehicleArgs = {
|
|
5228
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5229
|
+
};
|
|
5230
|
+
export declare type VehiclePremiumEfficiencyWLTPvehicle_fuel_equivalentArgs = {
|
|
5231
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5232
|
+
};
|
|
5233
|
+
export declare type VehiclePremiumEfficiencyWLTPco2Args = {
|
|
5234
|
+
unit?: Maybe<EmissionRateUnit>;
|
|
5235
|
+
};
|
|
5236
|
+
export declare type VehiclePremiumEfficiencyWLTPTEH = {
|
|
5237
|
+
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
|
|
5238
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5239
|
+
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
|
|
5240
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5241
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value), default in kWh/100 km */
|
|
5242
|
+
vehicle?: Maybe<Scalars["Float"]>;
|
|
5243
|
+
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, default in l/100 km */
|
|
5244
|
+
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
5245
|
+
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated), default in gr/km */
|
|
5246
|
+
co2?: Maybe<Scalars["Float"]>;
|
|
5247
|
+
};
|
|
5248
|
+
export declare type VehiclePremiumEfficiencyWLTPTEHvalueArgs = {
|
|
5249
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5250
|
+
};
|
|
5251
|
+
export declare type VehiclePremiumEfficiencyWLTPTEHfuel_equivalentArgs = {
|
|
5252
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5253
|
+
};
|
|
5254
|
+
export declare type VehiclePremiumEfficiencyWLTPTEHvehicleArgs = {
|
|
5255
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5256
|
+
};
|
|
5257
|
+
export declare type VehiclePremiumEfficiencyWLTPTEHvehicle_fuel_equivalentArgs = {
|
|
5258
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5259
|
+
};
|
|
5260
|
+
export declare type VehiclePremiumEfficiencyWLTPTEHco2Args = {
|
|
5261
|
+
unit?: Maybe<EmissionRateUnit>;
|
|
5262
|
+
};
|
|
5263
|
+
export declare type VehiclePremiumFastCharge = {
|
|
5264
|
+
/** Location of charge port */
|
|
5265
|
+
charge_port?: Maybe<VehiclePremiumChargeConnector>;
|
|
5266
|
+
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
|
|
5267
|
+
power?: Maybe<VehiclePremiumChargePower>;
|
|
5268
|
+
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
|
|
5269
|
+
charge_time?: Maybe<Scalars["Float"]>;
|
|
5270
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger), default is kmph */
|
|
5271
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5272
|
+
/** Indicates if fast charge is optional in some markets/regions */
|
|
5273
|
+
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
5274
|
+
/** Indicates what fields are estimated */
|
|
5275
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5276
|
+
/** Charging details for fast charging */
|
|
5277
|
+
table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
|
|
5278
|
+
};
|
|
5279
|
+
export declare type VehiclePremiumFastChargecharge_speedArgs = {
|
|
5280
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5281
|
+
};
|
|
5282
|
+
export declare type VehiclePremiumFastChargeTable = {
|
|
5283
|
+
/** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC) */
|
|
5284
|
+
format?: Maybe<Scalars["String"]>;
|
|
5285
|
+
/** Fast charge power */
|
|
5286
|
+
power?: Maybe<VehiclePremiumChargePower>;
|
|
5287
|
+
/** Minutes needed to charge from 10% to 80% (optimal conditions) */
|
|
5288
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5289
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions), default is kmph */
|
|
5290
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5291
|
+
/** Indicates if maximum power during fast charging is limited by the vehicle */
|
|
5292
|
+
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
5293
|
+
/** Indicates if average power during fast charging is limited by the vehicle */
|
|
5294
|
+
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
5295
|
+
};
|
|
5296
|
+
export declare type VehiclePremiumFastChargeTablecharge_speedArgs = {
|
|
5297
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5298
|
+
};
|
|
5299
|
+
export declare type VehiclePremiumMedia = {
|
|
5300
|
+
/** URL for more details */
|
|
5301
|
+
provider_details_url?: Maybe<Scalars["String"]>;
|
|
5302
|
+
/** Latest image */
|
|
5303
|
+
image: VehicleImage;
|
|
5304
|
+
/** Latest maker logo */
|
|
5305
|
+
brand: VehicleImage;
|
|
5306
|
+
/** All images */
|
|
5307
|
+
image_list: Array<VehicleImage>;
|
|
5308
|
+
/** Latest video */
|
|
5309
|
+
video?: Maybe<VehicleVideo>;
|
|
5310
|
+
/** All videos */
|
|
5311
|
+
video_list?: Maybe<Array<VehicleVideo>>;
|
|
5312
|
+
/** URL of the OEM page for this vehicle */
|
|
5313
|
+
oem_details_url?: Maybe<Scalars["String"]>;
|
|
5314
|
+
};
|
|
5315
|
+
export declare type VehiclePremiumNaming = {
|
|
5316
|
+
/** Vehicle manufacturer name */
|
|
5317
|
+
make: Scalars["String"];
|
|
5318
|
+
/** Vehicle model name */
|
|
5319
|
+
model: Scalars["String"];
|
|
5320
|
+
/** Version, edition or submodel of the vehicle */
|
|
5321
|
+
version?: Maybe<Scalars["String"]>;
|
|
5322
|
+
/** Another submodel level of the vehicle */
|
|
5323
|
+
edition?: Maybe<Scalars["String"]>;
|
|
5324
|
+
/** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years */
|
|
5325
|
+
chargetrip_version: Scalars["String"];
|
|
5326
|
+
/** Vehicle model length version */
|
|
5327
|
+
length_version?: Maybe<Scalars["String"]>;
|
|
5328
|
+
/** Vehicle model height version */
|
|
5329
|
+
height_version?: Maybe<Scalars["String"]>;
|
|
5330
|
+
};
|
|
5331
|
+
export declare type VehiclePremiumPerformance = {
|
|
5332
|
+
/** Acceleration 0-100 km/h, default in seconds */
|
|
5333
|
+
acceleration?: Maybe<Scalars["Float"]>;
|
|
5334
|
+
/** Indicates if acceleration field is estimated */
|
|
5335
|
+
acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5336
|
+
/** Top speed of the vehicle, default in km/h */
|
|
5337
|
+
top_speed?: Maybe<Scalars["Float"]>;
|
|
5338
|
+
/** Indicates if top_speed field is estimated */
|
|
5339
|
+
top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5340
|
+
};
|
|
5341
|
+
export declare type VehiclePremiumPerformanceaccelerationArgs = {
|
|
5342
|
+
unit?: Maybe<AccelerationUnit>;
|
|
5343
|
+
};
|
|
5344
|
+
export declare type VehiclePremiumPerformancetop_speedArgs = {
|
|
5345
|
+
unit?: Maybe<SpeedUnit>;
|
|
5346
|
+
};
|
|
5347
|
+
export declare type VehiclePremiumPrice = {
|
|
5348
|
+
/** Starting price for German market */
|
|
5349
|
+
DE?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5350
|
+
/** Starting price for Dutch market */
|
|
5351
|
+
NL?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5352
|
+
/** Starting price for British market */
|
|
5353
|
+
GB?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5354
|
+
};
|
|
5355
|
+
export declare type VehiclePremiumPriceValueWithGrant = {
|
|
5356
|
+
/** Starting price for local market, default in EUR */
|
|
5357
|
+
value?: Maybe<Scalars["Float"]>;
|
|
5358
|
+
/** Indicates if price value is based on estimates */
|
|
5359
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5360
|
+
/** Grant is applied to value */
|
|
5361
|
+
grant_applied?: Maybe<Scalars["Int"]>;
|
|
5362
|
+
};
|
|
5363
|
+
export declare type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
5364
|
+
unit?: Maybe<CurrencyUnit>;
|
|
5365
|
+
};
|
|
5366
|
+
export declare type VehiclePremiumRange = {
|
|
5367
|
+
/** Rated range in WLTP combined cycle (NULL if not WLTP rated), default in km */
|
|
5368
|
+
wltp?: Maybe<Scalars["Float"]>;
|
|
5369
|
+
/** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
|
|
5370
|
+
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5371
|
+
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
|
|
5372
|
+
wltp_teh?: Maybe<Scalars["Int"]>;
|
|
5373
|
+
/** Rated range in NEDC combined cycle (NULL if not NEDC rated), default in km */
|
|
5374
|
+
nedc?: Maybe<Scalars["Float"]>;
|
|
5375
|
+
/** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
|
|
5376
|
+
nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5377
|
+
/** Index range, default in km */
|
|
5378
|
+
provider?: Maybe<Scalars["Float"]>;
|
|
5379
|
+
/** Indicates if index range is estimated */
|
|
5380
|
+
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5381
|
+
/** Worst conditions are based on -10°C and use of heating */
|
|
5382
|
+
worst: VehiclePremiumRangeValue;
|
|
5383
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
5384
|
+
best: VehiclePremiumRangeValue;
|
|
5385
|
+
/** Is an index value of what we consider to be the real-world range. (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display on the front-end. */
|
|
5386
|
+
chargetrip_range: ChargetripRange;
|
|
5387
|
+
};
|
|
5388
|
+
export declare type VehiclePremiumRangewltpArgs = {
|
|
5389
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5390
|
+
};
|
|
5391
|
+
export declare type VehiclePremiumRangenedcArgs = {
|
|
5392
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5393
|
+
};
|
|
5394
|
+
export declare type VehiclePremiumRangeproviderArgs = {
|
|
5395
|
+
unit?: Maybe<ConsumptionUnit>;
|
|
5396
|
+
};
|
|
5397
|
+
export declare type VehiclePremiumRangeValue = {
|
|
5398
|
+
/** Estimated value on highway or express roads, default in km */
|
|
5399
|
+
highway?: Maybe<Scalars["Float"]>;
|
|
5400
|
+
/** Estimated value on city roads, default in km */
|
|
5401
|
+
city?: Maybe<Scalars["Float"]>;
|
|
5402
|
+
/** Estimated combined value, default in km */
|
|
5403
|
+
combined?: Maybe<Scalars["Float"]>;
|
|
5404
|
+
};
|
|
5405
|
+
export declare type VehiclePremiumRangeValuehighwayArgs = {
|
|
5406
|
+
unit?: Maybe<DistanceUnit>;
|
|
5407
|
+
};
|
|
5408
|
+
export declare type VehiclePremiumRangeValuecityArgs = {
|
|
5409
|
+
unit?: Maybe<DistanceUnit>;
|
|
5410
|
+
};
|
|
5411
|
+
export declare type VehiclePremiumRangeValuecombinedArgs = {
|
|
5412
|
+
unit?: Maybe<DistanceUnit>;
|
|
5413
|
+
};
|
|
5414
|
+
export declare type VehiclePremiumRouting = {
|
|
5415
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
5416
|
+
fast_charging_support: Scalars["Boolean"];
|
|
5417
|
+
/** Drag coefficient */
|
|
5418
|
+
drag_coefficient: Scalars["Float"];
|
|
5419
|
+
/** Tire pressure recommended by manufacturer, default in bar */
|
|
5420
|
+
tire_pressure: Scalars["Float"];
|
|
5421
|
+
/** Extra consumption model */
|
|
5422
|
+
consumption?: Maybe<VehiclePremiumRoutingConsumption>;
|
|
5423
|
+
/** Amount of petrol that an equivalent petrol vehicle would consume, default in l/100 km */
|
|
5424
|
+
fuel_consumption?: Maybe<Scalars["Float"]>;
|
|
5425
|
+
};
|
|
5426
|
+
export declare type VehiclePremiumRoutingtire_pressureArgs = {
|
|
5427
|
+
unit?: Maybe<PressureUnit>;
|
|
5428
|
+
};
|
|
5429
|
+
export declare type VehiclePremiumRoutingfuel_consumptionArgs = {
|
|
5430
|
+
unit?: Maybe<FuelConsumptionUnit>;
|
|
5431
|
+
};
|
|
5432
|
+
export declare type VehiclePremiumRoutingConsumption = {
|
|
5433
|
+
/** Consumption, in kWh, of the auxiliaries */
|
|
5434
|
+
aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5435
|
+
/** Consumption, in kWh, of the battery management system */
|
|
5436
|
+
bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5437
|
+
/** Consumption, in kWh, of the vehicle in idle mode */
|
|
5438
|
+
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
5439
|
+
};
|
|
5440
|
+
export declare type VehiclePremiumRoutingConsumptionValue = {
|
|
5441
|
+
/** Best (lowest) consumption in summer */
|
|
5442
|
+
best?: Maybe<Scalars["Float"]>;
|
|
5443
|
+
/** Best (lowest) consumption in winter */
|
|
5444
|
+
worst?: Maybe<Scalars["Float"]>;
|
|
5445
|
+
};
|
|
5446
|
+
export declare type VehiclePremiumSafety = {
|
|
5447
|
+
/** Number of seats equipped with ISOFIX */
|
|
5448
|
+
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
5449
|
+
/** EuroNCAP results */
|
|
5450
|
+
euro_ncap?: Maybe<VehiclePremiumSafetyEuroNcap>;
|
|
5451
|
+
};
|
|
5452
|
+
export declare type VehiclePremiumSafetyEuroNcap = {
|
|
5453
|
+
/** EuroNCAP rating (out of 5 stars) */
|
|
5454
|
+
rating?: Maybe<Scalars["Int"]>;
|
|
5455
|
+
/** EuroNCAP year of rating */
|
|
5456
|
+
year?: Maybe<Scalars["Int"]>;
|
|
5457
|
+
/** EuroNCAP rating of adult protection (out of 100%) */
|
|
5458
|
+
adult?: Maybe<Scalars["Int"]>;
|
|
5459
|
+
/** EuroNCAP rating of child protection (out of 100%) */
|
|
5460
|
+
child?: Maybe<Scalars["Int"]>;
|
|
5461
|
+
/** EuroNCAP rating of vulnerable road users (out of 100%) */
|
|
5462
|
+
vru?: Maybe<Scalars["Int"]>;
|
|
5463
|
+
/** EuroNCAP rating of safety assists (out of 100%) */
|
|
5464
|
+
sa?: Maybe<Scalars["Int"]>;
|
|
5465
|
+
};
|
|
5466
|
+
/** Propulsion */
|
|
5467
|
+
export declare enum VehiclePropulsion {
|
|
5468
|
+
/** All-wheel drive vehicle */
|
|
5469
|
+
AWD = "AWD",
|
|
5470
|
+
/** Front-wheel drive vehicle */
|
|
5471
|
+
FRONT = "Front",
|
|
5472
|
+
/** Rear-wheel drive vehicle */
|
|
5473
|
+
REAR = "Rear"
|
|
5474
|
+
}
|
|
5475
|
+
/** Status of a vehicle provider */
|
|
5476
|
+
export declare enum VehicleProviderStatus {
|
|
5477
|
+
/** Is imported from any of the data providers */
|
|
5478
|
+
NEW = "new",
|
|
5479
|
+
/** Has been attached to core vehicle */
|
|
5480
|
+
ATTACHED = "attached",
|
|
5481
|
+
/** Has been detached from a core vehicle */
|
|
5482
|
+
DETACHED = "detached",
|
|
5483
|
+
/** Has been archived by database maintainer */
|
|
5484
|
+
ARCHIVED = "archived"
|
|
5485
|
+
}
|
|
5486
|
+
export declare type VehicleRange = {
|
|
5487
|
+
/** Index range, default in km */
|
|
5488
|
+
provider?: Maybe<Scalars["Float"]>;
|
|
5489
|
+
/** Indicates if index range is estimated */
|
|
5490
|
+
provider_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5491
|
+
/** Worst conditions are based on -10°C and use of heating */
|
|
5492
|
+
worst: VehicleRangeValue;
|
|
5493
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
5494
|
+
best: VehicleRangeValue;
|
|
5495
|
+
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
5496
|
+
chargetrip_range: ChargetripRange;
|
|
5497
|
+
};
|
|
5498
|
+
export declare type VehicleRangeproviderArgs = {
|
|
5499
|
+
unit?: Maybe<DistanceUnit>;
|
|
5500
|
+
};
|
|
5501
|
+
export declare type VehicleRangeValue = {
|
|
5502
|
+
/** Estimated value on the highway or express roads, default in km */
|
|
5503
|
+
highway: Scalars["Float"];
|
|
5504
|
+
/** Estimated value on the cities road, default in km */
|
|
5505
|
+
city: Scalars["Float"];
|
|
5506
|
+
/** Estimated combined value, default in km */
|
|
5507
|
+
combined: Scalars["Float"];
|
|
5508
|
+
};
|
|
5509
|
+
export declare type VehicleRangeValuehighwayArgs = {
|
|
5510
|
+
unit?: Maybe<DistanceUnit>;
|
|
5511
|
+
};
|
|
5512
|
+
export declare type VehicleRangeValuecityArgs = {
|
|
5513
|
+
unit?: Maybe<DistanceUnit>;
|
|
5514
|
+
};
|
|
5515
|
+
export declare type VehicleRangeValuecombinedArgs = {
|
|
5516
|
+
unit?: Maybe<DistanceUnit>;
|
|
5517
|
+
};
|
|
5518
|
+
export declare type VehicleRouting = {
|
|
5519
|
+
/** Vehicles that support fast charging have a minimum charging speed of 43 kWh */
|
|
5520
|
+
fast_charging_support: Scalars["Boolean"];
|
|
5521
|
+
};
|
|
5522
|
+
export declare type VehicleSpeedInput = {
|
|
5523
|
+
/** Value of the vehicle speed */
|
|
5524
|
+
value: Scalars["Float"];
|
|
5525
|
+
/** Type of the vehicle speed */
|
|
5526
|
+
type: SpeedUnit;
|
|
5527
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
5528
|
+
source?: Maybe<TelemetryInputSource>;
|
|
5529
|
+
};
|
|
5530
|
+
/** Status of a vehicle */
|
|
5531
|
+
export declare enum VehicleStatus {
|
|
5532
|
+
/** Is being reviewed by a human operator */
|
|
5533
|
+
DRAFT = "draft",
|
|
5534
|
+
/** Is public and can be used by a customer */
|
|
5535
|
+
PUBLIC = "public",
|
|
5536
|
+
/** Is private and can be used by a human operator */
|
|
5537
|
+
PRIVATE = "private",
|
|
5538
|
+
/** Is archived and can not be used */
|
|
5539
|
+
ARCHIVED = "archived"
|
|
5540
|
+
}
|
|
5541
|
+
export declare type VehicleVideo = {
|
|
5542
|
+
/** Video id */
|
|
5543
|
+
id?: Maybe<Scalars["ID"]>;
|
|
5544
|
+
/** Full path URL of a video */
|
|
5545
|
+
url?: Maybe<Scalars["String"]>;
|
|
5546
|
+
};
|
|
5547
|
+
export declare enum VolumeUnit {
|
|
5548
|
+
/** Return the volume in liters */
|
|
5549
|
+
LITER = "liter",
|
|
5550
|
+
/** Return the volume in cubic meters */
|
|
5551
|
+
CUBIC_METER = "cubic_meter",
|
|
5552
|
+
/** Return the volume in cubic feet */
|
|
5553
|
+
CUBIC_FOOT = "cubic_foot"
|
|
5554
|
+
}
|
|
5555
|
+
export declare enum WeightUnit {
|
|
5556
|
+
/** Return the weight in kilograms */
|
|
5557
|
+
KILOGRAM = "kilogram",
|
|
5558
|
+
/** Return the weight in pounds */
|
|
5559
|
+
POUND = "pound"
|
|
5560
|
+
}
|