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