@chargetrip/types 1.26.0 → 1.27.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 +206 -0
- 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/ts/graphql.d.ts +90 -32
- package/graphql.schema.json +24 -0
- package/package.json +3 -3
- package/src/graphql.ts +4 -0
package/dist/node/index.js
CHANGED
|
@@ -6,9 +6,22 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
6
6
|
|
|
7
7
|
/** Information about an address */
|
|
8
8
|
|
|
9
|
+
/** Amenities available near a station */
|
|
10
|
+
exports.Amenities = void 0;
|
|
9
11
|
/** The amenity model */
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
(function (Amenities) {
|
|
14
|
+
Amenities["PARK"] = "park";
|
|
15
|
+
Amenities["RESTAURANT"] = "restaurant";
|
|
16
|
+
Amenities["MUSEUM"] = "museum";
|
|
17
|
+
Amenities["COFFEE"] = "coffee";
|
|
18
|
+
Amenities["HOTEL"] = "hotel";
|
|
19
|
+
Amenities["SHOPPING"] = "shopping";
|
|
20
|
+
Amenities["BATHROOM"] = "bathroom";
|
|
21
|
+
Amenities["SUPERMARKET"] = "supermarket";
|
|
22
|
+
Amenities["PLAYGROUND"] = "playground";
|
|
23
|
+
Amenities["PHARMACY"] = "pharmacy";
|
|
24
|
+
})(exports.Amenities || (exports.Amenities = {}));
|
|
12
25
|
|
|
13
26
|
/** The type of the batter value */
|
|
14
27
|
exports.BatteryInputType = void 0;
|
|
@@ -445,10 +458,10 @@ exports.NavigationState = void 0;
|
|
|
445
458
|
/** Navigation session station type */
|
|
446
459
|
|
|
447
460
|
(function (NavigationState) {
|
|
448
|
-
NavigationState["DRIVING"] = "
|
|
449
|
-
NavigationState["CHARGING"] = "
|
|
450
|
-
NavigationState["FINISHED"] = "
|
|
451
|
-
NavigationState["ERROR"] = "
|
|
461
|
+
NavigationState["DRIVING"] = "driving";
|
|
462
|
+
NavigationState["CHARGING"] = "charging";
|
|
463
|
+
NavigationState["FINISHED"] = "finished";
|
|
464
|
+
NavigationState["ERROR"] = "error";
|
|
452
465
|
})(exports.NavigationState || (exports.NavigationState = {}));
|
|
453
466
|
|
|
454
467
|
/** The capabilities of an EVSE. */
|
|
@@ -773,6 +786,7 @@ exports.RouteTagType = void 0;
|
|
|
773
786
|
RouteTagType["HIGHWAY"] = "highway";
|
|
774
787
|
RouteTagType["TOLL"] = "toll";
|
|
775
788
|
RouteTagType["FERRY"] = "ferry";
|
|
789
|
+
RouteTagType["WALKING"] = "walking";
|
|
776
790
|
})(exports.RouteTagType || (exports.RouteTagType = {}));
|
|
777
791
|
|
|
778
792
|
/** The station speed type */
|
|
@@ -793,5 +807,6 @@ exports.StepType = void 0;
|
|
|
793
807
|
StepType["HIGHWAY"] = "highway";
|
|
794
808
|
StepType["TOLL"] = "toll";
|
|
795
809
|
StepType["FERRY"] = "ferry";
|
|
810
|
+
StepType["WALKING"] = "walking";
|
|
796
811
|
})(exports.StepType || (exports.StepType = {}));
|
|
797
812
|
//# sourceMappingURL=index.js.map
|