Skip to content

Commit 0c81e97

Browse files
feat: regenerate GraphQL types
1 parent 64b0e9e commit 0c81e97

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

graphql.schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28955,7 +28955,7 @@
2895528955
"fields": [
2895628956
{
2895728957
"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.",
2895928959
"args": [],
2896028960
"type": {
2896128961
"kind": "SCALAR",
@@ -28979,13 +28979,13 @@
2897928979
"inputFields": [
2898028980
{
2898128981
"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.",
2898328983
"type": {
2898428984
"kind": "SCALAR",
2898528985
"name": "Boolean",
2898628986
"ofType": null
2898728987
},
28988-
"defaultValue": "true",
28988+
"defaultValue": "false",
2898928989
"isDeprecated": false,
2899028990
"deprecationReason": null
2899128991
}

src/graphql.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5695,12 +5695,12 @@ export type RouteStationOperator = {
56955695
};
56965696

56975697
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. */
56995699
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
57005700
};
57015701

57025702
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. */
57045704
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
57055705
};
57065706

0 commit comments

Comments
 (0)