@chargetrip/types 1.43.0 → 1.44.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 +7 -0
- package/README.md +2 -4
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +68 -19
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +68 -19
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +308 -177
- package/graphql.schema.json +1471 -951
- package/package.json +1 -1
- package/src/graphql.ts +329 -184
package/dist/node/index.js
CHANGED
|
@@ -231,7 +231,53 @@ exports.ConnectedVehicleStatus = void 0;
|
|
|
231
231
|
ConnectedVehicleStatus["REMOVED"] = "removed";
|
|
232
232
|
})(exports.ConnectedVehicleStatus || (exports.ConnectedVehicleStatus = {}));
|
|
233
233
|
|
|
234
|
+
/** Type of pricing that is applicable. */
|
|
235
|
+
exports.ConnectorPriceElementComponentType = void 0;
|
|
236
|
+
|
|
237
|
+
(function (ConnectorPriceElementComponentType) {
|
|
238
|
+
ConnectorPriceElementComponentType["ENERGY"] = "energy";
|
|
239
|
+
ConnectorPriceElementComponentType["FLAT"] = "flat";
|
|
240
|
+
ConnectorPriceElementComponentType["PARKING_TIME"] = "parking_time";
|
|
241
|
+
ConnectorPriceElementComponentType["TIME"] = "time";
|
|
242
|
+
})(exports.ConnectorPriceElementComponentType || (exports.ConnectorPriceElementComponentType = {}));
|
|
243
|
+
|
|
244
|
+
/** Type of the payment product. */
|
|
245
|
+
exports.ConnectorPriceProductSubscriptionType = void 0;
|
|
246
|
+
/** Type of the payment product. */
|
|
247
|
+
|
|
248
|
+
(function (ConnectorPriceProductSubscriptionType) {
|
|
249
|
+
ConnectorPriceProductSubscriptionType["MONTHLY"] = "monthly";
|
|
250
|
+
ConnectorPriceProductSubscriptionType["YEARLY"] = "yearly";
|
|
251
|
+
ConnectorPriceProductSubscriptionType["ONE_OFF"] = "one_off";
|
|
252
|
+
ConnectorPriceProductSubscriptionType["NOT_APPLICABLE"] = "not_applicable";
|
|
253
|
+
})(exports.ConnectorPriceProductSubscriptionType || (exports.ConnectorPriceProductSubscriptionType = {}));
|
|
254
|
+
|
|
255
|
+
exports.ConnectorPriceProductType = void 0;
|
|
256
|
+
|
|
257
|
+
(function (ConnectorPriceProductType) {
|
|
258
|
+
ConnectorPriceProductType["AD_HOC"] = "ad_hoc";
|
|
259
|
+
ConnectorPriceProductType["MSP"] = "msp";
|
|
260
|
+
ConnectorPriceProductType["CPO_SUBSCRIPTION"] = "cpo_subscription";
|
|
261
|
+
})(exports.ConnectorPriceProductType || (exports.ConnectorPriceProductType = {}));
|
|
262
|
+
|
|
263
|
+
/** The unit of time after which the overstay restrictions are applicable. */
|
|
264
|
+
exports.ConnectorPriceRestrictionsOverstayTimeUnit = void 0;
|
|
265
|
+
/** Describes the cost associated with reserving a charging station. */
|
|
266
|
+
|
|
267
|
+
(function (ConnectorPriceRestrictionsOverstayTimeUnit) {
|
|
268
|
+
ConnectorPriceRestrictionsOverstayTimeUnit["SECONDS"] = "seconds";
|
|
269
|
+
ConnectorPriceRestrictionsOverstayTimeUnit["MINUTES"] = "minutes";
|
|
270
|
+
ConnectorPriceRestrictionsOverstayTimeUnit["HOURS"] = "hours";
|
|
271
|
+
})(exports.ConnectorPriceRestrictionsOverstayTimeUnit || (exports.ConnectorPriceRestrictionsOverstayTimeUnit = {}));
|
|
272
|
+
|
|
273
|
+
exports.ConnectorPriceRestrictionsReservationType = void 0;
|
|
234
274
|
/** The socket or plug standard of the charging point. */
|
|
275
|
+
|
|
276
|
+
(function (ConnectorPriceRestrictionsReservationType) {
|
|
277
|
+
ConnectorPriceRestrictionsReservationType["RESERVATION"] = "reservation";
|
|
278
|
+
ConnectorPriceRestrictionsReservationType["RESERVATION_EXPIRES"] = "reservation_expires";
|
|
279
|
+
})(exports.ConnectorPriceRestrictionsReservationType || (exports.ConnectorPriceRestrictionsReservationType = {}));
|
|
280
|
+
|
|
235
281
|
exports.ConnectorType = void 0;
|
|
236
282
|
|
|
237
283
|
(function (ConnectorType) {
|
|
@@ -549,6 +595,7 @@ exports.CountryCodeAlpha2 = void 0;
|
|
|
549
595
|
|
|
550
596
|
/** Currency according to the ISO 4217 standard. */
|
|
551
597
|
exports.CurrencyUnit = void 0;
|
|
598
|
+
/** Represents a day of the week. */
|
|
552
599
|
|
|
553
600
|
(function (CurrencyUnit) {
|
|
554
601
|
CurrencyUnit["EUR"] = "EUR";
|
|
@@ -687,6 +734,18 @@ exports.CurrencyUnit = void 0;
|
|
|
687
734
|
CurrencyUnit["ZMW"] = "ZMW";
|
|
688
735
|
})(exports.CurrencyUnit || (exports.CurrencyUnit = {}));
|
|
689
736
|
|
|
737
|
+
exports.DayOfWeek = void 0;
|
|
738
|
+
|
|
739
|
+
(function (DayOfWeek) {
|
|
740
|
+
DayOfWeek["MONDAY"] = "monday";
|
|
741
|
+
DayOfWeek["TUESDAY"] = "tuesday";
|
|
742
|
+
DayOfWeek["WEDNESDAY"] = "wednesday";
|
|
743
|
+
DayOfWeek["THURSDAY"] = "thursday";
|
|
744
|
+
DayOfWeek["FRIDAY"] = "friday";
|
|
745
|
+
DayOfWeek["SATURDAY"] = "saturday";
|
|
746
|
+
DayOfWeek["SUNDAY"] = "sunday";
|
|
747
|
+
})(exports.DayOfWeek || (exports.DayOfWeek = {}));
|
|
748
|
+
|
|
690
749
|
exports.DimensionUnit = void 0;
|
|
691
750
|
/** Distance unit */
|
|
692
751
|
|
|
@@ -1153,6 +1212,15 @@ exports.OICPValueAddedServices = void 0;
|
|
|
1153
1212
|
OICPValueAddedServices["NONE"] = "none";
|
|
1154
1213
|
})(exports.OICPValueAddedServices || (exports.OICPValueAddedServices = {}));
|
|
1155
1214
|
|
|
1215
|
+
/** Operator ranking level. */
|
|
1216
|
+
exports.OperatorRankingLevel = void 0;
|
|
1217
|
+
|
|
1218
|
+
(function (OperatorRankingLevel) {
|
|
1219
|
+
OperatorRankingLevel["LOW"] = "low";
|
|
1220
|
+
OperatorRankingLevel["MEDIUM"] = "medium";
|
|
1221
|
+
OperatorRankingLevel["HIGH"] = "high";
|
|
1222
|
+
})(exports.OperatorRankingLevel || (exports.OperatorRankingLevel = {}));
|
|
1223
|
+
|
|
1156
1224
|
exports.ParkingCost = void 0;
|
|
1157
1225
|
|
|
1158
1226
|
(function (ParkingCost) {
|
|
@@ -1269,7 +1337,6 @@ exports.RouteDetailsLegType = void 0;
|
|
|
1269
1337
|
|
|
1270
1338
|
/** Tags of a route. */
|
|
1271
1339
|
exports.RouteDetailsTag = void 0;
|
|
1272
|
-
/** Types of a route. */
|
|
1273
1340
|
|
|
1274
1341
|
(function (RouteDetailsTag) {
|
|
1275
1342
|
RouteDetailsTag["ROAD"] = "road";
|
|
@@ -1280,14 +1347,6 @@ exports.RouteDetailsTag = void 0;
|
|
|
1280
1347
|
RouteDetailsTag["CROSSBORDER"] = "crossborder";
|
|
1281
1348
|
})(exports.RouteDetailsTag || (exports.RouteDetailsTag = {}));
|
|
1282
1349
|
|
|
1283
|
-
exports.RouteDetailsType = void 0;
|
|
1284
|
-
|
|
1285
|
-
(function (RouteDetailsType) {
|
|
1286
|
-
RouteDetailsType["FASTEST"] = "fastest";
|
|
1287
|
-
RouteDetailsType["BEST_MATCHING"] = "best_matching";
|
|
1288
|
-
RouteDetailsType["ALTERNATIVE"] = "alternative";
|
|
1289
|
-
})(exports.RouteDetailsType || (exports.RouteDetailsType = {}));
|
|
1290
|
-
|
|
1291
1350
|
/** Sign belonging to the instruction indicating the main maneuver. */
|
|
1292
1351
|
exports.RouteInstructionSign = void 0;
|
|
1293
1352
|
|
|
@@ -1649,16 +1708,6 @@ exports.VehicleRegion = void 0;
|
|
|
1649
1708
|
VehicleRegion["SA"] = "SA";
|
|
1650
1709
|
})(exports.VehicleRegion || (exports.VehicleRegion = {}));
|
|
1651
1710
|
|
|
1652
|
-
/** Status of a vehicle. */
|
|
1653
|
-
exports.VehicleStatus = void 0;
|
|
1654
|
-
|
|
1655
|
-
(function (VehicleStatus) {
|
|
1656
|
-
VehicleStatus["DRAFT"] = "draft";
|
|
1657
|
-
VehicleStatus["PUBLIC"] = "public";
|
|
1658
|
-
VehicleStatus["PRIVATE"] = "private";
|
|
1659
|
-
VehicleStatus["ARCHIVED"] = "archived";
|
|
1660
|
-
})(exports.VehicleStatus || (exports.VehicleStatus = {}));
|
|
1661
|
-
|
|
1662
1711
|
exports.VehicleType = void 0;
|
|
1663
1712
|
|
|
1664
1713
|
(function (VehicleType) {
|