@chargetrip/types 1.50.0 → 1.51.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/ts/graphql.d.ts
CHANGED
|
@@ -5216,11 +5216,11 @@ export declare type RouteStationOperator = {
|
|
|
5216
5216
|
preference_type: OperatorPreferenceType;
|
|
5217
5217
|
};
|
|
5218
5218
|
export declare type RouteStationPreferences = {
|
|
5219
|
-
/** [BETA]
|
|
5219
|
+
/** [BETA] Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. */
|
|
5220
5220
|
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5221
5221
|
};
|
|
5222
5222
|
export declare type RouteStationPreferencesInput = {
|
|
5223
|
-
/** [BETA]
|
|
5223
|
+
/** [BETA] Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. This logic may require additional client-specific tuning. Please contact Chargetrip if the behavior seems suboptimal. */
|
|
5224
5224
|
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5225
5225
|
};
|
|
5226
5226
|
export declare type RouteStationWithAmenities = {
|
package/graphql.schema.json
CHANGED
|
@@ -28955,7 +28955,7 @@
|
|
|
28955
28955
|
"fields": [
|
|
28956
28956
|
{
|
|
28957
28957
|
"name": "prefer_highway_charging",
|
|
28958
|
-
"description": "[BETA]
|
|
28958
|
+
"description": "[BETA] Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict.",
|
|
28959
28959
|
"args": [],
|
|
28960
28960
|
"type": {
|
|
28961
28961
|
"kind": "SCALAR",
|
|
@@ -28979,13 +28979,13 @@
|
|
|
28979
28979
|
"inputFields": [
|
|
28980
28980
|
{
|
|
28981
28981
|
"name": "prefer_highway_charging",
|
|
28982
|
-
"description": "[BETA]
|
|
28982
|
+
"description": "[BETA] Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. This logic may require additional client-specific tuning. Please contact Chargetrip if the behavior seems suboptimal.",
|
|
28983
28983
|
"type": {
|
|
28984
28984
|
"kind": "SCALAR",
|
|
28985
28985
|
"name": "Boolean",
|
|
28986
28986
|
"ofType": null
|
|
28987
28987
|
},
|
|
28988
|
-
"defaultValue": "
|
|
28988
|
+
"defaultValue": "false",
|
|
28989
28989
|
"isDeprecated": false,
|
|
28990
28990
|
"deprecationReason": null
|
|
28991
28991
|
}
|
package/package.json
CHANGED
package/src/graphql.ts
CHANGED
|
@@ -5695,12 +5695,12 @@ export type RouteStationOperator = {
|
|
|
5695
5695
|
};
|
|
5696
5696
|
|
|
5697
5697
|
export type RouteStationPreferences = {
|
|
5698
|
-
/** [BETA]
|
|
5698
|
+
/** [BETA] Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. */
|
|
5699
5699
|
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5700
5700
|
};
|
|
5701
5701
|
|
|
5702
5702
|
export type RouteStationPreferencesInput = {
|
|
5703
|
-
/** [BETA]
|
|
5703
|
+
/** [BETA] Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. This logic may require additional client-specific tuning. Please contact Chargetrip if the behavior seems suboptimal. */
|
|
5704
5704
|
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5705
5705
|
};
|
|
5706
5706
|
|