@chargetrip/types 1.46.1 → 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 +14 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +10 -0
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +10 -0
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +217 -151
- package/graphql.schema.json +802 -861
- package/package.json +1 -1
- package/src/graphql.ts +225 -154
package/dist/node/index.js
CHANGED
|
@@ -942,6 +942,7 @@ exports.HeavyVehiclesEUType = void 0;
|
|
|
942
942
|
HeavyVehiclesEUType["N1"] = "N1";
|
|
943
943
|
HeavyVehiclesEUType["N2"] = "N2";
|
|
944
944
|
HeavyVehiclesEUType["N3"] = "N3";
|
|
945
|
+
HeavyVehiclesEUType["N3_O4"] = "N3_O4";
|
|
945
946
|
})(exports.HeavyVehiclesEUType || (exports.HeavyVehiclesEUType = {}));
|
|
946
947
|
|
|
947
948
|
exports.HeavyVehiclesFacility = void 0;
|
|
@@ -1320,6 +1321,7 @@ exports.OICPValueAddedServices = void 0;
|
|
|
1320
1321
|
|
|
1321
1322
|
/** Operator ranking level. */
|
|
1322
1323
|
exports.OperatorRankingLevel = void 0;
|
|
1324
|
+
/** Ranking configuration for the operator. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */
|
|
1323
1325
|
|
|
1324
1326
|
(function (OperatorRankingLevel) {
|
|
1325
1327
|
OperatorRankingLevel["LOW"] = "low";
|
|
@@ -1392,6 +1394,14 @@ exports.RouteAlternativeType = void 0;
|
|
|
1392
1394
|
RouteAlternativeType["ALTERNATIVE"] = "alternative";
|
|
1393
1395
|
})(exports.RouteAlternativeType || (exports.RouteAlternativeType = {}));
|
|
1394
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
|
+
|
|
1395
1405
|
/** Type of a maneuver indicating the main action. */
|
|
1396
1406
|
exports.RouteDetailsLegManeuverType = void 0;
|
|
1397
1407
|
|