@chargetrip/types 1.33.0 → 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.
@@ -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
 
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;
45
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
 
@@ -181,14 +209,14 @@ exports.ConnectedVehicleStatus = void 0;
181
209
  /** Connector data which extends OCPI Connector */
182
210
 
183
211
  (function (ConnectedVehicleStatus) {
184
- ConnectedVehicleStatus["PENDING"] = "pending";
212
+ ConnectedVehicleStatus["PENDING_AUTHORIZATION"] = "pending_authorization";
185
213
  ConnectedVehicleStatus["AUTHORIZED"] = "authorized";
186
- ConnectedVehicleStatus["DEAUTHORIZED"] = "deauthorized";
214
+ ConnectedVehicleStatus["PENDING_REMOVAL"] = "pending_removal";
215
+ ConnectedVehicleStatus["REMOVED"] = "removed";
187
216
  })(exports.ConnectedVehicleStatus || (exports.ConnectedVehicleStatus = {}));
188
217
 
189
218
  /** The socket or plug standard of the charging point. */
190
219
  exports.ConnectorType = void 0;
191
- /** The complete contact information */
192
220
 
193
221
  (function (ConnectorType) {
194
222
  ConnectorType["CHADEMO"] = "CHADEMO";
@@ -232,6 +260,20 @@ exports.ConnectorType = void 0;
232
260
  ConnectorType["NEMA_14_50"] = "NEMA_14_50";
233
261
  })(exports.ConnectorType || (exports.ConnectorType = {}));
234
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
+
235
277
  /** ISO-3166 alpha-2 country codes */
236
278
  exports.CountryCodeAlpha2 = void 0;
237
279
 
@@ -490,6 +532,14 @@ exports.CountryCodeAlpha2 = void 0;
490
532
  CountryCodeAlpha2["ZW"] = "ZW";
491
533
  })(exports.CountryCodeAlpha2 || (exports.CountryCodeAlpha2 = {}));
492
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
+
493
543
  exports.DistanceUnit = void 0;
494
544
  /** EVSE data which extends OCPI EVSE */
495
545
 
@@ -500,14 +550,43 @@ exports.DistanceUnit = void 0;
500
550
  DistanceUnit["MILE"] = "mile";
501
551
  })(exports.DistanceUnit || (exports.DistanceUnit = {}));
502
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
+
503
575
  /** GeoJSON Feature type */
504
576
  exports.FeatureType = void 0;
505
- /** Geometry point with GPS coordinates */
506
577
 
507
578
  (function (FeatureType) {
508
579
  FeatureType["FEATURE"] = "Feature";
509
580
  })(exports.FeatureType || (exports.FeatureType = {}));
510
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
+
511
590
  /** Navigation service providers available */
512
591
  exports.InstructionsFormat = void 0;
513
592
 
@@ -516,7 +595,22 @@ exports.InstructionsFormat = void 0;
516
595
  InstructionsFormat["MAPBOXV5"] = "MapboxV5";
517
596
  })(exports.InstructionsFormat || (exports.InstructionsFormat = {}));
518
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;
519
607
  /** Status of the isoline label */
608
+
609
+ (function (IsolineQuality) {
610
+ IsolineQuality["HIGH"] = "high";
611
+ IsolineQuality["LOW"] = "low";
612
+ })(exports.IsolineQuality || (exports.IsolineQuality = {}));
613
+
520
614
  exports.IsolineStatus = void 0;
521
615
  /** Types of a leg */
522
616
 
@@ -527,16 +621,25 @@ exports.IsolineStatus = void 0;
527
621
  })(exports.IsolineStatus || (exports.IsolineStatus = {}));
528
622
 
529
623
  exports.LegType = void 0;
530
- /** Preferred language for the mapping */
624
+ /** A GeoJSON LineString */
531
625
 
532
626
  (function (LegType) {
533
627
  LegType["STATION"] = "station";
534
628
  LegType["STATIONVIA"] = "stationVia";
629
+ LegType["STATIONAMENITY"] = "stationAmenity";
535
630
  LegType["VIA"] = "via";
536
631
  LegType["FINAL"] = "final";
537
632
  LegType["STATIONFINAL"] = "stationFinal";
538
633
  })(exports.LegType || (exports.LegType = {}));
539
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
+
540
643
  exports.MappingLanguage = void 0;
541
644
  /** Navigation service providers available */
542
645
 
@@ -551,6 +654,21 @@ exports.MappingProvider = void 0;
551
654
  MappingProvider["MAPBOXV5"] = "MapboxV5";
552
655
  })(exports.MappingProvider || (exports.MappingProvider = {}));
553
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
+
554
672
  /** State of navigation session */
555
673
  exports.NavigationState = void 0;
556
674
  /** Navigation session station type */
@@ -775,7 +893,7 @@ exports.OCPITariffDimensionType = void 0;
775
893
  })(exports.OCPITariffDimensionType || (exports.OCPITariffDimensionType = {}));
776
894
 
777
895
  exports.OCPITariffType = void 0;
778
- /** The operator data which extends OCPI BusinessDetails */
896
+ /** List of charging modes that are supported */
779
897
 
780
898
  (function (OCPITariffType) {
781
899
  OCPITariffType["AD_HOC_PAYMENT"] = "AD_HOC_PAYMENT";
@@ -785,6 +903,54 @@ exports.OCPITariffType = void 0;
785
903
  OCPITariffType["REGULAR"] = "REGULAR";
786
904
  })(exports.OCPITariffType || (exports.OCPITariffType = {}));
787
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
+
788
954
  exports.ParkingCost = void 0;
789
955
 
790
956
  (function (ParkingCost) {
@@ -794,19 +960,26 @@ exports.ParkingCost = void 0;
794
960
 
795
961
  /** GeoJSON Point type */
796
962
  exports.PointType = void 0;
797
- /** A GeoJSON Polygon */
963
+ /** Polygon properties */
798
964
 
799
965
  (function (PointType) {
800
966
  PointType["POINT"] = "Point";
801
967
  })(exports.PointType || (exports.PointType = {}));
802
968
 
803
- /** GeoJSON Polygon type */
804
- exports.PolygonType = void 0;
805
- /** The list of powers for the speed type */
969
+ exports.PowerUnit = void 0;
806
970
 
807
- (function (PolygonType) {
808
- PolygonType["POLYGON"] = "Polygon";
809
- })(exports.PolygonType || (exports.PolygonType = {}));
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 = {}));
810
983
 
811
984
  exports.PricingListElementType = void 0;
812
985
 
@@ -819,6 +992,7 @@ exports.PricingListElementType = void 0;
819
992
 
820
993
  /** Types of an alternative route */
821
994
  exports.RouteAlternativeType = void 0;
995
+ /** Amenity preferences for a route */
822
996
 
823
997
  (function (RouteAlternativeType) {
824
998
  RouteAlternativeType["FASTEST"] = "fastest";
@@ -885,7 +1059,7 @@ exports.RouteStatus = void 0;
885
1059
 
886
1060
  /** Tags of a route */
887
1061
  exports.RouteTagType = void 0;
888
- /** Standards(plug type) stats model */
1062
+ /** Scheduled charge stop along a route */
889
1063
 
890
1064
  (function (RouteTagType) {
891
1065
  RouteTagType["ROAD"] = "road";
@@ -896,6 +1070,24 @@ exports.RouteTagType = void 0;
896
1070
  RouteTagType["CROSSBORDER"] = "crossborder";
897
1071
  })(exports.RouteTagType || (exports.RouteTagType = {}));
898
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
+
899
1091
  /** The station speed type */
900
1092
  exports.StationSpeedType = void 0;
901
1093
  /** The station stats model */
@@ -917,4 +1109,162 @@ exports.StepType = void 0;
917
1109
  StepType["WALKING"] = "walking";
918
1110
  StepType["CROSSBORDER"] = "crossborder";
919
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 = {}));
920
1270
  //# sourceMappingURL=index.js.map