@chargetrip/types 1.46.2 → 1.47.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/CHANGELOG.md +7 -0
- 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 +64 -34
- package/graphql.schema.json +425 -772
- package/package.json +1 -1
- package/src/graphql.ts +70 -37
package/dist/node/index.js
CHANGED
|
@@ -1394,6 +1394,14 @@ exports.RouteAlternativeType = void 0;
|
|
|
1394
1394
|
RouteAlternativeType["ALTERNATIVE"] = "alternative";
|
|
1395
1395
|
})(exports.RouteAlternativeType || (exports.RouteAlternativeType = {}));
|
|
1396
1396
|
|
|
1397
|
+
/** Types of route features that can be avoided in routing. */
|
|
1398
|
+
exports.RouteAvoid = void 0;
|
|
1399
|
+
|
|
1400
|
+
(function (RouteAvoid) {
|
|
1401
|
+
RouteAvoid["TOLL_ROAD"] = "toll_road";
|
|
1402
|
+
RouteAvoid["FERRY"] = "ferry";
|
|
1403
|
+
})(exports.RouteAvoid || (exports.RouteAvoid = {}));
|
|
1404
|
+
|
|
1397
1405
|
/** Type of a maneuver indicating the main action. */
|
|
1398
1406
|
exports.RouteDetailsLegManeuverType = void 0;
|
|
1399
1407
|
|