@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
|
@@ -938,6 +938,7 @@ export let HeavyVehiclesEUType;
|
|
|
938
938
|
HeavyVehiclesEUType["N1"] = "N1";
|
|
939
939
|
HeavyVehiclesEUType["N2"] = "N2";
|
|
940
940
|
HeavyVehiclesEUType["N3"] = "N3";
|
|
941
|
+
HeavyVehiclesEUType["N3_O4"] = "N3_O4";
|
|
941
942
|
})(HeavyVehiclesEUType || (HeavyVehiclesEUType = {}));
|
|
942
943
|
|
|
943
944
|
export let HeavyVehiclesFacility;
|
|
@@ -1316,6 +1317,7 @@ export let OICPValueAddedServices;
|
|
|
1316
1317
|
|
|
1317
1318
|
/** Operator ranking level. */
|
|
1318
1319
|
export let OperatorRankingLevel;
|
|
1320
|
+
/** 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. */
|
|
1319
1321
|
|
|
1320
1322
|
(function (OperatorRankingLevel) {
|
|
1321
1323
|
OperatorRankingLevel["LOW"] = "low";
|
|
@@ -1388,6 +1390,14 @@ export let RouteAlternativeType;
|
|
|
1388
1390
|
RouteAlternativeType["ALTERNATIVE"] = "alternative";
|
|
1389
1391
|
})(RouteAlternativeType || (RouteAlternativeType = {}));
|
|
1390
1392
|
|
|
1393
|
+
/** Types of route features that can be avoided in routing. */
|
|
1394
|
+
export let RouteAvoid;
|
|
1395
|
+
|
|
1396
|
+
(function (RouteAvoid) {
|
|
1397
|
+
RouteAvoid["TOLL_ROAD"] = "toll_road";
|
|
1398
|
+
RouteAvoid["FERRY"] = "ferry";
|
|
1399
|
+
})(RouteAvoid || (RouteAvoid = {}));
|
|
1400
|
+
|
|
1391
1401
|
/** Type of a maneuver indicating the main action. */
|
|
1392
1402
|
export let RouteDetailsLegManeuverType;
|
|
1393
1403
|
|