@chargetrip/types 1.56.0 → 1.57.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.
@@ -5861,6 +5861,10 @@ export declare enum RouteWarningCode {
5861
5861
  OPERATOR_PREFERENCES_NOT_FOUND = "operator_preferences_not_found",
5862
5862
  /** Traffic data for this route is not available. */
5863
5863
  TRAFFIC_DATA_NOT_AVAILABLE = "traffic_data_not_available",
5864
+ /** Not possible to fetch weather data for a departure time further than 4 days in the future. Current weather used as alternative. */
5865
+ WEATHER_FORECAST_NOT_AVAILABLE = "weather_forecast_not_available",
5866
+ /** Not possible to fetch weather data for a departure time longer than 2 years ago. Current weather used as an alternative. */
5867
+ WEATHER_HISTORY_NOT_AVAILABLE = "weather_history_not_available",
5864
5868
  /** One or more preferred, excluded, or avoided operators have no active stations available and were ignored. */
5865
5869
  OPERATORS_IGNORED = "operators_ignored"
5866
5870
  }
@@ -32946,6 +32946,18 @@
32946
32946
  "isDeprecated": false,
32947
32947
  "deprecationReason": null
32948
32948
  },
32949
+ {
32950
+ "name": "weather_forecast_not_available",
32951
+ "description": "Not possible to fetch weather data for a departure time further than 4 days in the future. Current weather used as alternative.",
32952
+ "isDeprecated": false,
32953
+ "deprecationReason": null
32954
+ },
32955
+ {
32956
+ "name": "weather_history_not_available",
32957
+ "description": "Not possible to fetch weather data for a departure time longer than 2 years ago. Current weather used as an alternative.",
32958
+ "isDeprecated": false,
32959
+ "deprecationReason": null
32960
+ },
32949
32961
  {
32950
32962
  "name": "operators_ignored",
32951
32963
  "description": "One or more preferred, excluded, or avoided operators have no active stations available and were ignored.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chargetrip/types",
3
- "version": "1.56.0",
3
+ "version": "1.57.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "chargetrip",
package/src/graphql.ts CHANGED
@@ -6406,6 +6406,10 @@ export enum RouteWarningCode {
6406
6406
  OPERATOR_PREFERENCES_NOT_FOUND = "operator_preferences_not_found",
6407
6407
  /** Traffic data for this route is not available. */
6408
6408
  TRAFFIC_DATA_NOT_AVAILABLE = "traffic_data_not_available",
6409
+ /** Not possible to fetch weather data for a departure time further than 4 days in the future. Current weather used as alternative. */
6410
+ WEATHER_FORECAST_NOT_AVAILABLE = "weather_forecast_not_available",
6411
+ /** Not possible to fetch weather data for a departure time longer than 2 years ago. Current weather used as an alternative. */
6412
+ WEATHER_HISTORY_NOT_AVAILABLE = "weather_history_not_available",
6409
6413
  /** One or more preferred, excluded, or avoided operators have no active stations available and were ignored. */
6410
6414
  OPERATORS_IGNORED = "operators_ignored"
6411
6415
  }