@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
package/dist/node/index.js
CHANGED
|
@@ -42,7 +42,7 @@ exports.Amenities = void 0;
|
|
|
42
42
|
Amenities["PHARMACY"] = "pharmacy";
|
|
43
43
|
})(exports.Amenities || (exports.Amenities = {}));
|
|
44
44
|
|
|
45
|
-
/** The type of the
|
|
45
|
+
/** The type of the battery value */
|
|
46
46
|
exports.BatteryInputType = void 0;
|
|
47
47
|
/** Output of a car query */
|
|
48
48
|
|
|
@@ -169,12 +169,13 @@ exports.ConnectProvider = void 0;
|
|
|
169
169
|
ConnectProvider["ENODE"] = "Enode";
|
|
170
170
|
})(exports.ConnectProvider || (exports.ConnectProvider = {}));
|
|
171
171
|
|
|
172
|
-
exports.
|
|
172
|
+
exports.ConnectScope = void 0;
|
|
173
173
|
|
|
174
|
-
(function (
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
174
|
+
(function (ConnectScope) {
|
|
175
|
+
ConnectScope["LOCATION"] = "location";
|
|
176
|
+
ConnectScope["CHARGE_STATE"] = "charge_state";
|
|
177
|
+
ConnectScope["ODOMETER"] = "odometer";
|
|
178
|
+
})(exports.ConnectScope || (exports.ConnectScope = {}));
|
|
178
179
|
|
|
179
180
|
exports.ConnectedVehicleStatus = void 0;
|
|
180
181
|
/** Connector data which extends OCPI Connector */
|
|
@@ -489,6 +490,16 @@ exports.CountryCodeAlpha2 = void 0;
|
|
|
489
490
|
CountryCodeAlpha2["ZW"] = "ZW";
|
|
490
491
|
})(exports.CountryCodeAlpha2 || (exports.CountryCodeAlpha2 = {}));
|
|
491
492
|
|
|
493
|
+
exports.DistanceUnit = void 0;
|
|
494
|
+
/** EVSE data which extends OCPI EVSE */
|
|
495
|
+
|
|
496
|
+
(function (DistanceUnit) {
|
|
497
|
+
DistanceUnit["METER"] = "meter";
|
|
498
|
+
DistanceUnit["FOOT"] = "foot";
|
|
499
|
+
DistanceUnit["KILOMETER"] = "kilometer";
|
|
500
|
+
DistanceUnit["MILE"] = "mile";
|
|
501
|
+
})(exports.DistanceUnit || (exports.DistanceUnit = {}));
|
|
502
|
+
|
|
492
503
|
/** GeoJSON Feature type */
|
|
493
504
|
exports.FeatureType = void 0;
|
|
494
505
|
/** Geometry point with GPS coordinates */
|