brilliantsole 0.0.20 → 0.0.22
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/build/brilliantsole.cjs +11 -5
- package/build/brilliantsole.cjs.map +1 -1
- package/build/brilliantsole.js +3 -4
- package/build/brilliantsole.js.map +1 -1
- package/build/brilliantsole.ls.js +2 -3
- package/build/brilliantsole.ls.js.map +1 -1
- package/build/brilliantsole.min.js +1 -1
- package/build/brilliantsole.min.js.map +1 -1
- package/build/brilliantsole.module.js +3 -4
- package/build/brilliantsole.module.js.map +1 -1
- package/build/brilliantsole.module.min.js +1 -1
- package/build/brilliantsole.module.min.js.map +1 -1
- package/build/brilliantsole.node.module.js +11 -5
- package/build/brilliantsole.node.module.js.map +1 -1
- package/package.json +1 -1
- package/src/scanner/NobleScanner.ts +8 -3
package/build/brilliantsole.js
CHANGED
|
@@ -4000,7 +4000,7 @@
|
|
|
4000
4000
|
this.AvailableDevices.push(existingConnectedDevice);
|
|
4001
4001
|
return;
|
|
4002
4002
|
}
|
|
4003
|
-
const device = new Device
|
|
4003
|
+
const device = new Device();
|
|
4004
4004
|
const connectionManager = new WebBluetoothConnectionManager();
|
|
4005
4005
|
connectionManager.device = bluetoothDevice;
|
|
4006
4006
|
if (bluetoothDevice.name) {
|
|
@@ -4665,7 +4665,6 @@
|
|
|
4665
4665
|
};
|
|
4666
4666
|
_Device_ReconnectOnDisconnection = { value: false };
|
|
4667
4667
|
_Device_ClearSensorConfigurationOnLeave = { value: true };
|
|
4668
|
-
var Device$1 = Device;
|
|
4669
4668
|
|
|
4670
4669
|
var _DevicePairPressureSensorDataManager_instances, _DevicePairPressureSensorDataManager_rawPressure, _DevicePairPressureSensorDataManager_centerOfPressureHelper, _DevicePairPressureSensorDataManager_hasAllPressureData_get, _DevicePairPressureSensorDataManager_updatePressureData;
|
|
4671
4670
|
const _console$7 = createConsole("DevicePairPressureSensorDataManager", { log: true });
|
|
@@ -5220,7 +5219,7 @@
|
|
|
5220
5219
|
this.sendServerMessage({ type: "connectToDevice", data: bluetoothId });
|
|
5221
5220
|
}
|
|
5222
5221
|
createDevice(bluetoothId) {
|
|
5223
|
-
const device = new Device
|
|
5222
|
+
const device = new Device();
|
|
5224
5223
|
const clientConnectionManager = new ClientConnectionManager();
|
|
5225
5224
|
clientConnectionManager.bluetoothId = bluetoothId;
|
|
5226
5225
|
clientConnectionManager.sendClientMessage = this.sendDeviceMessage.bind(this, bluetoothId);
|
|
@@ -5513,7 +5512,7 @@
|
|
|
5513
5512
|
|
|
5514
5513
|
exports.ContinuousSensorTypes = ContinuousSensorTypes;
|
|
5515
5514
|
exports.DefaultNumberOfPressureSensors = DefaultNumberOfPressureSensors;
|
|
5516
|
-
exports.Device = Device
|
|
5515
|
+
exports.Device = Device;
|
|
5517
5516
|
exports.DeviceManager = DeviceManager$1;
|
|
5518
5517
|
exports.DevicePair = DevicePair;
|
|
5519
5518
|
exports.DeviceTypes = DeviceTypes;
|