@chargetrip/types 1.32.2 → 1.33.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 +248 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +17 -6
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +17 -6
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +82 -26
- package/graphql.schema.json +374 -119
- package/package.json +1 -2
- package/src/graphql.ts +88 -29
|
@@ -38,7 +38,7 @@ export let Amenities;
|
|
|
38
38
|
Amenities["PHARMACY"] = "pharmacy";
|
|
39
39
|
})(Amenities || (Amenities = {}));
|
|
40
40
|
|
|
41
|
-
/** The type of the
|
|
41
|
+
/** The type of the battery value */
|
|
42
42
|
export let BatteryInputType;
|
|
43
43
|
/** Output of a car query */
|
|
44
44
|
|
|
@@ -165,12 +165,13 @@ export let ConnectProvider;
|
|
|
165
165
|
ConnectProvider["ENODE"] = "Enode";
|
|
166
166
|
})(ConnectProvider || (ConnectProvider = {}));
|
|
167
167
|
|
|
168
|
-
export let
|
|
168
|
+
export let ConnectScope;
|
|
169
169
|
|
|
170
|
-
(function (
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
170
|
+
(function (ConnectScope) {
|
|
171
|
+
ConnectScope["LOCATION"] = "location";
|
|
172
|
+
ConnectScope["CHARGE_STATE"] = "charge_state";
|
|
173
|
+
ConnectScope["ODOMETER"] = "odometer";
|
|
174
|
+
})(ConnectScope || (ConnectScope = {}));
|
|
174
175
|
|
|
175
176
|
export let ConnectedVehicleStatus;
|
|
176
177
|
/** Connector data which extends OCPI Connector */
|
|
@@ -485,6 +486,16 @@ export let CountryCodeAlpha2;
|
|
|
485
486
|
CountryCodeAlpha2["ZW"] = "ZW";
|
|
486
487
|
})(CountryCodeAlpha2 || (CountryCodeAlpha2 = {}));
|
|
487
488
|
|
|
489
|
+
export let DistanceUnit;
|
|
490
|
+
/** EVSE data which extends OCPI EVSE */
|
|
491
|
+
|
|
492
|
+
(function (DistanceUnit) {
|
|
493
|
+
DistanceUnit["METER"] = "meter";
|
|
494
|
+
DistanceUnit["FOOT"] = "foot";
|
|
495
|
+
DistanceUnit["KILOMETER"] = "kilometer";
|
|
496
|
+
DistanceUnit["MILE"] = "mile";
|
|
497
|
+
})(DistanceUnit || (DistanceUnit = {}));
|
|
498
|
+
|
|
488
499
|
/** GeoJSON Feature type */
|
|
489
500
|
export let FeatureType;
|
|
490
501
|
/** Geometry point with GPS coordinates */
|