tirecheck-device-sdk 0.1.99 → 0.1.991

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/dist/index.cjs CHANGED
@@ -2149,8 +2149,8 @@ async function setVehicleLayout(deviceId, tcVehicle) {
2149
2149
  axle13: "0000",
2150
2150
  axle14: "0000",
2151
2151
  axle15: "0000",
2152
- vin: tcVehicle.vin ?? "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0",
2153
- vinExtension: tcVehicle.vinExtension ?? "\0"
2152
+ vin: tcVehicle.vin || "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0",
2153
+ vinExtension: tcVehicle.vinExtension || "\0"
2154
2154
  };
2155
2155
  for (let index = 0; index < 15; index++) {
2156
2156
  const resultKey = Object.keys(result)[index];
package/dist/index.mjs CHANGED
@@ -2142,8 +2142,8 @@ async function setVehicleLayout(deviceId, tcVehicle) {
2142
2142
  axle13: "0000",
2143
2143
  axle14: "0000",
2144
2144
  axle15: "0000",
2145
- vin: tcVehicle.vin ?? "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0",
2146
- vinExtension: tcVehicle.vinExtension ?? "\0"
2145
+ vin: tcVehicle.vin || "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0",
2146
+ vinExtension: tcVehicle.vinExtension || "\0"
2147
2147
  };
2148
2148
  for (let index = 0; index < 15; index++) {
2149
2149
  const resultKey = Object.keys(result)[index];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tirecheck-device-sdk",
3
- "version": "0.1.99",
3
+ "version": "0.1.991",
4
4
  "description": "SDK for working with various devices produced by Tirecheck via Bluetooth (CAN Bridge, Routers, Sensors, FlexiGauge, PressureStick, etc)",
5
5
  "author": "Leonid Buneev <leonid.buneev@tirecheck.com>",
6
6
  "license": "ISC",