@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
|
@@ -227,7 +227,53 @@ export let ConnectedVehicleStatus;
|
|
|
227
227
|
ConnectedVehicleStatus["REMOVED"] = "removed";
|
|
228
228
|
})(ConnectedVehicleStatus || (ConnectedVehicleStatus = {}));
|
|
229
229
|
|
|
230
|
+
/** Type of pricing that is applicable. */
|
|
231
|
+
export let ConnectorPriceElementComponentType;
|
|
232
|
+
|
|
233
|
+
(function (ConnectorPriceElementComponentType) {
|
|
234
|
+
ConnectorPriceElementComponentType["ENERGY"] = "energy";
|
|
235
|
+
ConnectorPriceElementComponentType["FLAT"] = "flat";
|
|
236
|
+
ConnectorPriceElementComponentType["PARKING_TIME"] = "parking_time";
|
|
237
|
+
ConnectorPriceElementComponentType["TIME"] = "time";
|
|
238
|
+
})(ConnectorPriceElementComponentType || (ConnectorPriceElementComponentType = {}));
|
|
239
|
+
|
|
240
|
+
/** Type of the payment product. */
|
|
241
|
+
export let ConnectorPriceProductSubscriptionType;
|
|
242
|
+
/** Type of the payment product. */
|
|
243
|
+
|
|
244
|
+
(function (ConnectorPriceProductSubscriptionType) {
|
|
245
|
+
ConnectorPriceProductSubscriptionType["MONTHLY"] = "monthly";
|
|
246
|
+
ConnectorPriceProductSubscriptionType["YEARLY"] = "yearly";
|
|
247
|
+
ConnectorPriceProductSubscriptionType["ONE_OFF"] = "one_off";
|
|
248
|
+
ConnectorPriceProductSubscriptionType["NOT_APPLICABLE"] = "not_applicable";
|
|
249
|
+
})(ConnectorPriceProductSubscriptionType || (ConnectorPriceProductSubscriptionType = {}));
|
|
250
|
+
|
|
251
|
+
export let ConnectorPriceProductType;
|
|
252
|
+
|
|
253
|
+
(function (ConnectorPriceProductType) {
|
|
254
|
+
ConnectorPriceProductType["AD_HOC"] = "ad_hoc";
|
|
255
|
+
ConnectorPriceProductType["MSP"] = "msp";
|
|
256
|
+
ConnectorPriceProductType["CPO_SUBSCRIPTION"] = "cpo_subscription";
|
|
257
|
+
})(ConnectorPriceProductType || (ConnectorPriceProductType = {}));
|
|
258
|
+
|
|
259
|
+
/** The unit of time after which the overstay restrictions are applicable. */
|
|
260
|
+
export let ConnectorPriceRestrictionsOverstayTimeUnit;
|
|
261
|
+
/** Describes the cost associated with reserving a charging station. */
|
|
262
|
+
|
|
263
|
+
(function (ConnectorPriceRestrictionsOverstayTimeUnit) {
|
|
264
|
+
ConnectorPriceRestrictionsOverstayTimeUnit["SECONDS"] = "seconds";
|
|
265
|
+
ConnectorPriceRestrictionsOverstayTimeUnit["MINUTES"] = "minutes";
|
|
266
|
+
ConnectorPriceRestrictionsOverstayTimeUnit["HOURS"] = "hours";
|
|
267
|
+
})(ConnectorPriceRestrictionsOverstayTimeUnit || (ConnectorPriceRestrictionsOverstayTimeUnit = {}));
|
|
268
|
+
|
|
269
|
+
export let ConnectorPriceRestrictionsReservationType;
|
|
230
270
|
/** The socket or plug standard of the charging point. */
|
|
271
|
+
|
|
272
|
+
(function (ConnectorPriceRestrictionsReservationType) {
|
|
273
|
+
ConnectorPriceRestrictionsReservationType["RESERVATION"] = "reservation";
|
|
274
|
+
ConnectorPriceRestrictionsReservationType["RESERVATION_EXPIRES"] = "reservation_expires";
|
|
275
|
+
})(ConnectorPriceRestrictionsReservationType || (ConnectorPriceRestrictionsReservationType = {}));
|
|
276
|
+
|
|
231
277
|
export let ConnectorType;
|
|
232
278
|
|
|
233
279
|
(function (ConnectorType) {
|
|
@@ -545,6 +591,7 @@ export let CountryCodeAlpha2;
|
|
|
545
591
|
|
|
546
592
|
/** Currency according to the ISO 4217 standard. */
|
|
547
593
|
export let CurrencyUnit;
|
|
594
|
+
/** Represents a day of the week. */
|
|
548
595
|
|
|
549
596
|
(function (CurrencyUnit) {
|
|
550
597
|
CurrencyUnit["EUR"] = "EUR";
|
|
@@ -683,6 +730,18 @@ export let CurrencyUnit;
|
|
|
683
730
|
CurrencyUnit["ZMW"] = "ZMW";
|
|
684
731
|
})(CurrencyUnit || (CurrencyUnit = {}));
|
|
685
732
|
|
|
733
|
+
export let DayOfWeek;
|
|
734
|
+
|
|
735
|
+
(function (DayOfWeek) {
|
|
736
|
+
DayOfWeek["MONDAY"] = "monday";
|
|
737
|
+
DayOfWeek["TUESDAY"] = "tuesday";
|
|
738
|
+
DayOfWeek["WEDNESDAY"] = "wednesday";
|
|
739
|
+
DayOfWeek["THURSDAY"] = "thursday";
|
|
740
|
+
DayOfWeek["FRIDAY"] = "friday";
|
|
741
|
+
DayOfWeek["SATURDAY"] = "saturday";
|
|
742
|
+
DayOfWeek["SUNDAY"] = "sunday";
|
|
743
|
+
})(DayOfWeek || (DayOfWeek = {}));
|
|
744
|
+
|
|
686
745
|
export let DimensionUnit;
|
|
687
746
|
/** Distance unit */
|
|
688
747
|
|
|
@@ -1149,6 +1208,15 @@ export let OICPValueAddedServices;
|
|
|
1149
1208
|
OICPValueAddedServices["NONE"] = "none";
|
|
1150
1209
|
})(OICPValueAddedServices || (OICPValueAddedServices = {}));
|
|
1151
1210
|
|
|
1211
|
+
/** Operator ranking level. */
|
|
1212
|
+
export let OperatorRankingLevel;
|
|
1213
|
+
|
|
1214
|
+
(function (OperatorRankingLevel) {
|
|
1215
|
+
OperatorRankingLevel["LOW"] = "low";
|
|
1216
|
+
OperatorRankingLevel["MEDIUM"] = "medium";
|
|
1217
|
+
OperatorRankingLevel["HIGH"] = "high";
|
|
1218
|
+
})(OperatorRankingLevel || (OperatorRankingLevel = {}));
|
|
1219
|
+
|
|
1152
1220
|
export let ParkingCost;
|
|
1153
1221
|
|
|
1154
1222
|
(function (ParkingCost) {
|
|
@@ -1265,7 +1333,6 @@ export let RouteDetailsLegType;
|
|
|
1265
1333
|
|
|
1266
1334
|
/** Tags of a route. */
|
|
1267
1335
|
export let RouteDetailsTag;
|
|
1268
|
-
/** Types of a route. */
|
|
1269
1336
|
|
|
1270
1337
|
(function (RouteDetailsTag) {
|
|
1271
1338
|
RouteDetailsTag["ROAD"] = "road";
|
|
@@ -1276,14 +1343,6 @@ export let RouteDetailsTag;
|
|
|
1276
1343
|
RouteDetailsTag["CROSSBORDER"] = "crossborder";
|
|
1277
1344
|
})(RouteDetailsTag || (RouteDetailsTag = {}));
|
|
1278
1345
|
|
|
1279
|
-
export let RouteDetailsType;
|
|
1280
|
-
|
|
1281
|
-
(function (RouteDetailsType) {
|
|
1282
|
-
RouteDetailsType["FASTEST"] = "fastest";
|
|
1283
|
-
RouteDetailsType["BEST_MATCHING"] = "best_matching";
|
|
1284
|
-
RouteDetailsType["ALTERNATIVE"] = "alternative";
|
|
1285
|
-
})(RouteDetailsType || (RouteDetailsType = {}));
|
|
1286
|
-
|
|
1287
1346
|
/** Sign belonging to the instruction indicating the main maneuver. */
|
|
1288
1347
|
export let RouteInstructionSign;
|
|
1289
1348
|
|
|
@@ -1645,16 +1704,6 @@ export let VehicleRegion;
|
|
|
1645
1704
|
VehicleRegion["SA"] = "SA";
|
|
1646
1705
|
})(VehicleRegion || (VehicleRegion = {}));
|
|
1647
1706
|
|
|
1648
|
-
/** Status of a vehicle. */
|
|
1649
|
-
export let VehicleStatus;
|
|
1650
|
-
|
|
1651
|
-
(function (VehicleStatus) {
|
|
1652
|
-
VehicleStatus["DRAFT"] = "draft";
|
|
1653
|
-
VehicleStatus["PUBLIC"] = "public";
|
|
1654
|
-
VehicleStatus["PRIVATE"] = "private";
|
|
1655
|
-
VehicleStatus["ARCHIVED"] = "archived";
|
|
1656
|
-
})(VehicleStatus || (VehicleStatus = {}));
|
|
1657
|
-
|
|
1658
1707
|
export let VehicleType;
|
|
1659
1708
|
|
|
1660
1709
|
(function (VehicleType) {
|