@chargetrip/types 1.26.0 → 1.29.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 +20 -5
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +20 -5
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/react-native/index.js.map +1 -1
- package/dist/ts/graphql.d.ts +90 -32
- package/graphql.schema.json +24 -0
- package/package.json +2 -2
- package/src/graphql.ts +4 -0
|
@@ -2,9 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
/** Information about an address */
|
|
4
4
|
|
|
5
|
+
/** Amenities available near a station */
|
|
6
|
+
export let Amenities;
|
|
5
7
|
/** The amenity model */
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
(function (Amenities) {
|
|
10
|
+
Amenities["PARK"] = "park";
|
|
11
|
+
Amenities["RESTAURANT"] = "restaurant";
|
|
12
|
+
Amenities["MUSEUM"] = "museum";
|
|
13
|
+
Amenities["COFFEE"] = "coffee";
|
|
14
|
+
Amenities["HOTEL"] = "hotel";
|
|
15
|
+
Amenities["SHOPPING"] = "shopping";
|
|
16
|
+
Amenities["BATHROOM"] = "bathroom";
|
|
17
|
+
Amenities["SUPERMARKET"] = "supermarket";
|
|
18
|
+
Amenities["PLAYGROUND"] = "playground";
|
|
19
|
+
Amenities["PHARMACY"] = "pharmacy";
|
|
20
|
+
})(Amenities || (Amenities = {}));
|
|
8
21
|
|
|
9
22
|
/** The type of the batter value */
|
|
10
23
|
export let BatteryInputType;
|
|
@@ -441,10 +454,10 @@ export let NavigationState;
|
|
|
441
454
|
/** Navigation session station type */
|
|
442
455
|
|
|
443
456
|
(function (NavigationState) {
|
|
444
|
-
NavigationState["DRIVING"] = "
|
|
445
|
-
NavigationState["CHARGING"] = "
|
|
446
|
-
NavigationState["FINISHED"] = "
|
|
447
|
-
NavigationState["ERROR"] = "
|
|
457
|
+
NavigationState["DRIVING"] = "driving";
|
|
458
|
+
NavigationState["CHARGING"] = "charging";
|
|
459
|
+
NavigationState["FINISHED"] = "finished";
|
|
460
|
+
NavigationState["ERROR"] = "error";
|
|
448
461
|
})(NavigationState || (NavigationState = {}));
|
|
449
462
|
|
|
450
463
|
/** The capabilities of an EVSE. */
|
|
@@ -769,6 +782,7 @@ export let RouteTagType;
|
|
|
769
782
|
RouteTagType["HIGHWAY"] = "highway";
|
|
770
783
|
RouteTagType["TOLL"] = "toll";
|
|
771
784
|
RouteTagType["FERRY"] = "ferry";
|
|
785
|
+
RouteTagType["WALKING"] = "walking";
|
|
772
786
|
})(RouteTagType || (RouteTagType = {}));
|
|
773
787
|
|
|
774
788
|
/** The station speed type */
|
|
@@ -789,5 +803,6 @@ export let StepType;
|
|
|
789
803
|
StepType["HIGHWAY"] = "highway";
|
|
790
804
|
StepType["TOLL"] = "toll";
|
|
791
805
|
StepType["FERRY"] = "ferry";
|
|
806
|
+
StepType["WALKING"] = "walking";
|
|
792
807
|
})(StepType || (StepType = {}));
|
|
793
808
|
//# sourceMappingURL=graphql.js.map
|