@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.
@@ -5216,11 +5216,11 @@ export declare type RouteStationOperator = {
5216
5216
  preference_type: OperatorPreferenceType;
5217
5217
  };
5218
5218
  export declare type RouteStationPreferences = {
5219
- /** [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. */
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] 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. */
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 = {
@@ -28955,7 +28955,7 @@
28955
28955
  "fields": [
28956
28956
  {
28957
28957
  "name": "prefer_highway_charging",
28958
- "description": "[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.",
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] 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.",
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": "true",
28988
+ "defaultValue": "false",
28989
28989
  "isDeprecated": false,
28990
28990
  "deprecationReason": null
28991
28991
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chargetrip/types",
3
- "version": "1.50.0",
3
+ "version": "1.51.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "chargetrip",
package/src/graphql.ts CHANGED
@@ -5695,12 +5695,12 @@ export type RouteStationOperator = {
5695
5695
  };
5696
5696
 
5697
5697
  export type RouteStationPreferences = {
5698
- /** [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. */
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] 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. */
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