@chargetrip/types 1.32.2 → 1.34.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 +255 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +390 -29
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +390 -29
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +1787 -119
- package/graphql.schema.json +13607 -4190
- package/package.json +1 -2
- package/src/graphql.ts +2010 -131
package/dist/node/index.js
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
6
|
+
exports.AccelerationUnit = void 0;
|
|
7
|
+
|
|
8
|
+
(function (AccelerationUnit) {
|
|
9
|
+
AccelerationUnit["SECONDS_TO_100_KILOMETERS_PER_HOUR"] = "seconds_to_100_kilometers_per_hour";
|
|
10
|
+
AccelerationUnit["SECONDS_TO_60_MILES_PER_HOUR"] = "seconds_to_60_miles_per_hour";
|
|
11
|
+
})(exports.AccelerationUnit || (exports.AccelerationUnit = {}));
|
|
12
|
+
|
|
6
13
|
exports.AccessType = void 0;
|
|
7
14
|
/** Information about an address */
|
|
8
15
|
|
|
@@ -42,9 +49,30 @@ exports.Amenities = void 0;
|
|
|
42
49
|
Amenities["PHARMACY"] = "pharmacy";
|
|
43
50
|
})(exports.Amenities || (exports.Amenities = {}));
|
|
44
51
|
|
|
45
|
-
/**
|
|
52
|
+
/** A list of amenity types */
|
|
53
|
+
exports.AmenityType = void 0;
|
|
54
|
+
|
|
55
|
+
(function (AmenityType) {
|
|
56
|
+
AmenityType["PARK"] = "park";
|
|
57
|
+
AmenityType["RESTAURANT"] = "restaurant";
|
|
58
|
+
AmenityType["MUSEUM"] = "museum";
|
|
59
|
+
AmenityType["COFFEE"] = "coffee";
|
|
60
|
+
AmenityType["HOTEL"] = "hotel";
|
|
61
|
+
AmenityType["SHOPPING"] = "shopping";
|
|
62
|
+
AmenityType["BATHROOM"] = "bathroom";
|
|
63
|
+
AmenityType["SUPERMARKET"] = "supermarket";
|
|
64
|
+
AmenityType["PLAYGROUND"] = "playground";
|
|
65
|
+
AmenityType["PHARMACY"] = "pharmacy";
|
|
66
|
+
})(exports.AmenityType || (exports.AmenityType = {}));
|
|
67
|
+
|
|
68
|
+
exports.AuxiliaryConsumptionUnit = void 0;
|
|
69
|
+
/** The type of the battery value */
|
|
70
|
+
|
|
71
|
+
(function (AuxiliaryConsumptionUnit) {
|
|
72
|
+
AuxiliaryConsumptionUnit["KILOWATT_HOUR"] = "kilowatt_hour";
|
|
73
|
+
})(exports.AuxiliaryConsumptionUnit || (exports.AuxiliaryConsumptionUnit = {}));
|
|
74
|
+
|
|
46
75
|
exports.BatteryInputType = void 0;
|
|
47
|
-
/** Output of a car query */
|
|
48
76
|
|
|
49
77
|
(function (BatteryInputType) {
|
|
50
78
|
BatteryInputType["KWH"] = "kwh";
|
|
@@ -63,13 +91,6 @@ exports.CarBatteryFieldEstimations = void 0;
|
|
|
63
91
|
CarBatteryFieldEstimations["U"] = "U";
|
|
64
92
|
})(exports.CarBatteryFieldEstimations || (exports.CarBatteryFieldEstimations = {}));
|
|
65
93
|
|
|
66
|
-
exports.CarConnectivityProvider = void 0;
|
|
67
|
-
/** Deprecated */
|
|
68
|
-
|
|
69
|
-
(function (CarConnectivityProvider) {
|
|
70
|
-
CarConnectivityProvider["ENODE"] = "Enode";
|
|
71
|
-
})(exports.CarConnectivityProvider || (exports.CarConnectivityProvider = {}));
|
|
72
|
-
|
|
73
94
|
/** Drivetrain */
|
|
74
95
|
exports.CarDrivetrain = void 0;
|
|
75
96
|
/** Deprecated */
|
|
@@ -135,13 +156,20 @@ exports.CarStatus = void 0;
|
|
|
135
156
|
|
|
136
157
|
/** Charging mode used at charging stations */
|
|
137
158
|
exports.ChargeMode = void 0;
|
|
138
|
-
/** A groupped representation of EVSEs */
|
|
139
159
|
|
|
140
160
|
(function (ChargeMode) {
|
|
141
161
|
ChargeMode["OPTIMIZE_TRAVEL_TIME"] = "OPTIMIZE_TRAVEL_TIME";
|
|
142
162
|
ChargeMode["ALWAYS_TO_MAX_CHARGE"] = "ALWAYS_TO_MAX_CHARGE";
|
|
143
163
|
})(exports.ChargeMode || (exports.ChargeMode = {}));
|
|
144
164
|
|
|
165
|
+
exports.ChargeSpeedUnit = void 0;
|
|
166
|
+
|
|
167
|
+
(function (ChargeSpeedUnit) {
|
|
168
|
+
ChargeSpeedUnit["KILOWATT_HOUR"] = "kilowatt_hour";
|
|
169
|
+
ChargeSpeedUnit["KILOMETERS_PER_HOUR"] = "kilometers_per_hour";
|
|
170
|
+
ChargeSpeedUnit["MILES_PER_HOUR"] = "miles_per_hour";
|
|
171
|
+
})(exports.ChargeSpeedUnit || (exports.ChargeSpeedUnit = {}));
|
|
172
|
+
|
|
145
173
|
exports.ChargerStatus = void 0;
|
|
146
174
|
/** Groupping by status of the chargers */
|
|
147
175
|
|
|
@@ -169,25 +197,26 @@ exports.ConnectProvider = void 0;
|
|
|
169
197
|
ConnectProvider["ENODE"] = "Enode";
|
|
170
198
|
})(exports.ConnectProvider || (exports.ConnectProvider = {}));
|
|
171
199
|
|
|
172
|
-
exports.
|
|
200
|
+
exports.ConnectScope = void 0;
|
|
173
201
|
|
|
174
|
-
(function (
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
202
|
+
(function (ConnectScope) {
|
|
203
|
+
ConnectScope["LOCATION"] = "location";
|
|
204
|
+
ConnectScope["CHARGE_STATE"] = "charge_state";
|
|
205
|
+
ConnectScope["ODOMETER"] = "odometer";
|
|
206
|
+
})(exports.ConnectScope || (exports.ConnectScope = {}));
|
|
178
207
|
|
|
179
208
|
exports.ConnectedVehicleStatus = void 0;
|
|
180
209
|
/** Connector data which extends OCPI Connector */
|
|
181
210
|
|
|
182
211
|
(function (ConnectedVehicleStatus) {
|
|
183
|
-
ConnectedVehicleStatus["
|
|
212
|
+
ConnectedVehicleStatus["PENDING_AUTHORIZATION"] = "pending_authorization";
|
|
184
213
|
ConnectedVehicleStatus["AUTHORIZED"] = "authorized";
|
|
185
|
-
ConnectedVehicleStatus["
|
|
214
|
+
ConnectedVehicleStatus["PENDING_REMOVAL"] = "pending_removal";
|
|
215
|
+
ConnectedVehicleStatus["REMOVED"] = "removed";
|
|
186
216
|
})(exports.ConnectedVehicleStatus || (exports.ConnectedVehicleStatus = {}));
|
|
187
217
|
|
|
188
218
|
/** The socket or plug standard of the charging point. */
|
|
189
219
|
exports.ConnectorType = void 0;
|
|
190
|
-
/** The complete contact information */
|
|
191
220
|
|
|
192
221
|
(function (ConnectorType) {
|
|
193
222
|
ConnectorType["CHADEMO"] = "CHADEMO";
|
|
@@ -231,6 +260,20 @@ exports.ConnectorType = void 0;
|
|
|
231
260
|
ConnectorType["NEMA_14_50"] = "NEMA_14_50";
|
|
232
261
|
})(exports.ConnectorType || (exports.ConnectorType = {}));
|
|
233
262
|
|
|
263
|
+
exports.ConsumptionUnit = void 0;
|
|
264
|
+
/** The complete contact information */
|
|
265
|
+
|
|
266
|
+
(function (ConsumptionUnit) {
|
|
267
|
+
ConsumptionUnit["KILOMETER"] = "kilometer";
|
|
268
|
+
ConsumptionUnit["KILOWATT_HOUR"] = "kilowatt_hour";
|
|
269
|
+
ConsumptionUnit["KILOWATT_HOURS_PER_100_KILOMETERS"] = "kilowatt_hours_per_100_kilometers";
|
|
270
|
+
ConsumptionUnit["KILOWATT_HOURS_PER_100_MILES"] = "kilowatt_hours_per_100_miles";
|
|
271
|
+
ConsumptionUnit["WATT_HOURS_PER_KILOMETER"] = "watt_hours_per_kilometer";
|
|
272
|
+
ConsumptionUnit["WATT_HOURS_PER_MILE"] = "watt_hours_per_mile";
|
|
273
|
+
ConsumptionUnit["MILES_PER_KILOWATT_HOUR"] = "miles_per_kilowatt_hour";
|
|
274
|
+
ConsumptionUnit["KILOMETERS_PER_KILOWATT_HOUR"] = "kilometers_per_kilowatt_hour";
|
|
275
|
+
})(exports.ConsumptionUnit || (exports.ConsumptionUnit = {}));
|
|
276
|
+
|
|
234
277
|
/** ISO-3166 alpha-2 country codes */
|
|
235
278
|
exports.CountryCodeAlpha2 = void 0;
|
|
236
279
|
|
|
@@ -489,14 +532,61 @@ exports.CountryCodeAlpha2 = void 0;
|
|
|
489
532
|
CountryCodeAlpha2["ZW"] = "ZW";
|
|
490
533
|
})(exports.CountryCodeAlpha2 || (exports.CountryCodeAlpha2 = {}));
|
|
491
534
|
|
|
535
|
+
/** Currency according to the ISO 4217 standard */
|
|
536
|
+
exports.CurrencyUnit = void 0;
|
|
537
|
+
|
|
538
|
+
(function (CurrencyUnit) {
|
|
539
|
+
CurrencyUnit["EUR"] = "EUR";
|
|
540
|
+
CurrencyUnit["USD"] = "USD";
|
|
541
|
+
})(exports.CurrencyUnit || (exports.CurrencyUnit = {}));
|
|
542
|
+
|
|
543
|
+
exports.DistanceUnit = void 0;
|
|
544
|
+
/** EVSE data which extends OCPI EVSE */
|
|
545
|
+
|
|
546
|
+
(function (DistanceUnit) {
|
|
547
|
+
DistanceUnit["METER"] = "meter";
|
|
548
|
+
DistanceUnit["FOOT"] = "foot";
|
|
549
|
+
DistanceUnit["KILOMETER"] = "kilometer";
|
|
550
|
+
DistanceUnit["MILE"] = "mile";
|
|
551
|
+
})(exports.DistanceUnit || (exports.DistanceUnit = {}));
|
|
552
|
+
|
|
553
|
+
exports.ElevationUnit = void 0;
|
|
554
|
+
|
|
555
|
+
(function (ElevationUnit) {
|
|
556
|
+
ElevationUnit["METER"] = "meter";
|
|
557
|
+
ElevationUnit["FOOT"] = "foot";
|
|
558
|
+
})(exports.ElevationUnit || (exports.ElevationUnit = {}));
|
|
559
|
+
|
|
560
|
+
exports.EmissionRateUnit = void 0;
|
|
561
|
+
|
|
562
|
+
(function (EmissionRateUnit) {
|
|
563
|
+
EmissionRateUnit["GRAMS_PER_KILOMETER"] = "grams_per_kilometer";
|
|
564
|
+
EmissionRateUnit["OUNCES_PER_MILE"] = "ounces_per_mile";
|
|
565
|
+
})(exports.EmissionRateUnit || (exports.EmissionRateUnit = {}));
|
|
566
|
+
|
|
567
|
+
exports.EmissionUnit = void 0;
|
|
568
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
569
|
+
|
|
570
|
+
(function (EmissionUnit) {
|
|
571
|
+
EmissionUnit["GRAM"] = "gram";
|
|
572
|
+
EmissionUnit["OUNCE"] = "ounce";
|
|
573
|
+
})(exports.EmissionUnit || (exports.EmissionUnit = {}));
|
|
574
|
+
|
|
492
575
|
/** GeoJSON Feature type */
|
|
493
576
|
exports.FeatureType = void 0;
|
|
494
|
-
/** Geometry point with GPS coordinates */
|
|
495
577
|
|
|
496
578
|
(function (FeatureType) {
|
|
497
579
|
FeatureType["FEATURE"] = "Feature";
|
|
498
580
|
})(exports.FeatureType || (exports.FeatureType = {}));
|
|
499
581
|
|
|
582
|
+
exports.FuelConsumptionUnit = void 0;
|
|
583
|
+
/** Geometry point with GPS coordinates */
|
|
584
|
+
|
|
585
|
+
(function (FuelConsumptionUnit) {
|
|
586
|
+
FuelConsumptionUnit["LITERS_PER_100_KILOMETERS"] = "liters_per_100_kilometers";
|
|
587
|
+
FuelConsumptionUnit["MILES_PER_GALLON"] = "miles_per_gallon";
|
|
588
|
+
})(exports.FuelConsumptionUnit || (exports.FuelConsumptionUnit = {}));
|
|
589
|
+
|
|
500
590
|
/** Navigation service providers available */
|
|
501
591
|
exports.InstructionsFormat = void 0;
|
|
502
592
|
|
|
@@ -505,7 +595,22 @@ exports.InstructionsFormat = void 0;
|
|
|
505
595
|
InstructionsFormat["MAPBOXV5"] = "MapboxV5";
|
|
506
596
|
})(exports.InstructionsFormat || (exports.InstructionsFormat = {}));
|
|
507
597
|
|
|
598
|
+
exports.IsolineFerryConnectionsType = void 0;
|
|
599
|
+
|
|
600
|
+
(function (IsolineFerryConnectionsType) {
|
|
601
|
+
IsolineFerryConnectionsType["NONE"] = "none";
|
|
602
|
+
IsolineFerryConnectionsType["SINGLE"] = "single";
|
|
603
|
+
})(exports.IsolineFerryConnectionsType || (exports.IsolineFerryConnectionsType = {}));
|
|
604
|
+
|
|
605
|
+
/** Granularity of the isoline */
|
|
606
|
+
exports.IsolineQuality = void 0;
|
|
508
607
|
/** Status of the isoline label */
|
|
608
|
+
|
|
609
|
+
(function (IsolineQuality) {
|
|
610
|
+
IsolineQuality["HIGH"] = "high";
|
|
611
|
+
IsolineQuality["LOW"] = "low";
|
|
612
|
+
})(exports.IsolineQuality || (exports.IsolineQuality = {}));
|
|
613
|
+
|
|
509
614
|
exports.IsolineStatus = void 0;
|
|
510
615
|
/** Types of a leg */
|
|
511
616
|
|
|
@@ -516,16 +621,25 @@ exports.IsolineStatus = void 0;
|
|
|
516
621
|
})(exports.IsolineStatus || (exports.IsolineStatus = {}));
|
|
517
622
|
|
|
518
623
|
exports.LegType = void 0;
|
|
519
|
-
/**
|
|
624
|
+
/** A GeoJSON LineString */
|
|
520
625
|
|
|
521
626
|
(function (LegType) {
|
|
522
627
|
LegType["STATION"] = "station";
|
|
523
628
|
LegType["STATIONVIA"] = "stationVia";
|
|
629
|
+
LegType["STATIONAMENITY"] = "stationAmenity";
|
|
524
630
|
LegType["VIA"] = "via";
|
|
525
631
|
LegType["FINAL"] = "final";
|
|
526
632
|
LegType["STATIONFINAL"] = "stationFinal";
|
|
527
633
|
})(exports.LegType || (exports.LegType = {}));
|
|
528
634
|
|
|
635
|
+
/** GeoJSON LineString type */
|
|
636
|
+
exports.LineStringType = void 0;
|
|
637
|
+
/** Preferred language for the mapping */
|
|
638
|
+
|
|
639
|
+
(function (LineStringType) {
|
|
640
|
+
LineStringType["LINESTRING"] = "LineString";
|
|
641
|
+
})(exports.LineStringType || (exports.LineStringType = {}));
|
|
642
|
+
|
|
529
643
|
exports.MappingLanguage = void 0;
|
|
530
644
|
/** Navigation service providers available */
|
|
531
645
|
|
|
@@ -540,6 +654,21 @@ exports.MappingProvider = void 0;
|
|
|
540
654
|
MappingProvider["MAPBOXV5"] = "MapboxV5";
|
|
541
655
|
})(exports.MappingProvider || (exports.MappingProvider = {}));
|
|
542
656
|
|
|
657
|
+
exports.MeasurementUnit = void 0;
|
|
658
|
+
/** A GeoJSON Polygon */
|
|
659
|
+
|
|
660
|
+
(function (MeasurementUnit) {
|
|
661
|
+
MeasurementUnit["MILLIMETER"] = "millimeter";
|
|
662
|
+
MeasurementUnit["INCH"] = "inch";
|
|
663
|
+
})(exports.MeasurementUnit || (exports.MeasurementUnit = {}));
|
|
664
|
+
|
|
665
|
+
/** GeoJSON MultiPolygon type */
|
|
666
|
+
exports.MultiPolygonType = void 0;
|
|
667
|
+
|
|
668
|
+
(function (MultiPolygonType) {
|
|
669
|
+
MultiPolygonType["MULTIPOLYGON"] = "MultiPolygon";
|
|
670
|
+
})(exports.MultiPolygonType || (exports.MultiPolygonType = {}));
|
|
671
|
+
|
|
543
672
|
/** State of navigation session */
|
|
544
673
|
exports.NavigationState = void 0;
|
|
545
674
|
/** Navigation session station type */
|
|
@@ -764,7 +893,7 @@ exports.OCPITariffDimensionType = void 0;
|
|
|
764
893
|
})(exports.OCPITariffDimensionType || (exports.OCPITariffDimensionType = {}));
|
|
765
894
|
|
|
766
895
|
exports.OCPITariffType = void 0;
|
|
767
|
-
/**
|
|
896
|
+
/** List of charging modes that are supported */
|
|
768
897
|
|
|
769
898
|
(function (OCPITariffType) {
|
|
770
899
|
OCPITariffType["AD_HOC_PAYMENT"] = "AD_HOC_PAYMENT";
|
|
@@ -774,6 +903,54 @@ exports.OCPITariffType = void 0;
|
|
|
774
903
|
OCPITariffType["REGULAR"] = "REGULAR";
|
|
775
904
|
})(exports.OCPITariffType || (exports.OCPITariffType = {}));
|
|
776
905
|
|
|
906
|
+
exports.OICPChargingModes = void 0;
|
|
907
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
908
|
+
|
|
909
|
+
(function (OICPChargingModes) {
|
|
910
|
+
OICPChargingModes["MODE_1"] = "mode_1";
|
|
911
|
+
OICPChargingModes["MODE_2"] = "mode_2";
|
|
912
|
+
OICPChargingModes["MODE_3"] = "mode_3";
|
|
913
|
+
OICPChargingModes["MODE_4"] = "mode_4";
|
|
914
|
+
OICPChargingModes["CHADEMO"] = "chademo";
|
|
915
|
+
})(exports.OICPChargingModes || (exports.OICPChargingModes = {}));
|
|
916
|
+
|
|
917
|
+
/** List of authentication modes that are supported */
|
|
918
|
+
exports.OICPEvseAuthenticationMode = void 0;
|
|
919
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
920
|
+
|
|
921
|
+
(function (OICPEvseAuthenticationMode) {
|
|
922
|
+
OICPEvseAuthenticationMode["NFC_RFID_CLASSIC"] = "nfc_rfid_classic";
|
|
923
|
+
OICPEvseAuthenticationMode["NFC_RFID_DESFIRE"] = "nfc_rfid_desfire";
|
|
924
|
+
OICPEvseAuthenticationMode["PNC"] = "pnc";
|
|
925
|
+
OICPEvseAuthenticationMode["REMOTE"] = "remote";
|
|
926
|
+
OICPEvseAuthenticationMode["DIRECT_PAYMENT"] = "direct_payment";
|
|
927
|
+
OICPEvseAuthenticationMode["NO_AUTHENTICATION_REQUIRED"] = "no_authentication_required";
|
|
928
|
+
})(exports.OICPEvseAuthenticationMode || (exports.OICPEvseAuthenticationMode = {}));
|
|
929
|
+
|
|
930
|
+
/** List of payment options that are supported */
|
|
931
|
+
exports.OICPPaymentOptions = void 0;
|
|
932
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
933
|
+
|
|
934
|
+
(function (OICPPaymentOptions) {
|
|
935
|
+
OICPPaymentOptions["NO_PAYMENT"] = "no_payment";
|
|
936
|
+
OICPPaymentOptions["DIRECT"] = "direct";
|
|
937
|
+
OICPPaymentOptions["CONTRACT"] = "contract";
|
|
938
|
+
})(exports.OICPPaymentOptions || (exports.OICPPaymentOptions = {}));
|
|
939
|
+
|
|
940
|
+
/** List of value added services that are supported */
|
|
941
|
+
exports.OICPValueAddedServices = void 0;
|
|
942
|
+
|
|
943
|
+
(function (OICPValueAddedServices) {
|
|
944
|
+
OICPValueAddedServices["RESERVATION"] = "reservation";
|
|
945
|
+
OICPValueAddedServices["DYNAMIC_PRICING"] = "dynamic_pricing";
|
|
946
|
+
OICPValueAddedServices["PARKING_SENSORS"] = "parking_sensors";
|
|
947
|
+
OICPValueAddedServices["MAXIMUM_POWER_CHARGING"] = "maximum_power_charging";
|
|
948
|
+
OICPValueAddedServices["PREDICTIVE_CHARGE_POINT_USAGE"] = "predictive_charge_point_usage";
|
|
949
|
+
OICPValueAddedServices["CHARGING_PLANS"] = "charging_plans";
|
|
950
|
+
OICPValueAddedServices["ROOF_PROVIDED"] = "roof_provided";
|
|
951
|
+
OICPValueAddedServices["NONE"] = "none";
|
|
952
|
+
})(exports.OICPValueAddedServices || (exports.OICPValueAddedServices = {}));
|
|
953
|
+
|
|
777
954
|
exports.ParkingCost = void 0;
|
|
778
955
|
|
|
779
956
|
(function (ParkingCost) {
|
|
@@ -783,19 +960,26 @@ exports.ParkingCost = void 0;
|
|
|
783
960
|
|
|
784
961
|
/** GeoJSON Point type */
|
|
785
962
|
exports.PointType = void 0;
|
|
786
|
-
/**
|
|
963
|
+
/** Polygon properties */
|
|
787
964
|
|
|
788
965
|
(function (PointType) {
|
|
789
966
|
PointType["POINT"] = "Point";
|
|
790
967
|
})(exports.PointType || (exports.PointType = {}));
|
|
791
968
|
|
|
792
|
-
|
|
793
|
-
exports.PolygonType = void 0;
|
|
794
|
-
/** The list of powers for the speed type */
|
|
969
|
+
exports.PowerUnit = void 0;
|
|
795
970
|
|
|
796
|
-
(function (
|
|
797
|
-
|
|
798
|
-
|
|
971
|
+
(function (PowerUnit) {
|
|
972
|
+
PowerUnit["KILOWATT"] = "kilowatt";
|
|
973
|
+
PowerUnit["HORSEPOWER"] = "horsepower";
|
|
974
|
+
})(exports.PowerUnit || (exports.PowerUnit = {}));
|
|
975
|
+
|
|
976
|
+
exports.PressureUnit = void 0;
|
|
977
|
+
/** The price model */
|
|
978
|
+
|
|
979
|
+
(function (PressureUnit) {
|
|
980
|
+
PressureUnit["BAR"] = "bar";
|
|
981
|
+
PressureUnit["POUNDS_PER_SQUARE_INCH"] = "pounds_per_square_inch";
|
|
982
|
+
})(exports.PressureUnit || (exports.PressureUnit = {}));
|
|
799
983
|
|
|
800
984
|
exports.PricingListElementType = void 0;
|
|
801
985
|
|
|
@@ -808,6 +992,7 @@ exports.PricingListElementType = void 0;
|
|
|
808
992
|
|
|
809
993
|
/** Types of an alternative route */
|
|
810
994
|
exports.RouteAlternativeType = void 0;
|
|
995
|
+
/** Amenity preferences for a route */
|
|
811
996
|
|
|
812
997
|
(function (RouteAlternativeType) {
|
|
813
998
|
RouteAlternativeType["FASTEST"] = "fastest";
|
|
@@ -874,7 +1059,7 @@ exports.RouteStatus = void 0;
|
|
|
874
1059
|
|
|
875
1060
|
/** Tags of a route */
|
|
876
1061
|
exports.RouteTagType = void 0;
|
|
877
|
-
/**
|
|
1062
|
+
/** Scheduled charge stop along a route */
|
|
878
1063
|
|
|
879
1064
|
(function (RouteTagType) {
|
|
880
1065
|
RouteTagType["ROAD"] = "road";
|
|
@@ -885,6 +1070,24 @@ exports.RouteTagType = void 0;
|
|
|
885
1070
|
RouteTagType["CROSSBORDER"] = "crossborder";
|
|
886
1071
|
})(exports.RouteTagType || (exports.RouteTagType = {}));
|
|
887
1072
|
|
|
1073
|
+
exports.SpeedUnit = void 0;
|
|
1074
|
+
/** Standards(plug type) stats model */
|
|
1075
|
+
|
|
1076
|
+
(function (SpeedUnit) {
|
|
1077
|
+
SpeedUnit["KILOMETERS_PER_HOUR"] = "kilometers_per_hour";
|
|
1078
|
+
SpeedUnit["MILES_PER_HOUR"] = "miles_per_hour";
|
|
1079
|
+
})(exports.SpeedUnit || (exports.SpeedUnit = {}));
|
|
1080
|
+
|
|
1081
|
+
exports.StateOfChargeUnit = void 0;
|
|
1082
|
+
/** Station data which extends OCPI Location */
|
|
1083
|
+
|
|
1084
|
+
(function (StateOfChargeUnit) {
|
|
1085
|
+
StateOfChargeUnit["KILOMETER"] = "kilometer";
|
|
1086
|
+
StateOfChargeUnit["MILE"] = "mile";
|
|
1087
|
+
StateOfChargeUnit["KILOWATT_HOUR"] = "kilowatt_hour";
|
|
1088
|
+
StateOfChargeUnit["PERCENTAGE"] = "percentage";
|
|
1089
|
+
})(exports.StateOfChargeUnit || (exports.StateOfChargeUnit = {}));
|
|
1090
|
+
|
|
888
1091
|
/** The station speed type */
|
|
889
1092
|
exports.StationSpeedType = void 0;
|
|
890
1093
|
/** The station stats model */
|
|
@@ -906,4 +1109,162 @@ exports.StepType = void 0;
|
|
|
906
1109
|
StepType["WALKING"] = "walking";
|
|
907
1110
|
StepType["CROSSBORDER"] = "crossborder";
|
|
908
1111
|
})(exports.StepType || (exports.StepType = {}));
|
|
1112
|
+
|
|
1113
|
+
exports.TelemetryInputSource = void 0;
|
|
1114
|
+
|
|
1115
|
+
(function (TelemetryInputSource) {
|
|
1116
|
+
TelemetryInputSource["MANUAL"] = "manual";
|
|
1117
|
+
TelemetryInputSource["TELEMETRY"] = "telemetry";
|
|
1118
|
+
})(exports.TelemetryInputSource || (exports.TelemetryInputSource = {}));
|
|
1119
|
+
|
|
1120
|
+
exports.TemperatureUnit = void 0;
|
|
1121
|
+
|
|
1122
|
+
(function (TemperatureUnit) {
|
|
1123
|
+
TemperatureUnit["CELSIUS"] = "Celsius";
|
|
1124
|
+
TemperatureUnit["FAHRENHEIT"] = "Fahrenheit";
|
|
1125
|
+
})(exports.TemperatureUnit || (exports.TemperatureUnit = {}));
|
|
1126
|
+
|
|
1127
|
+
exports.TorqueUnit = void 0;
|
|
1128
|
+
|
|
1129
|
+
(function (TorqueUnit) {
|
|
1130
|
+
TorqueUnit["NEWTON_METER"] = "newton_meter";
|
|
1131
|
+
TorqueUnit["FOOT_POUND"] = "foot_pound";
|
|
1132
|
+
})(exports.TorqueUnit || (exports.TorqueUnit = {}));
|
|
1133
|
+
|
|
1134
|
+
exports.TurningCircleUnit = void 0;
|
|
1135
|
+
|
|
1136
|
+
(function (TurningCircleUnit) {
|
|
1137
|
+
TurningCircleUnit["METER"] = "meter";
|
|
1138
|
+
TurningCircleUnit["FOOT"] = "foot";
|
|
1139
|
+
})(exports.TurningCircleUnit || (exports.TurningCircleUnit = {}));
|
|
1140
|
+
|
|
1141
|
+
/** Availability status of a vehicle */
|
|
1142
|
+
exports.VehicleAvailabilityStatus = void 0;
|
|
1143
|
+
|
|
1144
|
+
(function (VehicleAvailabilityStatus) {
|
|
1145
|
+
VehicleAvailabilityStatus["NO_LONGER_AVAILABLE"] = "no_longer_available";
|
|
1146
|
+
VehicleAvailabilityStatus["AVAILABLE"] = "available";
|
|
1147
|
+
VehicleAvailabilityStatus["RELEASE_DATE_ANNOUNCED_PREORDERABLE"] = "release_date_announced_preorderable";
|
|
1148
|
+
VehicleAvailabilityStatus["RELEASE_DATE_ANNOUNCED"] = "release_date_announced";
|
|
1149
|
+
VehicleAvailabilityStatus["CONCEPT_VEHICLE_PREORDERABLE"] = "concept_vehicle_preorderable";
|
|
1150
|
+
VehicleAvailabilityStatus["CONCEPT_VEHICLE"] = "concept_vehicle";
|
|
1151
|
+
VehicleAvailabilityStatus["CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE"] = "concept_vehicle_release_date_tba_preorderable";
|
|
1152
|
+
VehicleAvailabilityStatus["CONCEPT_VEHICLE_RELEASE_DATE_TBA"] = "concept_vehicle_release_date_tba";
|
|
1153
|
+
VehicleAvailabilityStatus["UNCERTAIN"] = "uncertain";
|
|
1154
|
+
})(exports.VehicleAvailabilityStatus || (exports.VehicleAvailabilityStatus = {}));
|
|
1155
|
+
|
|
1156
|
+
/** Battery field estimated */
|
|
1157
|
+
exports.VehicleBatteryFieldEstimations = void 0;
|
|
1158
|
+
|
|
1159
|
+
(function (VehicleBatteryFieldEstimations) {
|
|
1160
|
+
VehicleBatteryFieldEstimations["B"] = "B";
|
|
1161
|
+
VehicleBatteryFieldEstimations["F"] = "F";
|
|
1162
|
+
VehicleBatteryFieldEstimations["N"] = "N";
|
|
1163
|
+
VehicleBatteryFieldEstimations["U"] = "U";
|
|
1164
|
+
})(exports.VehicleBatteryFieldEstimations || (exports.VehicleBatteryFieldEstimations = {}));
|
|
1165
|
+
|
|
1166
|
+
exports.VehicleConnectivityProvider = void 0;
|
|
1167
|
+
/** Vehicle plug model */
|
|
1168
|
+
|
|
1169
|
+
(function (VehicleConnectivityProvider) {
|
|
1170
|
+
VehicleConnectivityProvider["ENODE"] = "Enode";
|
|
1171
|
+
})(exports.VehicleConnectivityProvider || (exports.VehicleConnectivityProvider = {}));
|
|
1172
|
+
|
|
1173
|
+
exports.VehicleDataProvider = void 0;
|
|
1174
|
+
|
|
1175
|
+
(function (VehicleDataProvider) {
|
|
1176
|
+
VehicleDataProvider["CHARGETRIP"] = "chargetrip";
|
|
1177
|
+
VehicleDataProvider["EVDATABASE"] = "evdatabase";
|
|
1178
|
+
})(exports.VehicleDataProvider || (exports.VehicleDataProvider = {}));
|
|
1179
|
+
|
|
1180
|
+
/** Drivetrain */
|
|
1181
|
+
exports.VehicleDrivetrainType = void 0;
|
|
1182
|
+
/** Fuel type */
|
|
1183
|
+
|
|
1184
|
+
(function (VehicleDrivetrainType) {
|
|
1185
|
+
VehicleDrivetrainType["BEV"] = "BEV";
|
|
1186
|
+
VehicleDrivetrainType["EREV"] = "EREV";
|
|
1187
|
+
VehicleDrivetrainType["HEV"] = "HEV";
|
|
1188
|
+
VehicleDrivetrainType["PHEV"] = "PHEV";
|
|
1189
|
+
})(exports.VehicleDrivetrainType || (exports.VehicleDrivetrainType = {}));
|
|
1190
|
+
|
|
1191
|
+
exports.VehicleFuel = void 0;
|
|
1192
|
+
|
|
1193
|
+
(function (VehicleFuel) {
|
|
1194
|
+
VehicleFuel["D"] = "D";
|
|
1195
|
+
VehicleFuel["E"] = "E";
|
|
1196
|
+
VehicleFuel["P"] = "P";
|
|
1197
|
+
})(exports.VehicleFuel || (exports.VehicleFuel = {}));
|
|
1198
|
+
|
|
1199
|
+
/** Available types of images which can be found for a vehicle. Each type has specific image sizes */
|
|
1200
|
+
exports.VehicleImageType = void 0;
|
|
1201
|
+
/** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
1202
|
+
|
|
1203
|
+
(function (VehicleImageType) {
|
|
1204
|
+
VehicleImageType["PROVIDER"] = "provider";
|
|
1205
|
+
VehicleImageType["IMAGE"] = "image";
|
|
1206
|
+
VehicleImageType["IMAGE_THUMBNAIL"] = "image_thumbnail";
|
|
1207
|
+
VehicleImageType["BRAND"] = "brand";
|
|
1208
|
+
VehicleImageType["BRAND_THUMBNAIL"] = "brand_thumbnail";
|
|
1209
|
+
})(exports.VehicleImageType || (exports.VehicleImageType = {}));
|
|
1210
|
+
|
|
1211
|
+
exports.VehicleImageTypeUploadable = void 0;
|
|
1212
|
+
/** The output element of the vehicleList query */
|
|
1213
|
+
|
|
1214
|
+
(function (VehicleImageTypeUploadable) {
|
|
1215
|
+
VehicleImageTypeUploadable["IMAGE"] = "image";
|
|
1216
|
+
})(exports.VehicleImageTypeUploadable || (exports.VehicleImageTypeUploadable = {}));
|
|
1217
|
+
|
|
1218
|
+
/** Mode (state) of the current production */
|
|
1219
|
+
exports.VehicleMode = void 0;
|
|
1220
|
+
|
|
1221
|
+
(function (VehicleMode) {
|
|
1222
|
+
VehicleMode["INDEX_ONLY"] = "index_only";
|
|
1223
|
+
VehicleMode["PRODUCTION"] = "production";
|
|
1224
|
+
VehicleMode["CONCEPT"] = "concept";
|
|
1225
|
+
})(exports.VehicleMode || (exports.VehicleMode = {}));
|
|
1226
|
+
|
|
1227
|
+
/** Propulsion */
|
|
1228
|
+
exports.VehiclePropulsion = void 0;
|
|
1229
|
+
/** Status of a vehicle provider */
|
|
1230
|
+
|
|
1231
|
+
(function (VehiclePropulsion) {
|
|
1232
|
+
VehiclePropulsion["AWD"] = "AWD";
|
|
1233
|
+
VehiclePropulsion["FRONT"] = "Front";
|
|
1234
|
+
VehiclePropulsion["REAR"] = "Rear";
|
|
1235
|
+
})(exports.VehiclePropulsion || (exports.VehiclePropulsion = {}));
|
|
1236
|
+
|
|
1237
|
+
exports.VehicleProviderStatus = void 0;
|
|
1238
|
+
|
|
1239
|
+
(function (VehicleProviderStatus) {
|
|
1240
|
+
VehicleProviderStatus["NEW"] = "new";
|
|
1241
|
+
VehicleProviderStatus["ATTACHED"] = "attached";
|
|
1242
|
+
VehicleProviderStatus["DETACHED"] = "detached";
|
|
1243
|
+
VehicleProviderStatus["ARCHIVED"] = "archived";
|
|
1244
|
+
})(exports.VehicleProviderStatus || (exports.VehicleProviderStatus = {}));
|
|
1245
|
+
|
|
1246
|
+
/** Status of a vehicle */
|
|
1247
|
+
exports.VehicleStatus = void 0;
|
|
1248
|
+
|
|
1249
|
+
(function (VehicleStatus) {
|
|
1250
|
+
VehicleStatus["DRAFT"] = "draft";
|
|
1251
|
+
VehicleStatus["PUBLIC"] = "public";
|
|
1252
|
+
VehicleStatus["PRIVATE"] = "private";
|
|
1253
|
+
VehicleStatus["ARCHIVED"] = "archived";
|
|
1254
|
+
})(exports.VehicleStatus || (exports.VehicleStatus = {}));
|
|
1255
|
+
|
|
1256
|
+
exports.VolumeUnit = void 0;
|
|
1257
|
+
|
|
1258
|
+
(function (VolumeUnit) {
|
|
1259
|
+
VolumeUnit["LITER"] = "liter";
|
|
1260
|
+
VolumeUnit["CUBIC_METER"] = "cubic_meter";
|
|
1261
|
+
VolumeUnit["CUBIC_FOOT"] = "cubic_foot";
|
|
1262
|
+
})(exports.VolumeUnit || (exports.VolumeUnit = {}));
|
|
1263
|
+
|
|
1264
|
+
exports.WeightUnit = void 0;
|
|
1265
|
+
|
|
1266
|
+
(function (WeightUnit) {
|
|
1267
|
+
WeightUnit["KILOGRAM"] = "kilogram";
|
|
1268
|
+
WeightUnit["POUND"] = "pound";
|
|
1269
|
+
})(exports.WeightUnit || (exports.WeightUnit = {}));
|
|
909
1270
|
//# sourceMappingURL=index.js.map
|