@chargetrip/types 1.54.0 → 1.55.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/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +1 -0
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +1 -0
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +3 -1
- package/graphql.schema.json +6 -0
- package/package.json +1 -1
- package/src/graphql.ts +3 -1
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -5844,7 +5844,9 @@ export declare enum RouteWarningCode {
|
|
|
5844
5844
|
/** Operator preferences were ignored because they have not been configured for this project nor provided in the route create request. */
|
|
5845
5845
|
OPERATOR_PREFERENCES_NOT_FOUND = "operator_preferences_not_found",
|
|
5846
5846
|
/** Traffic data for this route is not available. */
|
|
5847
|
-
TRAFFIC_DATA_NOT_AVAILABLE = "traffic_data_not_available"
|
|
5847
|
+
TRAFFIC_DATA_NOT_AVAILABLE = "traffic_data_not_available",
|
|
5848
|
+
/** One or more preferred, excluded, or avoided operators have no active stations available and were ignored. */
|
|
5849
|
+
OPERATORS_IGNORED = "operators_ignored"
|
|
5848
5850
|
}
|
|
5849
5851
|
export declare type RouteWeather = {
|
|
5850
5852
|
/** Weather configuration applied to the route. */
|
package/graphql.schema.json
CHANGED
|
@@ -32826,6 +32826,12 @@
|
|
|
32826
32826
|
"description": "Traffic data for this route is not available.",
|
|
32827
32827
|
"isDeprecated": false,
|
|
32828
32828
|
"deprecationReason": null
|
|
32829
|
+
},
|
|
32830
|
+
{
|
|
32831
|
+
"name": "operators_ignored",
|
|
32832
|
+
"description": "One or more preferred, excluded, or avoided operators have no active stations available and were ignored.",
|
|
32833
|
+
"isDeprecated": false,
|
|
32834
|
+
"deprecationReason": null
|
|
32829
32835
|
}
|
|
32830
32836
|
],
|
|
32831
32837
|
"possibleTypes": null
|
package/package.json
CHANGED
package/src/graphql.ts
CHANGED
|
@@ -6388,7 +6388,9 @@ export enum RouteWarningCode {
|
|
|
6388
6388
|
/** Operator preferences were ignored because they have not been configured for this project nor provided in the route create request. */
|
|
6389
6389
|
OPERATOR_PREFERENCES_NOT_FOUND = "operator_preferences_not_found",
|
|
6390
6390
|
/** Traffic data for this route is not available. */
|
|
6391
|
-
TRAFFIC_DATA_NOT_AVAILABLE = "traffic_data_not_available"
|
|
6391
|
+
TRAFFIC_DATA_NOT_AVAILABLE = "traffic_data_not_available",
|
|
6392
|
+
/** One or more preferred, excluded, or avoided operators have no active stations available and were ignored. */
|
|
6393
|
+
OPERATORS_IGNORED = "operators_ignored"
|
|
6392
6394
|
}
|
|
6393
6395
|
|
|
6394
6396
|
export type RouteWeather = {
|