@chargetrip/types 1.42.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 +14 -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 +289 -11
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +289 -11
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +1619 -332
- package/graphql.schema.json +17645 -9340
- package/package.json +1 -1
- package/src/graphql.ts +1744 -328
package/dist/node/index.js
CHANGED
|
@@ -65,6 +65,7 @@ exports.AmenityType = void 0;
|
|
|
65
65
|
AmenityType["PHARMACY"] = "pharmacy";
|
|
66
66
|
})(exports.AmenityType || (exports.AmenityType = {}));
|
|
67
67
|
|
|
68
|
+
/** Auxiliary consumption units. */
|
|
68
69
|
exports.AuxiliaryConsumptionUnit = void 0;
|
|
69
70
|
/** The type of the battery value. */
|
|
70
71
|
|
|
@@ -175,6 +176,7 @@ exports.ChargeMode = void 0;
|
|
|
175
176
|
ChargeMode["ALWAYS_TO_MAX_CHARGE"] = "ALWAYS_TO_MAX_CHARGE";
|
|
176
177
|
})(exports.ChargeMode || (exports.ChargeMode = {}));
|
|
177
178
|
|
|
179
|
+
/** Charge speed unit. */
|
|
178
180
|
exports.ChargeSpeedUnit = void 0;
|
|
179
181
|
|
|
180
182
|
(function (ChargeSpeedUnit) {
|
|
@@ -183,6 +185,7 @@ exports.ChargeSpeedUnit = void 0;
|
|
|
183
185
|
ChargeSpeedUnit["MILES_PER_HOUR"] = "miles_per_hour";
|
|
184
186
|
})(exports.ChargeSpeedUnit || (exports.ChargeSpeedUnit = {}));
|
|
185
187
|
|
|
188
|
+
/** Status of a charger. */
|
|
186
189
|
exports.ChargerStatus = void 0;
|
|
187
190
|
/** Grouping by status of the chargers. */
|
|
188
191
|
|
|
@@ -228,7 +231,53 @@ exports.ConnectedVehicleStatus = void 0;
|
|
|
228
231
|
ConnectedVehicleStatus["REMOVED"] = "removed";
|
|
229
232
|
})(exports.ConnectedVehicleStatus || (exports.ConnectedVehicleStatus = {}));
|
|
230
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;
|
|
231
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
|
+
|
|
232
281
|
exports.ConnectorType = void 0;
|
|
233
282
|
|
|
234
283
|
(function (ConnectorType) {
|
|
@@ -546,14 +595,159 @@ exports.CountryCodeAlpha2 = void 0;
|
|
|
546
595
|
|
|
547
596
|
/** Currency according to the ISO 4217 standard. */
|
|
548
597
|
exports.CurrencyUnit = void 0;
|
|
598
|
+
/** Represents a day of the week. */
|
|
549
599
|
|
|
550
600
|
(function (CurrencyUnit) {
|
|
551
601
|
CurrencyUnit["EUR"] = "EUR";
|
|
552
602
|
CurrencyUnit["USD"] = "USD";
|
|
553
603
|
CurrencyUnit["GBP"] = "GBP";
|
|
604
|
+
CurrencyUnit["AED"] = "AED";
|
|
605
|
+
CurrencyUnit["AFN"] = "AFN";
|
|
606
|
+
CurrencyUnit["ALL"] = "ALL";
|
|
607
|
+
CurrencyUnit["AMD"] = "AMD";
|
|
608
|
+
CurrencyUnit["ANG"] = "ANG";
|
|
609
|
+
CurrencyUnit["AOA"] = "AOA";
|
|
610
|
+
CurrencyUnit["ARS"] = "ARS";
|
|
611
|
+
CurrencyUnit["AUD"] = "AUD";
|
|
612
|
+
CurrencyUnit["AWG"] = "AWG";
|
|
613
|
+
CurrencyUnit["AZN"] = "AZN";
|
|
614
|
+
CurrencyUnit["BAM"] = "BAM";
|
|
615
|
+
CurrencyUnit["BBD"] = "BBD";
|
|
616
|
+
CurrencyUnit["BDT"] = "BDT";
|
|
617
|
+
CurrencyUnit["BGN"] = "BGN";
|
|
618
|
+
CurrencyUnit["BIF"] = "BIF";
|
|
619
|
+
CurrencyUnit["BMD"] = "BMD";
|
|
620
|
+
CurrencyUnit["BND"] = "BND";
|
|
621
|
+
CurrencyUnit["BOB"] = "BOB";
|
|
622
|
+
CurrencyUnit["BRL"] = "BRL";
|
|
623
|
+
CurrencyUnit["BSD"] = "BSD";
|
|
624
|
+
CurrencyUnit["BWP"] = "BWP";
|
|
625
|
+
CurrencyUnit["BYN"] = "BYN";
|
|
626
|
+
CurrencyUnit["BZD"] = "BZD";
|
|
627
|
+
CurrencyUnit["CAD"] = "CAD";
|
|
628
|
+
CurrencyUnit["CDF"] = "CDF";
|
|
629
|
+
CurrencyUnit["CHF"] = "CHF";
|
|
630
|
+
CurrencyUnit["CLP"] = "CLP";
|
|
631
|
+
CurrencyUnit["CNY"] = "CNY";
|
|
632
|
+
CurrencyUnit["COP"] = "COP";
|
|
633
|
+
CurrencyUnit["CRC"] = "CRC";
|
|
634
|
+
CurrencyUnit["CVE"] = "CVE";
|
|
635
|
+
CurrencyUnit["CZK"] = "CZK";
|
|
636
|
+
CurrencyUnit["DJF"] = "DJF";
|
|
637
|
+
CurrencyUnit["DKK"] = "DKK";
|
|
638
|
+
CurrencyUnit["DOP"] = "DOP";
|
|
639
|
+
CurrencyUnit["DZD"] = "DZD";
|
|
640
|
+
CurrencyUnit["EGP"] = "EGP";
|
|
641
|
+
CurrencyUnit["ETB"] = "ETB";
|
|
642
|
+
CurrencyUnit["FJD"] = "FJD";
|
|
643
|
+
CurrencyUnit["FKP"] = "FKP";
|
|
644
|
+
CurrencyUnit["GEL"] = "GEL";
|
|
645
|
+
CurrencyUnit["GIP"] = "GIP";
|
|
646
|
+
CurrencyUnit["GMD"] = "GMD";
|
|
647
|
+
CurrencyUnit["GNF"] = "GNF";
|
|
648
|
+
CurrencyUnit["GTQ"] = "GTQ";
|
|
649
|
+
CurrencyUnit["GYD"] = "GYD";
|
|
650
|
+
CurrencyUnit["HKD"] = "HKD";
|
|
651
|
+
CurrencyUnit["HNL"] = "HNL";
|
|
652
|
+
CurrencyUnit["HTG"] = "HTG";
|
|
653
|
+
CurrencyUnit["HUF"] = "HUF";
|
|
654
|
+
CurrencyUnit["IDR"] = "IDR";
|
|
655
|
+
CurrencyUnit["ILS"] = "ILS";
|
|
656
|
+
CurrencyUnit["INR"] = "INR";
|
|
657
|
+
CurrencyUnit["ISK"] = "ISK";
|
|
658
|
+
CurrencyUnit["JMD"] = "JMD";
|
|
659
|
+
CurrencyUnit["JPY"] = "JPY";
|
|
660
|
+
CurrencyUnit["KES"] = "KES";
|
|
661
|
+
CurrencyUnit["KGS"] = "KGS";
|
|
662
|
+
CurrencyUnit["KHR"] = "KHR";
|
|
663
|
+
CurrencyUnit["KMF"] = "KMF";
|
|
664
|
+
CurrencyUnit["KRW"] = "KRW";
|
|
665
|
+
CurrencyUnit["KYD"] = "KYD";
|
|
666
|
+
CurrencyUnit["KZT"] = "KZT";
|
|
667
|
+
CurrencyUnit["LAK"] = "LAK";
|
|
668
|
+
CurrencyUnit["LBP"] = "LBP";
|
|
669
|
+
CurrencyUnit["LKR"] = "LKR";
|
|
670
|
+
CurrencyUnit["LRD"] = "LRD";
|
|
671
|
+
CurrencyUnit["LSL"] = "LSL";
|
|
672
|
+
CurrencyUnit["MAD"] = "MAD";
|
|
673
|
+
CurrencyUnit["MDL"] = "MDL";
|
|
674
|
+
CurrencyUnit["MGA"] = "MGA";
|
|
675
|
+
CurrencyUnit["MKD"] = "MKD";
|
|
676
|
+
CurrencyUnit["MMK"] = "MMK";
|
|
677
|
+
CurrencyUnit["MNT"] = "MNT";
|
|
678
|
+
CurrencyUnit["MOP"] = "MOP";
|
|
679
|
+
CurrencyUnit["MUR"] = "MUR";
|
|
680
|
+
CurrencyUnit["MVR"] = "MVR";
|
|
681
|
+
CurrencyUnit["MWK"] = "MWK";
|
|
682
|
+
CurrencyUnit["MXN"] = "MXN";
|
|
683
|
+
CurrencyUnit["MYR"] = "MYR";
|
|
684
|
+
CurrencyUnit["MZN"] = "MZN";
|
|
685
|
+
CurrencyUnit["NAD"] = "NAD";
|
|
686
|
+
CurrencyUnit["NGN"] = "NGN";
|
|
687
|
+
CurrencyUnit["NIO"] = "NIO";
|
|
688
|
+
CurrencyUnit["NOK"] = "NOK";
|
|
689
|
+
CurrencyUnit["NPR"] = "NPR";
|
|
690
|
+
CurrencyUnit["NZD"] = "NZD";
|
|
691
|
+
CurrencyUnit["PAB"] = "PAB";
|
|
692
|
+
CurrencyUnit["PEN"] = "PEN";
|
|
693
|
+
CurrencyUnit["PGK"] = "PGK";
|
|
694
|
+
CurrencyUnit["PHP"] = "PHP";
|
|
695
|
+
CurrencyUnit["PKR"] = "PKR";
|
|
696
|
+
CurrencyUnit["PLN"] = "PLN";
|
|
697
|
+
CurrencyUnit["PYG"] = "PYG";
|
|
698
|
+
CurrencyUnit["QAR"] = "QAR";
|
|
699
|
+
CurrencyUnit["RON"] = "RON";
|
|
700
|
+
CurrencyUnit["RSD"] = "RSD";
|
|
701
|
+
CurrencyUnit["RUB"] = "RUB";
|
|
702
|
+
CurrencyUnit["RWF"] = "RWF";
|
|
703
|
+
CurrencyUnit["SAR"] = "SAR";
|
|
704
|
+
CurrencyUnit["SBD"] = "SBD";
|
|
705
|
+
CurrencyUnit["SCR"] = "SCR";
|
|
706
|
+
CurrencyUnit["SEK"] = "SEK";
|
|
707
|
+
CurrencyUnit["SGD"] = "SGD";
|
|
708
|
+
CurrencyUnit["SHP"] = "SHP";
|
|
709
|
+
CurrencyUnit["SLE"] = "SLE";
|
|
710
|
+
CurrencyUnit["SOS"] = "SOS";
|
|
711
|
+
CurrencyUnit["SRD"] = "SRD";
|
|
712
|
+
CurrencyUnit["STD"] = "STD";
|
|
713
|
+
CurrencyUnit["SZL"] = "SZL";
|
|
714
|
+
CurrencyUnit["THB"] = "THB";
|
|
715
|
+
CurrencyUnit["TJS"] = "TJS";
|
|
716
|
+
CurrencyUnit["TOP"] = "TOP";
|
|
717
|
+
CurrencyUnit["TRY"] = "TRY";
|
|
718
|
+
CurrencyUnit["TTD"] = "TTD";
|
|
719
|
+
CurrencyUnit["TWD"] = "TWD";
|
|
720
|
+
CurrencyUnit["TZS"] = "TZS";
|
|
721
|
+
CurrencyUnit["UAH"] = "UAH";
|
|
722
|
+
CurrencyUnit["UGX"] = "UGX";
|
|
723
|
+
CurrencyUnit["UYU"] = "UYU";
|
|
724
|
+
CurrencyUnit["UZS"] = "UZS";
|
|
725
|
+
CurrencyUnit["VND"] = "VND";
|
|
726
|
+
CurrencyUnit["VUV"] = "VUV";
|
|
727
|
+
CurrencyUnit["WST"] = "WST";
|
|
728
|
+
CurrencyUnit["XAF"] = "XAF";
|
|
729
|
+
CurrencyUnit["XCD"] = "XCD";
|
|
730
|
+
CurrencyUnit["XOF"] = "XOF";
|
|
731
|
+
CurrencyUnit["XPF"] = "XPF";
|
|
732
|
+
CurrencyUnit["YER"] = "YER";
|
|
733
|
+
CurrencyUnit["ZAR"] = "ZAR";
|
|
734
|
+
CurrencyUnit["ZMW"] = "ZMW";
|
|
554
735
|
})(exports.CurrencyUnit || (exports.CurrencyUnit = {}));
|
|
555
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
|
+
|
|
556
749
|
exports.DimensionUnit = void 0;
|
|
750
|
+
/** Distance unit */
|
|
557
751
|
|
|
558
752
|
(function (DimensionUnit) {
|
|
559
753
|
DimensionUnit["METER"] = "meter";
|
|
@@ -587,13 +781,22 @@ exports.EmissionRateUnit = void 0;
|
|
|
587
781
|
})(exports.EmissionRateUnit || (exports.EmissionRateUnit = {}));
|
|
588
782
|
|
|
589
783
|
exports.EmissionUnit = void 0;
|
|
590
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
591
784
|
|
|
592
785
|
(function (EmissionUnit) {
|
|
593
786
|
EmissionUnit["GRAM"] = "gram";
|
|
594
787
|
EmissionUnit["OUNCE"] = "ounce";
|
|
595
788
|
})(exports.EmissionUnit || (exports.EmissionUnit = {}));
|
|
596
789
|
|
|
790
|
+
/** Emissions factor type. */
|
|
791
|
+
exports.EmissionsFactorType = void 0;
|
|
792
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
793
|
+
|
|
794
|
+
(function (EmissionsFactorType) {
|
|
795
|
+
EmissionsFactorType["COUNTRY"] = "country";
|
|
796
|
+
EmissionsFactorType["SUBREGION"] = "subregion";
|
|
797
|
+
EmissionsFactorType["REGION"] = "region";
|
|
798
|
+
})(exports.EmissionsFactorType || (exports.EmissionsFactorType = {}));
|
|
799
|
+
|
|
597
800
|
/** GeoJSON Feature type. */
|
|
598
801
|
exports.FeatureType = void 0;
|
|
599
802
|
|
|
@@ -616,6 +819,7 @@ exports.FuelUnit = void 0;
|
|
|
616
819
|
FuelUnit["GALLON"] = "gallon";
|
|
617
820
|
})(exports.FuelUnit || (exports.FuelUnit = {}));
|
|
618
821
|
|
|
822
|
+
/** Mode of heat pump. */
|
|
619
823
|
exports.HeatPumpMode = void 0;
|
|
620
824
|
/** Allowed N (EU) types of heavy vehicles. */
|
|
621
825
|
|
|
@@ -1008,6 +1212,15 @@ exports.OICPValueAddedServices = void 0;
|
|
|
1008
1212
|
OICPValueAddedServices["NONE"] = "none";
|
|
1009
1213
|
})(exports.OICPValueAddedServices || (exports.OICPValueAddedServices = {}));
|
|
1010
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
|
+
|
|
1011
1224
|
exports.ParkingCost = void 0;
|
|
1012
1225
|
|
|
1013
1226
|
(function (ParkingCost) {
|
|
@@ -1023,6 +1236,14 @@ exports.PointType = void 0;
|
|
|
1023
1236
|
PointType["POINT"] = "Point";
|
|
1024
1237
|
})(exports.PointType || (exports.PointType = {}));
|
|
1025
1238
|
|
|
1239
|
+
/** Number of decimals for a polyline. */
|
|
1240
|
+
exports.PolylineInputDecimals = void 0;
|
|
1241
|
+
|
|
1242
|
+
(function (PolylineInputDecimals) {
|
|
1243
|
+
PolylineInputDecimals["FIVE"] = "five";
|
|
1244
|
+
PolylineInputDecimals["SIX"] = "six";
|
|
1245
|
+
})(exports.PolylineInputDecimals || (exports.PolylineInputDecimals = {}));
|
|
1246
|
+
|
|
1026
1247
|
exports.PowerSupported = void 0;
|
|
1027
1248
|
|
|
1028
1249
|
(function (PowerSupported) {
|
|
@@ -1032,6 +1253,7 @@ exports.PowerSupported = void 0;
|
|
|
1032
1253
|
})(exports.PowerSupported || (exports.PowerSupported = {}));
|
|
1033
1254
|
|
|
1034
1255
|
exports.PowerUnit = void 0;
|
|
1256
|
+
/** Pressure units. */
|
|
1035
1257
|
|
|
1036
1258
|
(function (PowerUnit) {
|
|
1037
1259
|
PowerUnit["KILOWATT"] = "kilowatt";
|
|
@@ -1064,6 +1286,67 @@ exports.RouteAlternativeType = void 0;
|
|
|
1064
1286
|
RouteAlternativeType["ALTERNATIVE"] = "alternative";
|
|
1065
1287
|
})(exports.RouteAlternativeType || (exports.RouteAlternativeType = {}));
|
|
1066
1288
|
|
|
1289
|
+
/** Type of a maneuver indicating the main action. */
|
|
1290
|
+
exports.RouteDetailsLegManeuverType = void 0;
|
|
1291
|
+
|
|
1292
|
+
(function (RouteDetailsLegManeuverType) {
|
|
1293
|
+
RouteDetailsLegManeuverType["UNKNOWN"] = "UNKNOWN";
|
|
1294
|
+
RouteDetailsLegManeuverType["U_TURN_UNKNOWN"] = "U_TURN_UNKNOWN";
|
|
1295
|
+
RouteDetailsLegManeuverType["U_TURN_LEFT"] = "U_TURN_LEFT";
|
|
1296
|
+
RouteDetailsLegManeuverType["KEEP_LEFT"] = "KEEP_LEFT";
|
|
1297
|
+
RouteDetailsLegManeuverType["LEAVE_ROUNDABOUT"] = "LEAVE_ROUNDABOUT";
|
|
1298
|
+
RouteDetailsLegManeuverType["TURN_SHARP_LEFT"] = "TURN_SHARP_LEFT";
|
|
1299
|
+
RouteDetailsLegManeuverType["TURN_LEFT"] = "TURN_LEFT";
|
|
1300
|
+
RouteDetailsLegManeuverType["TURN_SLIGHT_LEFT"] = "TURN_SLIGHT_LEFT";
|
|
1301
|
+
RouteDetailsLegManeuverType["CONTINUE_ON_STREET"] = "CONTINUE_ON_STREET";
|
|
1302
|
+
RouteDetailsLegManeuverType["TURN_SLIGHT_RIGHT"] = "TURN_SLIGHT_RIGHT";
|
|
1303
|
+
RouteDetailsLegManeuverType["TURN_RIGHT"] = "TURN_RIGHT";
|
|
1304
|
+
RouteDetailsLegManeuverType["TURN_SHARP_RIGHT"] = "TURN_SHARP_RIGHT";
|
|
1305
|
+
RouteDetailsLegManeuverType["FINISH"] = "FINISH";
|
|
1306
|
+
RouteDetailsLegManeuverType["REACHED_VIA"] = "REACHED_VIA";
|
|
1307
|
+
RouteDetailsLegManeuverType["REACHED_CHARGING_STATION"] = "REACHED_CHARGING_STATION";
|
|
1308
|
+
RouteDetailsLegManeuverType["USE_ROUNDABOUT"] = "USE_ROUNDABOUT";
|
|
1309
|
+
RouteDetailsLegManeuverType["KEEP_RIGHT"] = "KEEP_RIGHT";
|
|
1310
|
+
RouteDetailsLegManeuverType["U_TURN_RIGHT"] = "U_TURN_RIGHT";
|
|
1311
|
+
RouteDetailsLegManeuverType["PT_START_TRIP"] = "PT_START_TRIP";
|
|
1312
|
+
RouteDetailsLegManeuverType["PT_TRANSFER"] = "PT_TRANSFER";
|
|
1313
|
+
RouteDetailsLegManeuverType["PT_END_TRIP"] = "PT_END_TRIP";
|
|
1314
|
+
RouteDetailsLegManeuverType["IGNORE"] = "IGNORE";
|
|
1315
|
+
})(exports.RouteDetailsLegManeuverType || (exports.RouteDetailsLegManeuverType = {}));
|
|
1316
|
+
|
|
1317
|
+
/** Type of a route details leg section. */
|
|
1318
|
+
exports.RouteDetailsLegSectionType = void 0;
|
|
1319
|
+
|
|
1320
|
+
(function (RouteDetailsLegSectionType) {
|
|
1321
|
+
RouteDetailsLegSectionType["DRIVING"] = "driving";
|
|
1322
|
+
RouteDetailsLegSectionType["FERRY"] = "ferry";
|
|
1323
|
+
RouteDetailsLegSectionType["WALKING"] = "walking";
|
|
1324
|
+
})(exports.RouteDetailsLegSectionType || (exports.RouteDetailsLegSectionType = {}));
|
|
1325
|
+
|
|
1326
|
+
/** Type of a leg. */
|
|
1327
|
+
exports.RouteDetailsLegType = void 0;
|
|
1328
|
+
|
|
1329
|
+
(function (RouteDetailsLegType) {
|
|
1330
|
+
RouteDetailsLegType["STATION"] = "station";
|
|
1331
|
+
RouteDetailsLegType["STATION_VIA"] = "station_via";
|
|
1332
|
+
RouteDetailsLegType["STATION_FINAL"] = "station_final";
|
|
1333
|
+
RouteDetailsLegType["STATION_AMENITY"] = "station_amenity";
|
|
1334
|
+
RouteDetailsLegType["VIA"] = "via";
|
|
1335
|
+
RouteDetailsLegType["FINAL"] = "final";
|
|
1336
|
+
})(exports.RouteDetailsLegType || (exports.RouteDetailsLegType = {}));
|
|
1337
|
+
|
|
1338
|
+
/** Tags of a route. */
|
|
1339
|
+
exports.RouteDetailsTag = void 0;
|
|
1340
|
+
|
|
1341
|
+
(function (RouteDetailsTag) {
|
|
1342
|
+
RouteDetailsTag["ROAD"] = "road";
|
|
1343
|
+
RouteDetailsTag["HIGHWAY"] = "highway";
|
|
1344
|
+
RouteDetailsTag["TOLL"] = "toll";
|
|
1345
|
+
RouteDetailsTag["FERRY"] = "ferry";
|
|
1346
|
+
RouteDetailsTag["WALKING"] = "walking";
|
|
1347
|
+
RouteDetailsTag["CROSSBORDER"] = "crossborder";
|
|
1348
|
+
})(exports.RouteDetailsTag || (exports.RouteDetailsTag = {}));
|
|
1349
|
+
|
|
1067
1350
|
/** Sign belonging to the instruction indicating the main maneuver. */
|
|
1068
1351
|
exports.RouteInstructionSign = void 0;
|
|
1069
1352
|
|
|
@@ -1189,6 +1472,7 @@ exports.RouteTagType = void 0;
|
|
|
1189
1472
|
})(exports.RouteTagType || (exports.RouteTagType = {}));
|
|
1190
1473
|
|
|
1191
1474
|
exports.SortDirection = void 0;
|
|
1475
|
+
/** Speed units. */
|
|
1192
1476
|
|
|
1193
1477
|
(function (SortDirection) {
|
|
1194
1478
|
SortDirection["ASCENDING"] = "ascending";
|
|
@@ -1203,6 +1487,7 @@ exports.SpeedUnit = void 0;
|
|
|
1203
1487
|
SpeedUnit["MILES_PER_HOUR"] = "miles_per_hour";
|
|
1204
1488
|
})(exports.SpeedUnit || (exports.SpeedUnit = {}));
|
|
1205
1489
|
|
|
1490
|
+
/** State of charge unit. */
|
|
1206
1491
|
exports.StateOfChargeUnit = void 0;
|
|
1207
1492
|
/** Station data which extends OCPI Location. */
|
|
1208
1493
|
|
|
@@ -1256,6 +1541,7 @@ exports.StepType = void 0;
|
|
|
1256
1541
|
StepType["CROSSBORDER"] = "crossborder";
|
|
1257
1542
|
})(exports.StepType || (exports.StepType = {}));
|
|
1258
1543
|
|
|
1544
|
+
/** Telemetry input sources. */
|
|
1259
1545
|
exports.TelemetryInputSource = void 0;
|
|
1260
1546
|
|
|
1261
1547
|
(function (TelemetryInputSource) {
|
|
@@ -1263,6 +1549,7 @@ exports.TelemetryInputSource = void 0;
|
|
|
1263
1549
|
TelemetryInputSource["TELEMETRY"] = "telemetry";
|
|
1264
1550
|
})(exports.TelemetryInputSource || (exports.TelemetryInputSource = {}));
|
|
1265
1551
|
|
|
1552
|
+
/** Temperature unit. */
|
|
1266
1553
|
exports.TemperatureUnit = void 0;
|
|
1267
1554
|
|
|
1268
1555
|
(function (TemperatureUnit) {
|
|
@@ -1421,16 +1708,6 @@ exports.VehicleRegion = void 0;
|
|
|
1421
1708
|
VehicleRegion["SA"] = "SA";
|
|
1422
1709
|
})(exports.VehicleRegion || (exports.VehicleRegion = {}));
|
|
1423
1710
|
|
|
1424
|
-
/** Status of a vehicle. */
|
|
1425
|
-
exports.VehicleStatus = void 0;
|
|
1426
|
-
|
|
1427
|
-
(function (VehicleStatus) {
|
|
1428
|
-
VehicleStatus["DRAFT"] = "draft";
|
|
1429
|
-
VehicleStatus["PUBLIC"] = "public";
|
|
1430
|
-
VehicleStatus["PRIVATE"] = "private";
|
|
1431
|
-
VehicleStatus["ARCHIVED"] = "archived";
|
|
1432
|
-
})(exports.VehicleStatus || (exports.VehicleStatus = {}));
|
|
1433
|
-
|
|
1434
1711
|
exports.VehicleType = void 0;
|
|
1435
1712
|
|
|
1436
1713
|
(function (VehicleType) {
|
|
@@ -1445,6 +1722,7 @@ exports.VehicleType = void 0;
|
|
|
1445
1722
|
})(exports.VehicleType || (exports.VehicleType = {}));
|
|
1446
1723
|
|
|
1447
1724
|
exports.VolumeUnit = void 0;
|
|
1725
|
+
/** Weight unit. */
|
|
1448
1726
|
|
|
1449
1727
|
(function (VolumeUnit) {
|
|
1450
1728
|
VolumeUnit["LITER"] = "liter";
|