@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
|
@@ -49,6 +49,8 @@ export let Amenities;
|
|
|
49
49
|
Amenities["SUPERMARKET"] = "supermarket";
|
|
50
50
|
Amenities["PLAYGROUND"] = "playground";
|
|
51
51
|
Amenities["PHARMACY"] = "pharmacy";
|
|
52
|
+
Amenities["BAKERY"] = "bakery";
|
|
53
|
+
Amenities["CONVENIENCE_STORE"] = "convenience_store";
|
|
52
54
|
})(Amenities || (Amenities = {}));
|
|
53
55
|
|
|
54
56
|
/** A list of amenity types. */
|
|
@@ -66,6 +68,8 @@ export let AmenityType;
|
|
|
66
68
|
AmenityType["SUPERMARKET"] = "supermarket";
|
|
67
69
|
AmenityType["PLAYGROUND"] = "playground";
|
|
68
70
|
AmenityType["PHARMACY"] = "pharmacy";
|
|
71
|
+
AmenityType["BAKERY"] = "bakery";
|
|
72
|
+
AmenityType["CONVENIENCE_STORE"] = "convenience_store";
|
|
69
73
|
})(AmenityType || (AmenityType = {}));
|
|
70
74
|
|
|
71
75
|
export let AmenityWheelchairAccessibilityType;
|
|
@@ -138,6 +142,15 @@ export let ChargingBehaviourCode;
|
|
|
138
142
|
ChargingBehaviourCode["OFFICE_CHARGING"] = "OFFICE_CHARGING";
|
|
139
143
|
})(ChargingBehaviourCode || (ChargingBehaviourCode = {}));
|
|
140
144
|
|
|
145
|
+
export let CongestionLevel;
|
|
146
|
+
|
|
147
|
+
(function (CongestionLevel) {
|
|
148
|
+
CongestionLevel["UNKNOWN"] = "unknown";
|
|
149
|
+
CongestionLevel["LOW"] = "low";
|
|
150
|
+
CongestionLevel["MEDIUM"] = "medium";
|
|
151
|
+
CongestionLevel["HIGH"] = "high";
|
|
152
|
+
})(CongestionLevel || (CongestionLevel = {}));
|
|
153
|
+
|
|
141
154
|
export let ConnectProvider;
|
|
142
155
|
|
|
143
156
|
(function (ConnectProvider) {
|
|
@@ -1449,6 +1462,18 @@ export let RouteDetailsLegType;
|
|
|
1449
1462
|
RouteDetailsLegType["FINAL"] = "final";
|
|
1450
1463
|
})(RouteDetailsLegType || (RouteDetailsLegType = {}));
|
|
1451
1464
|
|
|
1465
|
+
/** Types of warnings that can be encountered in a route leg. */
|
|
1466
|
+
export let RouteDetailsLegWarningCode;
|
|
1467
|
+
|
|
1468
|
+
(function (RouteDetailsLegWarningCode) {
|
|
1469
|
+
RouteDetailsLegWarningCode["VIA_NOT_VEHICLE_ACCESSIBLE"] = "via_not_vehicle_accessible";
|
|
1470
|
+
RouteDetailsLegWarningCode["OPERATORS_PREFERRED_NOT_AVAILABLE"] = "operators_preferred_not_available";
|
|
1471
|
+
RouteDetailsLegWarningCode["MAXIMUM_WEIGHT_EXCEEDED"] = "maximum_weight_exceeded";
|
|
1472
|
+
RouteDetailsLegWarningCode["SEGMENT_UNAVOIDABLE"] = "segment_unavoidable";
|
|
1473
|
+
RouteDetailsLegWarningCode["STATION_LIMITED_OPEN_HOURS"] = "station_limited_open_hours";
|
|
1474
|
+
RouteDetailsLegWarningCode["VIA_INSUFFICIENT_CHARGING_TIME"] = "via_insufficient_charging_time";
|
|
1475
|
+
})(RouteDetailsLegWarningCode || (RouteDetailsLegWarningCode = {}));
|
|
1476
|
+
|
|
1452
1477
|
/** Tags of a route. */
|
|
1453
1478
|
export let RouteDetailsTag;
|
|
1454
1479
|
|
|
@@ -1606,6 +1631,20 @@ export let RouteTagType;
|
|
|
1606
1631
|
RouteTagType["CROSSBORDER"] = "crossborder";
|
|
1607
1632
|
})(RouteTagType || (RouteTagType = {}));
|
|
1608
1633
|
|
|
1634
|
+
/** Types of warnings that can be encountered in a route. */
|
|
1635
|
+
export let RouteWarningCode;
|
|
1636
|
+
|
|
1637
|
+
(function (RouteWarningCode) {
|
|
1638
|
+
RouteWarningCode["EV_UNAVAILABLE_IN_REGION"] = "ev_unavailable_in_region";
|
|
1639
|
+
RouteWarningCode["HEV_NO_CHARGING_STATIONS"] = "hev_no_charging_stations";
|
|
1640
|
+
RouteWarningCode["EREV_BATTERY_ONLY_RANGE"] = "erev_battery_only_range";
|
|
1641
|
+
RouteWarningCode["ORIGIN_NOT_VEHICLE_ACCESSIBLE"] = "origin_not_vehicle_accessible";
|
|
1642
|
+
RouteWarningCode["DESTINATION_NOT_VEHICLE_ACCESSIBLE"] = "destination_not_vehicle_accessible";
|
|
1643
|
+
RouteWarningCode["FINAL_SOC_NOT_POSSIBLE"] = "final_soc_not_possible";
|
|
1644
|
+
RouteWarningCode["LOW_SPEED"] = "low_speed";
|
|
1645
|
+
RouteWarningCode["OPERATOR_PREFERENCES_NOT_FOUND"] = "operator_preferences_not_found";
|
|
1646
|
+
})(RouteWarningCode || (RouteWarningCode = {}));
|
|
1647
|
+
|
|
1609
1648
|
export let SolarIrradianceUnit;
|
|
1610
1649
|
|
|
1611
1650
|
(function (SolarIrradianceUnit) {
|