@chargetrip/types 1.40.0 → 1.41.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 +8 -0
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +8 -0
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +107 -13
- package/graphql.schema.json +476 -19
- package/package.json +1 -1
- package/src/graphql.ts +116 -13
package/dist/node/index.js
CHANGED
|
@@ -611,7 +611,15 @@ exports.FuelUnit = void 0;
|
|
|
611
611
|
FuelUnit["GALLON"] = "gallon";
|
|
612
612
|
})(exports.FuelUnit || (exports.FuelUnit = {}));
|
|
613
613
|
|
|
614
|
+
exports.HeatPumpMode = void 0;
|
|
614
615
|
/** Allowed N (EU) types of heavy vehicles. */
|
|
616
|
+
|
|
617
|
+
(function (HeatPumpMode) {
|
|
618
|
+
HeatPumpMode["DEFAULT"] = "default";
|
|
619
|
+
HeatPumpMode["INSTALLED"] = "installed";
|
|
620
|
+
HeatPumpMode["NONE"] = "none";
|
|
621
|
+
})(exports.HeatPumpMode || (exports.HeatPumpMode = {}));
|
|
622
|
+
|
|
615
623
|
exports.HeavyVehiclesEUType = void 0;
|
|
616
624
|
/** List of facilities in the location. */
|
|
617
625
|
|