@chargetrip/types 1.35.1 → 1.36.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 +7 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +5 -4
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +5 -4
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +102 -65
- package/graphql.schema.json +436 -172
- package/package.json +1 -1
- package/src/graphql.ts +106 -65
|
@@ -120,6 +120,7 @@ export let CarImageType;
|
|
|
120
120
|
CarImageType["IMAGE_THUMBNAIL"] = "image_thumbnail";
|
|
121
121
|
CarImageType["BRAND"] = "brand";
|
|
122
122
|
CarImageType["BRAND_THUMBNAIL"] = "brand_thumbnail";
|
|
123
|
+
CarImageType["PLACEHOLDER"] = "placeholder";
|
|
123
124
|
})(CarImageType || (CarImageType = {}));
|
|
124
125
|
|
|
125
126
|
export let CarImageTypeUploadable;
|
|
@@ -267,14 +268,12 @@ export let ConsumptionUnit;
|
|
|
267
268
|
/** The complete contact information */
|
|
268
269
|
|
|
269
270
|
(function (ConsumptionUnit) {
|
|
270
|
-
ConsumptionUnit["KILOMETER"] = "kilometer";
|
|
271
|
-
ConsumptionUnit["KILOWATT_HOUR"] = "kilowatt_hour";
|
|
272
271
|
ConsumptionUnit["KILOWATT_HOURS_PER_100_KILOMETERS"] = "kilowatt_hours_per_100_kilometers";
|
|
273
|
-
ConsumptionUnit["KILOWATT_HOURS_PER_100_MILES"] = "kilowatt_hours_per_100_miles";
|
|
274
272
|
ConsumptionUnit["WATT_HOURS_PER_KILOMETER"] = "watt_hours_per_kilometer";
|
|
273
|
+
ConsumptionUnit["KILOMETERS_PER_KILOWATT_HOUR"] = "kilometers_per_kilowatt_hour";
|
|
274
|
+
ConsumptionUnit["KILOWATT_HOURS_PER_100_MILES"] = "kilowatt_hours_per_100_miles";
|
|
275
275
|
ConsumptionUnit["WATT_HOURS_PER_MILE"] = "watt_hours_per_mile";
|
|
276
276
|
ConsumptionUnit["MILES_PER_KILOWATT_HOUR"] = "miles_per_kilowatt_hour";
|
|
277
|
-
ConsumptionUnit["KILOMETERS_PER_KILOWATT_HOUR"] = "kilometers_per_kilowatt_hour";
|
|
278
277
|
})(ConsumptionUnit || (ConsumptionUnit = {}));
|
|
279
278
|
|
|
280
279
|
/** ISO-3166 alpha-2 country codes */
|
|
@@ -541,6 +540,7 @@ export let CurrencyUnit;
|
|
|
541
540
|
(function (CurrencyUnit) {
|
|
542
541
|
CurrencyUnit["EUR"] = "EUR";
|
|
543
542
|
CurrencyUnit["USD"] = "USD";
|
|
543
|
+
CurrencyUnit["GBP"] = "GBP";
|
|
544
544
|
})(CurrencyUnit || (CurrencyUnit = {}));
|
|
545
545
|
|
|
546
546
|
export let DistanceUnit;
|
|
@@ -1202,6 +1202,7 @@ export let VehicleImageType;
|
|
|
1202
1202
|
VehicleImageType["IMAGE_THUMBNAIL"] = "image_thumbnail";
|
|
1203
1203
|
VehicleImageType["BRAND"] = "brand";
|
|
1204
1204
|
VehicleImageType["BRAND_THUMBNAIL"] = "brand_thumbnail";
|
|
1205
|
+
VehicleImageType["PLACEHOLDER"] = "placeholder";
|
|
1205
1206
|
})(VehicleImageType || (VehicleImageType = {}));
|
|
1206
1207
|
|
|
1207
1208
|
export let VehicleImageTypeUploadable;
|