@chargetrip/types 1.60.0 → 1.61.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.
@@ -333,9 +333,9 @@ export declare type CarConsumptionInput = {
333
333
  };
334
334
  /** Charging mode used at charging stations. */
335
335
  export declare enum ChargeMode {
336
- /** Optimizes the charging time at each station, in order to decrease the total travel time. You will only charge up until the SOC you need in order to reach the next stop. */
336
+ /** Optimizes the charging time at each station, in order to decrease the total travel time. Charges the vehicle only to the SOC required to reach the next stop, without exceeding the configured 'maximum_state_of_charge'. */
337
337
  OPTIMIZE_TRAVEL_TIME = "OPTIMIZE_TRAVEL_TIME",
338
- /** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80%. */
338
+ /** Charges up to the maximum configured state of charge (SoC) at each station. The maximum SoC is determined by 'maximum_state_of_charge'. */
339
339
  ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE"
340
340
  }
341
341
  export declare type ChargeSpeed = {
@@ -3487,9 +3487,9 @@ export declare type Query = {
3487
3487
  /** Get a full list of vehicles. */
3488
3488
  vehicleList?: Maybe<Array<Maybe<VehicleList>>>;
3489
3489
  /** [BETA] Get a full list of vehicle makes. */
3490
- vehicleMakes: VehicleMakesConnection;
3490
+ vehicleMakes?: Maybe<VehicleMakesConnection>;
3491
3491
  /** [BETA] Get a full list of vehicle make models. */
3492
- vehicleModels: VehicleModelsConnection;
3492
+ vehicleModels?: Maybe<VehicleModelsConnection>;
3493
3493
  };
3494
3494
  export declare type QueryamenityListArgs = {
3495
3495
  stationId: Scalars["ID"];
@@ -3606,6 +3606,9 @@ export declare type QueryvehicleListArgs = {
3606
3606
  };
3607
3607
  export declare type QueryvehicleMakesArgs = {
3608
3608
  country?: Maybe<CountryCodeAlpha2>;
3609
+ filter?: Maybe<VehicleMakesFilter>;
3610
+ first?: Maybe<Scalars["Int"]>;
3611
+ after?: Maybe<Scalars["String"]>;
3609
3612
  };
3610
3613
  export declare type QueryvehicleModelsArgs = {
3611
3614
  filter?: Maybe<VehicleModelsFilter>;
@@ -4465,7 +4468,11 @@ export declare enum RouteDetailsLegWarningCode {
4465
4468
  /** The charging station at the destination does not have any connectors compatible with the selected vehicle. */
4466
4469
  DESTINATION_CHARGER_INCOMPATIBLE = "destination_charger_incompatible",
4467
4470
  /** The charging station at the destination is restricted to heavy-duty trucks. */
4468
- DESTINATION_STATION_TRUCK_ONLY = "destination_station_truck_only"
4471
+ DESTINATION_STATION_TRUCK_ONLY = "destination_station_truck_only",
4472
+ /** Expected arrival state of charge for the leg is below the safety risk margin. */
4473
+ RISK_MARGIN_SOC_NOT_POSSIBLE = "risk_margin_soc_not_possible",
4474
+ /** Requested final state of charge value is below the specified safe risk margin. Safe risk margin is used instead. */
4475
+ FINAL_SOC_BELOW_RISK_MARGIN = "final_soc_below_risk_margin"
4469
4476
  }
4470
4477
  export declare type RouteDetailsManeuver = {
4471
4478
  /** Type of instruction. */
@@ -5849,11 +5856,11 @@ export declare type RouteVehicle = {
5849
5856
  heading?: Maybe<Scalars["Float"]>;
5850
5857
  };
5851
5858
  export declare type RouteVehicleBattery = {
5852
- /** Usable capacity of a battery used to compute a route. Value must be between 50% and 150%. If not provided, it defaults to the vehicle battery.usable_kwh. */
5859
+ /** Usable capacity of a battery used to compute a route. The value must be between 50% and 150% of a vehicle's baseline battery capacity. If not provided, the vehicle's full usable capacity by default. */
5853
5860
  capacity: StateOfCharge;
5854
- /** Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity. */
5861
+ /** Current amount of energy in a battery. If not provided, battery is assumed to be fully charged. */
5855
5862
  state_of_charge: StateOfCharge;
5856
- /** Desired final amount of energy in a battery at the and of a trip. The value must be between 0 and 60% of the vehicle battery.capacity. If not providedor if the specified value is below the safe risk marginthe safe risk margin is used by default. */
5863
+ /** Desired final amount of energy in a battery at the end of a trip. The value must be between 0 and 80% of the vehicle's battery capacity. If not provided, or if the specified value is below the safe risk margin, the safe risk margin is used by default. */
5857
5864
  final_state_of_charge: StateOfCharge;
5858
5865
  /** Temperature of the battery. */
5859
5866
  temperature?: Maybe<Temperature>;
@@ -5868,11 +5875,11 @@ export declare type RouteVehicleBattery = {
5868
5875
  };
5869
5876
  /** EV battery specific configuration for a create route mutation. */
5870
5877
  export declare type RouteVehicleBatteryInput = {
5871
- /** Usable capacity of a battery used to compute a route. Value must be between 50% and 150%. If not provided, it defaults to the vehicle battery.usable_kwh. */
5878
+ /** Usable capacity of a battery used to compute a route. The value must be between 50% and 150% of a vehicle's baseline battery capacity. If not provided, the vehicle's full usable capacity by default. */
5872
5879
  capacity?: Maybe<StateOfChargeInput>;
5873
- /** Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity. */
5880
+ /** Current amount of energy in a battery. If not provided, battery is assumed to be fully charged. */
5874
5881
  state_of_charge?: Maybe<StateOfChargeInput>;
5875
- /** Desired final amount of energy in a battery at the and of a trip. The value must be between 0 and 60% of the vehicle battery.capacity. If not providedor if the specified value is below the safe risk marginthe safe risk margin is used by default. */
5882
+ /** Desired final amount of energy in a battery at the end of a trip. The value must be between 0 and 80% of the vehicle's battery capacity. If not provided, or if the specified value is below the safe risk margin, the safe risk margin is used by default. */
5876
5883
  final_state_of_charge?: Maybe<StateOfChargeInput>;
5877
5884
  /** Battery temperature. */
5878
5885
  temperature?: Maybe<TemperatureInput>;
@@ -5898,7 +5905,7 @@ export declare type RouteVehicleCabinInput = {
5898
5905
  desired_temperature?: Maybe<TemperatureInput>;
5899
5906
  };
5900
5907
  export declare type RouteVehicleCharging = {
5901
- /** Mode that indicates if the charging time is optimized or if always charged to the maximum capacity. */
5908
+ /** Mode that indicates if the charging time is optimized or if always charged to the maximum state of charge. */
5902
5909
  mode: ChargeMode;
5903
5910
  /** Minimum desired power of chargers, in kWh. */
5904
5911
  minimum_power: Scalars["Float"];
@@ -5908,6 +5915,8 @@ export declare type RouteVehicleCharging = {
5908
5915
  connectors: Array<RouteVehicleChargingConnector>;
5909
5916
  /** Supported adapters. If not specified, adapters will not be considered. */
5910
5917
  adapters: Array<RouteVehicleChargingConnector>;
5918
+ /** Maximum state of charge (%) the vehicle can reach at any charging stop. If not specified defaults to 80%. */
5919
+ maximum_state_of_charge: Scalars["Int"];
5911
5920
  };
5912
5921
  export declare type RouteVehicleChargingConnector = {
5913
5922
  /** Type of the plug. */
@@ -5922,7 +5931,7 @@ export declare type RouteVehicleChargingConnectorInput = {
5922
5931
  maximum_charge_speed: ChargeSpeedInput;
5923
5932
  };
5924
5933
  export declare type RouteVehicleChargingInput = {
5925
- /** Mode that indicates if the charging time is optimized or if always charged to the maximum capacity. */
5934
+ /** Mode that indicates if the charging time is optimized or if always charged to the maximum state of charge. */
5926
5935
  mode?: Maybe<ChargeMode>;
5927
5936
  /** Minimum desired power of chargers, in kWh. */
5928
5937
  minimum_power?: Maybe<Scalars["Float"]>;
@@ -5932,6 +5941,8 @@ export declare type RouteVehicleChargingInput = {
5932
5941
  connectors?: Maybe<Array<RouteVehicleChargingConnectorInput>>;
5933
5942
  /** Supported adapters. If not specified, adapters will not be considered. */
5934
5943
  adapters?: Maybe<Array<RouteVehicleChargingConnectorInput>>;
5944
+ /** Maximum state of charge (%) the vehicle can reach at any charging stop. The value must be between 80 and 100. */
5945
+ maximum_state_of_charge?: Scalars["Int"];
5935
5946
  };
5936
5947
  export declare type RouteVehicleEmissions = {
5937
5948
  /** Total co2e emissions. */
@@ -6070,19 +6081,19 @@ export declare type RouteWarning = {
6070
6081
  };
6071
6082
  /** Types of warnings that can be encountered in a route. */
6072
6083
  export declare enum RouteWarningCode {
6073
- /** The selected vehicle model is unavailable on one or more regions along the route. */
6084
+ /** Selected vehicle model is unavailable on one or more regions along the route. */
6074
6085
  EV_UNAVAILABLE_IN_REGION = "ev_unavailable_in_region",
6075
6086
  /** Route excludes charging stations as a hybrid vehicle does not require external charging. */
6076
6087
  HEV_NO_CHARGING_STATIONS = "hev_no_charging_stations",
6077
6088
  /** Route is calculated using only the battery range of the extended-range vehicle. */
6078
6089
  EREV_BATTERY_ONLY_RANGE = "erev_battery_only_range",
6079
- /** The origin location cannot be reached by vehicle and requires a walking section to reach the point. */
6090
+ /** Origin location cannot be reached by vehicle and requires a walking section to reach the point. */
6080
6091
  ORIGIN_NOT_VEHICLE_ACCESSIBLE = "origin_not_vehicle_accessible",
6081
- /** The destination location cannot be reached by vehicle and requires a walking section to reach the point. */
6092
+ /** Destination location cannot be reached by vehicle and requires a walking section to reach the point. */
6082
6093
  DESTINATION_NOT_VEHICLE_ACCESSIBLE = "destination_not_vehicle_accessible",
6083
- /** The requested final state of charge cannot be achieved. */
6094
+ /** Requested final state of charge cannot be achieved. */
6084
6095
  FINAL_SOC_NOT_POSSIBLE = "final_soc_not_possible",
6085
- /** The set maximum speed is too low (below 50 km/h) and may result in an inefficient route. */
6096
+ /** Set maximum speed is too low (below 50 km/h) and may result in an inefficient route. */
6086
6097
  LOW_SPEED = "low_speed",
6087
6098
  /** Operator preferences were ignored because they have not been configured for this project nor provided in the route create request. */
6088
6099
  OPERATOR_PREFERENCES_NOT_FOUND = "operator_preferences_not_found",
@@ -7328,8 +7339,8 @@ export declare type VehicleListFilter = {
7328
7339
  purpose?: Maybe<Array<VehiclePurpose>>;
7329
7340
  /** Type of vehicle. */
7330
7341
  type?: Maybe<Array<VehicleType>>;
7331
- /** [BETA] Make of vehicle. */
7332
- make?: Maybe<Scalars["String"]>;
7342
+ /** ID of the vehicle make. */
7343
+ make?: Maybe<Scalars["ID"]>;
7333
7344
  /** [BETA] Model of vehicle. */
7334
7345
  model?: Maybe<Scalars["String"]>;
7335
7346
  };
@@ -7373,16 +7384,31 @@ export declare type VehicleListRouting = {
7373
7384
  };
7374
7385
  /** Vehicle make data. */
7375
7386
  export declare type VehicleMake = {
7387
+ /** ID of the vehicle make. */
7388
+ id: Scalars["ID"];
7376
7389
  /** Vehicle make name. */
7377
7390
  name: Scalars["String"];
7378
7391
  /** Vehicle make image. */
7379
7392
  image: VehicleImage;
7393
+ /** Number of public and private unique models manufactured by the make. */
7394
+ model_count: Scalars["Int"];
7380
7395
  };
7381
7396
  /** Vehicle makes response object. */
7382
7397
  export declare type VehicleMakesConnection = {
7398
+ /** Total number of unique vehicle makes. */
7399
+ total_count: Scalars["Int"];
7400
+ /** Information about the current page. */
7401
+ page_info: PageInfo;
7383
7402
  /** List of vehicle makes. */
7384
7403
  nodes: Array<VehicleMake>;
7385
7404
  };
7405
+ /** Filter vehicle make list result. */
7406
+ export declare type VehicleMakesFilter = {
7407
+ /** Regions in which the Make has vehicles. */
7408
+ region?: Maybe<Array<VehicleRegion>>;
7409
+ /** Type of vehicle which the Make has vehicles. */
7410
+ type?: Maybe<Array<VehicleType>>;
7411
+ };
7386
7412
  export declare type VehicleMedia = {
7387
7413
  /** Featured image of the vehicle from a 45-degree angle. */
7388
7414
  image: VehicleImage;
@@ -7413,6 +7439,8 @@ export declare enum VehicleMode {
7413
7439
  export declare type VehicleModel = {
7414
7440
  /** Vehicle model name. */
7415
7441
  name: Scalars["String"];
7442
+ /** Number of public and private vehicles associated to this model. */
7443
+ vehicle_count: Scalars["Int"];
7416
7444
  };
7417
7445
  /** Vehicle models response object. */
7418
7446
  export declare type VehicleModelsConnection = {
@@ -7426,7 +7454,7 @@ export declare type VehicleModelsConnection = {
7426
7454
  /** Filter vehicle model list result. */
7427
7455
  export declare type VehicleModelsFilter = {
7428
7456
  /** Vehicle make. */
7429
- make?: Maybe<Scalars["String"]>;
7457
+ make: Scalars["ID"];
7430
7458
  };
7431
7459
  export declare type VehicleNaming = {
7432
7460
  /** Vehicle manufacturer name. */
@@ -1654,13 +1654,13 @@
1654
1654
  "enumValues": [
1655
1655
  {
1656
1656
  "name": "OPTIMIZE_TRAVEL_TIME",
1657
- "description": "Optimizes the charging time at each station, in order to decrease the total travel time. You will only charge up until the SOC you need in order to reach the next stop.",
1657
+ "description": "Optimizes the charging time at each station, in order to decrease the total travel time. Charges the vehicle only to the SOC required to reach the next stop, without exceeding the configured 'maximum_state_of_charge'.",
1658
1658
  "isDeprecated": false,
1659
1659
  "deprecationReason": null
1660
1660
  },
1661
1661
  {
1662
1662
  "name": "ALWAYS_TO_MAX_CHARGE",
1663
- "description": "Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80%.",
1663
+ "description": "Charges up to the maximum configured state of charge (SoC) at each station. The maximum SoC is determined by 'maximum_state_of_charge'.",
1664
1664
  "isDeprecated": false,
1665
1665
  "deprecationReason": null
1666
1666
  }
@@ -19562,16 +19562,48 @@
19562
19562
  "defaultValue": null,
19563
19563
  "isDeprecated": false,
19564
19564
  "deprecationReason": null
19565
+ },
19566
+ {
19567
+ "name": "filter",
19568
+ "description": "Filter vehicle makes result.",
19569
+ "type": {
19570
+ "kind": "INPUT_OBJECT",
19571
+ "name": "VehicleMakesFilter",
19572
+ "ofType": null
19573
+ },
19574
+ "defaultValue": null,
19575
+ "isDeprecated": false,
19576
+ "deprecationReason": null
19577
+ },
19578
+ {
19579
+ "name": "first",
19580
+ "description": "Maximum number of items to return per page, a value between 1 and 10.",
19581
+ "type": {
19582
+ "kind": "SCALAR",
19583
+ "name": "Int",
19584
+ "ofType": null
19585
+ },
19586
+ "defaultValue": "10",
19587
+ "isDeprecated": false,
19588
+ "deprecationReason": null
19589
+ },
19590
+ {
19591
+ "name": "after",
19592
+ "description": "Returns the items in the list that come after the specified cursor. For the first page, this field should not be specified.",
19593
+ "type": {
19594
+ "kind": "SCALAR",
19595
+ "name": "String",
19596
+ "ofType": null
19597
+ },
19598
+ "defaultValue": null,
19599
+ "isDeprecated": false,
19600
+ "deprecationReason": null
19565
19601
  }
19566
19602
  ],
19567
19603
  "type": {
19568
- "kind": "NON_NULL",
19569
- "name": null,
19570
- "ofType": {
19571
- "kind": "OBJECT",
19572
- "name": "VehicleMakesConnection",
19573
- "ofType": null
19574
- }
19604
+ "kind": "OBJECT",
19605
+ "name": "VehicleMakesConnection",
19606
+ "ofType": null
19575
19607
  },
19576
19608
  "isDeprecated": false,
19577
19609
  "deprecationReason": null
@@ -19630,13 +19662,9 @@
19630
19662
  }
19631
19663
  ],
19632
19664
  "type": {
19633
- "kind": "NON_NULL",
19634
- "name": null,
19635
- "ofType": {
19636
- "kind": "OBJECT",
19637
- "name": "VehicleModelsConnection",
19638
- "ofType": null
19639
- }
19665
+ "kind": "OBJECT",
19666
+ "name": "VehicleModelsConnection",
19667
+ "ofType": null
19640
19668
  },
19641
19669
  "isDeprecated": false,
19642
19670
  "deprecationReason": null
@@ -24575,6 +24603,18 @@
24575
24603
  "description": "The charging station at the destination is restricted to heavy-duty trucks.",
24576
24604
  "isDeprecated": false,
24577
24605
  "deprecationReason": null
24606
+ },
24607
+ {
24608
+ "name": "risk_margin_soc_not_possible",
24609
+ "description": "Expected arrival state of charge for the leg is below the safety risk margin.",
24610
+ "isDeprecated": false,
24611
+ "deprecationReason": null
24612
+ },
24613
+ {
24614
+ "name": "final_soc_below_risk_margin",
24615
+ "description": "Requested final state of charge value is below the specified safe risk margin. Safe risk margin is used instead.",
24616
+ "isDeprecated": false,
24617
+ "deprecationReason": null
24578
24618
  }
24579
24619
  ],
24580
24620
  "possibleTypes": null
@@ -32940,7 +32980,7 @@
32940
32980
  "fields": [
32941
32981
  {
32942
32982
  "name": "capacity",
32943
- "description": "Usable capacity of a battery used to compute a route. Value must be between 50% and 150%. If not provided, it defaults to the vehicle battery.usable_kwh.",
32983
+ "description": "Usable capacity of a battery used to compute a route. The value must be between 50% and 150% of a vehicle's baseline battery capacity. If not provided, the vehicle's full usable capacity by default.",
32944
32984
  "args": [],
32945
32985
  "type": {
32946
32986
  "kind": "NON_NULL",
@@ -32956,7 +32996,7 @@
32956
32996
  },
32957
32997
  {
32958
32998
  "name": "state_of_charge",
32959
- "description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.",
32999
+ "description": "Current amount of energy in a battery. If not provided, battery is assumed to be fully charged.",
32960
33000
  "args": [],
32961
33001
  "type": {
32962
33002
  "kind": "NON_NULL",
@@ -32972,7 +33012,7 @@
32972
33012
  },
32973
33013
  {
32974
33014
  "name": "final_state_of_charge",
32975
- "description": "Desired final amount of energy in a battery at the and of a trip. The value must be between 0 and 60% of the vehicle battery.capacity. If not providedor if the specified value is below the safe risk marginthe safe risk margin is used by default.",
33015
+ "description": "Desired final amount of energy in a battery at the end of a trip. The value must be between 0 and 80% of the vehicle's battery capacity. If not provided, or if the specified value is below the safe risk margin, the safe risk margin is used by default.",
32976
33016
  "args": [],
32977
33017
  "type": {
32978
33018
  "kind": "NON_NULL",
@@ -33060,7 +33100,7 @@
33060
33100
  "inputFields": [
33061
33101
  {
33062
33102
  "name": "capacity",
33063
- "description": "Usable capacity of a battery used to compute a route. Value must be between 50% and 150%. If not provided, it defaults to the vehicle battery.usable_kwh.",
33103
+ "description": "Usable capacity of a battery used to compute a route. The value must be between 50% and 150% of a vehicle's baseline battery capacity. If not provided, the vehicle's full usable capacity by default.",
33064
33104
  "type": {
33065
33105
  "kind": "INPUT_OBJECT",
33066
33106
  "name": "StateOfChargeInput",
@@ -33072,7 +33112,7 @@
33072
33112
  },
33073
33113
  {
33074
33114
  "name": "state_of_charge",
33075
- "description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.",
33115
+ "description": "Current amount of energy in a battery. If not provided, battery is assumed to be fully charged.",
33076
33116
  "type": {
33077
33117
  "kind": "INPUT_OBJECT",
33078
33118
  "name": "StateOfChargeInput",
@@ -33084,7 +33124,7 @@
33084
33124
  },
33085
33125
  {
33086
33126
  "name": "final_state_of_charge",
33087
- "description": "Desired final amount of energy in a battery at the and of a trip. The value must be between 0 and 60% of the vehicle battery.capacity. If not providedor if the specified value is below the safe risk marginthe safe risk margin is used by default.",
33127
+ "description": "Desired final amount of energy in a battery at the end of a trip. The value must be between 0 and 80% of the vehicle's battery capacity. If not provided, or if the specified value is below the safe risk margin, the safe risk margin is used by default.",
33088
33128
  "type": {
33089
33129
  "kind": "INPUT_OBJECT",
33090
33130
  "name": "StateOfChargeInput",
@@ -33244,7 +33284,7 @@
33244
33284
  "fields": [
33245
33285
  {
33246
33286
  "name": "mode",
33247
- "description": "Mode that indicates if the charging time is optimized or if always charged to the maximum capacity.",
33287
+ "description": "Mode that indicates if the charging time is optimized or if always charged to the maximum state of charge.",
33248
33288
  "args": [],
33249
33289
  "type": {
33250
33290
  "kind": "NON_NULL",
@@ -33337,6 +33377,22 @@
33337
33377
  },
33338
33378
  "isDeprecated": false,
33339
33379
  "deprecationReason": null
33380
+ },
33381
+ {
33382
+ "name": "maximum_state_of_charge",
33383
+ "description": "Maximum state of charge (%) the vehicle can reach at any charging stop. If not specified defaults to 80%.",
33384
+ "args": [],
33385
+ "type": {
33386
+ "kind": "NON_NULL",
33387
+ "name": null,
33388
+ "ofType": {
33389
+ "kind": "SCALAR",
33390
+ "name": "Int",
33391
+ "ofType": null
33392
+ }
33393
+ },
33394
+ "isDeprecated": false,
33395
+ "deprecationReason": null
33340
33396
  }
33341
33397
  ],
33342
33398
  "inputFields": null,
@@ -33438,7 +33494,7 @@
33438
33494
  "inputFields": [
33439
33495
  {
33440
33496
  "name": "mode",
33441
- "description": "Mode that indicates if the charging time is optimized or if always charged to the maximum capacity.",
33497
+ "description": "Mode that indicates if the charging time is optimized or if always charged to the maximum state of charge.",
33442
33498
  "type": {
33443
33499
  "kind": "ENUM",
33444
33500
  "name": "ChargeMode",
@@ -33511,6 +33567,22 @@
33511
33567
  "defaultValue": null,
33512
33568
  "isDeprecated": false,
33513
33569
  "deprecationReason": null
33570
+ },
33571
+ {
33572
+ "name": "maximum_state_of_charge",
33573
+ "description": "Maximum state of charge (%) the vehicle can reach at any charging stop. The value must be between 80 and 100.",
33574
+ "type": {
33575
+ "kind": "NON_NULL",
33576
+ "name": null,
33577
+ "ofType": {
33578
+ "kind": "SCALAR",
33579
+ "name": "Int",
33580
+ "ofType": null
33581
+ }
33582
+ },
33583
+ "defaultValue": "80",
33584
+ "isDeprecated": false,
33585
+ "deprecationReason": null
33514
33586
  }
33515
33587
  ],
33516
33588
  "interfaces": null,
@@ -33700,7 +33772,7 @@
33700
33772
  "name": "RouteVehicleChargingInput",
33701
33773
  "ofType": null
33702
33774
  },
33703
- "defaultValue": null,
33775
+ "defaultValue": "{maximum_state_of_charge: 80}",
33704
33776
  "isDeprecated": false,
33705
33777
  "deprecationReason": null
33706
33778
  },
@@ -34391,7 +34463,7 @@
34391
34463
  "enumValues": [
34392
34464
  {
34393
34465
  "name": "ev_unavailable_in_region",
34394
- "description": "The selected vehicle model is unavailable on one or more regions along the route.",
34466
+ "description": "Selected vehicle model is unavailable on one or more regions along the route.",
34395
34467
  "isDeprecated": false,
34396
34468
  "deprecationReason": null
34397
34469
  },
@@ -34409,25 +34481,25 @@
34409
34481
  },
34410
34482
  {
34411
34483
  "name": "origin_not_vehicle_accessible",
34412
- "description": "The origin location cannot be reached by vehicle and requires a walking section to reach the point.",
34484
+ "description": "Origin location cannot be reached by vehicle and requires a walking section to reach the point.",
34413
34485
  "isDeprecated": false,
34414
34486
  "deprecationReason": null
34415
34487
  },
34416
34488
  {
34417
34489
  "name": "destination_not_vehicle_accessible",
34418
- "description": "The destination location cannot be reached by vehicle and requires a walking section to reach the point.",
34490
+ "description": "Destination location cannot be reached by vehicle and requires a walking section to reach the point.",
34419
34491
  "isDeprecated": false,
34420
34492
  "deprecationReason": null
34421
34493
  },
34422
34494
  {
34423
34495
  "name": "final_soc_not_possible",
34424
- "description": "The requested final state of charge cannot be achieved.",
34496
+ "description": "Requested final state of charge cannot be achieved.",
34425
34497
  "isDeprecated": false,
34426
34498
  "deprecationReason": null
34427
34499
  },
34428
34500
  {
34429
34501
  "name": "low_speed",
34430
- "description": "The set maximum speed is too low (below 50 km/h) and may result in an inefficient route.",
34502
+ "description": "Set maximum speed is too low (below 50 km/h) and may result in an inefficient route.",
34431
34503
  "isDeprecated": false,
34432
34504
  "deprecationReason": null
34433
34505
  },
@@ -41589,10 +41661,10 @@
41589
41661
  },
41590
41662
  {
41591
41663
  "name": "make",
41592
- "description": "[BETA] Make of vehicle.",
41664
+ "description": "ID of the vehicle make.",
41593
41665
  "type": {
41594
41666
  "kind": "SCALAR",
41595
- "name": "String",
41667
+ "name": "ID",
41596
41668
  "ofType": null
41597
41669
  },
41598
41670
  "defaultValue": null,
@@ -41829,6 +41901,22 @@
41829
41901
  "name": "VehicleMake",
41830
41902
  "description": "Vehicle make data.",
41831
41903
  "fields": [
41904
+ {
41905
+ "name": "id",
41906
+ "description": "ID of the vehicle make.",
41907
+ "args": [],
41908
+ "type": {
41909
+ "kind": "NON_NULL",
41910
+ "name": null,
41911
+ "ofType": {
41912
+ "kind": "SCALAR",
41913
+ "name": "ID",
41914
+ "ofType": null
41915
+ }
41916
+ },
41917
+ "isDeprecated": false,
41918
+ "deprecationReason": null
41919
+ },
41832
41920
  {
41833
41921
  "name": "name",
41834
41922
  "description": "Vehicle make name.",
@@ -41860,6 +41948,22 @@
41860
41948
  },
41861
41949
  "isDeprecated": false,
41862
41950
  "deprecationReason": null
41951
+ },
41952
+ {
41953
+ "name": "model_count",
41954
+ "description": "Number of public and private unique models manufactured by the make.",
41955
+ "args": [],
41956
+ "type": {
41957
+ "kind": "NON_NULL",
41958
+ "name": null,
41959
+ "ofType": {
41960
+ "kind": "SCALAR",
41961
+ "name": "Int",
41962
+ "ofType": null
41963
+ }
41964
+ },
41965
+ "isDeprecated": false,
41966
+ "deprecationReason": null
41863
41967
  }
41864
41968
  ],
41865
41969
  "inputFields": null,
@@ -41872,6 +41976,38 @@
41872
41976
  "name": "VehicleMakesConnection",
41873
41977
  "description": "Vehicle makes response object.",
41874
41978
  "fields": [
41979
+ {
41980
+ "name": "total_count",
41981
+ "description": "Total number of unique vehicle makes.",
41982
+ "args": [],
41983
+ "type": {
41984
+ "kind": "NON_NULL",
41985
+ "name": null,
41986
+ "ofType": {
41987
+ "kind": "SCALAR",
41988
+ "name": "Int",
41989
+ "ofType": null
41990
+ }
41991
+ },
41992
+ "isDeprecated": false,
41993
+ "deprecationReason": null
41994
+ },
41995
+ {
41996
+ "name": "page_info",
41997
+ "description": "Information about the current page.",
41998
+ "args": [],
41999
+ "type": {
42000
+ "kind": "NON_NULL",
42001
+ "name": null,
42002
+ "ofType": {
42003
+ "kind": "OBJECT",
42004
+ "name": "PageInfo",
42005
+ "ofType": null
42006
+ }
42007
+ },
42008
+ "isDeprecated": false,
42009
+ "deprecationReason": null
42010
+ },
41875
42011
  {
41876
42012
  "name": "nodes",
41877
42013
  "description": "List of vehicle makes.",
@@ -41902,6 +42038,57 @@
41902
42038
  "enumValues": null,
41903
42039
  "possibleTypes": null
41904
42040
  },
42041
+ {
42042
+ "kind": "INPUT_OBJECT",
42043
+ "name": "VehicleMakesFilter",
42044
+ "description": "Filter vehicle make list result.",
42045
+ "fields": null,
42046
+ "inputFields": [
42047
+ {
42048
+ "name": "region",
42049
+ "description": "Regions in which the Make has vehicles.",
42050
+ "type": {
42051
+ "kind": "LIST",
42052
+ "name": null,
42053
+ "ofType": {
42054
+ "kind": "NON_NULL",
42055
+ "name": null,
42056
+ "ofType": {
42057
+ "kind": "ENUM",
42058
+ "name": "VehicleRegion",
42059
+ "ofType": null
42060
+ }
42061
+ }
42062
+ },
42063
+ "defaultValue": null,
42064
+ "isDeprecated": false,
42065
+ "deprecationReason": null
42066
+ },
42067
+ {
42068
+ "name": "type",
42069
+ "description": "Type of vehicle which the Make has vehicles.",
42070
+ "type": {
42071
+ "kind": "LIST",
42072
+ "name": null,
42073
+ "ofType": {
42074
+ "kind": "NON_NULL",
42075
+ "name": null,
42076
+ "ofType": {
42077
+ "kind": "ENUM",
42078
+ "name": "VehicleType",
42079
+ "ofType": null
42080
+ }
42081
+ }
42082
+ },
42083
+ "defaultValue": null,
42084
+ "isDeprecated": false,
42085
+ "deprecationReason": null
42086
+ }
42087
+ ],
42088
+ "interfaces": null,
42089
+ "enumValues": null,
42090
+ "possibleTypes": null
42091
+ },
41905
42092
  {
41906
42093
  "kind": "OBJECT",
41907
42094
  "name": "VehicleMedia",
@@ -42066,6 +42253,22 @@
42066
42253
  },
42067
42254
  "isDeprecated": false,
42068
42255
  "deprecationReason": null
42256
+ },
42257
+ {
42258
+ "name": "vehicle_count",
42259
+ "description": "Number of public and private vehicles associated to this model.",
42260
+ "args": [],
42261
+ "type": {
42262
+ "kind": "NON_NULL",
42263
+ "name": null,
42264
+ "ofType": {
42265
+ "kind": "SCALAR",
42266
+ "name": "Int",
42267
+ "ofType": null
42268
+ }
42269
+ },
42270
+ "isDeprecated": false,
42271
+ "deprecationReason": null
42069
42272
  }
42070
42273
  ],
42071
42274
  "inputFields": null,
@@ -42150,9 +42353,13 @@
42150
42353
  "name": "make",
42151
42354
  "description": "Vehicle make.",
42152
42355
  "type": {
42153
- "kind": "SCALAR",
42154
- "name": "String",
42155
- "ofType": null
42356
+ "kind": "NON_NULL",
42357
+ "name": null,
42358
+ "ofType": {
42359
+ "kind": "SCALAR",
42360
+ "name": "ID",
42361
+ "ofType": null
42362
+ }
42156
42363
  },
42157
42364
  "defaultValue": null,
42158
42365
  "isDeprecated": false,