@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
|
@@ -59,6 +59,13 @@ export let CarBatteryFieldEstimations;
|
|
|
59
59
|
CarBatteryFieldEstimations["U"] = "U";
|
|
60
60
|
})(CarBatteryFieldEstimations || (CarBatteryFieldEstimations = {}));
|
|
61
61
|
|
|
62
|
+
export let CarConnectivityProvider;
|
|
63
|
+
/** Deprecated */
|
|
64
|
+
|
|
65
|
+
(function (CarConnectivityProvider) {
|
|
66
|
+
CarConnectivityProvider["ENODE"] = "Enode";
|
|
67
|
+
})(CarConnectivityProvider || (CarConnectivityProvider = {}));
|
|
68
|
+
|
|
62
69
|
/** Drivetrain */
|
|
63
70
|
export let CarDrivetrain;
|
|
64
71
|
/** Deprecated */
|
|
@@ -153,12 +160,27 @@ export let ChargingBehaviourCode;
|
|
|
153
160
|
})(ChargingBehaviourCode || (ChargingBehaviourCode = {}));
|
|
154
161
|
|
|
155
162
|
export let ConnectProvider;
|
|
156
|
-
/** Connector data which extends OCPI Connector */
|
|
157
163
|
|
|
158
164
|
(function (ConnectProvider) {
|
|
159
165
|
ConnectProvider["ENODE"] = "Enode";
|
|
160
166
|
})(ConnectProvider || (ConnectProvider = {}));
|
|
161
167
|
|
|
168
|
+
export let ConnectedVehiclePermission;
|
|
169
|
+
|
|
170
|
+
(function (ConnectedVehiclePermission) {
|
|
171
|
+
ConnectedVehiclePermission["LOCATION"] = "location";
|
|
172
|
+
ConnectedVehiclePermission["BATTERY"] = "battery";
|
|
173
|
+
})(ConnectedVehiclePermission || (ConnectedVehiclePermission = {}));
|
|
174
|
+
|
|
175
|
+
export let ConnectedVehicleStatus;
|
|
176
|
+
/** Connector data which extends OCPI Connector */
|
|
177
|
+
|
|
178
|
+
(function (ConnectedVehicleStatus) {
|
|
179
|
+
ConnectedVehicleStatus["PENDING"] = "pending";
|
|
180
|
+
ConnectedVehicleStatus["AUTHORIZED"] = "authorized";
|
|
181
|
+
ConnectedVehicleStatus["DEAUTHORIZED"] = "deauthorized";
|
|
182
|
+
})(ConnectedVehicleStatus || (ConnectedVehicleStatus = {}));
|
|
183
|
+
|
|
162
184
|
/** The socket or plug standard of the charging point. */
|
|
163
185
|
export let ConnectorType;
|
|
164
186
|
/** The complete contact information */
|
|
@@ -207,7 +229,6 @@ export let ConnectorType;
|
|
|
207
229
|
|
|
208
230
|
/** ISO-3166 alpha-2 country codes */
|
|
209
231
|
export let CountryCodeAlpha2;
|
|
210
|
-
/** EVSE data which extends OCPI EVSE */
|
|
211
232
|
|
|
212
233
|
(function (CountryCodeAlpha2) {
|
|
213
234
|
CountryCodeAlpha2["AD"] = "AD";
|
|
@@ -466,12 +487,13 @@ export let CountryCodeAlpha2;
|
|
|
466
487
|
|
|
467
488
|
/** GeoJSON Feature type */
|
|
468
489
|
export let FeatureType;
|
|
469
|
-
/**
|
|
490
|
+
/** Geometry point with GPS coordinates */
|
|
470
491
|
|
|
471
492
|
(function (FeatureType) {
|
|
472
493
|
FeatureType["FEATURE"] = "Feature";
|
|
473
494
|
})(FeatureType || (FeatureType = {}));
|
|
474
495
|
|
|
496
|
+
/** Navigation service providers available */
|
|
475
497
|
export let InstructionsFormat;
|
|
476
498
|
|
|
477
499
|
(function (InstructionsFormat) {
|