@chargetrip/types 1.61.0 → 1.63.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.map +1 -1
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +15 -17
- package/graphql.schema.json +14 -14
- package/package.json +1 -1
- package/src/graphql.ts +15 -17
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -658,10 +658,9 @@ export declare type ConnectorPriceElementComponent = {
|
|
|
658
658
|
/** Applicable VAT. */
|
|
659
659
|
vat: Scalars["Float"];
|
|
660
660
|
/**
|
|
661
|
-
*
|
|
662
|
-
* unit is billed in step-size blocks. For example, if the type is TIME and step_size is 300, then the time is billed in blocks of 5 minutes. Hence, if 6 minutes is used, then 10 minutes (2 blocks of step_size) is billed.
|
|
663
|
-
*
|
|
664
|
-
* Note: step_size also depends on the type. Every type (except FLAT) defines a step_size multiplier. This is the size of every 'step' and the unit. For example, PARKING_TIME has a step-size multiplier of 1 second. Therefore, the step_size of a price component is multiplied by 1 second. Thus, step_size = 300 means 300 seconds.
|
|
661
|
+
* Indicates the minimum amount that is billed.
|
|
662
|
+
* A unit is billed in step-size blocks. For example, if the type is TIME and step_size is 300, then the time is billed in blocks of 5 minutes. Hence, if 6 minutes is used, then 10 minutes (2 blocks of step_size) is billed.
|
|
663
|
+
* Note: step_size also depends on the type. Every type (except FLAT) defines a step_size multiplier. This is the size of every 'step' and the unit. For example, PARKING_TIME has a step-size multiplier of 1 second. Therefore, the step_size of a price component is multiplied by 1 second. Thus, step_size = 300 means 300 seconds."
|
|
665
664
|
*/
|
|
666
665
|
step_size: Scalars["Int"];
|
|
667
666
|
};
|
|
@@ -671,7 +670,7 @@ export declare enum ConnectorPriceElementComponentType {
|
|
|
671
670
|
ENERGY = "energy",
|
|
672
671
|
/** Fixed price per charging session. */
|
|
673
672
|
FLAT = "flat",
|
|
674
|
-
/** Parking price per hour. This fee is applicable
|
|
673
|
+
/** Parking price per hour. This fee is applicable if the parked car is not charging. */
|
|
675
674
|
PARKING_TIME = "parking_time",
|
|
676
675
|
/** Fixed price per unit of time defined in the step size. */
|
|
677
676
|
TIME = "time"
|
|
@@ -718,7 +717,6 @@ export declare type ConnectorPriceElementRestrictions = {
|
|
|
718
717
|
* A reservation starts when the reservation is made, and ends when the driver starts charging on the reserved EVSE/Location,
|
|
719
718
|
* or when the reservation expires. A reservation can only have: `flat` and `time` ConnectorPriceElementComponentType,
|
|
720
719
|
* where time is for the duration of the reservation.
|
|
721
|
-
*
|
|
722
720
|
* When a price has both, `reservation` and `reservation_expires` ConnectorPriceElement,
|
|
723
721
|
* where both ConnectorPriceElement have a time ConnectorPriceElementComponent,
|
|
724
722
|
* then the time based cost of an expired reservation will be calculated based on the `reservation_expires` ConnectorPriceElement.
|
|
@@ -1193,18 +1191,18 @@ export declare type CreateRoute = {
|
|
|
1193
1191
|
destination: RouteDestinationFeaturePoint;
|
|
1194
1192
|
/** Via points of a route. */
|
|
1195
1193
|
via?: Maybe<Array<RouteViaFeaturePoint>>;
|
|
1196
|
-
/** Operator preferences for a route.
|
|
1194
|
+
/** Operator preferences for a route. */
|
|
1197
1195
|
operators?: Maybe<RouteOperatorPreferences>;
|
|
1198
1196
|
/**
|
|
1199
1197
|
* Season of a route.
|
|
1200
1198
|
* @deprecated In favor of `weather`.
|
|
1201
1199
|
*/
|
|
1202
1200
|
season?: Maybe<RouteSeason>;
|
|
1203
|
-
/**
|
|
1201
|
+
/** Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route. */
|
|
1204
1202
|
alternative_station_radius?: Maybe<AlternativeStationRadius>;
|
|
1205
1203
|
/** [BETA] Number of alternative routes to request. */
|
|
1206
1204
|
alternative_routes?: Maybe<Scalars["Int"]>;
|
|
1207
|
-
/** Route departure time.
|
|
1205
|
+
/** Route departure time. */
|
|
1208
1206
|
departure_time: Scalars["DateTime"];
|
|
1209
1207
|
/** [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. */
|
|
1210
1208
|
avoid?: Maybe<Array<RouteAvoid>>;
|
|
@@ -1229,17 +1227,17 @@ export declare type CreateRouteInput = {
|
|
|
1229
1227
|
via?: Maybe<Array<RouteViaFeaturePointInput>>;
|
|
1230
1228
|
/** Operator preferences and restrictions for route calculation. If not specified, excludes operators per project settings, but applies no operator ranking. */
|
|
1231
1229
|
operators?: Maybe<RouteOperatorPreferencesInput>;
|
|
1232
|
-
/** Optional flag to specify the season. */
|
|
1230
|
+
/** Optional flag to specify the season. If not specified, defaults to real-time weather data */
|
|
1233
1231
|
season?: Maybe<RouteSeason>;
|
|
1234
|
-
/**
|
|
1232
|
+
/** Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route. */
|
|
1235
1233
|
alternative_station_radius?: Maybe<AlternativeStationRadiusInput>;
|
|
1236
1234
|
/** [BETA] Additional alternative routes to calculate. Performed on a best-effort basis, it may return fewer than requested, or even none. Set to 0 to create only the recommended route. */
|
|
1237
1235
|
alternative_routes?: Maybe<Scalars["Int"]>;
|
|
1238
|
-
/** Route departure time. Used to calculate the expected arrival time
|
|
1236
|
+
/** Route departure time. Used to calculate the expected arrival time. If not specified, defaults to the route's request time. */
|
|
1239
1237
|
departure_time?: Maybe<Scalars["DateTime"]>;
|
|
1240
1238
|
/** [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. */
|
|
1241
1239
|
avoid?: Maybe<Array<RouteAvoid>>;
|
|
1242
|
-
/** Weather configuration for the route. Defined by a preset or custom weather conditions. */
|
|
1240
|
+
/** Weather configuration for the route. Defined by a preset or custom weather conditions. If not specified, defaults to real-time weather data. */
|
|
1243
1241
|
weather?: Maybe<RouteWeatherInput>;
|
|
1244
1242
|
/** Charging stations preferences for route calculation. */
|
|
1245
1243
|
station_preferences?: Maybe<RouteStationPreferencesInput>;
|
|
@@ -4104,7 +4102,7 @@ export declare type RouteDestinationProperties = {
|
|
|
4104
4102
|
export declare type RouteDestinationPropertiesInput = {
|
|
4105
4103
|
/** Data about the destination location. */
|
|
4106
4104
|
location?: Maybe<RoutePropertiesLocationInput>;
|
|
4107
|
-
/** Specifies a charging station at the destination. If
|
|
4105
|
+
/** Specifies a charging station at the destination. If an existing station is provided, it is treated as a regular location stop and no charging will be scheduled at this location. Any configured operator preferences are ignored for this stop. */
|
|
4108
4106
|
station?: Maybe<RoutePropertiesStationInput>;
|
|
4109
4107
|
};
|
|
4110
4108
|
export declare type RouteDetails = {
|
|
@@ -5475,7 +5473,7 @@ export declare type RoutePropertiesStation = {
|
|
|
5475
5473
|
station_id?: Maybe<Scalars["ID"]>;
|
|
5476
5474
|
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5477
5475
|
external_station_id?: Maybe<Scalars["ID"]>;
|
|
5478
|
-
/** Duration to stay at the station, in seconds.
|
|
5476
|
+
/** Duration to stay at the station, in seconds. */
|
|
5479
5477
|
stop_duration?: Maybe<Scalars["Int"]>;
|
|
5480
5478
|
};
|
|
5481
5479
|
export declare type RoutePropertiesStationInput = {
|
|
@@ -5483,7 +5481,7 @@ export declare type RoutePropertiesStationInput = {
|
|
|
5483
5481
|
station_id?: Maybe<Scalars["ID"]>;
|
|
5484
5482
|
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5485
5483
|
external_station_id?: Maybe<Scalars["ID"]>;
|
|
5486
|
-
/** Duration to stay at the station, in seconds.
|
|
5484
|
+
/** Duration to stay at the station, in seconds. */
|
|
5487
5485
|
stop_duration?: Maybe<Scalars["Int"]>;
|
|
5488
5486
|
};
|
|
5489
5487
|
export declare type RoutePropertiesVehicle = {
|
|
@@ -7340,7 +7338,7 @@ export declare type VehicleListFilter = {
|
|
|
7340
7338
|
/** Type of vehicle. */
|
|
7341
7339
|
type?: Maybe<Array<VehicleType>>;
|
|
7342
7340
|
/** ID of the vehicle make. */
|
|
7343
|
-
make?: Maybe<Scalars["
|
|
7341
|
+
make?: Maybe<Scalars["String"]>;
|
|
7344
7342
|
/** [BETA] Model of vehicle. */
|
|
7345
7343
|
model?: Maybe<Scalars["String"]>;
|
|
7346
7344
|
};
|
package/graphql.schema.json
CHANGED
|
@@ -3263,7 +3263,7 @@
|
|
|
3263
3263
|
},
|
|
3264
3264
|
{
|
|
3265
3265
|
"name": "step_size",
|
|
3266
|
-
"description": "
|
|
3266
|
+
"description": "Indicates the minimum amount that is billed.\nA unit is billed in step-size blocks. For example, if the type is TIME and step_size is 300, then the time is billed in blocks of 5 minutes. Hence, if 6 minutes is used, then 10 minutes (2 blocks of step_size) is billed.\nNote: step_size also depends on the type. Every type (except FLAT) defines a step_size multiplier. This is the size of every 'step' and the unit. For example, PARKING_TIME has a step-size multiplier of 1 second. Therefore, the step_size of a price component is multiplied by 1 second. Thus, step_size = 300 means 300 seconds.\"",
|
|
3267
3267
|
"args": [],
|
|
3268
3268
|
"type": {
|
|
3269
3269
|
"kind": "NON_NULL",
|
|
@@ -3305,7 +3305,7 @@
|
|
|
3305
3305
|
},
|
|
3306
3306
|
{
|
|
3307
3307
|
"name": "parking_time",
|
|
3308
|
-
"description": "Parking price per hour. This fee is applicable
|
|
3308
|
+
"description": "Parking price per hour. This fee is applicable if the parked car is not charging.",
|
|
3309
3309
|
"isDeprecated": false,
|
|
3310
3310
|
"deprecationReason": null
|
|
3311
3311
|
},
|
|
@@ -3549,7 +3549,7 @@
|
|
|
3549
3549
|
},
|
|
3550
3550
|
{
|
|
3551
3551
|
"name": "reservation",
|
|
3552
|
-
"description": "When this field is present, the ConnectorPriceElement describes reservation costs.\nA reservation starts when the reservation is made, and ends when the driver starts charging on the reserved EVSE/Location,\nor when the reservation expires. A reservation can only have: `flat` and `time` ConnectorPriceElementComponentType,\nwhere time is for the duration of the reservation.\
|
|
3552
|
+
"description": "When this field is present, the ConnectorPriceElement describes reservation costs.\nA reservation starts when the reservation is made, and ends when the driver starts charging on the reserved EVSE/Location,\nor when the reservation expires. A reservation can only have: `flat` and `time` ConnectorPriceElementComponentType,\nwhere time is for the duration of the reservation.\nWhen a price has both, `reservation` and `reservation_expires` ConnectorPriceElement,\nwhere both ConnectorPriceElement have a time ConnectorPriceElementComponent,\nthen the time based cost of an expired reservation will be calculated based on the `reservation_expires` ConnectorPriceElement.",
|
|
3553
3553
|
"args": [],
|
|
3554
3554
|
"type": {
|
|
3555
3555
|
"kind": "ENUM",
|
|
@@ -6040,7 +6040,7 @@
|
|
|
6040
6040
|
},
|
|
6041
6041
|
{
|
|
6042
6042
|
"name": "operators",
|
|
6043
|
-
"description": "Operator preferences for a route.
|
|
6043
|
+
"description": "Operator preferences for a route.",
|
|
6044
6044
|
"args": [],
|
|
6045
6045
|
"type": {
|
|
6046
6046
|
"kind": "OBJECT",
|
|
@@ -6064,7 +6064,7 @@
|
|
|
6064
6064
|
},
|
|
6065
6065
|
{
|
|
6066
6066
|
"name": "alternative_station_radius",
|
|
6067
|
-
"description": "
|
|
6067
|
+
"description": "Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route.",
|
|
6068
6068
|
"args": [],
|
|
6069
6069
|
"type": {
|
|
6070
6070
|
"kind": "OBJECT",
|
|
@@ -6088,7 +6088,7 @@
|
|
|
6088
6088
|
},
|
|
6089
6089
|
{
|
|
6090
6090
|
"name": "departure_time",
|
|
6091
|
-
"description": "Route departure time.
|
|
6091
|
+
"description": "Route departure time.",
|
|
6092
6092
|
"args": [],
|
|
6093
6093
|
"type": {
|
|
6094
6094
|
"kind": "NON_NULL",
|
|
@@ -6264,7 +6264,7 @@
|
|
|
6264
6264
|
},
|
|
6265
6265
|
{
|
|
6266
6266
|
"name": "season",
|
|
6267
|
-
"description": "Optional flag to specify the season.",
|
|
6267
|
+
"description": "Optional flag to specify the season. If not specified, defaults to real-time weather data",
|
|
6268
6268
|
"type": {
|
|
6269
6269
|
"kind": "ENUM",
|
|
6270
6270
|
"name": "RouteSeason",
|
|
@@ -6276,7 +6276,7 @@
|
|
|
6276
6276
|
},
|
|
6277
6277
|
{
|
|
6278
6278
|
"name": "alternative_station_radius",
|
|
6279
|
-
"description": "
|
|
6279
|
+
"description": "Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route.",
|
|
6280
6280
|
"type": {
|
|
6281
6281
|
"kind": "INPUT_OBJECT",
|
|
6282
6282
|
"name": "AlternativeStationRadiusInput",
|
|
@@ -6300,7 +6300,7 @@
|
|
|
6300
6300
|
},
|
|
6301
6301
|
{
|
|
6302
6302
|
"name": "departure_time",
|
|
6303
|
-
"description": "Route departure time. Used to calculate the expected arrival time
|
|
6303
|
+
"description": "Route departure time. Used to calculate the expected arrival time. If not specified, defaults to the route's request time.",
|
|
6304
6304
|
"type": {
|
|
6305
6305
|
"kind": "SCALAR",
|
|
6306
6306
|
"name": "DateTime",
|
|
@@ -6332,7 +6332,7 @@
|
|
|
6332
6332
|
},
|
|
6333
6333
|
{
|
|
6334
6334
|
"name": "weather",
|
|
6335
|
-
"description": "Weather configuration for the route. Defined by a preset or custom weather conditions.",
|
|
6335
|
+
"description": "Weather configuration for the route. Defined by a preset or custom weather conditions. If not specified, defaults to real-time weather data.",
|
|
6336
6336
|
"type": {
|
|
6337
6337
|
"kind": "INPUT_OBJECT",
|
|
6338
6338
|
"name": "RouteWeatherInput",
|
|
@@ -22416,7 +22416,7 @@
|
|
|
22416
22416
|
},
|
|
22417
22417
|
{
|
|
22418
22418
|
"name": "station",
|
|
22419
|
-
"description": "Specifies a charging station at the destination. If
|
|
22419
|
+
"description": "Specifies a charging station at the destination. If an existing station is provided, it is treated as a regular location stop and no charging will be scheduled at this location. Any configured operator preferences are ignored for this stop.",
|
|
22420
22420
|
"type": {
|
|
22421
22421
|
"kind": "INPUT_OBJECT",
|
|
22422
22422
|
"name": "RoutePropertiesStationInput",
|
|
@@ -30604,7 +30604,7 @@
|
|
|
30604
30604
|
},
|
|
30605
30605
|
{
|
|
30606
30606
|
"name": "stop_duration",
|
|
30607
|
-
"description": "Duration to stay at the station, in seconds.
|
|
30607
|
+
"description": "Duration to stay at the station, in seconds.",
|
|
30608
30608
|
"args": [],
|
|
30609
30609
|
"type": {
|
|
30610
30610
|
"kind": "SCALAR",
|
|
@@ -30652,7 +30652,7 @@
|
|
|
30652
30652
|
},
|
|
30653
30653
|
{
|
|
30654
30654
|
"name": "stop_duration",
|
|
30655
|
-
"description": "Duration to stay at the station, in seconds.
|
|
30655
|
+
"description": "Duration to stay at the station, in seconds.",
|
|
30656
30656
|
"type": {
|
|
30657
30657
|
"kind": "SCALAR",
|
|
30658
30658
|
"name": "Int",
|
|
@@ -41664,7 +41664,7 @@
|
|
|
41664
41664
|
"description": "ID of the vehicle make.",
|
|
41665
41665
|
"type": {
|
|
41666
41666
|
"kind": "SCALAR",
|
|
41667
|
-
"name": "
|
|
41667
|
+
"name": "String",
|
|
41668
41668
|
"ofType": null
|
|
41669
41669
|
},
|
|
41670
41670
|
"defaultValue": null,
|
package/package.json
CHANGED
package/src/graphql.ts
CHANGED
|
@@ -713,10 +713,9 @@ export type ConnectorPriceElementComponent = {
|
|
|
713
713
|
/** Applicable VAT. */
|
|
714
714
|
vat: Scalars["Float"];
|
|
715
715
|
/**
|
|
716
|
-
*
|
|
717
|
-
* unit is billed in step-size blocks. For example, if the type is TIME and step_size is 300, then the time is billed in blocks of 5 minutes. Hence, if 6 minutes is used, then 10 minutes (2 blocks of step_size) is billed.
|
|
718
|
-
*
|
|
719
|
-
* Note: step_size also depends on the type. Every type (except FLAT) defines a step_size multiplier. This is the size of every 'step' and the unit. For example, PARKING_TIME has a step-size multiplier of 1 second. Therefore, the step_size of a price component is multiplied by 1 second. Thus, step_size = 300 means 300 seconds.
|
|
716
|
+
* Indicates the minimum amount that is billed.
|
|
717
|
+
* A unit is billed in step-size blocks. For example, if the type is TIME and step_size is 300, then the time is billed in blocks of 5 minutes. Hence, if 6 minutes is used, then 10 minutes (2 blocks of step_size) is billed.
|
|
718
|
+
* Note: step_size also depends on the type. Every type (except FLAT) defines a step_size multiplier. This is the size of every 'step' and the unit. For example, PARKING_TIME has a step-size multiplier of 1 second. Therefore, the step_size of a price component is multiplied by 1 second. Thus, step_size = 300 means 300 seconds."
|
|
720
719
|
*/
|
|
721
720
|
step_size: Scalars["Int"];
|
|
722
721
|
};
|
|
@@ -727,7 +726,7 @@ export enum ConnectorPriceElementComponentType {
|
|
|
727
726
|
ENERGY = "energy",
|
|
728
727
|
/** Fixed price per charging session. */
|
|
729
728
|
FLAT = "flat",
|
|
730
|
-
/** Parking price per hour. This fee is applicable
|
|
729
|
+
/** Parking price per hour. This fee is applicable if the parked car is not charging. */
|
|
731
730
|
PARKING_TIME = "parking_time",
|
|
732
731
|
/** Fixed price per unit of time defined in the step size. */
|
|
733
732
|
TIME = "time"
|
|
@@ -777,7 +776,6 @@ export type ConnectorPriceElementRestrictions = {
|
|
|
777
776
|
* A reservation starts when the reservation is made, and ends when the driver starts charging on the reserved EVSE/Location,
|
|
778
777
|
* or when the reservation expires. A reservation can only have: `flat` and `time` ConnectorPriceElementComponentType,
|
|
779
778
|
* where time is for the duration of the reservation.
|
|
780
|
-
*
|
|
781
779
|
* When a price has both, `reservation` and `reservation_expires` ConnectorPriceElement,
|
|
782
780
|
* where both ConnectorPriceElement have a time ConnectorPriceElementComponent,
|
|
783
781
|
* then the time based cost of an expired reservation will be calculated based on the `reservation_expires` ConnectorPriceElement.
|
|
@@ -1267,18 +1265,18 @@ export type CreateRoute = {
|
|
|
1267
1265
|
destination: RouteDestinationFeaturePoint;
|
|
1268
1266
|
/** Via points of a route. */
|
|
1269
1267
|
via?: Maybe<Array<RouteViaFeaturePoint>>;
|
|
1270
|
-
/** Operator preferences for a route.
|
|
1268
|
+
/** Operator preferences for a route. */
|
|
1271
1269
|
operators?: Maybe<RouteOperatorPreferences>;
|
|
1272
1270
|
/**
|
|
1273
1271
|
* Season of a route.
|
|
1274
1272
|
* @deprecated In favor of `weather`.
|
|
1275
1273
|
*/
|
|
1276
1274
|
season?: Maybe<RouteSeason>;
|
|
1277
|
-
/**
|
|
1275
|
+
/** Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route. */
|
|
1278
1276
|
alternative_station_radius?: Maybe<AlternativeStationRadius>;
|
|
1279
1277
|
/** [BETA] Number of alternative routes to request. */
|
|
1280
1278
|
alternative_routes?: Maybe<Scalars["Int"]>;
|
|
1281
|
-
/** Route departure time.
|
|
1279
|
+
/** Route departure time. */
|
|
1282
1280
|
departure_time: Scalars["DateTime"];
|
|
1283
1281
|
/** [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. */
|
|
1284
1282
|
avoid?: Maybe<Array<RouteAvoid>>;
|
|
@@ -1304,17 +1302,17 @@ export type CreateRouteInput = {
|
|
|
1304
1302
|
via?: Maybe<Array<RouteViaFeaturePointInput>>;
|
|
1305
1303
|
/** Operator preferences and restrictions for route calculation. If not specified, excludes operators per project settings, but applies no operator ranking. */
|
|
1306
1304
|
operators?: Maybe<RouteOperatorPreferencesInput>;
|
|
1307
|
-
/** Optional flag to specify the season. */
|
|
1305
|
+
/** Optional flag to specify the season. If not specified, defaults to real-time weather data */
|
|
1308
1306
|
season?: Maybe<RouteSeason>;
|
|
1309
|
-
/**
|
|
1307
|
+
/** Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route. */
|
|
1310
1308
|
alternative_station_radius?: Maybe<AlternativeStationRadiusInput>;
|
|
1311
1309
|
/** [BETA] Additional alternative routes to calculate. Performed on a best-effort basis, it may return fewer than requested, or even none. Set to 0 to create only the recommended route. */
|
|
1312
1310
|
alternative_routes?: Maybe<Scalars["Int"]>;
|
|
1313
|
-
/** Route departure time. Used to calculate the expected arrival time
|
|
1311
|
+
/** Route departure time. Used to calculate the expected arrival time. If not specified, defaults to the route's request time. */
|
|
1314
1312
|
departure_time?: Maybe<Scalars["DateTime"]>;
|
|
1315
1313
|
/** [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. */
|
|
1316
1314
|
avoid?: Maybe<Array<RouteAvoid>>;
|
|
1317
|
-
/** Weather configuration for the route. Defined by a preset or custom weather conditions. */
|
|
1315
|
+
/** Weather configuration for the route. Defined by a preset or custom weather conditions. If not specified, defaults to real-time weather data. */
|
|
1318
1316
|
weather?: Maybe<RouteWeatherInput>;
|
|
1319
1317
|
/** Charging stations preferences for route calculation. */
|
|
1320
1318
|
station_preferences?: Maybe<RouteStationPreferencesInput>;
|
|
@@ -4439,7 +4437,7 @@ export type RouteDestinationProperties = {
|
|
|
4439
4437
|
export type RouteDestinationPropertiesInput = {
|
|
4440
4438
|
/** Data about the destination location. */
|
|
4441
4439
|
location?: Maybe<RoutePropertiesLocationInput>;
|
|
4442
|
-
/** Specifies a charging station at the destination. If
|
|
4440
|
+
/** Specifies a charging station at the destination. If an existing station is provided, it is treated as a regular location stop and no charging will be scheduled at this location. Any configured operator preferences are ignored for this stop. */
|
|
4443
4441
|
station?: Maybe<RoutePropertiesStationInput>;
|
|
4444
4442
|
};
|
|
4445
4443
|
|
|
@@ -5977,7 +5975,7 @@ export type RoutePropertiesStation = {
|
|
|
5977
5975
|
station_id?: Maybe<Scalars["ID"]>;
|
|
5978
5976
|
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5979
5977
|
external_station_id?: Maybe<Scalars["ID"]>;
|
|
5980
|
-
/** Duration to stay at the station, in seconds.
|
|
5978
|
+
/** Duration to stay at the station, in seconds. */
|
|
5981
5979
|
stop_duration?: Maybe<Scalars["Int"]>;
|
|
5982
5980
|
};
|
|
5983
5981
|
|
|
@@ -5986,7 +5984,7 @@ export type RoutePropertiesStationInput = {
|
|
|
5986
5984
|
station_id?: Maybe<Scalars["ID"]>;
|
|
5987
5985
|
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
5988
5986
|
external_station_id?: Maybe<Scalars["ID"]>;
|
|
5989
|
-
/** Duration to stay at the station, in seconds.
|
|
5987
|
+
/** Duration to stay at the station, in seconds. */
|
|
5990
5988
|
stop_duration?: Maybe<Scalars["Int"]>;
|
|
5991
5989
|
};
|
|
5992
5990
|
|
|
@@ -8044,7 +8042,7 @@ export type VehicleListFilter = {
|
|
|
8044
8042
|
/** Type of vehicle. */
|
|
8045
8043
|
type?: Maybe<Array<VehicleType>>;
|
|
8046
8044
|
/** ID of the vehicle make. */
|
|
8047
|
-
make?: Maybe<Scalars["
|
|
8045
|
+
make?: Maybe<Scalars["String"]>;
|
|
8048
8046
|
/** [BETA] Model of vehicle. */
|
|
8049
8047
|
model?: Maybe<Scalars["String"]>;
|
|
8050
8048
|
};
|