@chargetrip/types 1.57.0 → 1.59.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 +11 -0
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +11 -0
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +476 -10
- package/graphql.schema.json +4215 -1197
- package/package.json +1 -1
- package/src/graphql.ts +530 -10
|
@@ -1499,6 +1499,9 @@ export let RouteDetailsLegWarningCode;
|
|
|
1499
1499
|
RouteDetailsLegWarningCode["STATION_CLOSED"] = "station_closed";
|
|
1500
1500
|
RouteDetailsLegWarningCode["STATION_CLOSING_SOON"] = "station_closing_soon";
|
|
1501
1501
|
RouteDetailsLegWarningCode["VIA_INSUFFICIENT_CHARGING_TIME"] = "via_insufficient_charging_time";
|
|
1502
|
+
RouteDetailsLegWarningCode["VIA_STATION_BELOW_MINIMUM_POWER"] = "via_station_below_minimum_power";
|
|
1503
|
+
RouteDetailsLegWarningCode["DESTINATION_CHARGER_INCOMPATIBLE"] = "destination_charger_incompatible";
|
|
1504
|
+
RouteDetailsLegWarningCode["DESTINATION_STATION_TRUCK_ONLY"] = "destination_station_truck_only";
|
|
1502
1505
|
})(RouteDetailsLegWarningCode || (RouteDetailsLegWarningCode = {}));
|
|
1503
1506
|
|
|
1504
1507
|
/** Tags of a route. */
|
|
@@ -1659,6 +1662,14 @@ export let RouteTagType;
|
|
|
1659
1662
|
RouteTagType["CROSSBORDER"] = "crossborder";
|
|
1660
1663
|
})(RouteTagType || (RouteTagType = {}));
|
|
1661
1664
|
|
|
1665
|
+
/** Types of route features that can be avoided in truck routing. */
|
|
1666
|
+
export let RouteTruckAvoid;
|
|
1667
|
+
|
|
1668
|
+
(function (RouteTruckAvoid) {
|
|
1669
|
+
RouteTruckAvoid["TOLL_ROAD"] = "toll_road";
|
|
1670
|
+
RouteTruckAvoid["FERRY"] = "ferry";
|
|
1671
|
+
})(RouteTruckAvoid || (RouteTruckAvoid = {}));
|
|
1672
|
+
|
|
1662
1673
|
/** Types of warnings that can be encountered in a route. */
|
|
1663
1674
|
export let RouteWarningCode;
|
|
1664
1675
|
|