@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
package/dist/node/index.js
CHANGED
|
@@ -124,6 +124,7 @@ exports.CarImageType = void 0;
|
|
|
124
124
|
CarImageType["IMAGE_THUMBNAIL"] = "image_thumbnail";
|
|
125
125
|
CarImageType["BRAND"] = "brand";
|
|
126
126
|
CarImageType["BRAND_THUMBNAIL"] = "brand_thumbnail";
|
|
127
|
+
CarImageType["PLACEHOLDER"] = "placeholder";
|
|
127
128
|
})(exports.CarImageType || (exports.CarImageType = {}));
|
|
128
129
|
|
|
129
130
|
exports.CarImageTypeUploadable = void 0;
|
|
@@ -271,14 +272,12 @@ exports.ConsumptionUnit = void 0;
|
|
|
271
272
|
/** The complete contact information */
|
|
272
273
|
|
|
273
274
|
(function (ConsumptionUnit) {
|
|
274
|
-
ConsumptionUnit["KILOMETER"] = "kilometer";
|
|
275
|
-
ConsumptionUnit["KILOWATT_HOUR"] = "kilowatt_hour";
|
|
276
275
|
ConsumptionUnit["KILOWATT_HOURS_PER_100_KILOMETERS"] = "kilowatt_hours_per_100_kilometers";
|
|
277
|
-
ConsumptionUnit["KILOWATT_HOURS_PER_100_MILES"] = "kilowatt_hours_per_100_miles";
|
|
278
276
|
ConsumptionUnit["WATT_HOURS_PER_KILOMETER"] = "watt_hours_per_kilometer";
|
|
277
|
+
ConsumptionUnit["KILOMETERS_PER_KILOWATT_HOUR"] = "kilometers_per_kilowatt_hour";
|
|
278
|
+
ConsumptionUnit["KILOWATT_HOURS_PER_100_MILES"] = "kilowatt_hours_per_100_miles";
|
|
279
279
|
ConsumptionUnit["WATT_HOURS_PER_MILE"] = "watt_hours_per_mile";
|
|
280
280
|
ConsumptionUnit["MILES_PER_KILOWATT_HOUR"] = "miles_per_kilowatt_hour";
|
|
281
|
-
ConsumptionUnit["KILOMETERS_PER_KILOWATT_HOUR"] = "kilometers_per_kilowatt_hour";
|
|
282
281
|
})(exports.ConsumptionUnit || (exports.ConsumptionUnit = {}));
|
|
283
282
|
|
|
284
283
|
/** ISO-3166 alpha-2 country codes */
|
|
@@ -545,6 +544,7 @@ exports.CurrencyUnit = void 0;
|
|
|
545
544
|
(function (CurrencyUnit) {
|
|
546
545
|
CurrencyUnit["EUR"] = "EUR";
|
|
547
546
|
CurrencyUnit["USD"] = "USD";
|
|
547
|
+
CurrencyUnit["GBP"] = "GBP";
|
|
548
548
|
})(exports.CurrencyUnit || (exports.CurrencyUnit = {}));
|
|
549
549
|
|
|
550
550
|
exports.DistanceUnit = void 0;
|
|
@@ -1206,6 +1206,7 @@ exports.VehicleImageType = void 0;
|
|
|
1206
1206
|
VehicleImageType["IMAGE_THUMBNAIL"] = "image_thumbnail";
|
|
1207
1207
|
VehicleImageType["BRAND"] = "brand";
|
|
1208
1208
|
VehicleImageType["BRAND_THUMBNAIL"] = "brand_thumbnail";
|
|
1209
|
+
VehicleImageType["PLACEHOLDER"] = "placeholder";
|
|
1209
1210
|
})(exports.VehicleImageType || (exports.VehicleImageType = {}));
|
|
1210
1211
|
|
|
1211
1212
|
exports.VehicleImageTypeUploadable = void 0;
|