@mentra/bluetooth-sdk 0.1.8 → 0.1.9

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.
@@ -9,7 +9,7 @@ import Foundation
9
9
 
10
10
  @MainActor
11
11
  class ObservableStore {
12
- private nonisolated(unsafe) var values: [String: Any] = [:]
12
+ private var values: [String: Any] = [:]
13
13
  private var onEmit: ((String, [String: Any]) -> Void)?
14
14
  private var listeners: [String: (String, [String: Any]) -> Void] = [:]
15
15
 
@@ -54,7 +54,7 @@ class ObservableStore {
54
54
  }
55
55
  }
56
56
 
57
- nonisolated func get(_ category: String, _ key: String) -> Any? {
57
+ func get(_ category: String, _ key: String) -> Any? {
58
58
  values["\(Self.normalizeCategory(category)).\(key)"]
59
59
  }
60
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mentra/bluetooth-sdk",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "SDK for communicating with smart glasses",
5
5
  "main": "build/index.js",
6
6
  "react-native": "src/index.ts",