@chargetrip/types 1.32.2 → 1.34.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 +255 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +390 -29
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +390 -29
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +1787 -119
- package/graphql.schema.json +13607 -4190
- package/package.json +1 -2
- package/src/graphql.ts +2010 -131
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,13 +150,33 @@ 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
|
};
|
|
127
|
-
|
|
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
|
+
}
|
|
165
|
+
/** The type of the battery value */
|
|
128
166
|
export declare enum BatteryInputType {
|
|
129
167
|
KWH = "kwh",
|
|
130
168
|
KM = "km",
|
|
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 */
|
|
@@ -336,9 +382,6 @@ export declare type CarBody = {
|
|
|
336
382
|
/** Number of seats */
|
|
337
383
|
seats?: Maybe<Scalars["Int"]>;
|
|
338
384
|
};
|
|
339
|
-
export declare enum CarConnectivityProvider {
|
|
340
|
-
ENODE = "Enode"
|
|
341
|
-
}
|
|
342
385
|
/** Deprecated */
|
|
343
386
|
export declare type CarConsumption = {
|
|
344
387
|
/** Worst conditions are based on -10°C and use of heating */
|
|
@@ -1274,6 +1317,30 @@ export declare enum ChargeMode {
|
|
|
1274
1317
|
/** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80% */
|
|
1275
1318
|
ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE"
|
|
1276
1319
|
}
|
|
1320
|
+
export declare type ChargeSpeedInput = {
|
|
1321
|
+
/** Value of the charge speed of the battery */
|
|
1322
|
+
value: Scalars["Float"];
|
|
1323
|
+
/** Type of the charge speed of the battery */
|
|
1324
|
+
type: ChargeSpeedUnit;
|
|
1325
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
1326
|
+
source?: Maybe<TelemetryInputSource>;
|
|
1327
|
+
};
|
|
1328
|
+
export declare enum ChargeSpeedUnit {
|
|
1329
|
+
/** Return the charge speed in kilowatt hours */
|
|
1330
|
+
KILOWATT_HOUR = "kilowatt_hour",
|
|
1331
|
+
/** Return the charge speed in kilometers per hour */
|
|
1332
|
+
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
1333
|
+
/** Return the charge speed in miles per hour */
|
|
1334
|
+
MILES_PER_HOUR = "miles_per_hour"
|
|
1335
|
+
}
|
|
1336
|
+
export declare type ChargeTotalInput = {
|
|
1337
|
+
/** Value of the temperature of the battery */
|
|
1338
|
+
value: Scalars["Float"];
|
|
1339
|
+
/** Type of total charge amount */
|
|
1340
|
+
type: BatteryInputType;
|
|
1341
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
1342
|
+
source?: Maybe<TelemetryInputSource>;
|
|
1343
|
+
};
|
|
1277
1344
|
/** A groupped representation of EVSEs */
|
|
1278
1345
|
export declare type Charger = {
|
|
1279
1346
|
/** Type of charger */
|
|
@@ -1317,6 +1384,14 @@ export declare type ChargetripRange = {
|
|
|
1317
1384
|
/** Best conditions are based on 23°C and no use of A/C */
|
|
1318
1385
|
best?: Maybe<Scalars["Float"]>;
|
|
1319
1386
|
};
|
|
1387
|
+
/** 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 */
|
|
1388
|
+
export declare type ChargetripRangeworstArgs = {
|
|
1389
|
+
unit?: Maybe<DistanceUnit>;
|
|
1390
|
+
};
|
|
1391
|
+
/** 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 */
|
|
1392
|
+
export declare type ChargetripRangebestArgs = {
|
|
1393
|
+
unit?: Maybe<DistanceUnit>;
|
|
1394
|
+
};
|
|
1320
1395
|
export declare type ChargingBehaviour = {
|
|
1321
1396
|
/** Charging behaviour of users divided in groups, based on real-time information */
|
|
1322
1397
|
code?: Maybe<ChargingBehaviourCode>;
|
|
@@ -1339,24 +1414,74 @@ export declare enum ChargingBehaviourCode {
|
|
|
1339
1414
|
}
|
|
1340
1415
|
export declare type Connect = {
|
|
1341
1416
|
/** List of connectivity providers to which a vehicle can connect */
|
|
1342
|
-
providers
|
|
1417
|
+
providers: Array<ConnectProvider>;
|
|
1343
1418
|
};
|
|
1344
1419
|
export declare type ConnectBattery = {
|
|
1345
|
-
|
|
1346
|
-
|
|
1420
|
+
/** Estimated range by OEM */
|
|
1421
|
+
range?: Maybe<Scalars["Float"]>;
|
|
1422
|
+
/** Percentage of the battery remaining */
|
|
1423
|
+
percentage?: Maybe<Scalars["Float"]>;
|
|
1424
|
+
/** Capacity of the battery, in kwh */
|
|
1425
|
+
capacity?: Maybe<Scalars["Float"]>;
|
|
1426
|
+
/** Date when the battery data was retrieved, as ISO-8601 date */
|
|
1427
|
+
date?: Maybe<Scalars["DateTime"]>;
|
|
1428
|
+
};
|
|
1429
|
+
export declare type ConnectCharge = {
|
|
1430
|
+
/** Vehicle is plugged in */
|
|
1431
|
+
is_plugged_in?: Maybe<Scalars["Boolean"]>;
|
|
1432
|
+
/** Vehicle is charging */
|
|
1433
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
1434
|
+
/** Battery is fully charged */
|
|
1435
|
+
is_fully_charged?: Maybe<Scalars["Boolean"]>;
|
|
1436
|
+
/** Charge limit defined by vehicle owner */
|
|
1437
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
1438
|
+
/** Charge speed, in kwh */
|
|
1439
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
1440
|
+
/** Estimation when charging is completed, as ISO-8601 date */
|
|
1441
|
+
fully_charged_at?: Maybe<Scalars["DateTime"]>;
|
|
1442
|
+
/** Estimated minutes till charged */
|
|
1443
|
+
minutes_till_charged?: Maybe<Scalars["Int"]>;
|
|
1444
|
+
/** Date when the charge data was retrieved, as ISO-8601 date */
|
|
1445
|
+
date?: Maybe<Scalars["DateTime"]>;
|
|
1347
1446
|
};
|
|
1348
1447
|
export declare type ConnectFilter = {
|
|
1349
1448
|
/** List of connectivity providers to which a vehicle can connect */
|
|
1350
1449
|
providers?: Maybe<Array<Maybe<ConnectProvider>>>;
|
|
1351
1450
|
};
|
|
1451
|
+
/** Location of the vehicle */
|
|
1452
|
+
export declare type ConnectLocation = {
|
|
1453
|
+
/** Feature type */
|
|
1454
|
+
type: FeatureType;
|
|
1455
|
+
/** Geometry of the feature */
|
|
1456
|
+
geometry: GeometryPoint;
|
|
1457
|
+
/** Properties object containing meta data about the feature point */
|
|
1458
|
+
properties?: Maybe<ConnectLocationProperties>;
|
|
1459
|
+
};
|
|
1460
|
+
/** Properties of a vehicle location */
|
|
1461
|
+
export declare type ConnectLocationProperties = {
|
|
1462
|
+
/** Date when the location was retrieved, as ISO-8601 date */
|
|
1463
|
+
date: Scalars["DateTime"];
|
|
1464
|
+
};
|
|
1465
|
+
export declare type ConnectOdometer = {
|
|
1466
|
+
/** Odometer value, distance driven, default in km */
|
|
1467
|
+
distance?: Maybe<Scalars["Float"]>;
|
|
1468
|
+
/** Date when the odometer data was retrieved, as ISO-8601 date */
|
|
1469
|
+
date?: Maybe<Scalars["DateTime"]>;
|
|
1470
|
+
};
|
|
1352
1471
|
export declare enum ConnectProvider {
|
|
1353
1472
|
ENODE = "Enode"
|
|
1354
1473
|
}
|
|
1474
|
+
export declare enum ConnectScope {
|
|
1475
|
+
/** Vehicle location, applicable for: Enode */
|
|
1476
|
+
LOCATION = "location",
|
|
1477
|
+
/** Charge state, applicable for: Enode */
|
|
1478
|
+
CHARGE_STATE = "charge_state",
|
|
1479
|
+
/** Odometer reading, applicable for: Enode */
|
|
1480
|
+
ODOMETER = "odometer"
|
|
1481
|
+
}
|
|
1355
1482
|
export declare type ConnectedVehicle = {
|
|
1356
1483
|
/** Unique ID of the connected vehicle */
|
|
1357
1484
|
id: Scalars["ID"];
|
|
1358
|
-
/** ID of the user */
|
|
1359
|
-
user_id: Scalars["ID"];
|
|
1360
1485
|
/** Unique ID of the vehicle */
|
|
1361
1486
|
vehicle_id: Scalars["ID"];
|
|
1362
1487
|
/** Status of the connected vehicle */
|
|
@@ -1364,27 +1489,27 @@ export declare type ConnectedVehicle = {
|
|
|
1364
1489
|
/** URL to connect the vehicle to the connectivity provider */
|
|
1365
1490
|
authorization_url?: Maybe<Scalars["String"]>;
|
|
1366
1491
|
/** Connectivity provider */
|
|
1367
|
-
provider:
|
|
1368
|
-
/**
|
|
1369
|
-
|
|
1492
|
+
provider: VehicleConnectivityProvider;
|
|
1493
|
+
/** Scope for accessing the vehicle */
|
|
1494
|
+
scope?: Maybe<Array<Maybe<ConnectScope>>>;
|
|
1370
1495
|
/** Custom label for a connected vehicle that can be assigned by a user */
|
|
1371
1496
|
label?: Maybe<Scalars["String"]>;
|
|
1372
1497
|
/** Vehicle identification number, unique identifier for a vehicle */
|
|
1373
1498
|
vin?: Maybe<Scalars["String"]>;
|
|
1374
1499
|
};
|
|
1375
|
-
export declare
|
|
1376
|
-
/**
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
BATTERY = "battery"
|
|
1380
|
-
}
|
|
1500
|
+
export declare type ConnectedVehicleListFilter = {
|
|
1501
|
+
/** Status of the connected vehicle */
|
|
1502
|
+
status?: Maybe<Array<ConnectedVehicleStatus>>;
|
|
1503
|
+
};
|
|
1381
1504
|
export declare enum ConnectedVehicleStatus {
|
|
1382
|
-
/** Vehicle was added to the Chargetrip platform but not yet authorized */
|
|
1383
|
-
|
|
1505
|
+
/** Vehicle was added to the Chargetrip Connect platform but not yet authorized */
|
|
1506
|
+
PENDING_AUTHORIZATION = "pending_authorization",
|
|
1384
1507
|
/** Vehicle was authorized. Chargetrip can retrieve data on behave of the user */
|
|
1385
1508
|
AUTHORIZED = "authorized",
|
|
1386
|
-
/**
|
|
1387
|
-
|
|
1509
|
+
/** Pending vehicle removal */
|
|
1510
|
+
PENDING_REMOVAL = "pending_removal",
|
|
1511
|
+
/** Vehicle was removed and access has been revoked */
|
|
1512
|
+
REMOVED = "removed"
|
|
1388
1513
|
}
|
|
1389
1514
|
/** Connector data which extends OCPI Connector */
|
|
1390
1515
|
export declare type Connector = {
|
|
@@ -1402,7 +1527,7 @@ export declare type Connector = {
|
|
|
1402
1527
|
max_amperage?: Maybe<Scalars["Int"]>;
|
|
1403
1528
|
/**
|
|
1404
1529
|
* 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.
|
|
1405
|
-
* 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
|
|
1530
|
+
* 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.
|
|
1406
1531
|
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
1407
1532
|
*/
|
|
1408
1533
|
max_electric_power?: Maybe<Scalars["Int"]>;
|
|
@@ -1430,9 +1555,12 @@ export declare type Connector = {
|
|
|
1430
1555
|
/** 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 */
|
|
1431
1556
|
custom_properties?: Maybe<ConnectorCustomProperties>;
|
|
1432
1557
|
};
|
|
1558
|
+
/** Custom properties for connectors */
|
|
1433
1559
|
export declare type ConnectorCustomProperties = {
|
|
1434
1560
|
/** Charging prices */
|
|
1435
1561
|
pricing?: Maybe<Pricing>;
|
|
1562
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
1563
|
+
oicp?: Maybe<OICPConnectorCustomProperties>;
|
|
1436
1564
|
};
|
|
1437
1565
|
/** The socket or plug standard of the charging point. */
|
|
1438
1566
|
export declare enum ConnectorType {
|
|
@@ -1515,6 +1643,24 @@ export declare enum ConnectorType {
|
|
|
1515
1643
|
/** The connector type is NEMA 14-50, 3 pins, rating of 50 A */
|
|
1516
1644
|
NEMA_14_50 = "NEMA_14_50"
|
|
1517
1645
|
}
|
|
1646
|
+
export declare enum ConsumptionUnit {
|
|
1647
|
+
/** Return the consumption in kilometers */
|
|
1648
|
+
KILOMETER = "kilometer",
|
|
1649
|
+
/** Return the consumption in kilowatt hours */
|
|
1650
|
+
KILOWATT_HOUR = "kilowatt_hour",
|
|
1651
|
+
/** Return the consumption in kilowatt hours per 100 kilometers */
|
|
1652
|
+
KILOWATT_HOURS_PER_100_KILOMETERS = "kilowatt_hours_per_100_kilometers",
|
|
1653
|
+
/** Return the consumption in kilowatt hours per 100 miles */
|
|
1654
|
+
KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
|
|
1655
|
+
/** Return the consumption in watt hours per kilometer */
|
|
1656
|
+
WATT_HOURS_PER_KILOMETER = "watt_hours_per_kilometer",
|
|
1657
|
+
/** Return the consumption in watt hours per mile */
|
|
1658
|
+
WATT_HOURS_PER_MILE = "watt_hours_per_mile",
|
|
1659
|
+
/** Return the consumption in miles per kilowatt hour */
|
|
1660
|
+
MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour",
|
|
1661
|
+
/** Return the consumption in kilometers per kilowatt hour */
|
|
1662
|
+
KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour"
|
|
1663
|
+
}
|
|
1518
1664
|
/** The complete contact information */
|
|
1519
1665
|
export declare type Contact = {
|
|
1520
1666
|
/** The phone number in international format */
|
|
@@ -1789,12 +1935,35 @@ export declare type CreateConnectedVehicleInput = {
|
|
|
1789
1935
|
/** Id from the vehicle */
|
|
1790
1936
|
vehicle_id: Scalars["ID"];
|
|
1791
1937
|
/** Connectivity provider used to retrieve data from the vehicle */
|
|
1792
|
-
provider:
|
|
1938
|
+
provider: VehicleConnectivityProvider;
|
|
1793
1939
|
/** Label for a connected vehicle */
|
|
1794
1940
|
label?: Maybe<Scalars["PlainString"]>;
|
|
1795
1941
|
/** Provider specific options. See the developer portal for more details */
|
|
1796
|
-
options:
|
|
1942
|
+
options: CreateConnectedVehicleOptions;
|
|
1797
1943
|
};
|
|
1944
|
+
export declare type CreateConnectedVehicleOptions = {
|
|
1945
|
+
/** Redirect uri */
|
|
1946
|
+
redirect_uri?: Maybe<Scalars["PlainString"]>;
|
|
1947
|
+
/** Scope */
|
|
1948
|
+
scope?: Maybe<Array<ConnectScope>>;
|
|
1949
|
+
};
|
|
1950
|
+
/** Currency according to the ISO 4217 standard */
|
|
1951
|
+
export declare enum CurrencyUnit {
|
|
1952
|
+
/** Return the currency in EUR */
|
|
1953
|
+
EUR = "EUR",
|
|
1954
|
+
/** Return the currency in USD */
|
|
1955
|
+
USD = "USD"
|
|
1956
|
+
}
|
|
1957
|
+
export declare enum DistanceUnit {
|
|
1958
|
+
/** Return the distance in meters */
|
|
1959
|
+
METER = "meter",
|
|
1960
|
+
/** Return the distance in feet */
|
|
1961
|
+
FOOT = "foot",
|
|
1962
|
+
/** Return the distance in kilometers */
|
|
1963
|
+
KILOMETER = "kilometer",
|
|
1964
|
+
/** Return the distance in miles */
|
|
1965
|
+
MILE = "mile"
|
|
1966
|
+
}
|
|
1798
1967
|
/** EVSE data which extends OCPI EVSE */
|
|
1799
1968
|
export declare type EVSE = {
|
|
1800
1969
|
/**
|
|
@@ -1828,6 +1997,64 @@ export declare type EVSE = {
|
|
|
1828
1997
|
parking_cost?: Maybe<ParkingCost>;
|
|
1829
1998
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1830
1999
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2000
|
+
/** Custom properties of an EVSE */
|
|
2001
|
+
custom_properties?: Maybe<EvseCustomProperties>;
|
|
2002
|
+
};
|
|
2003
|
+
export declare type ElevationInput = {
|
|
2004
|
+
/** Value of the elevation */
|
|
2005
|
+
value: Scalars["Float"];
|
|
2006
|
+
/** Type of the value of elevation */
|
|
2007
|
+
type: DistanceUnit;
|
|
2008
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
2009
|
+
source?: Maybe<TelemetryInputSource>;
|
|
2010
|
+
};
|
|
2011
|
+
export declare enum ElevationUnit {
|
|
2012
|
+
/** Return the elevation in meters */
|
|
2013
|
+
METER = "meter",
|
|
2014
|
+
/** Return the elevation in feet */
|
|
2015
|
+
FOOT = "foot"
|
|
2016
|
+
}
|
|
2017
|
+
export declare enum EmissionRateUnit {
|
|
2018
|
+
/** Return the emission rate in grams per kilometer */
|
|
2019
|
+
GRAMS_PER_KILOMETER = "grams_per_kilometer",
|
|
2020
|
+
/** Return the emission rate in ounces per mile */
|
|
2021
|
+
OUNCES_PER_MILE = "ounces_per_mile"
|
|
2022
|
+
}
|
|
2023
|
+
export declare enum EmissionUnit {
|
|
2024
|
+
/** Return the emission in grams */
|
|
2025
|
+
GRAM = "gram",
|
|
2026
|
+
/** Return the emission in ounces */
|
|
2027
|
+
OUNCE = "ounce"
|
|
2028
|
+
}
|
|
2029
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2030
|
+
export declare type EvseCustomProperties = {
|
|
2031
|
+
/** OICP standard custom properties */
|
|
2032
|
+
oicp?: Maybe<OICPEvseCustomProperties>;
|
|
2033
|
+
};
|
|
2034
|
+
/** A GeoJSON Feature<LineString> */
|
|
2035
|
+
export declare type FeatureLineString = {
|
|
2036
|
+
/** Feature type */
|
|
2037
|
+
type: FeatureType;
|
|
2038
|
+
/** Geometry of the feature */
|
|
2039
|
+
geometry: LineString;
|
|
2040
|
+
};
|
|
2041
|
+
/** A GeoJSON Feature<MultiPolygon> */
|
|
2042
|
+
export declare type FeatureMultiPolygon = {
|
|
2043
|
+
/** Feature type */
|
|
2044
|
+
type: FeatureType;
|
|
2045
|
+
/** Geometry of the feature */
|
|
2046
|
+
geometry: MultiPolygon;
|
|
2047
|
+
/** Properties of the MultiPolygon Feature */
|
|
2048
|
+
properties?: Maybe<PolygonProperties>;
|
|
2049
|
+
};
|
|
2050
|
+
/** A GeoJSON Feature<Point> */
|
|
2051
|
+
export declare type FeatureMultiPolygonPoint = {
|
|
2052
|
+
/** Feature type */
|
|
2053
|
+
type: FeatureType;
|
|
2054
|
+
/** Geometry of the feature */
|
|
2055
|
+
geometry: Point;
|
|
2056
|
+
/** Optional object where you can store custom data you need in your application. */
|
|
2057
|
+
properties?: Maybe<Scalars["JSON"]>;
|
|
1831
2058
|
};
|
|
1832
2059
|
/** A GeoJSON Feature<Point> */
|
|
1833
2060
|
export declare type FeaturePoint = {
|
|
@@ -1837,7 +2064,7 @@ export declare type FeaturePoint = {
|
|
|
1837
2064
|
type: FeatureType;
|
|
1838
2065
|
/** Geometry of the feature */
|
|
1839
2066
|
geometry: Point;
|
|
1840
|
-
/**
|
|
2067
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1841
2068
|
properties?: Maybe<Scalars["JSON"]>;
|
|
1842
2069
|
};
|
|
1843
2070
|
/** A GeoJSON Feature<Point> input */
|
|
@@ -1870,28 +2097,16 @@ export declare type FeaturePointPolygonPropertiesInput = {
|
|
|
1870
2097
|
/** Name of the location */
|
|
1871
2098
|
name?: Maybe<Scalars["String"]>;
|
|
1872
2099
|
};
|
|
1873
|
-
/** A GeoJSON Feature<Polygon> */
|
|
1874
|
-
export declare type FeaturePolygon = {
|
|
1875
|
-
/** Feature type */
|
|
1876
|
-
type: FeatureType;
|
|
1877
|
-
/** Geometry of the feature */
|
|
1878
|
-
geometry: Polygon;
|
|
1879
|
-
/** Properties of the Polygon Feature */
|
|
1880
|
-
properties?: Maybe<PolygonProperties>;
|
|
1881
|
-
};
|
|
1882
|
-
/** A GeoJSON Feature<Point> */
|
|
1883
|
-
export declare type FeaturePolygonPoint = {
|
|
1884
|
-
/** Feature type */
|
|
1885
|
-
type: FeatureType;
|
|
1886
|
-
/** Geometry of the feature */
|
|
1887
|
-
geometry: Point;
|
|
1888
|
-
/** Optional object where you can store custom data you need in your application. */
|
|
1889
|
-
properties?: Maybe<Scalars["JSON"]>;
|
|
1890
|
-
};
|
|
1891
2100
|
/** GeoJSON Feature type */
|
|
1892
2101
|
export declare enum FeatureType {
|
|
1893
2102
|
FEATURE = "Feature"
|
|
1894
2103
|
}
|
|
2104
|
+
export declare enum FuelConsumptionUnit {
|
|
2105
|
+
/** Return the fuel consumption in liters per 100 kilometers */
|
|
2106
|
+
LITERS_PER_100_KILOMETERS = "liters_per_100_kilometers",
|
|
2107
|
+
/** Return the fuel consumption in miles per gallon */
|
|
2108
|
+
MILES_PER_GALLON = "miles_per_gallon"
|
|
2109
|
+
}
|
|
1895
2110
|
/** Geometry point with GPS coordinates */
|
|
1896
2111
|
export declare type GeometryPoint = {
|
|
1897
2112
|
type: PointType;
|
|
@@ -1909,27 +2124,50 @@ export declare type Isoline = {
|
|
|
1909
2124
|
id: Scalars["ID"];
|
|
1910
2125
|
/** Isoline status */
|
|
1911
2126
|
status: IsolineStatus;
|
|
1912
|
-
/** Shape of the isoline consisting in a list of
|
|
1913
|
-
polygons?: Maybe<Array<Maybe<
|
|
2127
|
+
/** Shape of the isoline consisting in a list of multipolygons */
|
|
2128
|
+
polygons?: Maybe<Array<Maybe<FeatureMultiPolygon>>>;
|
|
2129
|
+
/** List of the ferries uniting islands formed by the isoline */
|
|
2130
|
+
ferries?: Maybe<Array<Maybe<FeatureLineString>>>;
|
|
1914
2131
|
/** Origin point of the request */
|
|
1915
|
-
origin:
|
|
2132
|
+
origin: FeatureMultiPolygonPoint;
|
|
1916
2133
|
/** Vehicle id */
|
|
1917
2134
|
vehicle_id: Scalars["ID"];
|
|
1918
|
-
/** Number of Isolines to be generated representing SoC (default: 1,
|
|
2135
|
+
/** Number of Isolines to be generated representing SoC (default: 1, maximum: 20) */
|
|
1919
2136
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
1920
|
-
/** Season to be taken into account when generating the isoline
|
|
2137
|
+
/** Season to be taken into account when generating the isoline. Default: current */
|
|
1921
2138
|
season?: Maybe<RouteSeason>;
|
|
1922
2139
|
};
|
|
2140
|
+
export declare enum IsolineFerryConnectionsType {
|
|
2141
|
+
/** Ferry connections should not be included */
|
|
2142
|
+
NONE = "none",
|
|
2143
|
+
/** 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. */
|
|
2144
|
+
SINGLE = "single"
|
|
2145
|
+
}
|
|
1923
2146
|
export declare type IsolineInput = {
|
|
1924
2147
|
/** Vehicle id */
|
|
1925
2148
|
vehicle_id: Scalars["ID"];
|
|
1926
2149
|
/** Origin point of the request */
|
|
1927
2150
|
origin: FeaturePointPolygonInput;
|
|
1928
|
-
/** Numbers of polygons to be generated (default: 1,
|
|
2151
|
+
/** Numbers of polygons to be generated (default: 1, maximum: 20) */
|
|
1929
2152
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
1930
|
-
/**
|
|
2153
|
+
/** Vehicle should be able to return to the origin point from any point */
|
|
2154
|
+
round_trip?: Maybe<Scalars["Boolean"]>;
|
|
2155
|
+
/** Climate is on */
|
|
2156
|
+
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2157
|
+
/** Season to be taken into account when generating the isoline */
|
|
1931
2158
|
season?: Maybe<RouteSeason>;
|
|
1932
|
-
|
|
2159
|
+
/** Polygons precision quality */
|
|
2160
|
+
quality?: Maybe<IsolineQuality>;
|
|
2161
|
+
/** Include ferry connections. Single and multiple ferry connections increase the calculation time and the number of polygons. */
|
|
2162
|
+
ferry_connections?: Maybe<IsolineFerryConnectionsType>;
|
|
2163
|
+
};
|
|
2164
|
+
/** Granularity of the isoline */
|
|
2165
|
+
export declare enum IsolineQuality {
|
|
2166
|
+
/** High polygons precisions */
|
|
2167
|
+
HIGH = "high",
|
|
2168
|
+
/** Low polygons precisions */
|
|
2169
|
+
LOW = "low"
|
|
2170
|
+
}
|
|
1933
2171
|
/** Status of the isoline label */
|
|
1934
2172
|
export declare enum IsolineStatus {
|
|
1935
2173
|
/** Isoline label has been successfully generated */
|
|
@@ -1941,10 +2179,12 @@ export declare enum IsolineStatus {
|
|
|
1941
2179
|
}
|
|
1942
2180
|
/** Types of a leg */
|
|
1943
2181
|
export declare enum LegType {
|
|
1944
|
-
/** This leg ends at a charging station and the
|
|
2182
|
+
/** This leg ends at a charging station and the vehicle must recharge */
|
|
1945
2183
|
STATION = "station",
|
|
1946
|
-
/** This leg ends at a via charging station and the
|
|
2184
|
+
/** This leg ends at a via charging station and the vehicle must recharge */
|
|
1947
2185
|
STATIONVIA = "stationVia",
|
|
2186
|
+
/** This leg ends at a scheduled charging station and the vehicle must recharge */
|
|
2187
|
+
STATIONAMENITY = "stationAmenity",
|
|
1948
2188
|
/** This leg ends at a via location */
|
|
1949
2189
|
VIA = "via",
|
|
1950
2190
|
/** This leg ends at the destination, and is the last leg of the route */
|
|
@@ -1952,6 +2192,17 @@ export declare enum LegType {
|
|
|
1952
2192
|
/** This leg ends at the destination which is a charging station, and is the last leg of the route */
|
|
1953
2193
|
STATIONFINAL = "stationFinal"
|
|
1954
2194
|
}
|
|
2195
|
+
/** A GeoJSON LineString */
|
|
2196
|
+
export declare type LineString = {
|
|
2197
|
+
/** LineString type */
|
|
2198
|
+
type: LineStringType;
|
|
2199
|
+
/** List of coordinates arrays with longitude as first value and latitude as second one */
|
|
2200
|
+
coordinates: Array<Maybe<Array<Scalars["Float"]>>>;
|
|
2201
|
+
};
|
|
2202
|
+
/** GeoJSON LineString type */
|
|
2203
|
+
export declare enum LineStringType {
|
|
2204
|
+
LINESTRING = "LineString"
|
|
2205
|
+
}
|
|
1955
2206
|
/** Preferred language for the mapping */
|
|
1956
2207
|
export declare enum MappingLanguage {
|
|
1957
2208
|
/** English(US) */
|
|
@@ -1964,15 +2215,32 @@ export declare enum MappingProvider {
|
|
|
1964
2215
|
/** Mapbox instructions mapping */
|
|
1965
2216
|
MAPBOXV5 = "MapboxV5"
|
|
1966
2217
|
}
|
|
2218
|
+
export declare enum MeasurementUnit {
|
|
2219
|
+
/** Return the measurement in millimeters */
|
|
2220
|
+
MILLIMETER = "millimeter",
|
|
2221
|
+
/** Return the measurement in inches */
|
|
2222
|
+
INCH = "inch"
|
|
2223
|
+
}
|
|
2224
|
+
/** A GeoJSON Polygon */
|
|
2225
|
+
export declare type MultiPolygon = {
|
|
2226
|
+
/** MultiPolygon type */
|
|
2227
|
+
type: MultiPolygonType;
|
|
2228
|
+
/** List of coordinates representing a polygon */
|
|
2229
|
+
coordinates: Array<Maybe<Array<Maybe<Array<Maybe<Array<Scalars["Float"]>>>>>>>;
|
|
2230
|
+
};
|
|
2231
|
+
/** GeoJSON MultiPolygon type */
|
|
2232
|
+
export declare enum MultiPolygonType {
|
|
2233
|
+
MULTIPOLYGON = "MultiPolygon"
|
|
2234
|
+
}
|
|
1967
2235
|
export declare type Mutation = {
|
|
1968
2236
|
/** [BETA] Create a connected vehicle for a given vehicle id and a connectivity provider */
|
|
1969
2237
|
createConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
1970
|
-
/** [BETA] Authorize a vehicle
|
|
2238
|
+
/** [BETA] Authorize a connected vehicle */
|
|
1971
2239
|
authorizeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
1972
2240
|
/** [BETA] Update a connected vehicle */
|
|
1973
2241
|
updateConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
1974
|
-
/** [BETA]
|
|
1975
|
-
removeConnectedVehicle?: Maybe<
|
|
2242
|
+
/** [BETA] Remove a connected vehicle and revoke access */
|
|
2243
|
+
removeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
1976
2244
|
/** [BETA] Generate a set of consumption based Isolines */
|
|
1977
2245
|
createIsoline?: Maybe<Scalars["ID"]>;
|
|
1978
2246
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
@@ -2040,9 +2308,9 @@ export declare type Navigation = {
|
|
|
2040
2308
|
/** ID of the navigation session */
|
|
2041
2309
|
id: Scalars["ID"];
|
|
2042
2310
|
/** The current route used for navigation */
|
|
2043
|
-
route_id?: Maybe<Scalars["
|
|
2311
|
+
route_id?: Maybe<Scalars["ID"]>;
|
|
2044
2312
|
/** The current route alternative used for navigation */
|
|
2045
|
-
route_alternative_id?: Maybe<Scalars["
|
|
2313
|
+
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2046
2314
|
/** The state of a navigation session. The status can be driving, charging, finished, or error */
|
|
2047
2315
|
state?: Maybe<NavigationState>;
|
|
2048
2316
|
/** State of charge at the last known location */
|
|
@@ -2079,15 +2347,15 @@ export declare type NavigationRecalculateInput = {
|
|
|
2079
2347
|
current_location: PointInput;
|
|
2080
2348
|
/** Via points of a new route. If this field is not sent, the original via points will be used */
|
|
2081
2349
|
via?: Maybe<Array<Maybe<FeaturePointInput>>>;
|
|
2082
|
-
/**
|
|
2083
|
-
|
|
2350
|
+
/** Telemetry data input */
|
|
2351
|
+
telemetry?: Maybe<TelemetryInput>;
|
|
2084
2352
|
};
|
|
2085
2353
|
/** Input for the navigation start */
|
|
2086
2354
|
export declare type NavigationStartInput = {
|
|
2087
2355
|
/** ID of the route of the navigation session */
|
|
2088
|
-
route_id: Scalars["
|
|
2356
|
+
route_id: Scalars["ID"];
|
|
2089
2357
|
/** ID of the route alternative of the navigation session */
|
|
2090
|
-
route_alternative_id?: Maybe<Scalars["
|
|
2358
|
+
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2091
2359
|
/** Current coordinates */
|
|
2092
2360
|
current_location: PointInput;
|
|
2093
2361
|
};
|
|
@@ -2105,7 +2373,7 @@ export declare enum NavigationState {
|
|
|
2105
2373
|
/** Navigation session station type */
|
|
2106
2374
|
export declare type NavigationStation = {
|
|
2107
2375
|
/** The ID as string of the charging station */
|
|
2108
|
-
station_id?: Maybe<Scalars["
|
|
2376
|
+
station_id?: Maybe<Scalars["ID"]>;
|
|
2109
2377
|
/** GPS location of the charging station */
|
|
2110
2378
|
station_location?: Maybe<Point>;
|
|
2111
2379
|
/** An array with all GPS locations of via points until the next charging station */
|
|
@@ -2117,32 +2385,21 @@ export declare type NavigationStation = {
|
|
|
2117
2385
|
/** Estimated duration, in seconds, from the last known location until the next charging station */
|
|
2118
2386
|
estimated_duration?: Maybe<Scalars["Int"]>;
|
|
2119
2387
|
};
|
|
2120
|
-
/** Input for the navigation session update telemetry data */
|
|
2121
|
-
export declare type NavigationTelemetryUpdateInput = {
|
|
2122
|
-
/** State of charge at the last known location, in kwh */
|
|
2123
|
-
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
2124
|
-
/** Indicates if a vehicle is charging */
|
|
2125
|
-
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
2126
|
-
/** Average tire pressure, in bars. This information should come from telemetry */
|
|
2127
|
-
tire_pressure?: Maybe<Scalars["Float"]>;
|
|
2128
|
-
};
|
|
2129
2388
|
/** Input for the navigation update */
|
|
2130
2389
|
export declare type NavigationUpdateInput = {
|
|
2131
2390
|
/** ID of the navigation session */
|
|
2132
2391
|
id: Scalars["ID"];
|
|
2133
|
-
/** Heading of a vehicle, in degrees */
|
|
2134
|
-
heading?: Maybe<Scalars["Float"]>;
|
|
2135
2392
|
/** A list of locations that were collected since the last update */
|
|
2136
2393
|
location_data: Array<NavigationUpdateLocationsInput>;
|
|
2137
2394
|
/** Telemetry data input */
|
|
2138
|
-
telemetry?: Maybe<
|
|
2395
|
+
telemetry?: Maybe<TelemetryInput>;
|
|
2139
2396
|
};
|
|
2140
2397
|
/** Properties of the location */
|
|
2141
2398
|
export declare type NavigationUpdateLocationPropertiesInput = {
|
|
2142
2399
|
/** Current route leg index corresponding to a location */
|
|
2143
2400
|
route_leg: Scalars["Int"];
|
|
2144
2401
|
/** Speed at a location, in km/h */
|
|
2145
|
-
speed
|
|
2402
|
+
speed?: Maybe<Scalars["Float"]>;
|
|
2146
2403
|
/** UNIX timestamp at location, in seconds */
|
|
2147
2404
|
timestamp: Scalars["Int"];
|
|
2148
2405
|
/** Altitude information, in meters. This is optional */
|
|
@@ -2155,10 +2412,6 @@ export declare type NavigationUpdateLocationsInput = {
|
|
|
2155
2412
|
/** Extra information about the location */
|
|
2156
2413
|
properties: NavigationUpdateLocationPropertiesInput;
|
|
2157
2414
|
};
|
|
2158
|
-
export declare type NewConnectedVehicleOptions = {
|
|
2159
|
-
/** Redirect uri */
|
|
2160
|
-
redirect_uri?: Maybe<Scalars["PlainString"]>;
|
|
2161
|
-
};
|
|
2162
2415
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2163
2416
|
export declare type OCPIAdditionalGeoLocation = {
|
|
2164
2417
|
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
@@ -2639,6 +2892,89 @@ export declare enum OCPITariffType {
|
|
|
2639
2892
|
/** 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 */
|
|
2640
2893
|
REGULAR = "REGULAR"
|
|
2641
2894
|
}
|
|
2895
|
+
/** List of charging modes that are supported */
|
|
2896
|
+
export declare enum OICPChargingModes {
|
|
2897
|
+
MODE_1 = "mode_1",
|
|
2898
|
+
MODE_2 = "mode_2",
|
|
2899
|
+
MODE_3 = "mode_3",
|
|
2900
|
+
MODE_4 = "mode_4",
|
|
2901
|
+
CHADEMO = "chademo"
|
|
2902
|
+
}
|
|
2903
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
2904
|
+
export declare type OICPConnectorCustomProperties = {
|
|
2905
|
+
/** Returns whether the connector is able to deliver different power outputs */
|
|
2906
|
+
dynamic_power_level?: Maybe<Scalars["Boolean"]>;
|
|
2907
|
+
/** List of charging modes that are supported as specified by IEC 61851-1 */
|
|
2908
|
+
charging_modes?: Maybe<Array<OICPChargingModes>>;
|
|
2909
|
+
};
|
|
2910
|
+
/** List of authentication modes that are supported */
|
|
2911
|
+
export declare enum OICPEvseAuthenticationMode {
|
|
2912
|
+
NFC_RFID_CLASSIC = "nfc_rfid_classic",
|
|
2913
|
+
NFC_RFID_DESFIRE = "nfc_rfid_desfire",
|
|
2914
|
+
PNC = "pnc",
|
|
2915
|
+
REMOTE = "remote",
|
|
2916
|
+
DIRECT_PAYMENT = "direct_payment",
|
|
2917
|
+
NO_AUTHENTICATION_REQUIRED = "no_authentication_required"
|
|
2918
|
+
}
|
|
2919
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2920
|
+
export declare type OICPEvseCustomProperties = {
|
|
2921
|
+
/** List of authentication modes that are supported */
|
|
2922
|
+
authentication_modes: Array<OICPEvseAuthenticationMode>;
|
|
2923
|
+
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh */
|
|
2924
|
+
max_capacity?: Maybe<Scalars["Int"]>;
|
|
2925
|
+
/** List of payment options that are supported */
|
|
2926
|
+
payment_options: Array<OICPPaymentOptions>;
|
|
2927
|
+
/** List of value added services that are supported */
|
|
2928
|
+
value_added_services: Array<OICPValueAddedServices>;
|
|
2929
|
+
/** List of additional info by locale */
|
|
2930
|
+
additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;
|
|
2931
|
+
/** When the value is set to false this station does not support remote start and stop by Hubject */
|
|
2932
|
+
is_hubject_compatible: Scalars["Boolean"];
|
|
2933
|
+
/** Name of the charging point manufacturer */
|
|
2934
|
+
hardware_manufacturer?: Maybe<Scalars["String"]>;
|
|
2935
|
+
};
|
|
2936
|
+
export declare type OICPEvseCustomPropertiesAdditionalInfo = {
|
|
2937
|
+
/** The language in which the additional info text is provided */
|
|
2938
|
+
lang?: Maybe<Scalars["String"]>;
|
|
2939
|
+
/** Additional info text value */
|
|
2940
|
+
value?: Maybe<Scalars["String"]>;
|
|
2941
|
+
};
|
|
2942
|
+
/** List of payment options that are supported */
|
|
2943
|
+
export declare enum OICPPaymentOptions {
|
|
2944
|
+
NO_PAYMENT = "no_payment",
|
|
2945
|
+
DIRECT = "direct",
|
|
2946
|
+
CONTRACT = "contract"
|
|
2947
|
+
}
|
|
2948
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2949
|
+
export declare type OICPStationCustomProperties = {
|
|
2950
|
+
/** Returns whether the station is a parking facility */
|
|
2951
|
+
parking_facility?: Maybe<Scalars["Boolean"]>;
|
|
2952
|
+
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1 */
|
|
2953
|
+
parking_spot?: Maybe<Scalars["String"]>;
|
|
2954
|
+
/** Returns information on how the charging station provides metering law data */
|
|
2955
|
+
calibration_law_data_availability: Scalars["String"];
|
|
2956
|
+
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future */
|
|
2957
|
+
clearinghouse_id?: Maybe<Scalars["String"]>;
|
|
2958
|
+
};
|
|
2959
|
+
/** List of value added services that are supported */
|
|
2960
|
+
export declare enum OICPValueAddedServices {
|
|
2961
|
+
RESERVATION = "reservation",
|
|
2962
|
+
DYNAMIC_PRICING = "dynamic_pricing",
|
|
2963
|
+
PARKING_SENSORS = "parking_sensors",
|
|
2964
|
+
MAXIMUM_POWER_CHARGING = "maximum_power_charging",
|
|
2965
|
+
PREDICTIVE_CHARGE_POINT_USAGE = "predictive_charge_point_usage",
|
|
2966
|
+
CHARGING_PLANS = "charging_plans",
|
|
2967
|
+
ROOF_PROVIDED = "roof_provided",
|
|
2968
|
+
NONE = "none"
|
|
2969
|
+
}
|
|
2970
|
+
export declare type OdometerInput = {
|
|
2971
|
+
/** Value of the vehicle's odometer */
|
|
2972
|
+
value: Scalars["Float"];
|
|
2973
|
+
/** Type of the value of the vehicle's odometer */
|
|
2974
|
+
type: DistanceUnit;
|
|
2975
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
2976
|
+
source?: Maybe<TelemetryInputSource>;
|
|
2977
|
+
};
|
|
2642
2978
|
/** The operator data which extends OCPI BusinessDetails */
|
|
2643
2979
|
export declare type Operator = {
|
|
2644
2980
|
/** Unique operator ID */
|
|
@@ -2682,6 +3018,14 @@ export declare type OperatorListQuery = {
|
|
|
2682
3018
|
/** Exact country code */
|
|
2683
3019
|
country?: Maybe<Scalars["String"]>;
|
|
2684
3020
|
};
|
|
3021
|
+
export declare type OutsideTempInput = {
|
|
3022
|
+
/** Value of the outside temperature */
|
|
3023
|
+
value: Scalars["Float"];
|
|
3024
|
+
/** Type of the value of the outside temperature */
|
|
3025
|
+
type: TemperatureUnit;
|
|
3026
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
3027
|
+
source?: Maybe<TelemetryInputSource>;
|
|
3028
|
+
};
|
|
2685
3029
|
export declare enum ParkingCost {
|
|
2686
3030
|
/** Parking is free */
|
|
2687
3031
|
FREE = "free",
|
|
@@ -2722,22 +3066,19 @@ export declare type PointInput = {
|
|
|
2722
3066
|
export declare enum PointType {
|
|
2723
3067
|
POINT = "Point"
|
|
2724
3068
|
}
|
|
2725
|
-
/** A GeoJSON Polygon */
|
|
2726
|
-
export declare type Polygon = {
|
|
2727
|
-
/** Polygon type */
|
|
2728
|
-
type: PolygonType;
|
|
2729
|
-
/** List of coordinates representing a polygon */
|
|
2730
|
-
coordinates: Array<Maybe<Array<Maybe<Array<Maybe<Scalars["Float"]>>>>>>;
|
|
2731
|
-
};
|
|
2732
3069
|
/** Polygon properties */
|
|
2733
3070
|
export declare type PolygonProperties = {
|
|
2734
3071
|
/** Index of the feature inside the list */
|
|
2735
3072
|
index?: Maybe<Scalars["Int"]>;
|
|
2736
3073
|
};
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
3074
|
+
export declare type PowerInput = {
|
|
3075
|
+
/** Value of the positive or negative power. When negative the vehicle is charging */
|
|
3076
|
+
value: Scalars["Float"];
|
|
3077
|
+
/** Type of the value of the power */
|
|
3078
|
+
type: PowerUnit;
|
|
3079
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
3080
|
+
source?: Maybe<TelemetryInputSource>;
|
|
3081
|
+
};
|
|
2741
3082
|
/** The list of powers for the speed type */
|
|
2742
3083
|
export declare type PowerList = {
|
|
2743
3084
|
/** The maximum power the plug provides in kW */
|
|
@@ -2752,6 +3093,18 @@ export declare type PowerStats = {
|
|
|
2752
3093
|
/** The list of powers for the speed type */
|
|
2753
3094
|
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
2754
3095
|
};
|
|
3096
|
+
export declare enum PowerUnit {
|
|
3097
|
+
/** Return the power in kilowatts */
|
|
3098
|
+
KILOWATT = "kilowatt",
|
|
3099
|
+
/** Return the power in horsepower */
|
|
3100
|
+
HORSEPOWER = "horsepower"
|
|
3101
|
+
}
|
|
3102
|
+
export declare enum PressureUnit {
|
|
3103
|
+
/** Return the pressure in bar */
|
|
3104
|
+
BAR = "bar",
|
|
3105
|
+
/** Return the pressure in pounds per square inch */
|
|
3106
|
+
POUNDS_PER_SQUARE_INCH = "pounds_per_square_inch"
|
|
3107
|
+
}
|
|
2755
3108
|
/** The price model */
|
|
2756
3109
|
export declare type Price = {
|
|
2757
3110
|
/** The value of the price */
|
|
@@ -2816,9 +3169,9 @@ export declare type Query = {
|
|
|
2816
3169
|
carPremium?: Maybe<CarPremium>;
|
|
2817
3170
|
/** Get a full list of cars */
|
|
2818
3171
|
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
2819
|
-
/** [BETA] Get connected vehicles
|
|
3172
|
+
/** [BETA] Get a connected vehicles by id */
|
|
2820
3173
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2821
|
-
/** [BETA] Get
|
|
3174
|
+
/** [BETA] Get the connected vehicles for the current user */
|
|
2822
3175
|
connectedVehicleList?: Maybe<Array<Maybe<ConnectedVehicle>>>;
|
|
2823
3176
|
/** [BETA] Retrieve live vehicle data by connected vehicle id */
|
|
2824
3177
|
connectedVehicleData?: Maybe<VehicleData>;
|
|
@@ -2856,6 +3209,12 @@ export declare type Query = {
|
|
|
2856
3209
|
tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
2857
3210
|
/** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
|
|
2858
3211
|
navigationMapping?: Maybe<Scalars["JSON"]>;
|
|
3212
|
+
/** [BETA] Get information about a vehicle by its ID */
|
|
3213
|
+
vehicle?: Maybe<Vehicle>;
|
|
3214
|
+
/** [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. */
|
|
3215
|
+
vehiclePremium?: Maybe<VehiclePremium>;
|
|
3216
|
+
/** [BETA] Get a full list of vehicles */
|
|
3217
|
+
vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
|
|
2859
3218
|
};
|
|
2860
3219
|
export declare type QueryamenityListArgs = {
|
|
2861
3220
|
stationId: Scalars["ID"];
|
|
@@ -2877,6 +3236,11 @@ export declare type QuerycarListArgs = {
|
|
|
2877
3236
|
export declare type QueryconnectedVehicleArgs = {
|
|
2878
3237
|
id: Scalars["ID"];
|
|
2879
3238
|
};
|
|
3239
|
+
export declare type QueryconnectedVehicleListArgs = {
|
|
3240
|
+
filter?: Maybe<ConnectedVehicleListFilter>;
|
|
3241
|
+
size?: Maybe<Scalars["Int"]>;
|
|
3242
|
+
page?: Maybe<Scalars["Int"]>;
|
|
3243
|
+
};
|
|
2880
3244
|
export declare type QueryconnectedVehicleDataArgs = {
|
|
2881
3245
|
id: Scalars["ID"];
|
|
2882
3246
|
};
|
|
@@ -2914,7 +3278,8 @@ export declare type QueryroutePathArgs = {
|
|
|
2914
3278
|
alternativeId?: Maybe<Scalars["ID"]>;
|
|
2915
3279
|
};
|
|
2916
3280
|
export declare type QuerystationArgs = {
|
|
2917
|
-
id
|
|
3281
|
+
id?: Maybe<Scalars["ID"]>;
|
|
3282
|
+
evse_id?: Maybe<Scalars["String"]>;
|
|
2918
3283
|
};
|
|
2919
3284
|
export declare type QuerystationListArgs = {
|
|
2920
3285
|
query?: Maybe<StationListQuery>;
|
|
@@ -2943,13 +3308,28 @@ export declare type QuerynavigationMappingArgs = {
|
|
|
2943
3308
|
precision?: Maybe<Scalars["Int"]>;
|
|
2944
3309
|
language?: Maybe<MappingLanguage>;
|
|
2945
3310
|
};
|
|
3311
|
+
export declare type QueryvehicleArgs = {
|
|
3312
|
+
id: Scalars["ID"];
|
|
3313
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3314
|
+
};
|
|
3315
|
+
export declare type QueryvehiclePremiumArgs = {
|
|
3316
|
+
id: Scalars["ID"];
|
|
3317
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3318
|
+
};
|
|
3319
|
+
export declare type QueryvehicleListArgs = {
|
|
3320
|
+
search?: Maybe<Scalars["String"]>;
|
|
3321
|
+
filter?: Maybe<VehicleListFilter>;
|
|
3322
|
+
country?: Maybe<CountryCodeAlpha2>;
|
|
3323
|
+
size?: Maybe<Scalars["Int"]>;
|
|
3324
|
+
page?: Maybe<Scalars["Int"]>;
|
|
3325
|
+
};
|
|
2946
3326
|
export declare type RemoveConnectedVehicleInput = {
|
|
2947
3327
|
/** Id from the connected vehicle */
|
|
2948
3328
|
id: Scalars["ID"];
|
|
2949
3329
|
};
|
|
2950
3330
|
/** EV specific data for a route request */
|
|
2951
3331
|
export declare type RequestEv = {
|
|
2952
|
-
/** Internal ID of a
|
|
3332
|
+
/** Internal ID of a Vehicle */
|
|
2953
3333
|
id?: Maybe<Scalars["ID"]>;
|
|
2954
3334
|
/** EV battery specific data */
|
|
2955
3335
|
battery?: Maybe<RequestEvBattery>;
|
|
@@ -2974,7 +3354,7 @@ export declare type RequestEv = {
|
|
|
2974
3354
|
consumption?: Maybe<RequestEvConsumption>;
|
|
2975
3355
|
};
|
|
2976
3356
|
export declare type RequestEvBattery = {
|
|
2977
|
-
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the
|
|
3357
|
+
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the vehicle battery.usable_kwh */
|
|
2978
3358
|
capacity?: Maybe<RequestEvBatteryValue>;
|
|
2979
3359
|
/** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value */
|
|
2980
3360
|
capacityKwh?: Maybe<Scalars["Float"]>;
|
|
@@ -2982,17 +3362,17 @@ export declare type RequestEvBattery = {
|
|
|
2982
3362
|
stateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
2983
3363
|
/** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge */
|
|
2984
3364
|
stateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
2985
|
-
/** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the
|
|
3365
|
+
/** 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 */
|
|
2986
3366
|
finalStateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
2987
3367
|
/** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge */
|
|
2988
3368
|
finalStateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
2989
3369
|
};
|
|
2990
3370
|
export declare type RequestEvBatteryInput = {
|
|
2991
|
-
/** 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
|
|
3371
|
+
/** 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 */
|
|
2992
3372
|
capacity?: Maybe<RequestEvBatteryInputValue>;
|
|
2993
|
-
/** 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
|
|
3373
|
+
/** 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 */
|
|
2994
3374
|
stateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
2995
|
-
/** Desired final amount of energy in a battery. The value should be between 0 and 80% of the
|
|
3375
|
+
/** 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 */
|
|
2996
3376
|
finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
2997
3377
|
};
|
|
2998
3378
|
export declare type RequestEvBatteryInputValue = {
|
|
@@ -3012,7 +3392,7 @@ export declare type RequestEvConsumption = {
|
|
|
3012
3392
|
aux?: Maybe<CarConsumption>;
|
|
3013
3393
|
/** The consumption, in kWh, of the battery management system */
|
|
3014
3394
|
bms?: Maybe<CarConsumption>;
|
|
3015
|
-
/** The consumption, in kWh, of the
|
|
3395
|
+
/** The consumption, in kWh, of the vehicle in idle mode */
|
|
3016
3396
|
idle?: Maybe<CarConsumption>;
|
|
3017
3397
|
};
|
|
3018
3398
|
export declare type RequestEvConsumptionInput = {
|
|
@@ -3020,11 +3400,11 @@ export declare type RequestEvConsumptionInput = {
|
|
|
3020
3400
|
aux?: Maybe<CarConsumptionInput>;
|
|
3021
3401
|
/** Consumption, in kWh, of the battery management system */
|
|
3022
3402
|
bms?: Maybe<CarConsumptionInput>;
|
|
3023
|
-
/** Consumption, in kWh, of the
|
|
3403
|
+
/** Consumption, in kWh, of the vehicle in idle mode */
|
|
3024
3404
|
idle?: Maybe<CarConsumptionInput>;
|
|
3025
3405
|
};
|
|
3026
3406
|
export declare type RequestEvInput = {
|
|
3027
|
-
/** Internal ID of a
|
|
3407
|
+
/** Internal ID of a Vehicle */
|
|
3028
3408
|
id: Scalars["ID"];
|
|
3029
3409
|
/** The EV battery specific data */
|
|
3030
3410
|
battery?: Maybe<RequestEvBatteryInput>;
|
|
@@ -3064,10 +3444,17 @@ export declare type RequestInput = {
|
|
|
3064
3444
|
ev: RequestEvInput;
|
|
3065
3445
|
/** Route request data */
|
|
3066
3446
|
routeRequest: RequestRouteInput;
|
|
3447
|
+
/** Telemetry data used to overwrite routing parameters */
|
|
3448
|
+
telemetry?: Maybe<Scalars["JSON"]>;
|
|
3067
3449
|
};
|
|
3068
3450
|
export declare type RequestRoute = {
|
|
3069
|
-
/**
|
|
3451
|
+
/**
|
|
3452
|
+
* Requested amenities near the stations, within a 1 kilometer radius
|
|
3453
|
+
* @deprecated Will be removed. Use the amenity preferences instead
|
|
3454
|
+
*/
|
|
3070
3455
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3456
|
+
/** Amenity preferences for a route */
|
|
3457
|
+
amenity_preferences?: Maybe<RouteAmenityPreferences>;
|
|
3071
3458
|
/**
|
|
3072
3459
|
* Requested operators
|
|
3073
3460
|
* @deprecated Will be removed. Use the operators property instead
|
|
@@ -3103,8 +3490,10 @@ export declare type RequestRoute = {
|
|
|
3103
3490
|
chargeMode?: Maybe<ChargeMode>;
|
|
3104
3491
|
};
|
|
3105
3492
|
export declare type RequestRouteInput = {
|
|
3106
|
-
/** A list of desired amenities near the stations, with a 1
|
|
3493
|
+
/** Deprecated: in favor of amenity preferences. A list of desired amenities near the stations, with a 1 kilometer radius */
|
|
3107
3494
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3495
|
+
/** Amenity preferences for a route */
|
|
3496
|
+
amenity_preferences?: Maybe<AmenityPreferencesInput>;
|
|
3108
3497
|
/** Deprecated: in favor of operators. A list of requested operators */
|
|
3109
3498
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3110
3499
|
/** Deprecated: in favor of operators. Flag which indicates if the operators are required */
|
|
@@ -3148,7 +3537,7 @@ export declare type Review = {
|
|
|
3148
3537
|
message?: Maybe<Scalars["String"]>;
|
|
3149
3538
|
/** Locale of a message */
|
|
3150
3539
|
locale?: Maybe<Scalars["String"]>;
|
|
3151
|
-
/**
|
|
3540
|
+
/** Vehicle that was provided/selected by a user */
|
|
3152
3541
|
ev?: Maybe<Car>;
|
|
3153
3542
|
/** Plug type that was provided/selected by a user */
|
|
3154
3543
|
plugType?: Maybe<ConnectorType>;
|
|
@@ -3171,7 +3560,7 @@ export declare type ReviewAdd = {
|
|
|
3171
3560
|
message?: Maybe<Scalars["String"]>;
|
|
3172
3561
|
/** Locale of a message */
|
|
3173
3562
|
locale?: Maybe<Scalars["String"]>;
|
|
3174
|
-
/** ID of the
|
|
3563
|
+
/** ID of the vehicle that was provided/selected by a user */
|
|
3175
3564
|
ev?: Maybe<Scalars["String"]>;
|
|
3176
3565
|
/** Plug type that was provided/selected by a user */
|
|
3177
3566
|
plugType?: Maybe<ConnectorType>;
|
|
@@ -3241,6 +3630,8 @@ export declare type Route = {
|
|
|
3241
3630
|
alternatives?: Maybe<Array<Maybe<RouteAlternative>>>;
|
|
3242
3631
|
/** EV specific data for a route request */
|
|
3243
3632
|
ev?: Maybe<RequestEv>;
|
|
3633
|
+
/** Route telemetry data */
|
|
3634
|
+
telemetry?: Maybe<Scalars["JSON"]>;
|
|
3244
3635
|
/** @deprecated You will receive null values */
|
|
3245
3636
|
user?: Maybe<RequestUser>;
|
|
3246
3637
|
/** Route request data */
|
|
@@ -3342,6 +3733,13 @@ export declare enum RouteAlternativeType {
|
|
|
3342
3733
|
/** An alternative to the fastest route */
|
|
3343
3734
|
ALTERNATIVE = "alternative"
|
|
3344
3735
|
}
|
|
3736
|
+
/** Amenity preferences for a route */
|
|
3737
|
+
export declare type RouteAmenityPreferences = {
|
|
3738
|
+
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius */
|
|
3739
|
+
all_charge_stops?: Maybe<Array<AmenityType>>;
|
|
3740
|
+
/** Scheduled charge stops, with a specified amenity and timeline */
|
|
3741
|
+
scheduled_charge_stops?: Maybe<Array<RouteScheduledChargeStop>>;
|
|
3742
|
+
};
|
|
3345
3743
|
export declare type RouteApp = {
|
|
3346
3744
|
/** ID of the app who requested a route */
|
|
3347
3745
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -3553,6 +3951,19 @@ export declare type RoutePath = {
|
|
|
3553
3951
|
/** State of charge, in kWh, of a route path segment */
|
|
3554
3952
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
3555
3953
|
};
|
|
3954
|
+
/** Scheduled charge stop along a route */
|
|
3955
|
+
export declare type RouteScheduledChargeStop = {
|
|
3956
|
+
/** List of amenity types */
|
|
3957
|
+
types?: Maybe<Array<Maybe<AmenityType>>>;
|
|
3958
|
+
/** Duration at the amenity, in seconds */
|
|
3959
|
+
duration?: Maybe<Scalars["Int"]>;
|
|
3960
|
+
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800 */
|
|
3961
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
3962
|
+
/** Desired drive time before a scheduled stop after leaving the previous stop, in seconds */
|
|
3963
|
+
stop_after?: Maybe<Scalars["Int"]>;
|
|
3964
|
+
/** Maximum distance from a station to an amenity, in meters */
|
|
3965
|
+
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
3966
|
+
};
|
|
3556
3967
|
/** The season of the route */
|
|
3557
3968
|
export declare enum RouteSeason {
|
|
3558
3969
|
/** We suppose it is summer and we have the best weather conditions */
|
|
@@ -3600,7 +4011,7 @@ export declare type RouteStep = {
|
|
|
3600
4011
|
distance?: Maybe<Scalars["Int"]>;
|
|
3601
4012
|
/** Total drive time from the start to the end of a step, in seconds */
|
|
3602
4013
|
duration?: Maybe<Scalars["Int"]>;
|
|
3603
|
-
/** Total
|
|
4014
|
+
/** Total energy used in a step in kWh */
|
|
3604
4015
|
consumption?: Maybe<Scalars["Float"]>;
|
|
3605
4016
|
};
|
|
3606
4017
|
export declare type RouteSteppolylineArgs = {
|
|
@@ -3615,6 +4026,25 @@ export declare enum RouteTagType {
|
|
|
3615
4026
|
WALKING = "walking",
|
|
3616
4027
|
CROSSBORDER = "crossborder"
|
|
3617
4028
|
}
|
|
4029
|
+
/** Scheduled charge stop along a route */
|
|
4030
|
+
export declare type ScheduledChargeStopInput = {
|
|
4031
|
+
/** List of amenity types */
|
|
4032
|
+
types: Array<AmenityType>;
|
|
4033
|
+
/** Duration at the amenity, in seconds. The value should be between 900 and 86400 */
|
|
4034
|
+
duration: Scalars["Int"];
|
|
4035
|
+
/** Maximum allowed offset from the stop_after value in seconds. Default is 1800 */
|
|
4036
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
4037
|
+
/** Desired drive time for a scheduled stop after leaving the origin point, in seconds */
|
|
4038
|
+
stop_after: Scalars["Int"];
|
|
4039
|
+
/** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000. Default is 1000 */
|
|
4040
|
+
max_distance_from_station?: Maybe<Scalars["Int"]>;
|
|
4041
|
+
};
|
|
4042
|
+
export declare enum SpeedUnit {
|
|
4043
|
+
/** Return the speed in kilometers per hour */
|
|
4044
|
+
KILOMETERS_PER_HOUR = "kilometers_per_hour",
|
|
4045
|
+
/** Return the speed in miles per hour */
|
|
4046
|
+
MILES_PER_HOUR = "miles_per_hour"
|
|
4047
|
+
}
|
|
3618
4048
|
/** Standards(plug type) stats model */
|
|
3619
4049
|
export declare type StandardStats = {
|
|
3620
4050
|
/** The plug type */
|
|
@@ -3622,6 +4052,24 @@ export declare type StandardStats = {
|
|
|
3622
4052
|
/** The total number of stations with the specified plug */
|
|
3623
4053
|
total?: Maybe<Scalars["Int"]>;
|
|
3624
4054
|
};
|
|
4055
|
+
export declare type StateOfChargeInput = {
|
|
4056
|
+
/** Value of the state of charge of the vehicle */
|
|
4057
|
+
value: Scalars["Float"];
|
|
4058
|
+
/** Type of the state of charge of the vehicle */
|
|
4059
|
+
type: BatteryInputType;
|
|
4060
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4061
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4062
|
+
};
|
|
4063
|
+
export declare enum StateOfChargeUnit {
|
|
4064
|
+
/** Return the state of charge in kilometers */
|
|
4065
|
+
KILOMETER = "kilometer",
|
|
4066
|
+
/** Return the speed of charge in miles */
|
|
4067
|
+
MILE = "mile",
|
|
4068
|
+
/** Return the speed of charge in kilowatt hours */
|
|
4069
|
+
KILOWATT_HOUR = "kilowatt_hour",
|
|
4070
|
+
/** Return the speed of charge in a percentage */
|
|
4071
|
+
PERCENTAGE = "percentage"
|
|
4072
|
+
}
|
|
3625
4073
|
/** Station data which extends OCPI Location */
|
|
3626
4074
|
export declare type Station = {
|
|
3627
4075
|
/** Review of a station */
|
|
@@ -3762,6 +4210,8 @@ export declare type StationCustomProperties = {
|
|
|
3762
4210
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
3763
4211
|
/** Type of access to the charging station */
|
|
3764
4212
|
access_type?: Maybe<AccessType>;
|
|
4213
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
4214
|
+
oicp?: Maybe<OICPStationCustomProperties>;
|
|
3765
4215
|
};
|
|
3766
4216
|
/** Filter which can be applied to retrieve the station list action */
|
|
3767
4217
|
export declare type StationListFilter = {
|
|
@@ -3870,23 +4320,1241 @@ export declare type SubscriptionnavigationUpdatedByIdArgs = {
|
|
|
3870
4320
|
export declare type SubscriptionrouteUpdatedByIdArgs = {
|
|
3871
4321
|
id: Scalars["ID"];
|
|
3872
4322
|
};
|
|
4323
|
+
export declare type Telemetry = {
|
|
4324
|
+
/** Value of the auxiliary power consumption of the vehicle */
|
|
4325
|
+
auxiliary_consumption?: Maybe<Scalars["Float"]>;
|
|
4326
|
+
/** Battery current in ampere */
|
|
4327
|
+
battery_current?: Maybe<Scalars["Float"]>;
|
|
4328
|
+
/** Value of the temperature of the battery */
|
|
4329
|
+
battery_temperature?: Maybe<Scalars["Float"]>;
|
|
4330
|
+
/** Battery voltage in volts */
|
|
4331
|
+
battery_voltage?: Maybe<Scalars["Float"]>;
|
|
4332
|
+
/** Is the vehicle currently charging */
|
|
4333
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
4334
|
+
/** Value of the rate of charge of the battery */
|
|
4335
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
4336
|
+
/** Value of the amount of battery charged */
|
|
4337
|
+
charge_total?: Maybe<Scalars["Float"]>;
|
|
4338
|
+
/** Value of the current weight of the occupants */
|
|
4339
|
+
total_occupant_weight?: Maybe<Scalars["Float"]>;
|
|
4340
|
+
/** Value of the current weight of the cargo */
|
|
4341
|
+
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
4342
|
+
/** Value of the current elevation */
|
|
4343
|
+
elevation?: Maybe<Scalars["Float"]>;
|
|
4344
|
+
/** Current heading in degrees */
|
|
4345
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
4346
|
+
/** RPM of the motor */
|
|
4347
|
+
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
4348
|
+
/** Number of occupants present in the vehicle */
|
|
4349
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
4350
|
+
/** Value of the vehicle's odometer */
|
|
4351
|
+
odometer?: Maybe<Scalars["Float"]>;
|
|
4352
|
+
/** Value of the outside temperature */
|
|
4353
|
+
outside_temperature?: Maybe<Scalars["Float"]>;
|
|
4354
|
+
/** Vehicle is in park, neutral or turned off */
|
|
4355
|
+
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
4356
|
+
/** Value of the positive or negative power. When negative the vehicle is charging */
|
|
4357
|
+
power?: Maybe<Scalars["Float"]>;
|
|
4358
|
+
/** Value of the state of charge of the vehicle */
|
|
4359
|
+
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
4360
|
+
/** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear */
|
|
4361
|
+
tire_pressure?: Maybe<Array<Scalars["Float"]>>;
|
|
4362
|
+
/** UNIX timestamp in seconds */
|
|
4363
|
+
timestamp?: Maybe<Scalars["Int"]>;
|
|
4364
|
+
/** Value of the vehicle speed */
|
|
4365
|
+
vehicle_speed?: Maybe<Scalars["Float"]>;
|
|
4366
|
+
/** Custom input fields can be added based on telemetry architecture */
|
|
4367
|
+
custom?: Maybe<Scalars["JSON"]>;
|
|
4368
|
+
};
|
|
4369
|
+
export declare type Telemetryauxiliary_consumptionArgs = {
|
|
4370
|
+
unit?: Maybe<AuxiliaryConsumptionUnit>;
|
|
4371
|
+
};
|
|
4372
|
+
export declare type Telemetrybattery_temperatureArgs = {
|
|
4373
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4374
|
+
};
|
|
4375
|
+
export declare type Telemetrycharge_speedArgs = {
|
|
4376
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
4377
|
+
};
|
|
4378
|
+
export declare type Telemetrycharge_totalArgs = {
|
|
4379
|
+
unit?: Maybe<BatteryInputType>;
|
|
4380
|
+
};
|
|
4381
|
+
export declare type Telemetrytotal_occupant_weightArgs = {
|
|
4382
|
+
unit?: Maybe<WeightUnit>;
|
|
4383
|
+
};
|
|
4384
|
+
export declare type Telemetrytotal_cargo_weightArgs = {
|
|
4385
|
+
unit?: Maybe<WeightUnit>;
|
|
4386
|
+
};
|
|
4387
|
+
export declare type TelemetryelevationArgs = {
|
|
4388
|
+
unit?: Maybe<ElevationUnit>;
|
|
4389
|
+
};
|
|
4390
|
+
export declare type TelemetryodometerArgs = {
|
|
4391
|
+
unit?: Maybe<DistanceUnit>;
|
|
4392
|
+
};
|
|
4393
|
+
export declare type Telemetryoutside_temperatureArgs = {
|
|
4394
|
+
unit?: Maybe<TemperatureUnit>;
|
|
4395
|
+
};
|
|
4396
|
+
export declare type TelemetrypowerArgs = {
|
|
4397
|
+
unit?: Maybe<PowerUnit>;
|
|
4398
|
+
};
|
|
4399
|
+
export declare type Telemetrystate_of_chargeArgs = {
|
|
4400
|
+
unit?: Maybe<BatteryInputType>;
|
|
4401
|
+
};
|
|
4402
|
+
export declare type Telemetrytire_pressureArgs = {
|
|
4403
|
+
unit?: Maybe<PressureUnit>;
|
|
4404
|
+
};
|
|
4405
|
+
export declare type Telemetryvehicle_speedArgs = {
|
|
4406
|
+
unit?: Maybe<SpeedUnit>;
|
|
4407
|
+
};
|
|
4408
|
+
export declare type TelemetryInput = {
|
|
4409
|
+
/** Average auxiliary power consumption */
|
|
4410
|
+
auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;
|
|
4411
|
+
/** Battery current in ampere */
|
|
4412
|
+
battery_current?: Maybe<Scalars["Float"]>;
|
|
4413
|
+
/** Battery temperature */
|
|
4414
|
+
battery_temperature?: Maybe<BatteryTemperatureInput>;
|
|
4415
|
+
/** Battery voltage in volts */
|
|
4416
|
+
battery_voltage?: Maybe<Scalars["Float"]>;
|
|
4417
|
+
/** Is the vehicle currently charging */
|
|
4418
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
4419
|
+
/** Rate of charge */
|
|
4420
|
+
charge_speed?: Maybe<ChargeSpeedInput>;
|
|
4421
|
+
/** Amount charged */
|
|
4422
|
+
charge_total?: Maybe<ChargeTotalInput>;
|
|
4423
|
+
/** Cumulated weight of the occupants */
|
|
4424
|
+
total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
|
|
4425
|
+
/** Weight of the cargo */
|
|
4426
|
+
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
4427
|
+
/** Current elevation */
|
|
4428
|
+
elevation?: Maybe<ElevationInput>;
|
|
4429
|
+
/** Current heading in degrees */
|
|
4430
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
4431
|
+
/** RPM of the motor */
|
|
4432
|
+
motor_rpm?: Maybe<Scalars["Int"]>;
|
|
4433
|
+
/** Number of occupants in the vehicle */
|
|
4434
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
4435
|
+
/** Mileage or odometer reading */
|
|
4436
|
+
odometer?: Maybe<OdometerInput>;
|
|
4437
|
+
/** Outside temperature */
|
|
4438
|
+
outside_temperature?: Maybe<OutsideTempInput>;
|
|
4439
|
+
/** Vehicle is in park, neutral or turned off */
|
|
4440
|
+
is_parked?: Maybe<Scalars["Boolean"]>;
|
|
4441
|
+
/** Vehicle power */
|
|
4442
|
+
power?: Maybe<PowerInput>;
|
|
4443
|
+
/** Battery state of charge */
|
|
4444
|
+
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
4445
|
+
/** Average tire pressures of all wheels, starting from the front side right to left and to the rear */
|
|
4446
|
+
tire_pressure?: Maybe<TirePressureInput>;
|
|
4447
|
+
/** UNIX timestamp in seconds */
|
|
4448
|
+
timestamp?: Maybe<Scalars["Int"]>;
|
|
4449
|
+
/** Vehicle speed */
|
|
4450
|
+
vehicle_speed?: Maybe<VehicleSpeedInput>;
|
|
4451
|
+
/** Custom input fields can be added based on telemetry architecture */
|
|
4452
|
+
custom?: Maybe<Scalars["JSON"]>;
|
|
4453
|
+
};
|
|
4454
|
+
export declare enum TelemetryInputSource {
|
|
4455
|
+
/** Manually inputted value */
|
|
4456
|
+
MANUAL = "manual",
|
|
4457
|
+
/** Value from the vehicle's telemetry */
|
|
4458
|
+
TELEMETRY = "telemetry"
|
|
4459
|
+
}
|
|
4460
|
+
export declare enum TemperatureUnit {
|
|
4461
|
+
/** Return the temperature in Celsius */
|
|
4462
|
+
CELSIUS = "Celsius",
|
|
4463
|
+
/** Return the temperature in Fahrenheit */
|
|
4464
|
+
FAHRENHEIT = "Fahrenheit"
|
|
4465
|
+
}
|
|
4466
|
+
export declare type TirePressureInput = {
|
|
4467
|
+
/** Values for the tire pressure, starting from the front side right to left and to the rear */
|
|
4468
|
+
value: Array<Scalars["Float"]>;
|
|
4469
|
+
/** Type of the value of pressure */
|
|
4470
|
+
type: PressureUnit;
|
|
4471
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4472
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4473
|
+
};
|
|
4474
|
+
export declare enum TorqueUnit {
|
|
4475
|
+
/** Return the torque in newton meters */
|
|
4476
|
+
NEWTON_METER = "newton_meter",
|
|
4477
|
+
/** Return the torque in foot pounds */
|
|
4478
|
+
FOOT_POUND = "foot_pound"
|
|
4479
|
+
}
|
|
4480
|
+
export declare type TotalCargoWeightInput = {
|
|
4481
|
+
/** Value of the current weight of the cargo */
|
|
4482
|
+
value: Scalars["Float"];
|
|
4483
|
+
/** Type of the current weight of the cargo */
|
|
4484
|
+
type: WeightUnit;
|
|
4485
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4486
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4487
|
+
};
|
|
4488
|
+
export declare type TotalOccupantWeightInput = {
|
|
4489
|
+
/** Value of the current weight of the occupants */
|
|
4490
|
+
value: Scalars["Float"];
|
|
4491
|
+
/** Type of the current weight of the occupants */
|
|
4492
|
+
type: WeightUnit;
|
|
4493
|
+
/** Source of inputted data, defaults to 'manual' */
|
|
4494
|
+
source?: Maybe<TelemetryInputSource>;
|
|
4495
|
+
};
|
|
4496
|
+
export declare enum TurningCircleUnit {
|
|
4497
|
+
/** Return the turning circle in meters */
|
|
4498
|
+
METER = "meter",
|
|
4499
|
+
/** Return the turning circle in feet */
|
|
4500
|
+
FOOT = "foot"
|
|
4501
|
+
}
|
|
3873
4502
|
export declare type UpdateConnectedVehicleInput = {
|
|
3874
4503
|
/** Id from the connected vehicle */
|
|
3875
4504
|
id: Scalars["ID"];
|
|
3876
4505
|
/** New label for a connected vehicle */
|
|
3877
4506
|
label?: Maybe<Scalars["PlainString"]>;
|
|
3878
4507
|
};
|
|
4508
|
+
/** Output of a vehicle query */
|
|
4509
|
+
export declare type Vehicle = {
|
|
4510
|
+
/** Vehicles unique ID */
|
|
4511
|
+
id: Scalars["ID"];
|
|
4512
|
+
/** Naming of the vehicle */
|
|
4513
|
+
naming: VehicleNaming;
|
|
4514
|
+
/** Drivetrain of the vehicle */
|
|
4515
|
+
drivetrain: VehicleDrivetrain;
|
|
4516
|
+
/** Available connectors for the vehicle */
|
|
4517
|
+
connectors: Array<VehicleConnector>;
|
|
4518
|
+
/** Adapters for the connectors of the vehicle */
|
|
4519
|
+
adapters: Array<VehicleConnector>;
|
|
4520
|
+
/** Battery of the vehicle */
|
|
4521
|
+
battery: VehicleBattery;
|
|
4522
|
+
/** Body of the vehicle */
|
|
4523
|
+
body: VehicleBody;
|
|
4524
|
+
/** Availability of the vehicle */
|
|
4525
|
+
availability: VehicleAvailability;
|
|
4526
|
+
/** Performance of the vehicle */
|
|
4527
|
+
performance?: Maybe<VehiclePerformance>;
|
|
4528
|
+
/** Range of the vehicle */
|
|
4529
|
+
range: VehicleRange;
|
|
4530
|
+
/** Media of the vehicle */
|
|
4531
|
+
media: VehicleMedia;
|
|
4532
|
+
/** Routing of the vehicle */
|
|
4533
|
+
routing: VehicleRouting;
|
|
4534
|
+
/** Information about vehicle connectivity */
|
|
4535
|
+
connect: Connect;
|
|
4536
|
+
};
|
|
4537
|
+
export declare type VehicleAvailability = {
|
|
4538
|
+
/** Availability of the vehicle */
|
|
4539
|
+
status: VehicleAvailabilityStatus;
|
|
4540
|
+
};
|
|
4541
|
+
/** Availability status of a vehicle */
|
|
4542
|
+
export declare enum VehicleAvailabilityStatus {
|
|
4543
|
+
/** Vehicle no longer for sale in any market / region */
|
|
4544
|
+
NO_LONGER_AVAILABLE = "no_longer_available",
|
|
4545
|
+
/** Vehicle currently for sale in at least one market / region */
|
|
4546
|
+
AVAILABLE = "available",
|
|
4547
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order open */
|
|
4548
|
+
RELEASE_DATE_ANNOUNCED_PREORDERABLE = "release_date_announced_preorderable",
|
|
4549
|
+
/** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open */
|
|
4550
|
+
RELEASE_DATE_ANNOUNCED = "release_date_announced",
|
|
4551
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order open */
|
|
4552
|
+
CONCEPT_VEHICLE_PREORDERABLE = "concept_vehicle_preorderable",
|
|
4553
|
+
/** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open */
|
|
4554
|
+
CONCEPT_VEHICLE = "concept_vehicle",
|
|
4555
|
+
/** Concept vehicle, not close to production and/or unconfirmed, pre-order open */
|
|
4556
|
+
CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE = "concept_vehicle_release_date_tba_preorderable",
|
|
4557
|
+
/** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown */
|
|
4558
|
+
CONCEPT_VEHICLE_RELEASE_DATE_TBA = "concept_vehicle_release_date_tba",
|
|
4559
|
+
/** Status uncertain, introduction date and/or pricing unclear */
|
|
4560
|
+
UNCERTAIN = "uncertain"
|
|
4561
|
+
}
|
|
4562
|
+
export declare type VehicleBattery = {
|
|
4563
|
+
/** Full battery capacity in kWh */
|
|
4564
|
+
full_kwh: Scalars["Float"];
|
|
4565
|
+
/** Usable battery capacity in kWh */
|
|
4566
|
+
usable_kwh: Scalars["Float"];
|
|
4567
|
+
};
|
|
4568
|
+
/** Battery field estimated */
|
|
4569
|
+
export declare enum VehicleBatteryFieldEstimations {
|
|
4570
|
+
/** Both of the battery kWh fields are estimations */
|
|
4571
|
+
B = "B",
|
|
4572
|
+
/** full_kwh field is estimated */
|
|
4573
|
+
F = "F",
|
|
4574
|
+
/** None of the battery kWh fields are estimations */
|
|
4575
|
+
N = "N",
|
|
4576
|
+
/** usable_kwh field is estimated */
|
|
4577
|
+
U = "U"
|
|
4578
|
+
}
|
|
4579
|
+
export declare type VehicleBody = {
|
|
4580
|
+
/** Width with folded mirrors, default in mm */
|
|
4581
|
+
width: Scalars["Float"];
|
|
4582
|
+
/** Height (average height for adjustable suspensions), default in mm */
|
|
4583
|
+
height: Scalars["Float"];
|
|
4584
|
+
/** Weight (unladen), default in kg */
|
|
4585
|
+
weight: VehicleBodyWeight;
|
|
4586
|
+
/** Number of seats */
|
|
4587
|
+
seats: Scalars["Int"];
|
|
4588
|
+
};
|
|
4589
|
+
export declare type VehicleBodywidthArgs = {
|
|
4590
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4591
|
+
};
|
|
4592
|
+
export declare type VehicleBodyheightArgs = {
|
|
4593
|
+
unit?: Maybe<MeasurementUnit>;
|
|
4594
|
+
};
|
|
4595
|
+
export declare type VehicleBodyWeight = {
|
|
4596
|
+
/** Minimum weight, default in kg */
|
|
4597
|
+
minimum?: Maybe<Scalars["Float"]>;
|
|
4598
|
+
/** Nominal weight, default in kg */
|
|
4599
|
+
nominal: Scalars["Float"];
|
|
4600
|
+
/** Maximal weight, default in kg */
|
|
4601
|
+
maximal?: Maybe<Scalars["Float"]>;
|
|
4602
|
+
};
|
|
4603
|
+
export declare type VehicleBodyWeightminimumArgs = {
|
|
4604
|
+
unit?: Maybe<WeightUnit>;
|
|
4605
|
+
};
|
|
4606
|
+
export declare type VehicleBodyWeightnominalArgs = {
|
|
4607
|
+
unit?: Maybe<WeightUnit>;
|
|
4608
|
+
};
|
|
4609
|
+
export declare type VehicleBodyWeightmaximalArgs = {
|
|
4610
|
+
unit?: Maybe<WeightUnit>;
|
|
4611
|
+
};
|
|
4612
|
+
export declare enum VehicleConnectivityProvider {
|
|
4613
|
+
ENODE = "Enode"
|
|
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
|
+
};
|
|
3879
4639
|
export declare type VehicleData = {
|
|
4640
|
+
/** Battery data */
|
|
3880
4641
|
battery?: Maybe<ConnectBattery>;
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
/** Location
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
4642
|
+
/** Charge data */
|
|
4643
|
+
charge?: Maybe<ConnectCharge>;
|
|
4644
|
+
/** Location data */
|
|
4645
|
+
location?: Maybe<ConnectLocation>;
|
|
4646
|
+
/** Odometer data */
|
|
4647
|
+
odometer?: Maybe<ConnectOdometer>;
|
|
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;
|
|
3888
4658
|
};
|
|
3889
|
-
/**
|
|
3890
|
-
export declare
|
|
3891
|
-
|
|
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"];
|
|
3892
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
|
+
}
|