@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
package/dist/node/index.js
CHANGED
|
@@ -1666,6 +1666,14 @@ exports.RouteTagType = void 0;
|
|
|
1666
1666
|
RouteTagType["CROSSBORDER"] = "crossborder";
|
|
1667
1667
|
})(exports.RouteTagType || (exports.RouteTagType = {}));
|
|
1668
1668
|
|
|
1669
|
+
/** Types of route features that can be avoided in truck routing. */
|
|
1670
|
+
exports.RouteTruckAvoid = void 0;
|
|
1671
|
+
|
|
1672
|
+
(function (RouteTruckAvoid) {
|
|
1673
|
+
RouteTruckAvoid["TOLL_ROAD"] = "toll_road";
|
|
1674
|
+
RouteTruckAvoid["FERRY"] = "ferry";
|
|
1675
|
+
})(exports.RouteTruckAvoid || (exports.RouteTruckAvoid = {}));
|
|
1676
|
+
|
|
1669
1677
|
/** Types of warnings that can be encountered in a route. */
|
|
1670
1678
|
exports.RouteWarningCode = void 0;
|
|
1671
1679
|
|