@chargetrip/types 1.47.1 → 1.48.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/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +60 -33
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +60 -33
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +350 -242
- package/graphql.schema.json +1637 -710
- package/package.json +2 -2
- package/src/graphql.ts +378 -253
- package/CHANGELOG.md +0 -412
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -142,7 +142,9 @@ export declare enum Amenities {
|
|
|
142
142
|
BATHROOM = "bathroom",
|
|
143
143
|
SUPERMARKET = "supermarket",
|
|
144
144
|
PLAYGROUND = "playground",
|
|
145
|
-
PHARMACY = "pharmacy"
|
|
145
|
+
PHARMACY = "pharmacy",
|
|
146
|
+
BAKERY = "bakery",
|
|
147
|
+
CONVENIENCE_STORE = "convenience_store"
|
|
146
148
|
}
|
|
147
149
|
/** Amenity data. */
|
|
148
150
|
export declare type Amenity = {
|
|
@@ -159,7 +161,7 @@ export declare type Amenity = {
|
|
|
159
161
|
/** ID provided by an amenity data source as the row ID. */
|
|
160
162
|
external_id: Scalars["String"];
|
|
161
163
|
/** Name of the amenity. */
|
|
162
|
-
name
|
|
164
|
+
name: Scalars["String"];
|
|
163
165
|
/** Geo location coordinates. This is a GeoJSON Point. */
|
|
164
166
|
location: Point;
|
|
165
167
|
/** Address of the amenity. */
|
|
@@ -256,7 +258,9 @@ export declare enum AmenityType {
|
|
|
256
258
|
BATHROOM = "bathroom",
|
|
257
259
|
SUPERMARKET = "supermarket",
|
|
258
260
|
PLAYGROUND = "playground",
|
|
259
|
-
PHARMACY = "pharmacy"
|
|
261
|
+
PHARMACY = "pharmacy",
|
|
262
|
+
BAKERY = "bakery",
|
|
263
|
+
CONVENIENCE_STORE = "convenience_store"
|
|
260
264
|
}
|
|
261
265
|
/** Type of wheelchair accessibility at the amenity. */
|
|
262
266
|
export declare enum AmenityWheelchairAccessibilityType {
|
|
@@ -867,7 +871,11 @@ export declare enum ConnectorType {
|
|
|
867
871
|
/** The connector type is NEMA 14-30, 3 pins, rating of 30 A. */
|
|
868
872
|
NEMA_14_30 = "NEMA_14_30",
|
|
869
873
|
/** The connector type is NEMA 14-50, 3 pins, rating of 50 A. */
|
|
870
|
-
NEMA_14_50 = "NEMA_14_50"
|
|
874
|
+
NEMA_14_50 = "NEMA_14_50",
|
|
875
|
+
/** Guobiao GB/T 20234.2 AC socket/connector. */
|
|
876
|
+
GBT_AC = "GBT_AC",
|
|
877
|
+
/** Guobiao GB/T 20234.3 DC connector. */
|
|
878
|
+
GBT_DC = "GBT_DC"
|
|
871
879
|
}
|
|
872
880
|
export declare enum ConsumptionUnit {
|
|
873
881
|
/** Return the consumption in kilowatt hours per 100 kilometers. */
|
|
@@ -1193,10 +1201,12 @@ export declare type CreateRoute = {
|
|
|
1193
1201
|
departure_time: Scalars["DateTime"];
|
|
1194
1202
|
/** [BETA] List of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */
|
|
1195
1203
|
avoid?: Maybe<Array<RouteAvoid>>;
|
|
1196
|
-
/** [BETA]
|
|
1197
|
-
|
|
1204
|
+
/** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */
|
|
1205
|
+
driving_preferences?: Maybe<RouteDrivingPreferences>;
|
|
1198
1206
|
/** Weather configuration for the route. Defined by a preset or custom weather conditions. */
|
|
1199
1207
|
weather?: Maybe<RouteWeather>;
|
|
1208
|
+
/** Charging stations preferences for route calculation. */
|
|
1209
|
+
station_preferences?: Maybe<RouteStationPreferences>;
|
|
1200
1210
|
};
|
|
1201
1211
|
/** Input for the create route mutation. */
|
|
1202
1212
|
export declare type CreateRouteInput = {
|
|
@@ -1208,7 +1218,7 @@ export declare type CreateRouteInput = {
|
|
|
1208
1218
|
destination: RouteDestinationFeaturePointInput;
|
|
1209
1219
|
/** Optional via points of a route. */
|
|
1210
1220
|
via?: Maybe<Array<RouteViaFeaturePointInput>>;
|
|
1211
|
-
/**
|
|
1221
|
+
/** Operator preferences and restrictions for route calculation. If not specified, excludes operators per project settings, but applies no operator ranking. */
|
|
1212
1222
|
operators?: Maybe<RouteOperatorPreferencesInput>;
|
|
1213
1223
|
/** Optional flag to specify the season. */
|
|
1214
1224
|
season?: Maybe<RouteSeason>;
|
|
@@ -1218,10 +1228,12 @@ export declare type CreateRouteInput = {
|
|
|
1218
1228
|
departure_time?: Maybe<Scalars["DateTime"]>;
|
|
1219
1229
|
/** [BETA] Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */
|
|
1220
1230
|
avoid?: Maybe<Array<RouteAvoid>>;
|
|
1221
|
-
/** [BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. */
|
|
1222
|
-
maximum_speed?: Maybe<MaximumSpeedInput>;
|
|
1223
1231
|
/** Weather configuration for the route. Defined by a preset or custom weather conditions. */
|
|
1224
1232
|
weather?: Maybe<RouteWeatherInput>;
|
|
1233
|
+
/** Charging stations preferences for route calculation. */
|
|
1234
|
+
station_preferences?: Maybe<RouteStationPreferencesInput>;
|
|
1235
|
+
/** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */
|
|
1236
|
+
driving_preferences?: Maybe<RouteDrivingPreferencesInput>;
|
|
1225
1237
|
};
|
|
1226
1238
|
/** Currency in the ISO 4217 format. */
|
|
1227
1239
|
export declare enum Currency {
|
|
@@ -1565,14 +1577,20 @@ export declare enum DimensionUnit {
|
|
|
1565
1577
|
/** Return the dimension in miles. */
|
|
1566
1578
|
MILE = "mile"
|
|
1567
1579
|
}
|
|
1580
|
+
export declare type DistanceInput = {
|
|
1581
|
+
/** Value of the distance. */
|
|
1582
|
+
value: Scalars["Float"];
|
|
1583
|
+
/** Unit of distance. */
|
|
1584
|
+
unit: DistanceUnit;
|
|
1585
|
+
};
|
|
1568
1586
|
export declare enum DistanceUnit {
|
|
1569
|
-
/**
|
|
1587
|
+
/** Distance in meters. */
|
|
1570
1588
|
METER = "meter",
|
|
1571
|
-
/**
|
|
1589
|
+
/** Distance in feet. */
|
|
1572
1590
|
FOOT = "foot",
|
|
1573
|
-
/**
|
|
1591
|
+
/** Distance in kilometers. */
|
|
1574
1592
|
KILOMETER = "kilometer",
|
|
1575
|
-
/**
|
|
1593
|
+
/** Distance in miles. */
|
|
1576
1594
|
MILE = "mile"
|
|
1577
1595
|
}
|
|
1578
1596
|
/** EVSE data which extends OCPI EVSE. */
|
|
@@ -1833,18 +1851,13 @@ export declare enum HeavyVehiclesFacility {
|
|
|
1833
1851
|
/** Secure truck parking. */
|
|
1834
1852
|
SECURE_TRUCK_PARKING = "SECURE_TRUCK_PARKING"
|
|
1835
1853
|
}
|
|
1836
|
-
/** Navigation service providers available */
|
|
1837
|
-
export declare enum InstructionsFormat {
|
|
1838
|
-
/** Chargetrip raw instructions */
|
|
1839
|
-
CHARGETRIP = "Chargetrip",
|
|
1840
|
-
/** Mapbox instructions mapping */
|
|
1841
|
-
MAPBOXV5 = "MapboxV5"
|
|
1842
|
-
}
|
|
1843
1854
|
export declare type Isoline = {
|
|
1844
1855
|
/** Isoline id. */
|
|
1845
1856
|
id: Scalars["ID"];
|
|
1846
1857
|
/** Isoline status. */
|
|
1847
1858
|
status: IsolineStatus;
|
|
1859
|
+
/** Distance from the origin to the furthest reachable point within the isoline. Represents the longest drivable distance, not a straight-line or vehicle range. */
|
|
1860
|
+
maximum_distance?: Maybe<Scalars["Float"]>;
|
|
1848
1861
|
/** Shape of the isoline consisting in a list of multipolygons. */
|
|
1849
1862
|
polygons?: Maybe<Array<Maybe<FeatureMultiPolygon>>>;
|
|
1850
1863
|
/** List of the ferries uniting islands formed by the isoline. */
|
|
@@ -1852,6 +1865,9 @@ export declare type Isoline = {
|
|
|
1852
1865
|
/** The inputted request data for the isoline used to compute it. */
|
|
1853
1866
|
request_input?: Maybe<IsolineRequestInput>;
|
|
1854
1867
|
};
|
|
1868
|
+
export declare type Isolinemaximum_distanceArgs = {
|
|
1869
|
+
unit?: Maybe<DistanceUnit>;
|
|
1870
|
+
};
|
|
1855
1871
|
export declare type IsolineCabin = {
|
|
1856
1872
|
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
1857
1873
|
is_preconditioned?: Maybe<Scalars["Boolean"]>;
|
|
@@ -1905,6 +1921,8 @@ export declare type IsolineInput = {
|
|
|
1905
1921
|
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
1906
1922
|
/** Minimum final battery state of charge. Default is 0 */
|
|
1907
1923
|
final_state_of_charge?: Maybe<StateOfChargeInput>;
|
|
1924
|
+
/** [BETA] User-defined maximum speed used for the isoline. */
|
|
1925
|
+
maximum_speed?: Maybe<MaximumSpeedInput>;
|
|
1908
1926
|
};
|
|
1909
1927
|
/** Granularity of the isoline. */
|
|
1910
1928
|
export declare enum IsolineQuality {
|
|
@@ -1944,6 +1962,8 @@ export declare type IsolineRequestInput = {
|
|
|
1944
1962
|
state_of_charge: Scalars["Float"];
|
|
1945
1963
|
/** Minimum final battery state of charge. */
|
|
1946
1964
|
final_state_of_charge: Scalars["Float"];
|
|
1965
|
+
/** [BETA] Maximum speed to consider when generating the isoline. In the segments where legal speed is lower than this value, the legal speed will be used instead. */
|
|
1966
|
+
maximum_speed?: Maybe<MaximumSpeed>;
|
|
1947
1967
|
};
|
|
1948
1968
|
export declare type IsolineRequestInputtotal_occupant_weightArgs = {
|
|
1949
1969
|
unit?: Maybe<WeightUnit>;
|
|
@@ -1992,18 +2012,6 @@ export declare type LineString = {
|
|
|
1992
2012
|
export declare enum LineStringType {
|
|
1993
2013
|
LINESTRING = "LineString"
|
|
1994
2014
|
}
|
|
1995
|
-
/** Preferred language for the mapping */
|
|
1996
|
-
export declare enum MappingLanguage {
|
|
1997
|
-
/** English(US) */
|
|
1998
|
-
EN = "en"
|
|
1999
|
-
}
|
|
2000
|
-
/** Navigation service providers available */
|
|
2001
|
-
export declare enum MappingProvider {
|
|
2002
|
-
/** Chargetrip raw instructions */
|
|
2003
|
-
CHARGETRIP = "Chargetrip",
|
|
2004
|
-
/** Mapbox instructions mapping */
|
|
2005
|
-
MAPBOXV5 = "MapboxV5"
|
|
2006
|
-
}
|
|
2007
2015
|
export declare type MaximumSpeed = {
|
|
2008
2016
|
/** Numeric value of the user-defined maximum speed. */
|
|
2009
2017
|
value: Scalars["Int"];
|
|
@@ -2112,134 +2120,140 @@ export declare type MutationnewRouteArgs = {
|
|
|
2112
2120
|
export declare type MutationcreateRouteArgs = {
|
|
2113
2121
|
input: CreateRouteInput;
|
|
2114
2122
|
};
|
|
2115
|
-
/** The navigation session data */
|
|
2123
|
+
/** The navigation session data. */
|
|
2116
2124
|
export declare type Navigation = {
|
|
2117
|
-
/** ID of the navigation session */
|
|
2125
|
+
/** ID of the navigation session. */
|
|
2118
2126
|
id: Scalars["ID"];
|
|
2119
|
-
/**
|
|
2120
|
-
|
|
2121
|
-
/** The
|
|
2122
|
-
|
|
2123
|
-
/** The state of a navigation session. The status can be driving, charging, finished, or error */
|
|
2124
|
-
state: NavigationState;
|
|
2125
|
-
/** State of charge at the last known location */
|
|
2126
|
-
state_of_charge: Scalars["Float"];
|
|
2127
|
-
/** Last known location */
|
|
2128
|
-
last_known_location: Point;
|
|
2129
|
-
/** Next charging station */
|
|
2130
|
-
next_station?: Maybe<NavigationStation>;
|
|
2131
|
-
/** A set of alternative charging stations to next station */
|
|
2132
|
-
alternative_stations: Array<NavigationStation>;
|
|
2133
|
-
/** Navigation instructions */
|
|
2134
|
-
instructions?: Maybe<Scalars["JSON"]>;
|
|
2127
|
+
/** Navigation session details overview. */
|
|
2128
|
+
overview: NavigationOverview;
|
|
2129
|
+
/** The status of a navigation session. The status can be driving, charging, finished, or error. */
|
|
2130
|
+
status: NavigationStatus;
|
|
2135
2131
|
/** Navigation meta information. */
|
|
2136
2132
|
meta?: Maybe<NavigationMeta>;
|
|
2137
2133
|
};
|
|
2138
|
-
/**
|
|
2139
|
-
export declare type Navigationstate_of_chargeArgs = {
|
|
2140
|
-
unit?: Maybe<StateOfChargeUnit>;
|
|
2141
|
-
};
|
|
2142
|
-
/** Input for the navigation recalculate */
|
|
2134
|
+
/** Input for the navigation recalculate. */
|
|
2143
2135
|
export declare type NavigationFinishInput = {
|
|
2144
|
-
/** ID of the navigation session */
|
|
2136
|
+
/** ID of the navigation session. */
|
|
2145
2137
|
id: Scalars["ID"];
|
|
2146
|
-
/** Current coordinates */
|
|
2138
|
+
/** Current coordinates. */
|
|
2147
2139
|
current_location: PointInput;
|
|
2148
2140
|
};
|
|
2149
|
-
export declare type NavigationInstructionsInput = {
|
|
2150
|
-
/** Turn by turn instructions format for a route */
|
|
2151
|
-
instructions_format: InstructionsFormat;
|
|
2152
|
-
/** Preferred navigation instructions language. Default: en */
|
|
2153
|
-
language?: Maybe<MappingLanguage>;
|
|
2154
|
-
/** Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6. */
|
|
2155
|
-
precision?: Maybe<Scalars["Int"]>;
|
|
2156
|
-
};
|
|
2157
2141
|
/** Navigation meta information. */
|
|
2158
2142
|
export declare type NavigationMeta = {
|
|
2159
2143
|
/** Creation time of the navigation session. */
|
|
2160
|
-
created_at
|
|
2144
|
+
created_at: Scalars["DateTime"];
|
|
2161
2145
|
/** Last updated time of the navigation session. */
|
|
2162
|
-
updated_at
|
|
2146
|
+
updated_at: Scalars["DateTime"];
|
|
2163
2147
|
};
|
|
2164
|
-
/**
|
|
2148
|
+
/** The navigation session overview details. */
|
|
2149
|
+
export declare type NavigationOverview = {
|
|
2150
|
+
/** State of charge at the last known location. */
|
|
2151
|
+
state_of_charge: Scalars["Float"];
|
|
2152
|
+
/** Last known location. */
|
|
2153
|
+
last_known_location: Point;
|
|
2154
|
+
/** Next charging station. */
|
|
2155
|
+
next_station?: Maybe<NavigationStation>;
|
|
2156
|
+
/** A set of alternative charging stations to next station. */
|
|
2157
|
+
alternative_stations: Array<NavigationStation>;
|
|
2158
|
+
/** Navigation route instructions. */
|
|
2159
|
+
instructions: Array<Maybe<RouteInstruction>>;
|
|
2160
|
+
/** Continuously updated route request input. */
|
|
2161
|
+
live_route_request: CreateRoute;
|
|
2162
|
+
/** Polyline containing encoded coordinates. */
|
|
2163
|
+
polyline: Scalars["String"];
|
|
2164
|
+
};
|
|
2165
|
+
/** The navigation session overview details. */
|
|
2166
|
+
export declare type NavigationOverviewstate_of_chargeArgs = {
|
|
2167
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2168
|
+
};
|
|
2169
|
+
/** The navigation session overview details. */
|
|
2170
|
+
export declare type NavigationOverviewpolylineArgs = {
|
|
2171
|
+
decimals?: Maybe<PolylineInputDecimals>;
|
|
2172
|
+
};
|
|
2173
|
+
/** Input for the navigation recalculate. */
|
|
2165
2174
|
export declare type NavigationRecalculateInput = {
|
|
2166
|
-
/** ID of the navigation session */
|
|
2175
|
+
/** ID of the navigation session. */
|
|
2167
2176
|
id: Scalars["ID"];
|
|
2168
|
-
/** State of charge at origin */
|
|
2177
|
+
/** State of charge at origin. */
|
|
2169
2178
|
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
2170
|
-
/** Origin location of a new route */
|
|
2179
|
+
/** Origin location of a new route. */
|
|
2171
2180
|
current_location: PointInput;
|
|
2172
|
-
/** Via points of a new route. If this field is not sent, the original via points will be used */
|
|
2181
|
+
/** Via points of a new route. If this field is not sent, the original via points will be used. */
|
|
2173
2182
|
via?: Maybe<Array<FeaturePointInput>>;
|
|
2174
|
-
/** Telemetry data input */
|
|
2183
|
+
/** Telemetry data input. */
|
|
2175
2184
|
telemetry?: Maybe<TelemetryInput>;
|
|
2176
2185
|
};
|
|
2177
|
-
/** Input for the navigation start */
|
|
2186
|
+
/** Input for the navigation start. */
|
|
2178
2187
|
export declare type NavigationStartInput = {
|
|
2179
|
-
/** ID of the route of the navigation session */
|
|
2188
|
+
/** ID of the route of the navigation session. */
|
|
2180
2189
|
route_id: Scalars["ID"];
|
|
2181
|
-
/**
|
|
2182
|
-
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2183
|
-
/** Current coordinates */
|
|
2190
|
+
/** Current coordinates. */
|
|
2184
2191
|
current_location: PointInput;
|
|
2185
|
-
/** Instruction input format */
|
|
2186
|
-
instructions: NavigationInstructionsInput;
|
|
2187
2192
|
};
|
|
2188
|
-
/**
|
|
2189
|
-
export declare enum NavigationState {
|
|
2190
|
-
/** Vehicle is driving */
|
|
2191
|
-
DRIVING = "driving",
|
|
2192
|
-
/** Vehicle is charging */
|
|
2193
|
-
CHARGING = "charging",
|
|
2194
|
-
/** Navigation session is completed (either manually or automatically 48 hours after the last update) */
|
|
2195
|
-
FINISHED = "finished",
|
|
2196
|
-
/** Failed to update navigation session due to route error or not found */
|
|
2197
|
-
ERROR = "error"
|
|
2198
|
-
}
|
|
2199
|
-
/** Navigation session station type */
|
|
2193
|
+
/** Navigation session station type. */
|
|
2200
2194
|
export declare type NavigationStation = {
|
|
2201
|
-
/** The ID as string of the charging station */
|
|
2195
|
+
/** The ID as string of the charging station. */
|
|
2202
2196
|
station_id: Scalars["ID"];
|
|
2203
|
-
/** GPS location of the charging station */
|
|
2197
|
+
/** GPS location of the charging station. */
|
|
2204
2198
|
station_location: Point;
|
|
2205
|
-
/** An array with all GPS locations of via points until the next charging station */
|
|
2199
|
+
/** An array with all GPS locations of via points until the next charging station. */
|
|
2206
2200
|
via: Array<Point>;
|
|
2207
|
-
/** Estimated state of charge, at arrival on the next charging station */
|
|
2201
|
+
/** Estimated state of charge, at arrival on the next charging station. */
|
|
2208
2202
|
estimated_state_of_charge: Scalars["Float"];
|
|
2209
|
-
/** Estimated consumption, in kWh, from last the known location until the next charging station */
|
|
2203
|
+
/** Estimated consumption, in kWh, from last the known location until the next charging station. */
|
|
2210
2204
|
estimated_consumption: Scalars["Float"];
|
|
2211
|
-
/** Estimated duration, in seconds, from the last known location until the next charging station */
|
|
2212
|
-
estimated_duration: Scalars["
|
|
2205
|
+
/** Estimated duration, in seconds, from the last known location until the next charging station. */
|
|
2206
|
+
estimated_duration: Scalars["Float"];
|
|
2213
2207
|
};
|
|
2214
|
-
/** Navigation session station type */
|
|
2208
|
+
/** Navigation session station type. */
|
|
2215
2209
|
export declare type NavigationStationestimated_state_of_chargeArgs = {
|
|
2216
2210
|
unit?: Maybe<StateOfChargeUnit>;
|
|
2217
2211
|
};
|
|
2218
|
-
/**
|
|
2212
|
+
/** State of navigation session. */
|
|
2213
|
+
export declare enum NavigationStatus {
|
|
2214
|
+
/** Vehicle is driving. */
|
|
2215
|
+
DRIVING = "driving",
|
|
2216
|
+
/** Vehicle is charging. */
|
|
2217
|
+
CHARGING = "charging",
|
|
2218
|
+
/** Navigation session is completed (either manually or automatically 48 hours after the last update). */
|
|
2219
|
+
FINISHED = "finished",
|
|
2220
|
+
/** Failed to update navigation session due to route error or not found. */
|
|
2221
|
+
ERROR = "error"
|
|
2222
|
+
}
|
|
2223
|
+
/** The navigation session subscription data */
|
|
2224
|
+
export declare type NavigationSubscription = {
|
|
2225
|
+
/** ID of the navigation session. */
|
|
2226
|
+
id: Scalars["ID"];
|
|
2227
|
+
/** The status of a navigation session. The status can be driving, charging, finished, or error. */
|
|
2228
|
+
status: NavigationStatus;
|
|
2229
|
+
/** Navigation meta information. */
|
|
2230
|
+
meta?: Maybe<NavigationMeta>;
|
|
2231
|
+
};
|
|
2232
|
+
/** Input for the navigation update. */
|
|
2219
2233
|
export declare type NavigationUpdateInput = {
|
|
2220
|
-
/** ID of the navigation session */
|
|
2234
|
+
/** ID of the navigation session. */
|
|
2221
2235
|
id: Scalars["ID"];
|
|
2222
|
-
/** A list of locations that were collected since the last update */
|
|
2236
|
+
/** A list of locations that were collected since the last update. */
|
|
2223
2237
|
location_data: Array<NavigationUpdateLocationsInput>;
|
|
2224
|
-
/** Telemetry data input */
|
|
2238
|
+
/** Telemetry data input. */
|
|
2225
2239
|
telemetry?: Maybe<TelemetryInput>;
|
|
2226
2240
|
};
|
|
2227
|
-
/** Properties of the location */
|
|
2241
|
+
/** Properties of the location. */
|
|
2228
2242
|
export declare type NavigationUpdateLocationPropertiesInput = {
|
|
2229
|
-
/** Current route leg index corresponding to a location */
|
|
2243
|
+
/** Current route leg index corresponding to a location. */
|
|
2230
2244
|
route_leg: Scalars["Int"];
|
|
2231
|
-
/** Speed at a location */
|
|
2245
|
+
/** Speed at a location. */
|
|
2232
2246
|
speed?: Maybe<VehicleSpeedInput>;
|
|
2233
|
-
/** UNIX timestamp at location, in seconds */
|
|
2247
|
+
/** UNIX timestamp at location, in seconds. */
|
|
2234
2248
|
timestamp: Scalars["Int"];
|
|
2235
|
-
/** Elevation information */
|
|
2249
|
+
/** Elevation information. */
|
|
2236
2250
|
elevation?: Maybe<ElevationInput>;
|
|
2237
2251
|
};
|
|
2238
|
-
/** Input for the navigation update locations */
|
|
2252
|
+
/** Input for the navigation update locations. */
|
|
2239
2253
|
export declare type NavigationUpdateLocationsInput = {
|
|
2240
|
-
/** GPS location */
|
|
2254
|
+
/** GPS location. */
|
|
2241
2255
|
geometry: PointInput;
|
|
2242
|
-
/** Extra information about the location */
|
|
2256
|
+
/** Extra information about the location. */
|
|
2243
2257
|
properties: NavigationUpdateLocationPropertiesInput;
|
|
2244
2258
|
};
|
|
2245
2259
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
@@ -2366,7 +2380,11 @@ export declare enum OCPIConnectorType {
|
|
|
2366
2380
|
/** The connector type is NEMA 14-30, 3 pins, rating of 30 A */
|
|
2367
2381
|
NEMA_14_30 = "NEMA_14_30",
|
|
2368
2382
|
/** The connector type is NEMA 14-50, 3 pins, rating of 50 A */
|
|
2369
|
-
NEMA_14_50 = "NEMA_14_50"
|
|
2383
|
+
NEMA_14_50 = "NEMA_14_50",
|
|
2384
|
+
/** Guobiao GB/T 20234.2 AC socket/connector. */
|
|
2385
|
+
GBT_AC = "GBT_AC",
|
|
2386
|
+
/** Guobiao GB/T 20234.3 DC connector. */
|
|
2387
|
+
GBT_DC = "GBT_DC"
|
|
2370
2388
|
}
|
|
2371
2389
|
export declare enum OCPIDayOfWeek {
|
|
2372
2390
|
MONDAY = "MONDAY",
|
|
@@ -2848,6 +2866,8 @@ export declare type Operator = {
|
|
|
2848
2866
|
ranking_levels?: Maybe<OperatorRankingLevels>;
|
|
2849
2867
|
/** List of countries where the operator is excluded. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */
|
|
2850
2868
|
excluded_countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2869
|
+
/** List of countries where the operator is avoided. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */
|
|
2870
|
+
avoided_countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2851
2871
|
};
|
|
2852
2872
|
/** Filter which can be applied to retrieve the operator list action. */
|
|
2853
2873
|
export declare type OperatorListFilter = {
|
|
@@ -2873,6 +2893,16 @@ export declare type OperatorListQuery = {
|
|
|
2873
2893
|
/** Exact country code. */
|
|
2874
2894
|
country?: Maybe<Scalars["String"]>;
|
|
2875
2895
|
};
|
|
2896
|
+
export declare enum OperatorPreferenceType {
|
|
2897
|
+
/** Operators that have been set as preferred or required. */
|
|
2898
|
+
RANKED = "ranked",
|
|
2899
|
+
/** Operators that have not been set as neither preferred or required or avoided nor excluded. */
|
|
2900
|
+
UNRANKED = "unranked",
|
|
2901
|
+
/** Operators that have been set to be avoided. */
|
|
2902
|
+
AVOIDED = "avoided",
|
|
2903
|
+
/** Operators that have been set to be excluded. */
|
|
2904
|
+
EXCLUDED = "excluded"
|
|
2905
|
+
}
|
|
2876
2906
|
/** Operator ranking level. */
|
|
2877
2907
|
export declare enum OperatorRankingLevel {
|
|
2878
2908
|
LOW = "low",
|
|
@@ -2921,6 +2951,17 @@ export declare type OutsideTemperatureInput = {
|
|
|
2921
2951
|
/** Source of inputted data. */
|
|
2922
2952
|
source?: Maybe<TelemetryInputSource>;
|
|
2923
2953
|
};
|
|
2954
|
+
/** Information about the list page. */
|
|
2955
|
+
export declare type PageInfo = {
|
|
2956
|
+
/** Flag that indicates if it has a next page. */
|
|
2957
|
+
has_next_page: Scalars["Boolean"];
|
|
2958
|
+
/** Flag that indicates if it has a previous page. */
|
|
2959
|
+
has_previous_page: Scalars["Boolean"];
|
|
2960
|
+
/** Cursor of the first connection of the page. If the page is empty, this is null. */
|
|
2961
|
+
start_cursor?: Maybe<Scalars["String"]>;
|
|
2962
|
+
/** Cursor of the last connection of the page. If the page is empty, this is null. */
|
|
2963
|
+
end_cursor?: Maybe<Scalars["String"]>;
|
|
2964
|
+
};
|
|
2924
2965
|
export declare enum ParkingCost {
|
|
2925
2966
|
/** Parking is free. */
|
|
2926
2967
|
FREE = "free",
|
|
@@ -3087,6 +3128,8 @@ export declare type Query = {
|
|
|
3087
3128
|
getRouteEmissions: RouteDetailsEmissions;
|
|
3088
3129
|
/** Get a route by ID. */
|
|
3089
3130
|
getRoute: RouteResponse;
|
|
3131
|
+
/** [BETA] Search for stations with amenities within a specific time window and distance of a previously calculated route. */
|
|
3132
|
+
getRouteStationsWithAmenities: RouteStationsWithAmenitiesConnection;
|
|
3090
3133
|
/** Get information about a station by its ID. */
|
|
3091
3134
|
station?: Maybe<Station>;
|
|
3092
3135
|
/** Get a full list of stations. */
|
|
@@ -3104,9 +3147,9 @@ export declare type Query = {
|
|
|
3104
3147
|
/** Get a full list of vehicles. */
|
|
3105
3148
|
vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
|
|
3106
3149
|
/** [BETA] Get a full list of vehicle makes. */
|
|
3107
|
-
vehicleMakes:
|
|
3150
|
+
vehicleMakes: VehicleMakesConnection;
|
|
3108
3151
|
/** [BETA] Get a full list of vehicle make models. */
|
|
3109
|
-
vehicleModels:
|
|
3152
|
+
vehicleModels: VehicleModelsConnection;
|
|
3110
3153
|
};
|
|
3111
3154
|
export declare type QueryamenityListArgs = {
|
|
3112
3155
|
stationId: Scalars["ID"];
|
|
@@ -3169,6 +3212,15 @@ export declare type QuerygetRouteEmissionsArgs = {
|
|
|
3169
3212
|
export declare type QuerygetRouteArgs = {
|
|
3170
3213
|
id: Scalars["ID"];
|
|
3171
3214
|
};
|
|
3215
|
+
export declare type QuerygetRouteStationsWithAmenitiesArgs = {
|
|
3216
|
+
route_id: Scalars["ID"];
|
|
3217
|
+
route_details_id: Scalars["ID"];
|
|
3218
|
+
time_window: RouteTimeWindow;
|
|
3219
|
+
amenity_types: Array<AmenityType>;
|
|
3220
|
+
filter?: Maybe<RouteStationsWithAmenityFilter>;
|
|
3221
|
+
first?: Maybe<Scalars["Int"]>;
|
|
3222
|
+
after?: Maybe<Scalars["String"]>;
|
|
3223
|
+
};
|
|
3172
3224
|
export declare type QuerystationArgs = {
|
|
3173
3225
|
id?: Maybe<Scalars["ID"]>;
|
|
3174
3226
|
evse_id?: Maybe<Scalars["String"]>;
|
|
@@ -3213,8 +3265,10 @@ export declare type QueryvehicleMakesArgs = {
|
|
|
3213
3265
|
country?: Maybe<CountryCodeAlpha2>;
|
|
3214
3266
|
};
|
|
3215
3267
|
export declare type QueryvehicleModelsArgs = {
|
|
3216
|
-
filter
|
|
3268
|
+
filter?: Maybe<VehicleModelsFilter>;
|
|
3217
3269
|
country?: Maybe<CountryCodeAlpha2>;
|
|
3270
|
+
first?: Maybe<Scalars["Int"]>;
|
|
3271
|
+
after?: Maybe<Scalars["String"]>;
|
|
3218
3272
|
};
|
|
3219
3273
|
export declare type RemoveConnectedVehicleInput = {
|
|
3220
3274
|
/** Id from the connected vehicle */
|
|
@@ -3544,21 +3598,6 @@ export declare type ReviewTagsInput = {
|
|
|
3544
3598
|
export declare type ReviewUser = {
|
|
3545
3599
|
/** User full name. If a review was added by an anonymous user, this will be null. */
|
|
3546
3600
|
name?: Maybe<Scalars["String"]>;
|
|
3547
|
-
/**
|
|
3548
|
-
* User ID.
|
|
3549
|
-
* @deprecated Not sent back anymore, will be null
|
|
3550
|
-
*/
|
|
3551
|
-
id?: Maybe<Scalars["ID"]>;
|
|
3552
|
-
/**
|
|
3553
|
-
* First name.
|
|
3554
|
-
* @deprecated In favor of name.
|
|
3555
|
-
*/
|
|
3556
|
-
firstName?: Maybe<Scalars["String"]>;
|
|
3557
|
-
/**
|
|
3558
|
-
* Last name.
|
|
3559
|
-
* @deprecated In favor of name
|
|
3560
|
-
*/
|
|
3561
|
-
lastName?: Maybe<Scalars["String"]>;
|
|
3562
3601
|
};
|
|
3563
3602
|
export declare type Route = {
|
|
3564
3603
|
/** Recommended route. */
|
|
@@ -3670,6 +3709,10 @@ export declare enum RouteAlternativeType {
|
|
|
3670
3709
|
/** An alternative to the fastest route. */
|
|
3671
3710
|
ALTERNATIVE = "alternative"
|
|
3672
3711
|
}
|
|
3712
|
+
export declare type RouteAmenityFilter = {
|
|
3713
|
+
/** Maximum distance from the station to the amenity. The value must be between 0 and 1 000 meters. If not specified, defaults to 250 meters. */
|
|
3714
|
+
maximum_distance_from_station?: Maybe<DistanceInput>;
|
|
3715
|
+
};
|
|
3673
3716
|
/** Amenity preferences for a route. */
|
|
3674
3717
|
export declare type RouteAmenityPreferences = {
|
|
3675
3718
|
/** Desired amenities near all charge-stops along a route, with a 1 kilometer radius. */
|
|
@@ -3692,8 +3735,8 @@ export declare type RouteDestinationFeaturePoint = {
|
|
|
3692
3735
|
/** Feature type. */
|
|
3693
3736
|
type: FeatureType;
|
|
3694
3737
|
/** Geometry of the feature. */
|
|
3695
|
-
geometry
|
|
3696
|
-
/**
|
|
3738
|
+
geometry?: Maybe<Point>;
|
|
3739
|
+
/** Additional feature properties. */
|
|
3697
3740
|
properties?: Maybe<RouteDestinationProperties>;
|
|
3698
3741
|
};
|
|
3699
3742
|
export declare type RouteDestinationFeaturePointInput = {
|
|
@@ -3702,8 +3745,8 @@ export declare type RouteDestinationFeaturePointInput = {
|
|
|
3702
3745
|
/** Feature type. */
|
|
3703
3746
|
type: FeatureType;
|
|
3704
3747
|
/** Geometry of the feature. */
|
|
3705
|
-
geometry
|
|
3706
|
-
/**
|
|
3748
|
+
geometry?: Maybe<PointInput>;
|
|
3749
|
+
/** Additional feature properties. */
|
|
3707
3750
|
properties?: Maybe<RouteDestinationPropertiesInput>;
|
|
3708
3751
|
};
|
|
3709
3752
|
export declare type RouteDestinationProperties = {
|
|
@@ -3715,7 +3758,7 @@ export declare type RouteDestinationProperties = {
|
|
|
3715
3758
|
export declare type RouteDestinationPropertiesInput = {
|
|
3716
3759
|
/** Data about the destination location. */
|
|
3717
3760
|
location?: Maybe<RoutePropertiesLocationInput>;
|
|
3718
|
-
/**
|
|
3761
|
+
/** Specifies a charging station at the destination. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop. */
|
|
3719
3762
|
station?: Maybe<RoutePropertiesStationInput>;
|
|
3720
3763
|
};
|
|
3721
3764
|
export declare type RouteDetails = {
|
|
@@ -3741,12 +3784,19 @@ export declare type RouteDetails = {
|
|
|
3741
3784
|
savings?: Maybe<RouteDetailsSavings>;
|
|
3742
3785
|
/** Legs of a route. */
|
|
3743
3786
|
legs: Array<RouteDetailsLeg>;
|
|
3744
|
-
/**
|
|
3787
|
+
/**
|
|
3788
|
+
* Alternative stations along a route within a specified radius.
|
|
3789
|
+
*
|
|
3790
|
+
* Includes stations from preferred/required/avoided operators but excludes stations from excluded operators.
|
|
3791
|
+
* This list is only populated if `alternative_station_radius` was specified in the `createRoute` mutation.
|
|
3792
|
+
*/
|
|
3745
3793
|
alternative_stations: Array<RouteDetailsAlternativeStation>;
|
|
3746
3794
|
/** Aggregation of tags over the current RouteDetails. Tags are available on legs and further subdivided over individual sections and maneuvers. */
|
|
3747
3795
|
tags: Array<RouteDetailsTag>;
|
|
3748
3796
|
/** Number of charging stops required for this route. */
|
|
3749
3797
|
charges: Scalars["Int"];
|
|
3798
|
+
/** [BETA] Warnings that certain conditions specified in a route mutation are not respected. */
|
|
3799
|
+
warnings?: Maybe<Array<RouteWarning>>;
|
|
3750
3800
|
};
|
|
3751
3801
|
export declare type RouteDetailsdistanceArgs = {
|
|
3752
3802
|
unit?: Maybe<DistanceUnit>;
|
|
@@ -3774,7 +3824,6 @@ export declare type RouteDetailsAlternativeStation = {
|
|
|
3774
3824
|
/** ID of the station's operator. */
|
|
3775
3825
|
operator_id?: Maybe<Scalars["ID"]>;
|
|
3776
3826
|
};
|
|
3777
|
-
/** Aggregation of all durations of a route. */
|
|
3778
3827
|
export declare type RouteDetailsDurations = {
|
|
3779
3828
|
/** Total duration, in seconds. */
|
|
3780
3829
|
total: Scalars["Int"];
|
|
@@ -3782,7 +3831,7 @@ export declare type RouteDetailsDurations = {
|
|
|
3782
3831
|
charging: Scalars["Int"];
|
|
3783
3832
|
/** Total driving duration, in seconds. */
|
|
3784
3833
|
driving: Scalars["Int"];
|
|
3785
|
-
/** Total
|
|
3834
|
+
/** Total duration stopped at a location via or at a station via, excluding charging time and charging penalty, in seconds. */
|
|
3786
3835
|
stopover: Scalars["Int"];
|
|
3787
3836
|
/** Total ferry duration, in seconds. */
|
|
3788
3837
|
ferry: Scalars["Int"];
|
|
@@ -3855,6 +3904,8 @@ export declare type RouteDetailsLeg = {
|
|
|
3855
3904
|
maneuvers: Array<RouteDetailsManeuver>;
|
|
3856
3905
|
/** Road sections of a leg - divided by means of transportation. */
|
|
3857
3906
|
sections: Array<RouteDetailsLegSection>;
|
|
3907
|
+
/** [BETA] Warnings that certain conditions specified in a route mutation are not respected. */
|
|
3908
|
+
warnings?: Maybe<Array<RouteDetailsLegWarning>>;
|
|
3858
3909
|
};
|
|
3859
3910
|
/** Leg of a route detail. */
|
|
3860
3911
|
export declare type RouteDetailsLegdistanceArgs = {
|
|
@@ -3899,7 +3950,10 @@ export declare type RouteDetailsLegFeatureProperties = {
|
|
|
3899
3950
|
air_pressure?: Maybe<Scalars["Float"]>;
|
|
3900
3951
|
/** Solar irradiance at the location. */
|
|
3901
3952
|
solar_irradiance?: Maybe<Scalars["Float"]>;
|
|
3902
|
-
/**
|
|
3953
|
+
/**
|
|
3954
|
+
* Duration, in seconds, of time spent at this location.
|
|
3955
|
+
* @deprecated In favor of legs.durations
|
|
3956
|
+
*/
|
|
3903
3957
|
duration?: Maybe<Scalars["Int"]>;
|
|
3904
3958
|
/** Number of occupants present in the vehicle. */
|
|
3905
3959
|
occupants?: Maybe<Scalars["Int"]>;
|
|
@@ -4025,6 +4079,25 @@ export declare enum RouteDetailsLegType {
|
|
|
4025
4079
|
/** This leg ends at the destination, and is the last leg of the route. */
|
|
4026
4080
|
FINAL = "final"
|
|
4027
4081
|
}
|
|
4082
|
+
export declare type RouteDetailsLegWarning = {
|
|
4083
|
+
/** The code of the warning. */
|
|
4084
|
+
code: RouteDetailsLegWarningCode;
|
|
4085
|
+
};
|
|
4086
|
+
/** Types of warnings that can be encountered in a route leg. */
|
|
4087
|
+
export declare enum RouteDetailsLegWarningCode {
|
|
4088
|
+
/** The via location cannot be reached by vehicle. */
|
|
4089
|
+
VIA_NOT_VEHICLE_ACCESSIBLE = "via_not_vehicle_accessible",
|
|
4090
|
+
/** The leg could not use stations from the preferred operator(s). */
|
|
4091
|
+
OPERATORS_PREFERRED_NOT_AVAILABLE = "operators_preferred_not_available",
|
|
4092
|
+
/** Vehicle's load may exceed the maximum supported weight of the vehicle. */
|
|
4093
|
+
MAXIMUM_WEIGHT_EXCEEDED = "maximum_weight_exceeded",
|
|
4094
|
+
/** The leg includes sections requested to be avoided. */
|
|
4095
|
+
SEGMENT_UNAVOIDABLE = "segment_unavoidable",
|
|
4096
|
+
/** The charging station used in the leg has limited opening hours. */
|
|
4097
|
+
STATION_LIMITED_OPEN_HOURS = "station_limited_open_hours",
|
|
4098
|
+
/** The specified stop duration at the via charging station is insufficient to start a charging session. */
|
|
4099
|
+
VIA_INSUFFICIENT_CHARGING_TIME = "via_insufficient_charging_time"
|
|
4100
|
+
}
|
|
4028
4101
|
export declare type RouteDetailsManeuver = {
|
|
4029
4102
|
/** Type of instruction. */
|
|
4030
4103
|
type: RouteDetailsLegManeuverType;
|
|
@@ -4112,6 +4185,28 @@ export declare enum RouteDetailsTag {
|
|
|
4112
4185
|
WALKING = "walking",
|
|
4113
4186
|
CROSSBORDER = "crossborder"
|
|
4114
4187
|
}
|
|
4188
|
+
export declare type RouteDrivingPreferences = {
|
|
4189
|
+
/** [BETA] Factor to adjust the route's calculated average speed. Accepts values between 0.80 and 1.20. 1.0 is neutral. Values below 1.0 reduce speed (e.g. 0.95 is -5%), values above increase it. If provided in combination with style, this overrides the speed factor implied by the selected 'style'. */
|
|
4190
|
+
speed_factor?: Maybe<Scalars["Float"]>;
|
|
4191
|
+
/** [BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. If provided in combination with 'style, this overrides the maximum speed implied by the selected 'style'. */
|
|
4192
|
+
maximum_speed?: Maybe<MaximumSpeed>;
|
|
4193
|
+
/** [BETA] Defines a driving style. If provided in combination with 'maximum_speed' or 'speed_factor', those values override the values defined by the selected 'style'. */
|
|
4194
|
+
style?: Maybe<RouteDrivingStyle>;
|
|
4195
|
+
};
|
|
4196
|
+
export declare type RouteDrivingPreferencesInput = {
|
|
4197
|
+
/** [BETA] Factor to adjust the route's calculated average speed. Accepts values between 0.80 and 1.20. 1.0 is neutral. Values below 1.0 reduce speed (e.g. 0.95 is -5%), values above increase it. If provided in combination with style, this overrides the speed factor implied by the selected 'style'. */
|
|
4198
|
+
speed_factor?: Maybe<Scalars["Float"]>;
|
|
4199
|
+
/** [BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. If provided in combination with 'style, this overrides the maximum speed implied by the selected 'style'. */
|
|
4200
|
+
maximum_speed?: Maybe<MaximumSpeedInput>;
|
|
4201
|
+
/** [BETA] Defines a driving style. If provided in combination with 'maximum_speed' or 'speed_factor', those values override the values defined by the selected 'style'. */
|
|
4202
|
+
style?: Maybe<RouteDrivingStyle>;
|
|
4203
|
+
};
|
|
4204
|
+
export declare enum RouteDrivingStyle {
|
|
4205
|
+
/** Lower average driving speed and lower energy consumption. Applies a speed limit of 110 km/h to all segments where a higher legal limit is allowed and reduces by 5% the route's average driving speed. */
|
|
4206
|
+
ECO = "eco",
|
|
4207
|
+
/** Higher average driving speed and higher energy consumption. Applies no speed limit and increases by 5% the route's average driving speed. */
|
|
4208
|
+
SPORT = "sport"
|
|
4209
|
+
}
|
|
4115
4210
|
export declare type RouteEmbeddedEmissions = {
|
|
4116
4211
|
/** Total embedded emissions. */
|
|
4117
4212
|
total: Scalars["Float"];
|
|
@@ -4806,13 +4901,17 @@ export declare type RouteOperatorPreferences = {
|
|
|
4806
4901
|
ranking?: Maybe<RouteOperatorPreferencesRanking>;
|
|
4807
4902
|
/** Operators that should be excluded for a route calculation. */
|
|
4808
4903
|
exclude?: Maybe<Array<RouteOperatorsValue>>;
|
|
4904
|
+
/** Operators that should be avoided, but not excluded, for a route calculation. */
|
|
4905
|
+
avoid?: Maybe<Array<RouteOperatorsValue>>;
|
|
4809
4906
|
};
|
|
4810
4907
|
/** Prioritized operators for a route calculation. */
|
|
4811
4908
|
export declare type RouteOperatorPreferencesInput = {
|
|
4812
|
-
/**
|
|
4909
|
+
/** Operators to be preferred in route calculation. If not specified, no operator ranking is applied (including project-configured ranking). */
|
|
4813
4910
|
ranking?: Maybe<RouteOperatorPreferencesRankingInput>;
|
|
4814
|
-
/** Operators
|
|
4911
|
+
/** Operators to be excluded from route calculation. If specified, overrides project-configured operator exclusions. If not specified, applies project-configured operator exclusions. */
|
|
4815
4912
|
exclude?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
4913
|
+
/** Operators that should be avoided, but not excluded, for a route calculation. */
|
|
4914
|
+
avoid?: Maybe<Array<RouteOperatorsValueInput>>;
|
|
4816
4915
|
};
|
|
4817
4916
|
export declare type RouteOperatorPreferencesRanking = {
|
|
4818
4917
|
/** Flag indicating if an operator should be preferred or required. */
|
|
@@ -4821,9 +4920,9 @@ export declare type RouteOperatorPreferencesRanking = {
|
|
|
4821
4920
|
levels?: Maybe<RouteOperatorPreferencesRankingLevels>;
|
|
4822
4921
|
};
|
|
4823
4922
|
export declare type RouteOperatorPreferencesRankingInput = {
|
|
4824
|
-
/**
|
|
4923
|
+
/** Determines how operator preferences are applied to stations during route calculation. If no ranking is provided through 'levels' or project settings, no operator preference is applied. */
|
|
4825
4924
|
type: RouteOperatorsType;
|
|
4826
|
-
/**
|
|
4925
|
+
/** Priority levels for operator ranking. If not specified, applies the specified enforcement type to the project-configured operator ranking. */
|
|
4827
4926
|
levels?: Maybe<RouteOperatorPreferencesRankingLevelsInput>;
|
|
4828
4927
|
};
|
|
4829
4928
|
export declare type RouteOperatorPreferencesRankingLevels = {
|
|
@@ -4924,7 +5023,7 @@ export declare type RouteOperatorsValue = {
|
|
|
4924
5023
|
export declare type RouteOperatorsValueInput = {
|
|
4925
5024
|
/** ID of an operator. */
|
|
4926
5025
|
id: Scalars["ID"];
|
|
4927
|
-
/** List of countries in which the operator should be preferred/excluded. When omitted the operator will be preferred/excluded in every country. */
|
|
5026
|
+
/** List of countries in which the operator should be preferred/excluded/avoided. When omitted the operator will be preferred/excluded in every country. */
|
|
4928
5027
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
4929
5028
|
};
|
|
4930
5029
|
export declare type RouteOriginFeaturePoint = {
|
|
@@ -4992,12 +5091,16 @@ export declare type RoutePropertiesStation = {
|
|
|
4992
5091
|
station_id?: Maybe<Scalars["ID"]>;
|
|
4993
5092
|
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
4994
5093
|
external_station_id?: Maybe<Scalars["ID"]>;
|
|
5094
|
+
/** Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode. */
|
|
5095
|
+
stop_duration?: Maybe<Scalars["Int"]>;
|
|
4995
5096
|
};
|
|
4996
5097
|
export declare type RoutePropertiesStationInput = {
|
|
4997
5098
|
/** ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
4998
5099
|
station_id?: Maybe<Scalars["ID"]>;
|
|
4999
5100
|
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5000
5101
|
external_station_id?: Maybe<Scalars["ID"]>;
|
|
5102
|
+
/** Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode. */
|
|
5103
|
+
stop_duration?: Maybe<Scalars["Int"]>;
|
|
5001
5104
|
};
|
|
5002
5105
|
export declare type RoutePropertiesVehicle = {
|
|
5003
5106
|
/** Number of occupants present in the vehicle. */
|
|
@@ -5061,6 +5164,43 @@ export declare enum RouteSeason {
|
|
|
5061
5164
|
/** We fetch the current weather conditions. */
|
|
5062
5165
|
CURRENT = "current"
|
|
5063
5166
|
}
|
|
5167
|
+
export declare type RouteStationFilter = {
|
|
5168
|
+
/** Filters stations within this distance from the route path. The value must be between 0 and 10 000 meters. If not specified, defaults to 1 000 meters. */
|
|
5169
|
+
maximum_distance_from_path?: Maybe<DistanceInput>;
|
|
5170
|
+
/** Filters stations by operator preference types. This filter depends exclusively on the preferences used for the route calculation. If not specified, stations from all preference types (ranked, unranked, avoided, excluded) are returned. */
|
|
5171
|
+
operator_preference?: Maybe<Array<OperatorPreferenceType>>;
|
|
5172
|
+
};
|
|
5173
|
+
export declare type RouteStationOperator = {
|
|
5174
|
+
/** Unique operator ID. */
|
|
5175
|
+
id?: Maybe<Scalars["ID"]>;
|
|
5176
|
+
/** Operator's preference status specifically for this route calculation. */
|
|
5177
|
+
preference_type: OperatorPreferenceType;
|
|
5178
|
+
};
|
|
5179
|
+
export declare type RouteStationPreferences = {
|
|
5180
|
+
/** [BETA] Flag to prioritise charging stations located directly on the highway, avoiding exiting highways to charge. This preference is considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. The preference's weight is configurable in project settings. */
|
|
5181
|
+
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5182
|
+
};
|
|
5183
|
+
export declare type RouteStationPreferencesInput = {
|
|
5184
|
+
/** [BETA] Flag to prioritise charging stations located directly on the highway, avoiding exiting highways to charge. This preference is considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. The preference's weight is configurable in project settings. */
|
|
5185
|
+
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5186
|
+
};
|
|
5187
|
+
export declare type RouteStationWithAmenities = {
|
|
5188
|
+
/** ID of the station. */
|
|
5189
|
+
id: Scalars["ID"];
|
|
5190
|
+
/** ID of the station provided by the station data source. */
|
|
5191
|
+
external_id?: Maybe<Scalars["ID"]>;
|
|
5192
|
+
/** GeoJSON location of the station. */
|
|
5193
|
+
location: Point;
|
|
5194
|
+
/** Information about the station's operator. */
|
|
5195
|
+
operator: RouteStationOperator;
|
|
5196
|
+
/** Distance of the station to the closest point in the original route. */
|
|
5197
|
+
distance_from_path: Scalars["Float"];
|
|
5198
|
+
/** List of up to 5 amenities matching the specified amenity type. Sorted by ascending distance from the station. */
|
|
5199
|
+
matching_amenities: Array<Amenity>;
|
|
5200
|
+
};
|
|
5201
|
+
export declare type RouteStationWithAmenitiesdistance_from_pathArgs = {
|
|
5202
|
+
unit?: Maybe<DistanceUnit>;
|
|
5203
|
+
};
|
|
5064
5204
|
export declare type RouteStationsAlong = {
|
|
5065
5205
|
/** The ID of station. */
|
|
5066
5206
|
id?: Maybe<Scalars["String"]>;
|
|
@@ -5075,6 +5215,20 @@ export declare type RouteStationsAlong = {
|
|
|
5075
5215
|
/** Distance in meters between station and route path. */
|
|
5076
5216
|
distance?: Maybe<Scalars["Int"]>;
|
|
5077
5217
|
};
|
|
5218
|
+
export declare type RouteStationsWithAmenitiesConnection = {
|
|
5219
|
+
/** Total number of stations with amenities of the specified type. */
|
|
5220
|
+
total_count: Scalars["Int"];
|
|
5221
|
+
/** Information about the current page. */
|
|
5222
|
+
page_info: PageInfo;
|
|
5223
|
+
/** List of stations with amenities of the specified type. */
|
|
5224
|
+
nodes: Array<RouteStationWithAmenities>;
|
|
5225
|
+
};
|
|
5226
|
+
export declare type RouteStationsWithAmenityFilter = {
|
|
5227
|
+
/** Station filters. */
|
|
5228
|
+
station?: Maybe<RouteStationFilter>;
|
|
5229
|
+
/** Amenity filters. */
|
|
5230
|
+
amenity?: Maybe<RouteAmenityFilter>;
|
|
5231
|
+
};
|
|
5078
5232
|
/** The status of a route. The status can be pending, processing, done, not_found or error. */
|
|
5079
5233
|
export declare enum RouteStatus {
|
|
5080
5234
|
/** Route is queued and pending processing. Temporary status. */
|
|
@@ -5114,6 +5268,13 @@ export declare enum RouteTagType {
|
|
|
5114
5268
|
WALKING = "walking",
|
|
5115
5269
|
CROSSBORDER = "crossborder"
|
|
5116
5270
|
}
|
|
5271
|
+
/** Specifies a temporal window to search for stations with matching amenity types. Defined by a center from the journey origin and a surrounding time margin. */
|
|
5272
|
+
export declare type RouteTimeWindow = {
|
|
5273
|
+
/** Center point of the search, expressed as the travel time, in seconds, from the journey's origin. */
|
|
5274
|
+
center: Scalars["Int"];
|
|
5275
|
+
/** Duration in seconds to extend the search on either side of the 'center'. Maximum allowed value is 2700 (45 minutes). If not specified, defaults to 900 seconds (15 minutes). */
|
|
5276
|
+
margin?: Maybe<Scalars["Int"]>;
|
|
5277
|
+
};
|
|
5117
5278
|
export declare type RouteVehicle = {
|
|
5118
5279
|
/** ID of the vehicle. */
|
|
5119
5280
|
id: Scalars["ID"];
|
|
@@ -5330,8 +5491,8 @@ export declare type RouteViaFeaturePoint = {
|
|
|
5330
5491
|
/** Feature type. */
|
|
5331
5492
|
type: FeatureType;
|
|
5332
5493
|
/** Geometry of the feature. */
|
|
5333
|
-
geometry
|
|
5334
|
-
/**
|
|
5494
|
+
geometry?: Maybe<Point>;
|
|
5495
|
+
/** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */
|
|
5335
5496
|
properties?: Maybe<RouteViaProperties>;
|
|
5336
5497
|
};
|
|
5337
5498
|
export declare type RouteViaFeaturePointInput = {
|
|
@@ -5340,8 +5501,8 @@ export declare type RouteViaFeaturePointInput = {
|
|
|
5340
5501
|
/** Feature type. */
|
|
5341
5502
|
type: FeatureType;
|
|
5342
5503
|
/** Geometry of the feature. */
|
|
5343
|
-
geometry
|
|
5344
|
-
/**
|
|
5504
|
+
geometry?: Maybe<PointInput>;
|
|
5505
|
+
/** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */
|
|
5345
5506
|
properties?: Maybe<RouteViaPropertiesInput>;
|
|
5346
5507
|
};
|
|
5347
5508
|
export declare type RouteViaProperties = {
|
|
@@ -5357,9 +5518,32 @@ export declare type RouteViaPropertiesInput = {
|
|
|
5357
5518
|
location?: Maybe<RoutePropertiesViaLocationInput>;
|
|
5358
5519
|
/** Vehicle data of the via point. */
|
|
5359
5520
|
vehicle?: Maybe<RoutePropertiesVehicleInput>;
|
|
5360
|
-
/**
|
|
5521
|
+
/** Specifies a charging station at the via. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop. */
|
|
5361
5522
|
station?: Maybe<RoutePropertiesStationInput>;
|
|
5362
5523
|
};
|
|
5524
|
+
export declare type RouteWarning = {
|
|
5525
|
+
/** The code of the warning. */
|
|
5526
|
+
code: RouteWarningCode;
|
|
5527
|
+
};
|
|
5528
|
+
/** Types of warnings that can be encountered in a route. */
|
|
5529
|
+
export declare enum RouteWarningCode {
|
|
5530
|
+
/** The selected vehicle model is unavailable on one or more regions along the route. */
|
|
5531
|
+
EV_UNAVAILABLE_IN_REGION = "ev_unavailable_in_region",
|
|
5532
|
+
/** Route excludes charging stations as a hybrid vehicle does not require external charging. */
|
|
5533
|
+
HEV_NO_CHARGING_STATIONS = "hev_no_charging_stations",
|
|
5534
|
+
/** Route is calculated using only the battery range of the extended-range vehicle. */
|
|
5535
|
+
EREV_BATTERY_ONLY_RANGE = "erev_battery_only_range",
|
|
5536
|
+
/** The origin location cannot be reached by vehicle and requires a walking section to reach the point. */
|
|
5537
|
+
ORIGIN_NOT_VEHICLE_ACCESSIBLE = "origin_not_vehicle_accessible",
|
|
5538
|
+
/** The destination location cannot be reached by vehicle and requires a walking section to reach the point. */
|
|
5539
|
+
DESTINATION_NOT_VEHICLE_ACCESSIBLE = "destination_not_vehicle_accessible",
|
|
5540
|
+
/** The requested final state of charge cannot be achieved. */
|
|
5541
|
+
FINAL_SOC_NOT_POSSIBLE = "final_soc_not_possible",
|
|
5542
|
+
/** The set maximum speed is too low (below 50 km/h) and may result in an inefficient route. */
|
|
5543
|
+
LOW_SPEED = "low_speed",
|
|
5544
|
+
/** Operator preferences were ignored because they have not been configured for this project nor provided in the route create request. */
|
|
5545
|
+
OPERATOR_PREFERENCES_NOT_FOUND = "operator_preferences_not_found"
|
|
5546
|
+
}
|
|
5363
5547
|
export declare type RouteWeather = {
|
|
5364
5548
|
/** Weather configuration applied to the route. */
|
|
5365
5549
|
type: WeatherType;
|
|
@@ -5537,18 +5721,8 @@ export declare type Station = {
|
|
|
5537
5721
|
properties?: Maybe<Scalars["JSON"]>;
|
|
5538
5722
|
/** A flag that indicates if a station has real-time information about the availability of its connectors. */
|
|
5539
5723
|
realtime?: Maybe<Scalars["Boolean"]>;
|
|
5540
|
-
/**
|
|
5541
|
-
* A flag that indicates if a station is on private property.
|
|
5542
|
-
* @deprecated In favor of access_type.
|
|
5543
|
-
*/
|
|
5544
|
-
private?: Maybe<Scalars["Boolean"]>;
|
|
5545
5724
|
/** Connectors grouped by power. */
|
|
5546
5725
|
power?: Maybe<Scalars["JSON"]>;
|
|
5547
|
-
/**
|
|
5548
|
-
* Station availability.
|
|
5549
|
-
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy.
|
|
5550
|
-
*/
|
|
5551
|
-
predicted_availability?: Maybe<Array<Maybe<StationPredictedAvailability>>>;
|
|
5552
5726
|
/** Predicted station occupancy. */
|
|
5553
5727
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
5554
5728
|
/** Charging speed for a station. */
|
|
@@ -5620,7 +5794,7 @@ export declare type StationAroundFilter = {
|
|
|
5620
5794
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
5621
5795
|
/** Flag that allows you to return only available stations. */
|
|
5622
5796
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
5623
|
-
/** Flag
|
|
5797
|
+
/** Flag to filter for stations operated by an operator present in the project's ranking list. */
|
|
5624
5798
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5625
5799
|
};
|
|
5626
5800
|
/** Deprecated: Replaced by filter & search params. */
|
|
@@ -5635,41 +5809,11 @@ export declare type StationAroundQuery = {
|
|
|
5635
5809
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
5636
5810
|
};
|
|
5637
5811
|
export declare type StationCustomProperties = {
|
|
5638
|
-
/**
|
|
5639
|
-
* List of eMSP cards accepted at a charging station.
|
|
5640
|
-
* @deprecated In favor of station.roaming.
|
|
5641
|
-
*/
|
|
5642
|
-
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
5643
|
-
/**
|
|
5644
|
-
* Phone number for assistance at a charging station.
|
|
5645
|
-
* @deprecated In favor of station.support_phone_number.
|
|
5646
|
-
*/
|
|
5647
|
-
support_phone_number?: Maybe<Scalars["String"]>;
|
|
5648
|
-
/**
|
|
5649
|
-
* Charging behavior of a station.
|
|
5650
|
-
* @deprecated In favor of station.charging_behaviour.
|
|
5651
|
-
*/
|
|
5652
|
-
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
5653
5812
|
/**
|
|
5654
5813
|
* Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.
|
|
5655
5814
|
* @deprecated In favor of station.reliability_score.
|
|
5656
5815
|
*/
|
|
5657
5816
|
reliability_score?: Maybe<Scalars["Int"]>;
|
|
5658
|
-
/**
|
|
5659
|
-
* List of available ad hoc payment methods.
|
|
5660
|
-
* @deprecated In favor of station.adhoc_authorisation_payment_method.
|
|
5661
|
-
*/
|
|
5662
|
-
adhoc_authorisation_method?: Maybe<Array<Maybe<AdhocAuthorisationMethod>>>;
|
|
5663
|
-
/**
|
|
5664
|
-
* Predicted station occupancy.
|
|
5665
|
-
* @deprecated In favor of station.predicted_occupancy.
|
|
5666
|
-
*/
|
|
5667
|
-
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
5668
|
-
/**
|
|
5669
|
-
* Type of access to the charging station.
|
|
5670
|
-
* @deprecated In favor of station.access_type.
|
|
5671
|
-
*/
|
|
5672
|
-
access_type?: Maybe<AccessType>;
|
|
5673
5817
|
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
5674
5818
|
oicp?: Maybe<OICPStationCustomProperties>;
|
|
5675
5819
|
};
|
|
@@ -5731,7 +5875,7 @@ export declare type StationListFilter = {
|
|
|
5731
5875
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
5732
5876
|
/** Flag that allows you to return only available stations. */
|
|
5733
5877
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
5734
|
-
/** Flag
|
|
5878
|
+
/** Flag to filter for stations operated by an operator present in the project's ranking list. */
|
|
5735
5879
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5736
5880
|
};
|
|
5737
5881
|
/** Deprecated: Replaced by filter & search params. */
|
|
@@ -5838,7 +5982,7 @@ export declare type Subscription = {
|
|
|
5838
5982
|
/** Subscribe to a specific route to receive system event updates. */
|
|
5839
5983
|
route: RouteResponse;
|
|
5840
5984
|
/** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates */
|
|
5841
|
-
navigationUpdatedById?: Maybe<
|
|
5985
|
+
navigationUpdatedById?: Maybe<NavigationSubscription>;
|
|
5842
5986
|
/** [BETA] Subscribe to a connected vehicle. */
|
|
5843
5987
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
5844
5988
|
/** Subscribe to an isoline in order to receive updates. */
|
|
@@ -6444,9 +6588,9 @@ export declare type VehicleMake = {
|
|
|
6444
6588
|
image: VehicleImage;
|
|
6445
6589
|
};
|
|
6446
6590
|
/** Vehicle makes response object. */
|
|
6447
|
-
export declare type
|
|
6448
|
-
/**
|
|
6449
|
-
|
|
6591
|
+
export declare type VehicleMakesConnection = {
|
|
6592
|
+
/** List of vehicle makes. */
|
|
6593
|
+
nodes: Array<VehicleMake>;
|
|
6450
6594
|
};
|
|
6451
6595
|
export declare type VehicleMedia = {
|
|
6452
6596
|
/** Featured image of the vehicle from a 45-degree angle. */
|
|
@@ -6479,15 +6623,19 @@ export declare type VehicleModel = {
|
|
|
6479
6623
|
/** Vehicle model name. */
|
|
6480
6624
|
name: Scalars["String"];
|
|
6481
6625
|
};
|
|
6626
|
+
/** Vehicle models response object. */
|
|
6627
|
+
export declare type VehicleModelsConnection = {
|
|
6628
|
+
/** Total number of unique vehicle models. */
|
|
6629
|
+
total_count: Scalars["Int"];
|
|
6630
|
+
/** Information about the current page. */
|
|
6631
|
+
page_info: PageInfo;
|
|
6632
|
+
/** List of vehicle models. */
|
|
6633
|
+
nodes: Array<VehicleModel>;
|
|
6634
|
+
};
|
|
6482
6635
|
/** Filter vehicle model list result. */
|
|
6483
6636
|
export declare type VehicleModelsFilter = {
|
|
6484
6637
|
/** Vehicle make. */
|
|
6485
|
-
make
|
|
6486
|
-
};
|
|
6487
|
-
/** Vehicle models response object. */
|
|
6488
|
-
export declare type VehicleModelsResponse = {
|
|
6489
|
-
/** Elements of the vehicle model list. */
|
|
6490
|
-
items: Array<VehicleModel>;
|
|
6638
|
+
make?: Maybe<Scalars["String"]>;
|
|
6491
6639
|
};
|
|
6492
6640
|
export declare type VehicleNaming = {
|
|
6493
6641
|
/** Vehicle manufacturer name. */
|
|
@@ -6545,11 +6693,6 @@ export declare type VehiclePremium = {
|
|
|
6545
6693
|
body: VehiclePremiumBody;
|
|
6546
6694
|
/** Availability of the vehicle. */
|
|
6547
6695
|
availability: VehiclePremiumAvailability;
|
|
6548
|
-
/**
|
|
6549
|
-
* Pricing of the vehicle.
|
|
6550
|
-
* @deprecated In favor of pricing.
|
|
6551
|
-
*/
|
|
6552
|
-
price: VehiclePremiumPrice;
|
|
6553
6696
|
/** Starting price in the currency defined in the field argument. If not defined, it will return the starting price in the currency returned in the currency field. */
|
|
6554
6697
|
pricing: VehiclePremiumPriceValueWithGrant;
|
|
6555
6698
|
/** Drivetrain of the vehicle. */
|
|
@@ -6647,11 +6790,6 @@ export declare type VehiclePremiumBody = {
|
|
|
6647
6790
|
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6648
6791
|
/** Maximum payload allowed for the vehicle. */
|
|
6649
6792
|
weight_max_payload?: Maybe<Scalars["Float"]>;
|
|
6650
|
-
/**
|
|
6651
|
-
* Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload).
|
|
6652
|
-
* @deprecated In favor of weight_gvwr.nominal
|
|
6653
|
-
*/
|
|
6654
|
-
max_gross_vehicle_weight?: Maybe<Scalars["Float"]>;
|
|
6655
6793
|
/** Standard luggage capacity. */
|
|
6656
6794
|
boot_capacity?: Maybe<Scalars["Float"]>;
|
|
6657
6795
|
/** Storage capacity of front trunk/under the hood (frunk). */
|
|
@@ -6706,9 +6844,6 @@ export declare type VehiclePremiumBodyground_clearanceArgs = {
|
|
|
6706
6844
|
export declare type VehiclePremiumBodyweight_max_payloadArgs = {
|
|
6707
6845
|
unit?: Maybe<WeightUnit>;
|
|
6708
6846
|
};
|
|
6709
|
-
export declare type VehiclePremiumBodymax_gross_vehicle_weightArgs = {
|
|
6710
|
-
unit?: Maybe<WeightUnit>;
|
|
6711
|
-
};
|
|
6712
6847
|
export declare type VehiclePremiumBodyboot_capacityArgs = {
|
|
6713
6848
|
unit?: Maybe<VolumeUnit>;
|
|
6714
6849
|
};
|
|
@@ -7215,37 +7350,10 @@ export declare type VehiclePremiumRoutingfuel_consumptionArgs = {
|
|
|
7215
7350
|
export declare type VehiclePremiumRoutingConsumption = {
|
|
7216
7351
|
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc */
|
|
7217
7352
|
auxiliary?: Maybe<Scalars["Float"]>;
|
|
7218
|
-
/**
|
|
7219
|
-
* Consumption, in kWh, of the auxiliaries.
|
|
7220
|
-
* @deprecated In favor of auxiliary
|
|
7221
|
-
*/
|
|
7222
|
-
aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
7223
|
-
/**
|
|
7224
|
-
* Consumption, in kWh, of the battery management system.
|
|
7225
|
-
* @deprecated In favor of auxiliary
|
|
7226
|
-
*/
|
|
7227
|
-
bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
7228
|
-
/**
|
|
7229
|
-
* Consumption, in kWh, of the vehicle in idle mode.
|
|
7230
|
-
* @deprecated In favor of auxiliary
|
|
7231
|
-
*/
|
|
7232
|
-
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
7233
7353
|
};
|
|
7234
7354
|
export declare type VehiclePremiumRoutingConsumptionauxiliaryArgs = {
|
|
7235
7355
|
unit?: Maybe<AuxiliaryConsumptionUnit>;
|
|
7236
7356
|
};
|
|
7237
|
-
export declare type VehiclePremiumRoutingConsumptionValue = {
|
|
7238
|
-
/** Best (lowest) consumption in summer. */
|
|
7239
|
-
best?: Maybe<Scalars["Float"]>;
|
|
7240
|
-
/** Best (lowest) consumption in winter. */
|
|
7241
|
-
worst?: Maybe<Scalars["Float"]>;
|
|
7242
|
-
};
|
|
7243
|
-
export declare type VehiclePremiumRoutingConsumptionValuebestArgs = {
|
|
7244
|
-
unit?: Maybe<ConsumptionUnit>;
|
|
7245
|
-
};
|
|
7246
|
-
export declare type VehiclePremiumRoutingConsumptionValueworstArgs = {
|
|
7247
|
-
unit?: Maybe<ConsumptionUnit>;
|
|
7248
|
-
};
|
|
7249
7357
|
export declare type VehiclePremiumSafety = {
|
|
7250
7358
|
/** Number of seats equipped with ISOFIX. */
|
|
7251
7359
|
isofix_seats?: Maybe<Scalars["Int"]>;
|