@chargetrip/types 1.30.1 → 1.32.2
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 +25 -3
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +25 -3
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +134 -3
- package/graphql.schema.json +855 -3
- package/package.json +1 -1
- package/src/graphql.ts +156 -3
- package/CHANGELOG.md +0 -234
package/dist/node/index.js
CHANGED
|
@@ -63,6 +63,13 @@ exports.CarBatteryFieldEstimations = void 0;
|
|
|
63
63
|
CarBatteryFieldEstimations["U"] = "U";
|
|
64
64
|
})(exports.CarBatteryFieldEstimations || (exports.CarBatteryFieldEstimations = {}));
|
|
65
65
|
|
|
66
|
+
exports.CarConnectivityProvider = void 0;
|
|
67
|
+
/** Deprecated */
|
|
68
|
+
|
|
69
|
+
(function (CarConnectivityProvider) {
|
|
70
|
+
CarConnectivityProvider["ENODE"] = "Enode";
|
|
71
|
+
})(exports.CarConnectivityProvider || (exports.CarConnectivityProvider = {}));
|
|
72
|
+
|
|
66
73
|
/** Drivetrain */
|
|
67
74
|
exports.CarDrivetrain = void 0;
|
|
68
75
|
/** Deprecated */
|
|
@@ -157,12 +164,27 @@ exports.ChargingBehaviourCode = void 0;
|
|
|
157
164
|
})(exports.ChargingBehaviourCode || (exports.ChargingBehaviourCode = {}));
|
|
158
165
|
|
|
159
166
|
exports.ConnectProvider = void 0;
|
|
160
|
-
/** Connector data which extends OCPI Connector */
|
|
161
167
|
|
|
162
168
|
(function (ConnectProvider) {
|
|
163
169
|
ConnectProvider["ENODE"] = "Enode";
|
|
164
170
|
})(exports.ConnectProvider || (exports.ConnectProvider = {}));
|
|
165
171
|
|
|
172
|
+
exports.ConnectedVehiclePermission = void 0;
|
|
173
|
+
|
|
174
|
+
(function (ConnectedVehiclePermission) {
|
|
175
|
+
ConnectedVehiclePermission["LOCATION"] = "location";
|
|
176
|
+
ConnectedVehiclePermission["BATTERY"] = "battery";
|
|
177
|
+
})(exports.ConnectedVehiclePermission || (exports.ConnectedVehiclePermission = {}));
|
|
178
|
+
|
|
179
|
+
exports.ConnectedVehicleStatus = void 0;
|
|
180
|
+
/** Connector data which extends OCPI Connector */
|
|
181
|
+
|
|
182
|
+
(function (ConnectedVehicleStatus) {
|
|
183
|
+
ConnectedVehicleStatus["PENDING"] = "pending";
|
|
184
|
+
ConnectedVehicleStatus["AUTHORIZED"] = "authorized";
|
|
185
|
+
ConnectedVehicleStatus["DEAUTHORIZED"] = "deauthorized";
|
|
186
|
+
})(exports.ConnectedVehicleStatus || (exports.ConnectedVehicleStatus = {}));
|
|
187
|
+
|
|
166
188
|
/** The socket or plug standard of the charging point. */
|
|
167
189
|
exports.ConnectorType = void 0;
|
|
168
190
|
/** The complete contact information */
|
|
@@ -211,7 +233,6 @@ exports.ConnectorType = void 0;
|
|
|
211
233
|
|
|
212
234
|
/** ISO-3166 alpha-2 country codes */
|
|
213
235
|
exports.CountryCodeAlpha2 = void 0;
|
|
214
|
-
/** EVSE data which extends OCPI EVSE */
|
|
215
236
|
|
|
216
237
|
(function (CountryCodeAlpha2) {
|
|
217
238
|
CountryCodeAlpha2["AD"] = "AD";
|
|
@@ -470,12 +491,13 @@ exports.CountryCodeAlpha2 = void 0;
|
|
|
470
491
|
|
|
471
492
|
/** GeoJSON Feature type */
|
|
472
493
|
exports.FeatureType = void 0;
|
|
473
|
-
/**
|
|
494
|
+
/** Geometry point with GPS coordinates */
|
|
474
495
|
|
|
475
496
|
(function (FeatureType) {
|
|
476
497
|
FeatureType["FEATURE"] = "Feature";
|
|
477
498
|
})(exports.FeatureType || (exports.FeatureType = {}));
|
|
478
499
|
|
|
500
|
+
/** Navigation service providers available */
|
|
479
501
|
exports.InstructionsFormat = void 0;
|
|
480
502
|
|
|
481
503
|
(function (InstructionsFormat) {
|