@chargetrip/types 1.58.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 +8 -0
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +8 -0
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +464 -4
- package/graphql.schema.json +4192 -1192
- package/package.json +1 -1
- package/src/graphql.ts +518 -4
|
@@ -1662,6 +1662,14 @@ export let RouteTagType;
|
|
|
1662
1662
|
RouteTagType["CROSSBORDER"] = "crossborder";
|
|
1663
1663
|
})(RouteTagType || (RouteTagType = {}));
|
|
1664
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
|
+
|
|
1665
1673
|
/** Types of warnings that can be encountered in a route. */
|
|
1666
1674
|
export let RouteWarningCode;
|
|
1667
1675
|
|