@chargetrip/types 1.47.2 → 1.49.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 +39 -0
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +39 -0
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +96 -99
- package/graphql.schema.json +503 -290
- package/package.json +1 -1
- package/src/graphql.ts +105 -103
package/dist/node/index.js
CHANGED
|
@@ -53,6 +53,8 @@ exports.Amenities = void 0;
|
|
|
53
53
|
Amenities["SUPERMARKET"] = "supermarket";
|
|
54
54
|
Amenities["PLAYGROUND"] = "playground";
|
|
55
55
|
Amenities["PHARMACY"] = "pharmacy";
|
|
56
|
+
Amenities["BAKERY"] = "bakery";
|
|
57
|
+
Amenities["CONVENIENCE_STORE"] = "convenience_store";
|
|
56
58
|
})(exports.Amenities || (exports.Amenities = {}));
|
|
57
59
|
|
|
58
60
|
/** A list of amenity types. */
|
|
@@ -70,6 +72,8 @@ exports.AmenityType = void 0;
|
|
|
70
72
|
AmenityType["SUPERMARKET"] = "supermarket";
|
|
71
73
|
AmenityType["PLAYGROUND"] = "playground";
|
|
72
74
|
AmenityType["PHARMACY"] = "pharmacy";
|
|
75
|
+
AmenityType["BAKERY"] = "bakery";
|
|
76
|
+
AmenityType["CONVENIENCE_STORE"] = "convenience_store";
|
|
73
77
|
})(exports.AmenityType || (exports.AmenityType = {}));
|
|
74
78
|
|
|
75
79
|
exports.AmenityWheelchairAccessibilityType = void 0;
|
|
@@ -142,6 +146,15 @@ exports.ChargingBehaviourCode = void 0;
|
|
|
142
146
|
ChargingBehaviourCode["OFFICE_CHARGING"] = "OFFICE_CHARGING";
|
|
143
147
|
})(exports.ChargingBehaviourCode || (exports.ChargingBehaviourCode = {}));
|
|
144
148
|
|
|
149
|
+
exports.CongestionLevel = void 0;
|
|
150
|
+
|
|
151
|
+
(function (CongestionLevel) {
|
|
152
|
+
CongestionLevel["UNKNOWN"] = "unknown";
|
|
153
|
+
CongestionLevel["LOW"] = "low";
|
|
154
|
+
CongestionLevel["MEDIUM"] = "medium";
|
|
155
|
+
CongestionLevel["HIGH"] = "high";
|
|
156
|
+
})(exports.CongestionLevel || (exports.CongestionLevel = {}));
|
|
157
|
+
|
|
145
158
|
exports.ConnectProvider = void 0;
|
|
146
159
|
|
|
147
160
|
(function (ConnectProvider) {
|
|
@@ -1453,6 +1466,18 @@ exports.RouteDetailsLegType = void 0;
|
|
|
1453
1466
|
RouteDetailsLegType["FINAL"] = "final";
|
|
1454
1467
|
})(exports.RouteDetailsLegType || (exports.RouteDetailsLegType = {}));
|
|
1455
1468
|
|
|
1469
|
+
/** Types of warnings that can be encountered in a route leg. */
|
|
1470
|
+
exports.RouteDetailsLegWarningCode = void 0;
|
|
1471
|
+
|
|
1472
|
+
(function (RouteDetailsLegWarningCode) {
|
|
1473
|
+
RouteDetailsLegWarningCode["VIA_NOT_VEHICLE_ACCESSIBLE"] = "via_not_vehicle_accessible";
|
|
1474
|
+
RouteDetailsLegWarningCode["OPERATORS_PREFERRED_NOT_AVAILABLE"] = "operators_preferred_not_available";
|
|
1475
|
+
RouteDetailsLegWarningCode["MAXIMUM_WEIGHT_EXCEEDED"] = "maximum_weight_exceeded";
|
|
1476
|
+
RouteDetailsLegWarningCode["SEGMENT_UNAVOIDABLE"] = "segment_unavoidable";
|
|
1477
|
+
RouteDetailsLegWarningCode["STATION_LIMITED_OPEN_HOURS"] = "station_limited_open_hours";
|
|
1478
|
+
RouteDetailsLegWarningCode["VIA_INSUFFICIENT_CHARGING_TIME"] = "via_insufficient_charging_time";
|
|
1479
|
+
})(exports.RouteDetailsLegWarningCode || (exports.RouteDetailsLegWarningCode = {}));
|
|
1480
|
+
|
|
1456
1481
|
/** Tags of a route. */
|
|
1457
1482
|
exports.RouteDetailsTag = void 0;
|
|
1458
1483
|
|
|
@@ -1610,6 +1635,20 @@ exports.RouteTagType = void 0;
|
|
|
1610
1635
|
RouteTagType["CROSSBORDER"] = "crossborder";
|
|
1611
1636
|
})(exports.RouteTagType || (exports.RouteTagType = {}));
|
|
1612
1637
|
|
|
1638
|
+
/** Types of warnings that can be encountered in a route. */
|
|
1639
|
+
exports.RouteWarningCode = void 0;
|
|
1640
|
+
|
|
1641
|
+
(function (RouteWarningCode) {
|
|
1642
|
+
RouteWarningCode["EV_UNAVAILABLE_IN_REGION"] = "ev_unavailable_in_region";
|
|
1643
|
+
RouteWarningCode["HEV_NO_CHARGING_STATIONS"] = "hev_no_charging_stations";
|
|
1644
|
+
RouteWarningCode["EREV_BATTERY_ONLY_RANGE"] = "erev_battery_only_range";
|
|
1645
|
+
RouteWarningCode["ORIGIN_NOT_VEHICLE_ACCESSIBLE"] = "origin_not_vehicle_accessible";
|
|
1646
|
+
RouteWarningCode["DESTINATION_NOT_VEHICLE_ACCESSIBLE"] = "destination_not_vehicle_accessible";
|
|
1647
|
+
RouteWarningCode["FINAL_SOC_NOT_POSSIBLE"] = "final_soc_not_possible";
|
|
1648
|
+
RouteWarningCode["LOW_SPEED"] = "low_speed";
|
|
1649
|
+
RouteWarningCode["OPERATOR_PREFERENCES_NOT_FOUND"] = "operator_preferences_not_found";
|
|
1650
|
+
})(exports.RouteWarningCode || (exports.RouteWarningCode = {}));
|
|
1651
|
+
|
|
1613
1652
|
exports.SolarIrradianceUnit = void 0;
|
|
1614
1653
|
|
|
1615
1654
|
(function (SolarIrradianceUnit) {
|