@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
|
@@ -61,6 +61,7 @@ export let AmenityType;
|
|
|
61
61
|
AmenityType["PHARMACY"] = "pharmacy";
|
|
62
62
|
})(AmenityType || (AmenityType = {}));
|
|
63
63
|
|
|
64
|
+
/** Auxiliary consumption units. */
|
|
64
65
|
export let AuxiliaryConsumptionUnit;
|
|
65
66
|
/** The type of the battery value. */
|
|
66
67
|
|
|
@@ -171,6 +172,7 @@ export let ChargeMode;
|
|
|
171
172
|
ChargeMode["ALWAYS_TO_MAX_CHARGE"] = "ALWAYS_TO_MAX_CHARGE";
|
|
172
173
|
})(ChargeMode || (ChargeMode = {}));
|
|
173
174
|
|
|
175
|
+
/** Charge speed unit. */
|
|
174
176
|
export let ChargeSpeedUnit;
|
|
175
177
|
|
|
176
178
|
(function (ChargeSpeedUnit) {
|
|
@@ -179,6 +181,7 @@ export let ChargeSpeedUnit;
|
|
|
179
181
|
ChargeSpeedUnit["MILES_PER_HOUR"] = "miles_per_hour";
|
|
180
182
|
})(ChargeSpeedUnit || (ChargeSpeedUnit = {}));
|
|
181
183
|
|
|
184
|
+
/** Status of a charger. */
|
|
182
185
|
export let ChargerStatus;
|
|
183
186
|
/** Grouping by status of the chargers. */
|
|
184
187
|
|
|
@@ -224,7 +227,53 @@ export let ConnectedVehicleStatus;
|
|
|
224
227
|
ConnectedVehicleStatus["REMOVED"] = "removed";
|
|
225
228
|
})(ConnectedVehicleStatus || (ConnectedVehicleStatus = {}));
|
|
226
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;
|
|
227
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
|
+
|
|
228
277
|
export let ConnectorType;
|
|
229
278
|
|
|
230
279
|
(function (ConnectorType) {
|
|
@@ -542,14 +591,159 @@ export let CountryCodeAlpha2;
|
|
|
542
591
|
|
|
543
592
|
/** Currency according to the ISO 4217 standard. */
|
|
544
593
|
export let CurrencyUnit;
|
|
594
|
+
/** Represents a day of the week. */
|
|
545
595
|
|
|
546
596
|
(function (CurrencyUnit) {
|
|
547
597
|
CurrencyUnit["EUR"] = "EUR";
|
|
548
598
|
CurrencyUnit["USD"] = "USD";
|
|
549
599
|
CurrencyUnit["GBP"] = "GBP";
|
|
600
|
+
CurrencyUnit["AED"] = "AED";
|
|
601
|
+
CurrencyUnit["AFN"] = "AFN";
|
|
602
|
+
CurrencyUnit["ALL"] = "ALL";
|
|
603
|
+
CurrencyUnit["AMD"] = "AMD";
|
|
604
|
+
CurrencyUnit["ANG"] = "ANG";
|
|
605
|
+
CurrencyUnit["AOA"] = "AOA";
|
|
606
|
+
CurrencyUnit["ARS"] = "ARS";
|
|
607
|
+
CurrencyUnit["AUD"] = "AUD";
|
|
608
|
+
CurrencyUnit["AWG"] = "AWG";
|
|
609
|
+
CurrencyUnit["AZN"] = "AZN";
|
|
610
|
+
CurrencyUnit["BAM"] = "BAM";
|
|
611
|
+
CurrencyUnit["BBD"] = "BBD";
|
|
612
|
+
CurrencyUnit["BDT"] = "BDT";
|
|
613
|
+
CurrencyUnit["BGN"] = "BGN";
|
|
614
|
+
CurrencyUnit["BIF"] = "BIF";
|
|
615
|
+
CurrencyUnit["BMD"] = "BMD";
|
|
616
|
+
CurrencyUnit["BND"] = "BND";
|
|
617
|
+
CurrencyUnit["BOB"] = "BOB";
|
|
618
|
+
CurrencyUnit["BRL"] = "BRL";
|
|
619
|
+
CurrencyUnit["BSD"] = "BSD";
|
|
620
|
+
CurrencyUnit["BWP"] = "BWP";
|
|
621
|
+
CurrencyUnit["BYN"] = "BYN";
|
|
622
|
+
CurrencyUnit["BZD"] = "BZD";
|
|
623
|
+
CurrencyUnit["CAD"] = "CAD";
|
|
624
|
+
CurrencyUnit["CDF"] = "CDF";
|
|
625
|
+
CurrencyUnit["CHF"] = "CHF";
|
|
626
|
+
CurrencyUnit["CLP"] = "CLP";
|
|
627
|
+
CurrencyUnit["CNY"] = "CNY";
|
|
628
|
+
CurrencyUnit["COP"] = "COP";
|
|
629
|
+
CurrencyUnit["CRC"] = "CRC";
|
|
630
|
+
CurrencyUnit["CVE"] = "CVE";
|
|
631
|
+
CurrencyUnit["CZK"] = "CZK";
|
|
632
|
+
CurrencyUnit["DJF"] = "DJF";
|
|
633
|
+
CurrencyUnit["DKK"] = "DKK";
|
|
634
|
+
CurrencyUnit["DOP"] = "DOP";
|
|
635
|
+
CurrencyUnit["DZD"] = "DZD";
|
|
636
|
+
CurrencyUnit["EGP"] = "EGP";
|
|
637
|
+
CurrencyUnit["ETB"] = "ETB";
|
|
638
|
+
CurrencyUnit["FJD"] = "FJD";
|
|
639
|
+
CurrencyUnit["FKP"] = "FKP";
|
|
640
|
+
CurrencyUnit["GEL"] = "GEL";
|
|
641
|
+
CurrencyUnit["GIP"] = "GIP";
|
|
642
|
+
CurrencyUnit["GMD"] = "GMD";
|
|
643
|
+
CurrencyUnit["GNF"] = "GNF";
|
|
644
|
+
CurrencyUnit["GTQ"] = "GTQ";
|
|
645
|
+
CurrencyUnit["GYD"] = "GYD";
|
|
646
|
+
CurrencyUnit["HKD"] = "HKD";
|
|
647
|
+
CurrencyUnit["HNL"] = "HNL";
|
|
648
|
+
CurrencyUnit["HTG"] = "HTG";
|
|
649
|
+
CurrencyUnit["HUF"] = "HUF";
|
|
650
|
+
CurrencyUnit["IDR"] = "IDR";
|
|
651
|
+
CurrencyUnit["ILS"] = "ILS";
|
|
652
|
+
CurrencyUnit["INR"] = "INR";
|
|
653
|
+
CurrencyUnit["ISK"] = "ISK";
|
|
654
|
+
CurrencyUnit["JMD"] = "JMD";
|
|
655
|
+
CurrencyUnit["JPY"] = "JPY";
|
|
656
|
+
CurrencyUnit["KES"] = "KES";
|
|
657
|
+
CurrencyUnit["KGS"] = "KGS";
|
|
658
|
+
CurrencyUnit["KHR"] = "KHR";
|
|
659
|
+
CurrencyUnit["KMF"] = "KMF";
|
|
660
|
+
CurrencyUnit["KRW"] = "KRW";
|
|
661
|
+
CurrencyUnit["KYD"] = "KYD";
|
|
662
|
+
CurrencyUnit["KZT"] = "KZT";
|
|
663
|
+
CurrencyUnit["LAK"] = "LAK";
|
|
664
|
+
CurrencyUnit["LBP"] = "LBP";
|
|
665
|
+
CurrencyUnit["LKR"] = "LKR";
|
|
666
|
+
CurrencyUnit["LRD"] = "LRD";
|
|
667
|
+
CurrencyUnit["LSL"] = "LSL";
|
|
668
|
+
CurrencyUnit["MAD"] = "MAD";
|
|
669
|
+
CurrencyUnit["MDL"] = "MDL";
|
|
670
|
+
CurrencyUnit["MGA"] = "MGA";
|
|
671
|
+
CurrencyUnit["MKD"] = "MKD";
|
|
672
|
+
CurrencyUnit["MMK"] = "MMK";
|
|
673
|
+
CurrencyUnit["MNT"] = "MNT";
|
|
674
|
+
CurrencyUnit["MOP"] = "MOP";
|
|
675
|
+
CurrencyUnit["MUR"] = "MUR";
|
|
676
|
+
CurrencyUnit["MVR"] = "MVR";
|
|
677
|
+
CurrencyUnit["MWK"] = "MWK";
|
|
678
|
+
CurrencyUnit["MXN"] = "MXN";
|
|
679
|
+
CurrencyUnit["MYR"] = "MYR";
|
|
680
|
+
CurrencyUnit["MZN"] = "MZN";
|
|
681
|
+
CurrencyUnit["NAD"] = "NAD";
|
|
682
|
+
CurrencyUnit["NGN"] = "NGN";
|
|
683
|
+
CurrencyUnit["NIO"] = "NIO";
|
|
684
|
+
CurrencyUnit["NOK"] = "NOK";
|
|
685
|
+
CurrencyUnit["NPR"] = "NPR";
|
|
686
|
+
CurrencyUnit["NZD"] = "NZD";
|
|
687
|
+
CurrencyUnit["PAB"] = "PAB";
|
|
688
|
+
CurrencyUnit["PEN"] = "PEN";
|
|
689
|
+
CurrencyUnit["PGK"] = "PGK";
|
|
690
|
+
CurrencyUnit["PHP"] = "PHP";
|
|
691
|
+
CurrencyUnit["PKR"] = "PKR";
|
|
692
|
+
CurrencyUnit["PLN"] = "PLN";
|
|
693
|
+
CurrencyUnit["PYG"] = "PYG";
|
|
694
|
+
CurrencyUnit["QAR"] = "QAR";
|
|
695
|
+
CurrencyUnit["RON"] = "RON";
|
|
696
|
+
CurrencyUnit["RSD"] = "RSD";
|
|
697
|
+
CurrencyUnit["RUB"] = "RUB";
|
|
698
|
+
CurrencyUnit["RWF"] = "RWF";
|
|
699
|
+
CurrencyUnit["SAR"] = "SAR";
|
|
700
|
+
CurrencyUnit["SBD"] = "SBD";
|
|
701
|
+
CurrencyUnit["SCR"] = "SCR";
|
|
702
|
+
CurrencyUnit["SEK"] = "SEK";
|
|
703
|
+
CurrencyUnit["SGD"] = "SGD";
|
|
704
|
+
CurrencyUnit["SHP"] = "SHP";
|
|
705
|
+
CurrencyUnit["SLE"] = "SLE";
|
|
706
|
+
CurrencyUnit["SOS"] = "SOS";
|
|
707
|
+
CurrencyUnit["SRD"] = "SRD";
|
|
708
|
+
CurrencyUnit["STD"] = "STD";
|
|
709
|
+
CurrencyUnit["SZL"] = "SZL";
|
|
710
|
+
CurrencyUnit["THB"] = "THB";
|
|
711
|
+
CurrencyUnit["TJS"] = "TJS";
|
|
712
|
+
CurrencyUnit["TOP"] = "TOP";
|
|
713
|
+
CurrencyUnit["TRY"] = "TRY";
|
|
714
|
+
CurrencyUnit["TTD"] = "TTD";
|
|
715
|
+
CurrencyUnit["TWD"] = "TWD";
|
|
716
|
+
CurrencyUnit["TZS"] = "TZS";
|
|
717
|
+
CurrencyUnit["UAH"] = "UAH";
|
|
718
|
+
CurrencyUnit["UGX"] = "UGX";
|
|
719
|
+
CurrencyUnit["UYU"] = "UYU";
|
|
720
|
+
CurrencyUnit["UZS"] = "UZS";
|
|
721
|
+
CurrencyUnit["VND"] = "VND";
|
|
722
|
+
CurrencyUnit["VUV"] = "VUV";
|
|
723
|
+
CurrencyUnit["WST"] = "WST";
|
|
724
|
+
CurrencyUnit["XAF"] = "XAF";
|
|
725
|
+
CurrencyUnit["XCD"] = "XCD";
|
|
726
|
+
CurrencyUnit["XOF"] = "XOF";
|
|
727
|
+
CurrencyUnit["XPF"] = "XPF";
|
|
728
|
+
CurrencyUnit["YER"] = "YER";
|
|
729
|
+
CurrencyUnit["ZAR"] = "ZAR";
|
|
730
|
+
CurrencyUnit["ZMW"] = "ZMW";
|
|
550
731
|
})(CurrencyUnit || (CurrencyUnit = {}));
|
|
551
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
|
+
|
|
552
745
|
export let DimensionUnit;
|
|
746
|
+
/** Distance unit */
|
|
553
747
|
|
|
554
748
|
(function (DimensionUnit) {
|
|
555
749
|
DimensionUnit["METER"] = "meter";
|
|
@@ -583,13 +777,22 @@ export let EmissionRateUnit;
|
|
|
583
777
|
})(EmissionRateUnit || (EmissionRateUnit = {}));
|
|
584
778
|
|
|
585
779
|
export let EmissionUnit;
|
|
586
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
587
780
|
|
|
588
781
|
(function (EmissionUnit) {
|
|
589
782
|
EmissionUnit["GRAM"] = "gram";
|
|
590
783
|
EmissionUnit["OUNCE"] = "ounce";
|
|
591
784
|
})(EmissionUnit || (EmissionUnit = {}));
|
|
592
785
|
|
|
786
|
+
/** Emissions factor type. */
|
|
787
|
+
export let EmissionsFactorType;
|
|
788
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
789
|
+
|
|
790
|
+
(function (EmissionsFactorType) {
|
|
791
|
+
EmissionsFactorType["COUNTRY"] = "country";
|
|
792
|
+
EmissionsFactorType["SUBREGION"] = "subregion";
|
|
793
|
+
EmissionsFactorType["REGION"] = "region";
|
|
794
|
+
})(EmissionsFactorType || (EmissionsFactorType = {}));
|
|
795
|
+
|
|
593
796
|
/** GeoJSON Feature type. */
|
|
594
797
|
export let FeatureType;
|
|
595
798
|
|
|
@@ -612,6 +815,7 @@ export let FuelUnit;
|
|
|
612
815
|
FuelUnit["GALLON"] = "gallon";
|
|
613
816
|
})(FuelUnit || (FuelUnit = {}));
|
|
614
817
|
|
|
818
|
+
/** Mode of heat pump. */
|
|
615
819
|
export let HeatPumpMode;
|
|
616
820
|
/** Allowed N (EU) types of heavy vehicles. */
|
|
617
821
|
|
|
@@ -1004,6 +1208,15 @@ export let OICPValueAddedServices;
|
|
|
1004
1208
|
OICPValueAddedServices["NONE"] = "none";
|
|
1005
1209
|
})(OICPValueAddedServices || (OICPValueAddedServices = {}));
|
|
1006
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
|
+
|
|
1007
1220
|
export let ParkingCost;
|
|
1008
1221
|
|
|
1009
1222
|
(function (ParkingCost) {
|
|
@@ -1019,6 +1232,14 @@ export let PointType;
|
|
|
1019
1232
|
PointType["POINT"] = "Point";
|
|
1020
1233
|
})(PointType || (PointType = {}));
|
|
1021
1234
|
|
|
1235
|
+
/** Number of decimals for a polyline. */
|
|
1236
|
+
export let PolylineInputDecimals;
|
|
1237
|
+
|
|
1238
|
+
(function (PolylineInputDecimals) {
|
|
1239
|
+
PolylineInputDecimals["FIVE"] = "five";
|
|
1240
|
+
PolylineInputDecimals["SIX"] = "six";
|
|
1241
|
+
})(PolylineInputDecimals || (PolylineInputDecimals = {}));
|
|
1242
|
+
|
|
1022
1243
|
export let PowerSupported;
|
|
1023
1244
|
|
|
1024
1245
|
(function (PowerSupported) {
|
|
@@ -1028,6 +1249,7 @@ export let PowerSupported;
|
|
|
1028
1249
|
})(PowerSupported || (PowerSupported = {}));
|
|
1029
1250
|
|
|
1030
1251
|
export let PowerUnit;
|
|
1252
|
+
/** Pressure units. */
|
|
1031
1253
|
|
|
1032
1254
|
(function (PowerUnit) {
|
|
1033
1255
|
PowerUnit["KILOWATT"] = "kilowatt";
|
|
@@ -1060,6 +1282,67 @@ export let RouteAlternativeType;
|
|
|
1060
1282
|
RouteAlternativeType["ALTERNATIVE"] = "alternative";
|
|
1061
1283
|
})(RouteAlternativeType || (RouteAlternativeType = {}));
|
|
1062
1284
|
|
|
1285
|
+
/** Type of a maneuver indicating the main action. */
|
|
1286
|
+
export let RouteDetailsLegManeuverType;
|
|
1287
|
+
|
|
1288
|
+
(function (RouteDetailsLegManeuverType) {
|
|
1289
|
+
RouteDetailsLegManeuverType["UNKNOWN"] = "UNKNOWN";
|
|
1290
|
+
RouteDetailsLegManeuverType["U_TURN_UNKNOWN"] = "U_TURN_UNKNOWN";
|
|
1291
|
+
RouteDetailsLegManeuverType["U_TURN_LEFT"] = "U_TURN_LEFT";
|
|
1292
|
+
RouteDetailsLegManeuverType["KEEP_LEFT"] = "KEEP_LEFT";
|
|
1293
|
+
RouteDetailsLegManeuverType["LEAVE_ROUNDABOUT"] = "LEAVE_ROUNDABOUT";
|
|
1294
|
+
RouteDetailsLegManeuverType["TURN_SHARP_LEFT"] = "TURN_SHARP_LEFT";
|
|
1295
|
+
RouteDetailsLegManeuverType["TURN_LEFT"] = "TURN_LEFT";
|
|
1296
|
+
RouteDetailsLegManeuverType["TURN_SLIGHT_LEFT"] = "TURN_SLIGHT_LEFT";
|
|
1297
|
+
RouteDetailsLegManeuverType["CONTINUE_ON_STREET"] = "CONTINUE_ON_STREET";
|
|
1298
|
+
RouteDetailsLegManeuverType["TURN_SLIGHT_RIGHT"] = "TURN_SLIGHT_RIGHT";
|
|
1299
|
+
RouteDetailsLegManeuverType["TURN_RIGHT"] = "TURN_RIGHT";
|
|
1300
|
+
RouteDetailsLegManeuverType["TURN_SHARP_RIGHT"] = "TURN_SHARP_RIGHT";
|
|
1301
|
+
RouteDetailsLegManeuverType["FINISH"] = "FINISH";
|
|
1302
|
+
RouteDetailsLegManeuverType["REACHED_VIA"] = "REACHED_VIA";
|
|
1303
|
+
RouteDetailsLegManeuverType["REACHED_CHARGING_STATION"] = "REACHED_CHARGING_STATION";
|
|
1304
|
+
RouteDetailsLegManeuverType["USE_ROUNDABOUT"] = "USE_ROUNDABOUT";
|
|
1305
|
+
RouteDetailsLegManeuverType["KEEP_RIGHT"] = "KEEP_RIGHT";
|
|
1306
|
+
RouteDetailsLegManeuverType["U_TURN_RIGHT"] = "U_TURN_RIGHT";
|
|
1307
|
+
RouteDetailsLegManeuverType["PT_START_TRIP"] = "PT_START_TRIP";
|
|
1308
|
+
RouteDetailsLegManeuverType["PT_TRANSFER"] = "PT_TRANSFER";
|
|
1309
|
+
RouteDetailsLegManeuverType["PT_END_TRIP"] = "PT_END_TRIP";
|
|
1310
|
+
RouteDetailsLegManeuverType["IGNORE"] = "IGNORE";
|
|
1311
|
+
})(RouteDetailsLegManeuverType || (RouteDetailsLegManeuverType = {}));
|
|
1312
|
+
|
|
1313
|
+
/** Type of a route details leg section. */
|
|
1314
|
+
export let RouteDetailsLegSectionType;
|
|
1315
|
+
|
|
1316
|
+
(function (RouteDetailsLegSectionType) {
|
|
1317
|
+
RouteDetailsLegSectionType["DRIVING"] = "driving";
|
|
1318
|
+
RouteDetailsLegSectionType["FERRY"] = "ferry";
|
|
1319
|
+
RouteDetailsLegSectionType["WALKING"] = "walking";
|
|
1320
|
+
})(RouteDetailsLegSectionType || (RouteDetailsLegSectionType = {}));
|
|
1321
|
+
|
|
1322
|
+
/** Type of a leg. */
|
|
1323
|
+
export let RouteDetailsLegType;
|
|
1324
|
+
|
|
1325
|
+
(function (RouteDetailsLegType) {
|
|
1326
|
+
RouteDetailsLegType["STATION"] = "station";
|
|
1327
|
+
RouteDetailsLegType["STATION_VIA"] = "station_via";
|
|
1328
|
+
RouteDetailsLegType["STATION_FINAL"] = "station_final";
|
|
1329
|
+
RouteDetailsLegType["STATION_AMENITY"] = "station_amenity";
|
|
1330
|
+
RouteDetailsLegType["VIA"] = "via";
|
|
1331
|
+
RouteDetailsLegType["FINAL"] = "final";
|
|
1332
|
+
})(RouteDetailsLegType || (RouteDetailsLegType = {}));
|
|
1333
|
+
|
|
1334
|
+
/** Tags of a route. */
|
|
1335
|
+
export let RouteDetailsTag;
|
|
1336
|
+
|
|
1337
|
+
(function (RouteDetailsTag) {
|
|
1338
|
+
RouteDetailsTag["ROAD"] = "road";
|
|
1339
|
+
RouteDetailsTag["HIGHWAY"] = "highway";
|
|
1340
|
+
RouteDetailsTag["TOLL"] = "toll";
|
|
1341
|
+
RouteDetailsTag["FERRY"] = "ferry";
|
|
1342
|
+
RouteDetailsTag["WALKING"] = "walking";
|
|
1343
|
+
RouteDetailsTag["CROSSBORDER"] = "crossborder";
|
|
1344
|
+
})(RouteDetailsTag || (RouteDetailsTag = {}));
|
|
1345
|
+
|
|
1063
1346
|
/** Sign belonging to the instruction indicating the main maneuver. */
|
|
1064
1347
|
export let RouteInstructionSign;
|
|
1065
1348
|
|
|
@@ -1185,6 +1468,7 @@ export let RouteTagType;
|
|
|
1185
1468
|
})(RouteTagType || (RouteTagType = {}));
|
|
1186
1469
|
|
|
1187
1470
|
export let SortDirection;
|
|
1471
|
+
/** Speed units. */
|
|
1188
1472
|
|
|
1189
1473
|
(function (SortDirection) {
|
|
1190
1474
|
SortDirection["ASCENDING"] = "ascending";
|
|
@@ -1199,6 +1483,7 @@ export let SpeedUnit;
|
|
|
1199
1483
|
SpeedUnit["MILES_PER_HOUR"] = "miles_per_hour";
|
|
1200
1484
|
})(SpeedUnit || (SpeedUnit = {}));
|
|
1201
1485
|
|
|
1486
|
+
/** State of charge unit. */
|
|
1202
1487
|
export let StateOfChargeUnit;
|
|
1203
1488
|
/** Station data which extends OCPI Location. */
|
|
1204
1489
|
|
|
@@ -1252,6 +1537,7 @@ export let StepType;
|
|
|
1252
1537
|
StepType["CROSSBORDER"] = "crossborder";
|
|
1253
1538
|
})(StepType || (StepType = {}));
|
|
1254
1539
|
|
|
1540
|
+
/** Telemetry input sources. */
|
|
1255
1541
|
export let TelemetryInputSource;
|
|
1256
1542
|
|
|
1257
1543
|
(function (TelemetryInputSource) {
|
|
@@ -1259,6 +1545,7 @@ export let TelemetryInputSource;
|
|
|
1259
1545
|
TelemetryInputSource["TELEMETRY"] = "telemetry";
|
|
1260
1546
|
})(TelemetryInputSource || (TelemetryInputSource = {}));
|
|
1261
1547
|
|
|
1548
|
+
/** Temperature unit. */
|
|
1262
1549
|
export let TemperatureUnit;
|
|
1263
1550
|
|
|
1264
1551
|
(function (TemperatureUnit) {
|
|
@@ -1417,16 +1704,6 @@ export let VehicleRegion;
|
|
|
1417
1704
|
VehicleRegion["SA"] = "SA";
|
|
1418
1705
|
})(VehicleRegion || (VehicleRegion = {}));
|
|
1419
1706
|
|
|
1420
|
-
/** Status of a vehicle. */
|
|
1421
|
-
export let VehicleStatus;
|
|
1422
|
-
|
|
1423
|
-
(function (VehicleStatus) {
|
|
1424
|
-
VehicleStatus["DRAFT"] = "draft";
|
|
1425
|
-
VehicleStatus["PUBLIC"] = "public";
|
|
1426
|
-
VehicleStatus["PRIVATE"] = "private";
|
|
1427
|
-
VehicleStatus["ARCHIVED"] = "archived";
|
|
1428
|
-
})(VehicleStatus || (VehicleStatus = {}));
|
|
1429
|
-
|
|
1430
1707
|
export let VehicleType;
|
|
1431
1708
|
|
|
1432
1709
|
(function (VehicleType) {
|
|
@@ -1441,6 +1718,7 @@ export let VehicleType;
|
|
|
1441
1718
|
})(VehicleType || (VehicleType = {}));
|
|
1442
1719
|
|
|
1443
1720
|
export let VolumeUnit;
|
|
1721
|
+
/** Weight unit. */
|
|
1444
1722
|
|
|
1445
1723
|
(function (VolumeUnit) {
|
|
1446
1724
|
VolumeUnit["LITER"] = "liter";
|