unified-ble-manager 4.0.0-alpha.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.
Files changed (1774) hide show
  1. package/LICENSE +202 -0
  2. package/MIGRATION_4.0.md +46 -0
  3. package/README.md +885 -0
  4. package/ROADMAP.4.0.md +87 -0
  5. package/ROADMAP.md +712 -0
  6. package/android/build.gradle +116 -0
  7. package/android/gradle.properties +5 -0
  8. package/android/src/legacy/java/com/sfourdrinier/unifiedblemanager/adapter/BleModule.java +1666 -0
  9. package/android/src/legacy/java/com/sfourdrinier/unifiedblemanager/adapter/utils/DisposableMap.java +39 -0
  10. package/android/src/legacy/java/com/sfourdrinier/unifiedblemanager/adapter/utils/RefreshGattCustomOperation.java +53 -0
  11. package/android/src/legacy/java/com/sfourdrinier/unifiedblemanager/adapter/utils/mapper/RxBleDeviceToDeviceMapper.java +19 -0
  12. package/android/src/legacy/java/com/sfourdrinier/unifiedblemanager/adapter/utils/mapper/RxScanResultToScanResultMapper.java +22 -0
  13. package/android/src/main/AndroidManifest.xml +41 -0
  14. package/android/src/main/AndroidManifestNew.xml +44 -0
  15. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/BlePlxForegroundService.java +398 -0
  16. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/BlePlxModule.java +1237 -0
  17. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/BlePlxPackage.java +60 -0
  18. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/Event.java +18 -0
  19. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/AdvertisementData.java +251 -0
  20. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/BleAdapter.java +269 -0
  21. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/BleAdapterCreator.java +7 -0
  22. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/BleAdapterFactory.java +22 -0
  23. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/Characteristic.java +169 -0
  24. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/ConnectionOptions.java +72 -0
  25. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/ConnectionState.java +12 -0
  26. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/Descriptor.java +113 -0
  27. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/Device.java +95 -0
  28. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/OnErrorCallback.java +8 -0
  29. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/OnEventCallback.java +6 -0
  30. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/OnSuccessCallback.java +6 -0
  31. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/RefreshGattMoment.java +20 -0
  32. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/ScanResult.java +184 -0
  33. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/Service.java +58 -0
  34. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/errors/BleError.java +32 -0
  35. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/errors/BleErrorCode.java +61 -0
  36. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/errors/BleErrorUtils.java +86 -0
  37. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/errors/ErrorConverter.java +34 -0
  38. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/exceptions/CannotMonitorCharacteristicException.java +15 -0
  39. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/Base64Converter.java +34 -0
  40. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/ByteUtils.java +15 -0
  41. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/Constants.java +66 -0
  42. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/IdGenerator.java +22 -0
  43. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/IdGeneratorKey.java +37 -0
  44. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/LogLevel.java +51 -0
  45. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/SafeExecutor.java +33 -0
  46. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/ServiceFactory.java +16 -0
  47. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/adapter/utils/UUIDConverter.java +51 -0
  48. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/converter/BleErrorToJsObjectConverter.java +65 -0
  49. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/converter/CharacteristicToJsObjectConverter.java +52 -0
  50. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/converter/DescriptorToJsObjectConverter.java +38 -0
  51. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/converter/DeviceToJsObjectConverter.java +64 -0
  52. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/converter/JSObjectConverter.java +17 -0
  53. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/converter/ScanResultToJsObjectConverter.java +118 -0
  54. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/converter/ServiceToJsObjectConverter.java +26 -0
  55. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/protocol/ProtocolCommandDecoder.kt +221 -0
  56. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/protocol/ProtocolWireEncoder.kt +129 -0
  57. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/protocol/UnifiedBleProtocolAndroidDispatcher.kt +685 -0
  58. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/protocol/UnifiedBleProtocolControlModule.java +367 -0
  59. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/protocol/UnifiedBleProtocolJsiBinding.java +130 -0
  60. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/protocol/generated/NativeProtocolV1Schema.kt +302 -0
  61. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/radio/OwnedAdapterLifecycleCoordinator.kt +107 -0
  62. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/radio/OwnedAndroidGattRadio.kt +1599 -0
  63. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/radio/OwnedAndroidLog.kt +23 -0
  64. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/radio/OwnedBleAdapter.kt +1689 -0
  65. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/radio/OwnedBondedDevicesOperation.kt +32 -0
  66. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/utils/Base64Converter.java +30 -0
  67. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/utils/BlePlxDebugLogging.java +47 -0
  68. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/utils/ErrorDefaults.java +9 -0
  69. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/utils/ReadableArrayConverter.java +28 -0
  70. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/utils/SafePromise.java +54 -0
  71. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/utils/UUIDConverter.java +70 -0
  72. package/android/src/main/jni/CMakeLists.txt +50 -0
  73. package/android/src/main/jni/UnifiedBleProtocolControlJni.cpp +253 -0
  74. package/android/src/main/jni/UnifiedBleProtocolJsiBinding.cpp +1400 -0
  75. package/android/src/main/jni/UnifiedBleProtocolRuntimeHandle.hpp +12 -0
  76. package/android/src/test/java/com/sfourdrinier/unifiedblemanager/protocol/UnifiedBleProtocolAndroidDispatcherLifecycleTest.kt +51 -0
  77. package/android/src/test/java/com/sfourdrinier/unifiedblemanager/radio/OwnedAdapterLifecycleCoordinatorTest.kt +110 -0
  78. package/app.plugin.js +1 -0
  79. package/bin/ubm.js +18 -0
  80. package/docs/ADR/2026-07-4.0-backend-contract.md +133 -0
  81. package/docs/ADR/2026-07-4.0-boundary.md +128 -0
  82. package/docs/ADR/2026-07-4.0-capability-registry.md +116 -0
  83. package/docs/ADR/2026-07-4.0-open-source-governance.md +105 -0
  84. package/docs/ADR/2026-07-4.0-packaging.md +114 -0
  85. package/docs/ADR/2026-07-4.0-public-api.md +129 -0
  86. package/docs/ADR/2026-07-4.0-rn-restoration-bootstrap.md +122 -0
  87. package/docs/BACKEND_AUTHORING.md +13 -0
  88. package/docs/BACKGROUND.md +19 -0
  89. package/docs/BONDING.md +66 -0
  90. package/docs/CLI.md +18 -0
  91. package/docs/CONNECTION_MANAGER.md +188 -0
  92. package/docs/DISCOVERY_AND_PROFILES.md +143 -0
  93. package/docs/ELECTRON.md +29 -0
  94. package/docs/EXPO_PLUGIN.md +19 -0
  95. package/docs/FIX_TRACKER.4.0-round2.md +170 -0
  96. package/docs/FIX_TRACKER.4.0-round3.md +96 -0
  97. package/docs/FIX_TRACKER.4.0.md +168 -0
  98. package/docs/FORK.md +89 -0
  99. package/docs/GAPS.4.0.md +87 -0
  100. package/docs/GETTING_STARTED.md +37 -0
  101. package/docs/HELPERS.md +140 -0
  102. package/docs/MIGRATION_V1.md +6 -0
  103. package/docs/NODE.md +19 -0
  104. package/docs/PERFORMANCE.md +20 -0
  105. package/docs/PLATFORMS.md +51 -0
  106. package/docs/PROFILES_AND_COMMANDS.md +139 -0
  107. package/docs/README_V1.md +173 -0
  108. package/docs/TCK.md +21 -0
  109. package/docs/TUTORIALS.md +108 -0
  110. package/docs/TVOS.md +16 -0
  111. package/docs/UNIFIED_BLE_4.0_IMPLEMENTATION_PLAN.md +3053 -0
  112. package/docs/UNIFIED_SEMANTICS.md +965 -0
  113. package/docs/WEB.md +19 -0
  114. package/docs/generated/BACKEND_SDK_REFERENCE.md +52 -0
  115. package/docs/logo.png +0 -0
  116. package/docs/platforms/META_QUEST_4.1_SCOPE.md +21 -0
  117. package/docs/security/UNIFIED_BLE_4.0_THREAT_MODEL.md +126 -0
  118. package/ios/BlePlx-Bridging-Header.h +4 -0
  119. package/ios/BlePlx.h +21 -0
  120. package/ios/BlePlx.mm +885 -0
  121. package/ios/BlePlx.xcodeproj/project.pbxproj +288 -0
  122. package/ios/BlePlxDebugLogging.h +6 -0
  123. package/ios/BlePlxDebugLogging.m +33 -0
  124. package/ios/BlePlxRuntimeDispatch.h +8 -0
  125. package/ios/BlePlxTurboModule.mm +39 -0
  126. package/ios/Generated/NativeProtocolV1Schema.swift +302 -0
  127. package/ios/NativeProtocol/UnifiedBleProtocolAppleBinaryDelivery.hpp +25 -0
  128. package/ios/NativeProtocol/UnifiedBleProtocolAppleBinaryDelivery.mm +63 -0
  129. package/ios/NativeProtocol/UnifiedBleProtocolAppleExecution.hpp +46 -0
  130. package/ios/NativeProtocol/UnifiedBleProtocolAppleExecution.mm +883 -0
  131. package/ios/Owned/BlePlxRadioQueue.swift +23 -0
  132. package/ios/Owned/OwnedCoreBluetoothAdapter.swift +1704 -0
  133. package/ios/Owned/OwnedCoreBluetoothProtocolRadio.swift +870 -0
  134. package/ios/PrivacyInfo.xcprivacy +14 -0
  135. package/ios/Restoration/BlePlxDebugLogging.swift +26 -0
  136. package/ios/Restoration/BlePlxRestorationAdapter.swift +231 -0
  137. package/ios/Restoration/BlePlxRestorationState.swift +44 -0
  138. package/ios/Restoration/BleRestorationRegistry.swift +219 -0
  139. package/ios/UnifiedBleProtocolControl.mm +392 -0
  140. package/ios/vendor/MultiplatformBleAdapter/LICENSE +201 -0
  141. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/AdvertisementData.swift +62 -0
  142. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Array+Utils.swift +11 -0
  143. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/BluetoothError.swift +195 -0
  144. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/BluetoothManager.swift +357 -0
  145. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/BluetoothState.swift +12 -0
  146. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Boxes.swift +63 -0
  147. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/CBCentral+Uuid.swift +9 -0
  148. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/CBCentralManagerDelegateWrapper.swift +75 -0
  149. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/CBPeripheralDelegateWrapper.swift +163 -0
  150. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Characteristic.swift +121 -0
  151. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Descriptor.swift +74 -0
  152. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/DeviceIdentifiers.swift +51 -0
  153. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Logging.swift +218 -0
  154. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/ManagerType.swift +41 -0
  155. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Observable+Absorb.swift +25 -0
  156. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Observable+QueueSubscribeOn.swift +125 -0
  157. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Peripheral+Convenience.swift +213 -0
  158. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Peripheral.swift +516 -0
  159. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RestoredState.swift +59 -0
  160. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxCBCentralManager.swift +149 -0
  161. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxCBCharacteristic.swift +51 -0
  162. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxCBDescriptor.swift +32 -0
  163. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxCBPeripheral.swift +394 -0
  164. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxCBService.swift +42 -0
  165. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxCentralManagerType.swift +23 -0
  166. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxCharacteristicType.swift +24 -0
  167. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxDescriptorType.swift +21 -0
  168. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxPeripheralType.swift +76 -0
  169. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/RxServiceType.swift +21 -0
  170. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/ScanOperation.swift +30 -0
  171. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/ScannedPeripheral.swift +22 -0
  172. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Service.swift +75 -0
  173. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/UUIDIdentifiable.swift +25 -0
  174. package/ios/vendor/MultiplatformBleAdapter/RxBluetoothKit/Unimplemented.swift +13 -0
  175. package/ios/vendor/MultiplatformBleAdapter/RxSwift/AnyObserver.swift +69 -0
  176. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Binder.swift +59 -0
  177. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Cancelable.swift +13 -0
  178. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Concurrency/AsyncLock.swift +100 -0
  179. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Concurrency/Lock.swift +23 -0
  180. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Concurrency/LockOwnerType.swift +16 -0
  181. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Concurrency/SynchronizedDisposeType.swift +18 -0
  182. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Concurrency/SynchronizedOnType.swift +18 -0
  183. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift +13 -0
  184. package/ios/vendor/MultiplatformBleAdapter/RxSwift/ConnectableObservableType.swift +19 -0
  185. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Date+Dispatch.swift +64 -0
  186. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposable.swift +13 -0
  187. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/AnonymousDisposable.swift +59 -0
  188. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/BinaryDisposable.swift +53 -0
  189. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/BooleanDisposable.swift +34 -0
  190. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/CompositeDisposable.swift +147 -0
  191. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/Disposables.swift +13 -0
  192. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/DisposeBag.swift +144 -0
  193. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/DisposeBase.swift +22 -0
  194. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/NopDisposable.swift +30 -0
  195. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/RefCountDisposable.swift +112 -0
  196. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/ScheduledDisposable.swift +50 -0
  197. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/SerialDisposable.swift +73 -0
  198. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/SingleAssignmentDisposable.swift +72 -0
  199. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Disposables/SubscriptionDisposable.swift +21 -0
  200. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Errors.swift +52 -0
  201. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Event.swift +104 -0
  202. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Extensions/Bag+Rx.swift +50 -0
  203. package/ios/vendor/MultiplatformBleAdapter/RxSwift/GroupedObservable.swift +35 -0
  204. package/ios/vendor/MultiplatformBleAdapter/RxSwift/ImmediateSchedulerType.swift +36 -0
  205. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observable+Concurrency.swift +79 -0
  206. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observable.swift +31 -0
  207. package/ios/vendor/MultiplatformBleAdapter/RxSwift/ObservableConvertibleType.swift +18 -0
  208. package/ios/vendor/MultiplatformBleAdapter/RxSwift/ObservableType+Extensions.swift +174 -0
  209. package/ios/vendor/MultiplatformBleAdapter/RxSwift/ObservableType.swift +45 -0
  210. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/AddRef.swift +44 -0
  211. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Amb.swift +157 -0
  212. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/AsMaybe.swift +48 -0
  213. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/AsSingle.swift +51 -0
  214. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Buffer.swift +138 -0
  215. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Catch.swift +275 -0
  216. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/CombineLatest+Collection.swift +165 -0
  217. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/CombineLatest+arity.swift +843 -0
  218. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/CombineLatest.swift +131 -0
  219. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/CompactMap.swift +76 -0
  220. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Concat.swift +131 -0
  221. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Create.swift +78 -0
  222. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Debounce.swift +119 -0
  223. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Debug.swift +102 -0
  224. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Decode.swift +34 -0
  225. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/DefaultIfEmpty.swift +66 -0
  226. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Deferred.swift +75 -0
  227. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Delay.swift +174 -0
  228. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/DelaySubscription.swift +58 -0
  229. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Dematerialize.swift +51 -0
  230. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/DistinctUntilChanged.swift +137 -0
  231. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Do.swift +112 -0
  232. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/ElementAt.swift +105 -0
  233. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Empty.swift +27 -0
  234. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Enumerated.swift +61 -0
  235. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Error.swift +33 -0
  236. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Filter.swift +86 -0
  237. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/First.swift +41 -0
  238. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Generate.swift +87 -0
  239. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/GroupBy.swift +133 -0
  240. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Just.swift +87 -0
  241. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Map.swift +76 -0
  242. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Materialize.swift +44 -0
  243. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Merge.swift +600 -0
  244. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Multicast.swift +405 -0
  245. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Never.swift +27 -0
  246. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/ObserveOn.swift +243 -0
  247. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Optional.swift +95 -0
  248. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Producer.swift +92 -0
  249. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Range.swift +73 -0
  250. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Reduce.swift +109 -0
  251. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Repeat.swift +57 -0
  252. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/RetryWhen.swift +211 -0
  253. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Sample.swift +139 -0
  254. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Scan.swift +100 -0
  255. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Sequence.swift +89 -0
  256. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/ShareReplayScope.swift +443 -0
  257. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/SingleAsync.swift +104 -0
  258. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Sink.swift +75 -0
  259. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Skip.swift +158 -0
  260. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/SkipUntil.swift +152 -0
  261. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/SkipWhile.swift +87 -0
  262. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/StartWith.swift +42 -0
  263. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/SubscribeOn.swift +103 -0
  264. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Switch.swift +251 -0
  265. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/SwitchIfEmpty.swift +104 -0
  266. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Take.swift +193 -0
  267. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/TakeLast.swift +78 -0
  268. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/TakeWithPredicate.swift +285 -0
  269. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Throttle.swift +160 -0
  270. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Timeout.swift +151 -0
  271. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Timer.swift +117 -0
  272. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/ToArray.swift +64 -0
  273. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Using.swift +90 -0
  274. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Window.swift +168 -0
  275. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/WithLatestFrom.swift +151 -0
  276. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/WithUnretained.swift +58 -0
  277. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Zip+Collection.swift +168 -0
  278. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Zip+arity.swift +934 -0
  279. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observables/Zip.swift +135 -0
  280. package/ios/vendor/MultiplatformBleAdapter/RxSwift/ObserverType.swift +40 -0
  281. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observers/AnonymousObserver.swift +30 -0
  282. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observers/ObserverBase.swift +32 -0
  283. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Observers/TailRecursiveSink.swift +151 -0
  284. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/AtomicInt.swift +72 -0
  285. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/DataStructures/Bag.swift +181 -0
  286. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/DataStructures/InfiniteSequence.swift +23 -0
  287. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/DataStructures/PriorityQueue.swift +111 -0
  288. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/DataStructures/Queue.swift +148 -0
  289. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/DispatchQueue+Extensions.swift +21 -0
  290. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/Platform.Darwin.swift +35 -0
  291. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/Platform.Linux.swift +32 -0
  292. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Platform/RecursiveLock.swift +34 -0
  293. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Reactive.swift +80 -0
  294. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Rx.swift +142 -0
  295. package/ios/vendor/MultiplatformBleAdapter/RxSwift/RxMutableBox.swift +53 -0
  296. package/ios/vendor/MultiplatformBleAdapter/RxSwift/SchedulerType.swift +71 -0
  297. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift +82 -0
  298. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/ConcurrentMainScheduler.swift +87 -0
  299. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/CurrentThreadScheduler.swift +131 -0
  300. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/HistoricalScheduler.swift +22 -0
  301. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift +67 -0
  302. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift +97 -0
  303. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift +22 -0
  304. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/Internal/InvocableType.swift +17 -0
  305. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/Internal/ScheduledItem.swift +35 -0
  306. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/Internal/ScheduledItemType.swift +13 -0
  307. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/MainScheduler.swift +80 -0
  308. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/OperationQueueScheduler.swift +54 -0
  309. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/RecursiveScheduler.swift +220 -0
  310. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/SchedulerServices+Emulation.swift +61 -0
  311. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift +131 -0
  312. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/VirtualTimeConverterType.swift +97 -0
  313. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Schedulers/VirtualTimeScheduler.swift +267 -0
  314. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Subjects/AsyncSubject.swift +154 -0
  315. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Subjects/BehaviorSubject.swift +157 -0
  316. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Subjects/PublishSubject.swift +140 -0
  317. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Subjects/ReplaySubject.swift +271 -0
  318. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Subjects/SubjectType.swift +21 -0
  319. package/ios/vendor/MultiplatformBleAdapter/RxSwift/SwiftSupport/SwiftSupport.swift +18 -0
  320. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/Infallible+CombineLatest+Collection.swift +36 -0
  321. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/Infallible+CombineLatest+arity.swift +276 -0
  322. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/Infallible+Concurrency.swift +37 -0
  323. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/Infallible+Create.swift +55 -0
  324. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/Infallible+Debug.swift +26 -0
  325. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/Infallible+Operators.swift +711 -0
  326. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/Infallible+Zip+arity.swift +138 -0
  327. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/Infallible.swift +102 -0
  328. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift +35 -0
  329. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift +132 -0
  330. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/PrimitiveSequence/Completable.swift +320 -0
  331. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/PrimitiveSequence/Maybe.swift +387 -0
  332. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift +55 -0
  333. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift +164 -0
  334. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Zip+arity.swift +521 -0
  335. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift +342 -0
  336. package/ios/vendor/MultiplatformBleAdapter/RxSwift/Traits/PrimitiveSequence/Single.swift +403 -0
  337. package/ios/vendor/MultiplatformBleAdapter/classes/BleAdapter.swift +236 -0
  338. package/ios/vendor/MultiplatformBleAdapter/classes/BleAdapterFactory.swift +25 -0
  339. package/ios/vendor/MultiplatformBleAdapter/classes/BleError.swift +309 -0
  340. package/ios/vendor/MultiplatformBleAdapter/classes/BleEvent.swift +48 -0
  341. package/ios/vendor/MultiplatformBleAdapter/classes/BleExtensions.swift +239 -0
  342. package/ios/vendor/MultiplatformBleAdapter/classes/BleModule.swift +1373 -0
  343. package/ios/vendor/MultiplatformBleAdapter/classes/BleUtils.swift +110 -0
  344. package/ios/vendor/MultiplatformBleAdapter/classes/Utils/DisposableMap.swift +32 -0
  345. package/ios/vendor/MultiplatformBleAdapter/classes/Utils/SafePromise.swift +37 -0
  346. package/lib/commonjs/backend-contract/advertisement.js +6 -0
  347. package/lib/commonjs/backend-contract/advertisement.js.map +1 -0
  348. package/lib/commonjs/backend-contract/backend-sdk.js +6 -0
  349. package/lib/commonjs/backend-contract/backend-sdk.js.map +1 -0
  350. package/lib/commonjs/backend-contract/backend.js +138 -0
  351. package/lib/commonjs/backend-contract/backend.js.map +1 -0
  352. package/lib/commonjs/backend-contract/capabilities.js +124 -0
  353. package/lib/commonjs/backend-contract/capabilities.js.map +1 -0
  354. package/lib/commonjs/backend-contract/connection-controls.js +13 -0
  355. package/lib/commonjs/backend-contract/connection-controls.js.map +1 -0
  356. package/lib/commonjs/backend-contract/electron.js +323 -0
  357. package/lib/commonjs/backend-contract/electron.js.map +1 -0
  358. package/lib/commonjs/backend-contract/errors.js +30 -0
  359. package/lib/commonjs/backend-contract/errors.js.map +1 -0
  360. package/lib/commonjs/backend-contract/gatt.js +22 -0
  361. package/lib/commonjs/backend-contract/gatt.js.map +1 -0
  362. package/lib/commonjs/backend-contract/host/electron-main.js +13 -0
  363. package/lib/commonjs/backend-contract/host/electron-main.js.map +1 -0
  364. package/lib/commonjs/backend-contract/host/electron-renderer.js +6 -0
  365. package/lib/commonjs/backend-contract/host/electron-renderer.js.map +1 -0
  366. package/lib/commonjs/backend-contract/host/node.js +6 -0
  367. package/lib/commonjs/backend-contract/host/node.js.map +1 -0
  368. package/lib/commonjs/backend-contract/host/web.js +6 -0
  369. package/lib/commonjs/backend-contract/host/web.js.map +1 -0
  370. package/lib/commonjs/backend-contract/identity.js +13 -0
  371. package/lib/commonjs/backend-contract/identity.js.map +1 -0
  372. package/lib/commonjs/backend-contract/index.js +181 -0
  373. package/lib/commonjs/backend-contract/index.js.map +1 -0
  374. package/lib/commonjs/backend-contract/operations.js +44 -0
  375. package/lib/commonjs/backend-contract/operations.js.map +1 -0
  376. package/lib/commonjs/backend-contract/primitives.js +244 -0
  377. package/lib/commonjs/backend-contract/primitives.js.map +1 -0
  378. package/lib/commonjs/backend-contract/restoration.js +6 -0
  379. package/lib/commonjs/backend-contract/restoration.js.map +1 -0
  380. package/lib/commonjs/backend-contract/serializable.js +173 -0
  381. package/lib/commonjs/backend-contract/serializable.js.map +1 -0
  382. package/lib/commonjs/backend-contract/streams.js +6 -0
  383. package/lib/commonjs/backend-contract/streams.js.map +1 -0
  384. package/lib/commonjs/backend-sdk-authoring.js +104 -0
  385. package/lib/commonjs/backend-sdk-authoring.js.map +1 -0
  386. package/lib/commonjs/backend-sdk.js +80 -0
  387. package/lib/commonjs/backend-sdk.js.map +1 -0
  388. package/lib/commonjs/backends/bluez/bluez-backend-handles.js +216 -0
  389. package/lib/commonjs/backends/bluez/bluez-backend-handles.js.map +1 -0
  390. package/lib/commonjs/backends/bluez/bluez-backend-provider.js +107 -0
  391. package/lib/commonjs/backends/bluez/bluez-backend-provider.js.map +1 -0
  392. package/lib/commonjs/backends/bluez/bluez-backend-runtime.js +615 -0
  393. package/lib/commonjs/backends/bluez/bluez-backend-runtime.js.map +1 -0
  394. package/lib/commonjs/backends/bluez/bluez-backend.js +77 -0
  395. package/lib/commonjs/backends/bluez/bluez-backend.js.map +1 -0
  396. package/lib/commonjs/backends/bluez/bluez-dbus-contract.js +25 -0
  397. package/lib/commonjs/backends/bluez/bluez-dbus-contract.js.map +1 -0
  398. package/lib/commonjs/backends/bluez/bluez-dbus-next-boundary.js +408 -0
  399. package/lib/commonjs/backends/bluez/bluez-dbus-next-boundary.js.map +1 -0
  400. package/lib/commonjs/backends/bluez/bluez-gatt-operations.js +100 -0
  401. package/lib/commonjs/backends/bluez/bluez-gatt-operations.js.map +1 -0
  402. package/lib/commonjs/backends/bluez/bluez-object-store.js +383 -0
  403. package/lib/commonjs/backends/bluez/bluez-object-store.js.map +1 -0
  404. package/lib/commonjs/backends/bluez/bluez-operation-dispatcher.js +163 -0
  405. package/lib/commonjs/backends/bluez/bluez-operation-dispatcher.js.map +1 -0
  406. package/lib/commonjs/backends/bluez/bluez-property-waiters.js +153 -0
  407. package/lib/commonjs/backends/bluez/bluez-property-waiters.js.map +1 -0
  408. package/lib/commonjs/backends/bluez/bluez-runtime-models.js +240 -0
  409. package/lib/commonjs/backends/bluez/bluez-runtime-models.js.map +1 -0
  410. package/lib/commonjs/backends/bluez/bluez-runtime-types.js +20 -0
  411. package/lib/commonjs/backends/bluez/bluez-runtime-types.js.map +1 -0
  412. package/lib/commonjs/backends/bluez/bluez-scan-runtime.js +242 -0
  413. package/lib/commonjs/backends/bluez/bluez-scan-runtime.js.map +1 -0
  414. package/lib/commonjs/backends/bluez/bluez-subscription-runtime.js +131 -0
  415. package/lib/commonjs/backends/bluez/bluez-subscription-runtime.js.map +1 -0
  416. package/lib/commonjs/backends/corebluetooth/corebluetooth-backend.js +696 -0
  417. package/lib/commonjs/backends/corebluetooth/corebluetooth-backend.js.map +1 -0
  418. package/lib/commonjs/backends/corebluetooth/corebluetooth-boundary.js +2 -0
  419. package/lib/commonjs/backends/corebluetooth/corebluetooth-boundary.js.map +1 -0
  420. package/lib/commonjs/backends/corebluetooth/corebluetooth-connection-controls.js +59 -0
  421. package/lib/commonjs/backends/corebluetooth/corebluetooth-connection-controls.js.map +1 -0
  422. package/lib/commonjs/backends/corebluetooth/corebluetooth-gatt-operations.js +215 -0
  423. package/lib/commonjs/backends/corebluetooth/corebluetooth-gatt-operations.js.map +1 -0
  424. package/lib/commonjs/backends/corebluetooth/corebluetooth-handles.js +280 -0
  425. package/lib/commonjs/backends/corebluetooth/corebluetooth-handles.js.map +1 -0
  426. package/lib/commonjs/backends/corebluetooth/corebluetooth-identity.js +22 -0
  427. package/lib/commonjs/backends/corebluetooth/corebluetooth-identity.js.map +1 -0
  428. package/lib/commonjs/backends/corebluetooth/corebluetooth-operation-dispatcher.js +79 -0
  429. package/lib/commonjs/backends/corebluetooth/corebluetooth-operation-dispatcher.js.map +1 -0
  430. package/lib/commonjs/backends/corebluetooth/corebluetooth-operation-lifecycle.js +93 -0
  431. package/lib/commonjs/backends/corebluetooth/corebluetooth-operation-lifecycle.js.map +1 -0
  432. package/lib/commonjs/backends/corebluetooth/corebluetooth-provider.js +65 -0
  433. package/lib/commonjs/backends/corebluetooth/corebluetooth-provider.js.map +1 -0
  434. package/lib/commonjs/backends/corebluetooth/corebluetooth-stream-limits.js +20 -0
  435. package/lib/commonjs/backends/corebluetooth/corebluetooth-stream-limits.js.map +1 -0
  436. package/lib/commonjs/backends/reactnative/react-native-android-provider.js +155 -0
  437. package/lib/commonjs/backends/reactnative/react-native-android-provider.js.map +1 -0
  438. package/lib/commonjs/backends/reactnative/react-native-apple-provider.js +152 -0
  439. package/lib/commonjs/backends/reactnative/react-native-apple-provider.js.map +1 -0
  440. package/lib/commonjs/backends/winrt/winrt-adapter-state.js +49 -0
  441. package/lib/commonjs/backends/winrt/winrt-adapter-state.js.map +1 -0
  442. package/lib/commonjs/backends/winrt/winrt-backend-helpers.js +84 -0
  443. package/lib/commonjs/backends/winrt/winrt-backend-helpers.js.map +1 -0
  444. package/lib/commonjs/backends/winrt/winrt-backend.js +683 -0
  445. package/lib/commonjs/backends/winrt/winrt-backend.js.map +1 -0
  446. package/lib/commonjs/backends/winrt/winrt-boundary.js +2 -0
  447. package/lib/commonjs/backends/winrt/winrt-boundary.js.map +1 -0
  448. package/lib/commonjs/backends/winrt/winrt-gatt-operations.js +244 -0
  449. package/lib/commonjs/backends/winrt/winrt-gatt-operations.js.map +1 -0
  450. package/lib/commonjs/backends/winrt/winrt-handles.js +297 -0
  451. package/lib/commonjs/backends/winrt/winrt-handles.js.map +1 -0
  452. package/lib/commonjs/backends/winrt/winrt-operation-dispatcher.js +159 -0
  453. package/lib/commonjs/backends/winrt/winrt-operation-dispatcher.js.map +1 -0
  454. package/lib/commonjs/backends/winrt/winrt-provider.js +83 -0
  455. package/lib/commonjs/backends/winrt/winrt-provider.js.map +1 -0
  456. package/lib/commonjs/backends/winrt/winrt-subscription-runtime.js +76 -0
  457. package/lib/commonjs/backends/winrt/winrt-subscription-runtime.js.map +1 -0
  458. package/lib/commonjs/cli-json.js +199 -0
  459. package/lib/commonjs/cli-json.js.map +1 -0
  460. package/lib/commonjs/cli.js +485 -0
  461. package/lib/commonjs/cli.js.map +1 -0
  462. package/lib/commonjs/codecs-primitives.js +19 -0
  463. package/lib/commonjs/codecs-primitives.js.map +1 -0
  464. package/lib/commonjs/codecs.js +51 -0
  465. package/lib/commonjs/codecs.js.map +1 -0
  466. package/lib/commonjs/core/aggregate-stream-quota.js +58 -0
  467. package/lib/commonjs/core/aggregate-stream-quota.js.map +1 -0
  468. package/lib/commonjs/core/bounded-stream.js +390 -0
  469. package/lib/commonjs/core/bounded-stream.js.map +1 -0
  470. package/lib/commonjs/core/core-adapter-state.js +21 -0
  471. package/lib/commonjs/core/core-adapter-state.js.map +1 -0
  472. package/lib/commonjs/core/core-characteristic-operations.js +55 -0
  473. package/lib/commonjs/core/core-characteristic-operations.js.map +1 -0
  474. package/lib/commonjs/core/core-connection-controls.js +76 -0
  475. package/lib/commonjs/core/core-connection-controls.js.map +1 -0
  476. package/lib/commonjs/core/core-descriptor-operations.js +55 -0
  477. package/lib/commonjs/core/core-descriptor-operations.js.map +1 -0
  478. package/lib/commonjs/core/core-discovery.js +38 -0
  479. package/lib/commonjs/core/core-discovery.js.map +1 -0
  480. package/lib/commonjs/core/core-gatt-handles.js +198 -0
  481. package/lib/commonjs/core/core-gatt-handles.js.map +1 -0
  482. package/lib/commonjs/core/core-lifecycle-observer.js +55 -0
  483. package/lib/commonjs/core/core-lifecycle-observer.js.map +1 -0
  484. package/lib/commonjs/core/gatt-path-equality.js +29 -0
  485. package/lib/commonjs/core/gatt-path-equality.js.map +1 -0
  486. package/lib/commonjs/core/index.js +67 -0
  487. package/lib/commonjs/core/index.js.map +1 -0
  488. package/lib/commonjs/core/operation-coordinator.js +374 -0
  489. package/lib/commonjs/core/operation-coordinator.js.map +1 -0
  490. package/lib/commonjs/core/resource-ledger.js +108 -0
  491. package/lib/commonjs/core/resource-ledger.js.map +1 -0
  492. package/lib/commonjs/core/subscription-registry.js +610 -0
  493. package/lib/commonjs/core/subscription-registry.js.map +1 -0
  494. package/lib/commonjs/core/trace-recorder.js +93 -0
  495. package/lib/commonjs/core/trace-recorder.js.map +1 -0
  496. package/lib/commonjs/core/unified-ble-core-helpers.js +214 -0
  497. package/lib/commonjs/core/unified-ble-core-helpers.js.map +1 -0
  498. package/lib/commonjs/core/unified-ble-core.js +640 -0
  499. package/lib/commonjs/core/unified-ble-core.js.map +1 -0
  500. package/lib/commonjs/diagnostics/trace-format.js +203 -0
  501. package/lib/commonjs/diagnostics/trace-format.js.map +1 -0
  502. package/lib/commonjs/electron/main-binding.js +251 -0
  503. package/lib/commonjs/electron/main-binding.js.map +1 -0
  504. package/lib/commonjs/electron/main-router.js +591 -0
  505. package/lib/commonjs/electron/main-router.js.map +1 -0
  506. package/lib/commonjs/electron/main.js +28 -0
  507. package/lib/commonjs/electron/main.js.map +1 -0
  508. package/lib/commonjs/electron/protocol.js +22 -0
  509. package/lib/commonjs/electron/protocol.js.map +1 -0
  510. package/lib/commonjs/electron/renderer-stream-registry.js +260 -0
  511. package/lib/commonjs/electron/renderer-stream-registry.js.map +1 -0
  512. package/lib/commonjs/electron/renderer.js +192 -0
  513. package/lib/commonjs/electron/renderer.js.map +1 -0
  514. package/lib/commonjs/electron-main.js +74 -0
  515. package/lib/commonjs/electron-main.js.map +1 -0
  516. package/lib/commonjs/electron-renderer.js +28 -0
  517. package/lib/commonjs/electron-renderer.js.map +1 -0
  518. package/lib/commonjs/index.js +112 -0
  519. package/lib/commonjs/index.js.map +1 -0
  520. package/lib/commonjs/manager/ble-manager.js +369 -0
  521. package/lib/commonjs/manager/ble-manager.js.map +1 -0
  522. package/lib/commonjs/manager/index.js +74 -0
  523. package/lib/commonjs/manager/index.js.map +1 -0
  524. package/lib/commonjs/manager/manager-ownership-authority.js +269 -0
  525. package/lib/commonjs/manager/manager-ownership-authority.js.map +1 -0
  526. package/lib/commonjs/native-protocol/generated/native-protocol-v1-schema.js +69 -0
  527. package/lib/commonjs/native-protocol/generated/native-protocol-v1-schema.js.map +1 -0
  528. package/lib/commonjs/native-protocol/rn-android-boundary.js +539 -0
  529. package/lib/commonjs/native-protocol/rn-android-boundary.js.map +1 -0
  530. package/lib/commonjs/native-protocol/rn-android-protocol-records.js +229 -0
  531. package/lib/commonjs/native-protocol/rn-android-protocol-records.js.map +1 -0
  532. package/lib/commonjs/native-protocol/rn-apple-boundary.js +13 -0
  533. package/lib/commonjs/native-protocol/rn-apple-boundary.js.map +1 -0
  534. package/lib/commonjs/native-protocol/rn-jsi-binary-runtime.js +54 -0
  535. package/lib/commonjs/native-protocol/rn-jsi-binary-runtime.js.map +1 -0
  536. package/lib/commonjs/native-protocol/v1-codec.js +439 -0
  537. package/lib/commonjs/native-protocol/v1-codec.js.map +1 -0
  538. package/lib/commonjs/node-bluez.js +56 -0
  539. package/lib/commonjs/node-bluez.js.map +1 -0
  540. package/lib/commonjs/node-corebluetooth.js +65 -0
  541. package/lib/commonjs/node-corebluetooth.js.map +1 -0
  542. package/lib/commonjs/node-winrt.js +73 -0
  543. package/lib/commonjs/node-winrt.js.map +1 -0
  544. package/lib/commonjs/package.json +1 -0
  545. package/lib/commonjs/profiles/battery-service.js +47 -0
  546. package/lib/commonjs/profiles/battery-service.js.map +1 -0
  547. package/lib/commonjs/profiles/blood-pressure.js +102 -0
  548. package/lib/commonjs/profiles/blood-pressure.js.map +1 -0
  549. package/lib/commonjs/profiles/bytes.js +61 -0
  550. package/lib/commonjs/profiles/bytes.js.map +1 -0
  551. package/lib/commonjs/profiles/commands.js +64 -0
  552. package/lib/commonjs/profiles/commands.js.map +1 -0
  553. package/lib/commonjs/profiles/date-time.js +36 -0
  554. package/lib/commonjs/profiles/date-time.js.map +1 -0
  555. package/lib/commonjs/profiles/device-information.js +131 -0
  556. package/lib/commonjs/profiles/device-information.js.map +1 -0
  557. package/lib/commonjs/profiles/errors.js +25 -0
  558. package/lib/commonjs/profiles/errors.js.map +1 -0
  559. package/lib/commonjs/profiles/health-thermometer.js +84 -0
  560. package/lib/commonjs/profiles/health-thermometer.js.map +1 -0
  561. package/lib/commonjs/profiles/heart-rate.js +108 -0
  562. package/lib/commonjs/profiles/heart-rate.js.map +1 -0
  563. package/lib/commonjs/profiles/identifiers.js +42 -0
  564. package/lib/commonjs/profiles/identifiers.js.map +1 -0
  565. package/lib/commonjs/profiles/ieee-11073.js +149 -0
  566. package/lib/commonjs/profiles/ieee-11073.js.map +1 -0
  567. package/lib/commonjs/profiles/standard-commands.js +62 -0
  568. package/lib/commonjs/profiles/standard-commands.js.map +1 -0
  569. package/lib/commonjs/react-native-manager.js +77 -0
  570. package/lib/commonjs/react-native-manager.js.map +1 -0
  571. package/lib/commonjs/react-native.js +113 -0
  572. package/lib/commonjs/react-native.js.map +1 -0
  573. package/lib/commonjs/tck/contracts.js +39 -0
  574. package/lib/commonjs/tck/contracts.js.map +1 -0
  575. package/lib/commonjs/tck/deterministic/deterministic-tck-factory.js +182 -0
  576. package/lib/commonjs/tck/deterministic/deterministic-tck-factory.js.map +1 -0
  577. package/lib/commonjs/tck/deterministic/deterministic-tck-identity.js +149 -0
  578. package/lib/commonjs/tck/deterministic/deterministic-tck-identity.js.map +1 -0
  579. package/lib/commonjs/tck/deterministic/deterministic-tck-lifecycle-diagnostics.js +172 -0
  580. package/lib/commonjs/tck/deterministic/deterministic-tck-lifecycle-diagnostics.js.map +1 -0
  581. package/lib/commonjs/tck/deterministic/deterministic-tck-manager-ownership.js +166 -0
  582. package/lib/commonjs/tck/deterministic/deterministic-tck-manager-ownership.js.map +1 -0
  583. package/lib/commonjs/tck/deterministic/deterministic-tck-scenario-helpers.js +173 -0
  584. package/lib/commonjs/tck/deterministic/deterministic-tck-scenario-helpers.js.map +1 -0
  585. package/lib/commonjs/tck/deterministic/deterministic-tck-scenarios.js +617 -0
  586. package/lib/commonjs/tck/deterministic/deterministic-tck-scenarios.js.map +1 -0
  587. package/lib/commonjs/tck/deterministic/deterministic-tck-subscription-overflow.js +102 -0
  588. package/lib/commonjs/tck/deterministic/deterministic-tck-subscription-overflow.js.map +1 -0
  589. package/lib/commonjs/tck/index.js +33 -0
  590. package/lib/commonjs/tck/index.js.map +1 -0
  591. package/lib/commonjs/tck/runner.js +432 -0
  592. package/lib/commonjs/tck/runner.js.map +1 -0
  593. package/lib/commonjs/tck/scenario-adapter.js +49 -0
  594. package/lib/commonjs/tck/scenario-adapter.js.map +1 -0
  595. package/lib/commonjs/tck/scenarios.js +114 -0
  596. package/lib/commonjs/tck/scenarios.js.map +1 -0
  597. package/lib/commonjs/testing/deterministic/deterministic-backend-base.js +562 -0
  598. package/lib/commonjs/testing/deterministic/deterministic-backend-base.js.map +1 -0
  599. package/lib/commonjs/testing/deterministic/deterministic-operation-admission.js +61 -0
  600. package/lib/commonjs/testing/deterministic/deterministic-operation-admission.js.map +1 -0
  601. package/lib/commonjs/testing/deterministic/deterministic-operation-runtime.js +315 -0
  602. package/lib/commonjs/testing/deterministic/deterministic-operation-runtime.js.map +1 -0
  603. package/lib/commonjs/testing/deterministic/deterministic-stream.js +466 -0
  604. package/lib/commonjs/testing/deterministic/deterministic-stream.js.map +1 -0
  605. package/lib/commonjs/testing/deterministic/deterministic-subscription-lifecycle.js +62 -0
  606. package/lib/commonjs/testing/deterministic/deterministic-subscription-lifecycle.js.map +1 -0
  607. package/lib/commonjs/testing/deterministic/deterministic-test-backend-controller.js +6 -0
  608. package/lib/commonjs/testing/deterministic/deterministic-test-backend-controller.js.map +1 -0
  609. package/lib/commonjs/testing/deterministic/deterministic-test-backend-gatt.js +33 -0
  610. package/lib/commonjs/testing/deterministic/deterministic-test-backend-gatt.js.map +1 -0
  611. package/lib/commonjs/testing/deterministic/deterministic-test-backend-handles.js +278 -0
  612. package/lib/commonjs/testing/deterministic/deterministic-test-backend-handles.js.map +1 -0
  613. package/lib/commonjs/testing/deterministic/deterministic-test-backend-lifecycle-helpers.js +207 -0
  614. package/lib/commonjs/testing/deterministic/deterministic-test-backend-lifecycle-helpers.js.map +1 -0
  615. package/lib/commonjs/testing/deterministic/deterministic-test-backend.js +576 -0
  616. package/lib/commonjs/testing/deterministic/deterministic-test-backend.js.map +1 -0
  617. package/lib/commonjs/testing/deterministic/virtual-clock.js +98 -0
  618. package/lib/commonjs/testing/deterministic/virtual-clock.js.map +1 -0
  619. package/lib/commonjs/testing/deterministic/virtual-peripheral.js +298 -0
  620. package/lib/commonjs/testing/deterministic/virtual-peripheral.js.map +1 -0
  621. package/lib/commonjs/testing/scenarios/deterministic-manager-scenario-factory.js +132 -0
  622. package/lib/commonjs/testing/scenarios/deterministic-manager-scenario-factory.js.map +1 -0
  623. package/lib/commonjs/testing/scenarios/manager-scenario-executor.js +325 -0
  624. package/lib/commonjs/testing/scenarios/manager-scenario-executor.js.map +1 -0
  625. package/lib/commonjs/testing/scenarios/manager-scenario-fixture.js +41 -0
  626. package/lib/commonjs/testing/scenarios/manager-scenario-fixture.js.map +1 -0
  627. package/lib/commonjs/testing/scenarios/manager-scenarios.js +136 -0
  628. package/lib/commonjs/testing/scenarios/manager-scenarios.js.map +1 -0
  629. package/lib/commonjs/testing.js +119 -0
  630. package/lib/commonjs/testing.js.map +1 -0
  631. package/lib/commonjs/web/navigator-web-bluetooth-boundary.js +207 -0
  632. package/lib/commonjs/web/navigator-web-bluetooth-boundary.js.map +1 -0
  633. package/lib/commonjs/web/web-bluetooth-backend.js +672 -0
  634. package/lib/commonjs/web/web-bluetooth-backend.js.map +1 -0
  635. package/lib/commonjs/web/web-bluetooth-boundary.js +6 -0
  636. package/lib/commonjs/web/web-bluetooth-boundary.js.map +1 -0
  637. package/lib/commonjs/web/web-bluetooth-errors.js +69 -0
  638. package/lib/commonjs/web/web-bluetooth-errors.js.map +1 -0
  639. package/lib/commonjs/web/web-bluetooth-gatt.js +498 -0
  640. package/lib/commonjs/web/web-bluetooth-gatt.js.map +1 -0
  641. package/lib/commonjs/web/web-bluetooth-handles.js +144 -0
  642. package/lib/commonjs/web/web-bluetooth-handles.js.map +1 -0
  643. package/lib/commonjs/web/web-bluetooth-tck.js +75 -0
  644. package/lib/commonjs/web/web-bluetooth-tck.js.map +1 -0
  645. package/lib/commonjs/web/web-feature-registry.js +57 -0
  646. package/lib/commonjs/web/web-feature-registry.js.map +1 -0
  647. package/lib/commonjs/web.js +58 -0
  648. package/lib/commonjs/web.js.map +1 -0
  649. package/lib/module/backend-contract/advertisement.js +4 -0
  650. package/lib/module/backend-contract/advertisement.js.map +1 -0
  651. package/lib/module/backend-contract/backend-sdk.js +4 -0
  652. package/lib/module/backend-contract/backend-sdk.js.map +1 -0
  653. package/lib/module/backend-contract/backend.js +131 -0
  654. package/lib/module/backend-contract/backend.js.map +1 -0
  655. package/lib/module/backend-contract/capabilities.js +119 -0
  656. package/lib/module/backend-contract/capabilities.js.map +1 -0
  657. package/lib/module/backend-contract/connection-controls.js +9 -0
  658. package/lib/module/backend-contract/connection-controls.js.map +1 -0
  659. package/lib/module/backend-contract/electron.js +319 -0
  660. package/lib/module/backend-contract/electron.js.map +1 -0
  661. package/lib/module/backend-contract/errors.js +24 -0
  662. package/lib/module/backend-contract/errors.js.map +1 -0
  663. package/lib/module/backend-contract/gatt.js +17 -0
  664. package/lib/module/backend-contract/gatt.js.map +1 -0
  665. package/lib/module/backend-contract/host/electron-main.js +6 -0
  666. package/lib/module/backend-contract/host/electron-main.js.map +1 -0
  667. package/lib/module/backend-contract/host/electron-renderer.js +4 -0
  668. package/lib/module/backend-contract/host/electron-renderer.js.map +1 -0
  669. package/lib/module/backend-contract/host/node.js +4 -0
  670. package/lib/module/backend-contract/host/node.js.map +1 -0
  671. package/lib/module/backend-contract/host/web.js +4 -0
  672. package/lib/module/backend-contract/host/web.js.map +1 -0
  673. package/lib/module/backend-contract/identity.js +9 -0
  674. package/lib/module/backend-contract/identity.js.map +1 -0
  675. package/lib/module/backend-contract/index.js +12 -0
  676. package/lib/module/backend-contract/index.js.map +1 -0
  677. package/lib/module/backend-contract/operations.js +39 -0
  678. package/lib/module/backend-contract/operations.js.map +1 -0
  679. package/lib/module/backend-contract/primitives.js +223 -0
  680. package/lib/module/backend-contract/primitives.js.map +1 -0
  681. package/lib/module/backend-contract/restoration.js +4 -0
  682. package/lib/module/backend-contract/restoration.js.map +1 -0
  683. package/lib/module/backend-contract/serializable.js +167 -0
  684. package/lib/module/backend-contract/serializable.js.map +1 -0
  685. package/lib/module/backend-contract/streams.js +4 -0
  686. package/lib/module/backend-contract/streams.js.map +1 -0
  687. package/lib/module/backend-sdk-authoring.js +98 -0
  688. package/lib/module/backend-sdk-authoring.js.map +1 -0
  689. package/lib/module/backend-sdk.js +14 -0
  690. package/lib/module/backend-sdk.js.map +1 -0
  691. package/lib/module/backends/bluez/bluez-backend-handles.js +207 -0
  692. package/lib/module/backends/bluez/bluez-backend-handles.js.map +1 -0
  693. package/lib/module/backends/bluez/bluez-backend-provider.js +102 -0
  694. package/lib/module/backends/bluez/bluez-backend-provider.js.map +1 -0
  695. package/lib/module/backends/bluez/bluez-backend-runtime.js +610 -0
  696. package/lib/module/backends/bluez/bluez-backend-runtime.js.map +1 -0
  697. package/lib/module/backends/bluez/bluez-backend.js +72 -0
  698. package/lib/module/backends/bluez/bluez-backend.js.map +1 -0
  699. package/lib/module/backends/bluez/bluez-dbus-contract.js +20 -0
  700. package/lib/module/backends/bluez/bluez-dbus-contract.js.map +1 -0
  701. package/lib/module/backends/bluez/bluez-dbus-next-boundary.js +402 -0
  702. package/lib/module/backends/bluez/bluez-dbus-next-boundary.js.map +1 -0
  703. package/lib/module/backends/bluez/bluez-gatt-operations.js +91 -0
  704. package/lib/module/backends/bluez/bluez-gatt-operations.js.map +1 -0
  705. package/lib/module/backends/bluez/bluez-object-store.js +378 -0
  706. package/lib/module/backends/bluez/bluez-object-store.js.map +1 -0
  707. package/lib/module/backends/bluez/bluez-operation-dispatcher.js +158 -0
  708. package/lib/module/backends/bluez/bluez-operation-dispatcher.js.map +1 -0
  709. package/lib/module/backends/bluez/bluez-property-waiters.js +143 -0
  710. package/lib/module/backends/bluez/bluez-property-waiters.js.map +1 -0
  711. package/lib/module/backends/bluez/bluez-runtime-models.js +225 -0
  712. package/lib/module/backends/bluez/bluez-runtime-models.js.map +1 -0
  713. package/lib/module/backends/bluez/bluez-runtime-types.js +16 -0
  714. package/lib/module/backends/bluez/bluez-runtime-types.js.map +1 -0
  715. package/lib/module/backends/bluez/bluez-scan-runtime.js +235 -0
  716. package/lib/module/backends/bluez/bluez-scan-runtime.js.map +1 -0
  717. package/lib/module/backends/bluez/bluez-subscription-runtime.js +125 -0
  718. package/lib/module/backends/bluez/bluez-subscription-runtime.js.map +1 -0
  719. package/lib/module/backends/corebluetooth/corebluetooth-backend.js +691 -0
  720. package/lib/module/backends/corebluetooth/corebluetooth-backend.js.map +1 -0
  721. package/lib/module/backends/corebluetooth/corebluetooth-boundary.js +2 -0
  722. package/lib/module/backends/corebluetooth/corebluetooth-boundary.js.map +1 -0
  723. package/lib/module/backends/corebluetooth/corebluetooth-connection-controls.js +54 -0
  724. package/lib/module/backends/corebluetooth/corebluetooth-connection-controls.js.map +1 -0
  725. package/lib/module/backends/corebluetooth/corebluetooth-gatt-operations.js +210 -0
  726. package/lib/module/backends/corebluetooth/corebluetooth-gatt-operations.js.map +1 -0
  727. package/lib/module/backends/corebluetooth/corebluetooth-handles.js +263 -0
  728. package/lib/module/backends/corebluetooth/corebluetooth-handles.js.map +1 -0
  729. package/lib/module/backends/corebluetooth/corebluetooth-identity.js +19 -0
  730. package/lib/module/backends/corebluetooth/corebluetooth-identity.js.map +1 -0
  731. package/lib/module/backends/corebluetooth/corebluetooth-operation-dispatcher.js +74 -0
  732. package/lib/module/backends/corebluetooth/corebluetooth-operation-dispatcher.js.map +1 -0
  733. package/lib/module/backends/corebluetooth/corebluetooth-operation-lifecycle.js +88 -0
  734. package/lib/module/backends/corebluetooth/corebluetooth-operation-lifecycle.js.map +1 -0
  735. package/lib/module/backends/corebluetooth/corebluetooth-provider.js +60 -0
  736. package/lib/module/backends/corebluetooth/corebluetooth-provider.js.map +1 -0
  737. package/lib/module/backends/corebluetooth/corebluetooth-stream-limits.js +16 -0
  738. package/lib/module/backends/corebluetooth/corebluetooth-stream-limits.js.map +1 -0
  739. package/lib/module/backends/reactnative/react-native-android-provider.js +148 -0
  740. package/lib/module/backends/reactnative/react-native-android-provider.js.map +1 -0
  741. package/lib/module/backends/reactnative/react-native-apple-provider.js +145 -0
  742. package/lib/module/backends/reactnative/react-native-apple-provider.js.map +1 -0
  743. package/lib/module/backends/winrt/winrt-adapter-state.js +43 -0
  744. package/lib/module/backends/winrt/winrt-adapter-state.js.map +1 -0
  745. package/lib/module/backends/winrt/winrt-backend-helpers.js +76 -0
  746. package/lib/module/backends/winrt/winrt-backend-helpers.js.map +1 -0
  747. package/lib/module/backends/winrt/winrt-backend.js +678 -0
  748. package/lib/module/backends/winrt/winrt-backend.js.map +1 -0
  749. package/lib/module/backends/winrt/winrt-boundary.js +2 -0
  750. package/lib/module/backends/winrt/winrt-boundary.js.map +1 -0
  751. package/lib/module/backends/winrt/winrt-gatt-operations.js +239 -0
  752. package/lib/module/backends/winrt/winrt-gatt-operations.js.map +1 -0
  753. package/lib/module/backends/winrt/winrt-handles.js +282 -0
  754. package/lib/module/backends/winrt/winrt-handles.js.map +1 -0
  755. package/lib/module/backends/winrt/winrt-operation-dispatcher.js +154 -0
  756. package/lib/module/backends/winrt/winrt-operation-dispatcher.js.map +1 -0
  757. package/lib/module/backends/winrt/winrt-provider.js +75 -0
  758. package/lib/module/backends/winrt/winrt-provider.js.map +1 -0
  759. package/lib/module/backends/winrt/winrt-subscription-runtime.js +68 -0
  760. package/lib/module/backends/winrt/winrt-subscription-runtime.js.map +1 -0
  761. package/lib/module/cli-json.js +193 -0
  762. package/lib/module/cli-json.js.map +1 -0
  763. package/lib/module/cli.js +468 -0
  764. package/lib/module/cli.js.map +1 -0
  765. package/lib/module/codecs-primitives.js +14 -0
  766. package/lib/module/codecs-primitives.js.map +1 -0
  767. package/lib/module/codecs.js +9 -0
  768. package/lib/module/codecs.js.map +1 -0
  769. package/lib/module/core/aggregate-stream-quota.js +53 -0
  770. package/lib/module/core/aggregate-stream-quota.js.map +1 -0
  771. package/lib/module/core/bounded-stream.js +385 -0
  772. package/lib/module/core/bounded-stream.js.map +1 -0
  773. package/lib/module/core/core-adapter-state.js +17 -0
  774. package/lib/module/core/core-adapter-state.js.map +1 -0
  775. package/lib/module/core/core-characteristic-operations.js +50 -0
  776. package/lib/module/core/core-characteristic-operations.js.map +1 -0
  777. package/lib/module/core/core-connection-controls.js +70 -0
  778. package/lib/module/core/core-connection-controls.js.map +1 -0
  779. package/lib/module/core/core-descriptor-operations.js +50 -0
  780. package/lib/module/core/core-descriptor-operations.js.map +1 -0
  781. package/lib/module/core/core-discovery.js +34 -0
  782. package/lib/module/core/core-discovery.js.map +1 -0
  783. package/lib/module/core/core-gatt-handles.js +192 -0
  784. package/lib/module/core/core-gatt-handles.js.map +1 -0
  785. package/lib/module/core/core-lifecycle-observer.js +50 -0
  786. package/lib/module/core/core-lifecycle-observer.js.map +1 -0
  787. package/lib/module/core/gatt-path-equality.js +21 -0
  788. package/lib/module/core/gatt-path-equality.js.map +1 -0
  789. package/lib/module/core/index.js +12 -0
  790. package/lib/module/core/index.js.map +1 -0
  791. package/lib/module/core/operation-coordinator.js +369 -0
  792. package/lib/module/core/operation-coordinator.js.map +1 -0
  793. package/lib/module/core/resource-ledger.js +103 -0
  794. package/lib/module/core/resource-ledger.js.map +1 -0
  795. package/lib/module/core/subscription-registry.js +604 -0
  796. package/lib/module/core/subscription-registry.js.map +1 -0
  797. package/lib/module/core/trace-recorder.js +88 -0
  798. package/lib/module/core/trace-recorder.js.map +1 -0
  799. package/lib/module/core/unified-ble-core-helpers.js +198 -0
  800. package/lib/module/core/unified-ble-core-helpers.js.map +1 -0
  801. package/lib/module/core/unified-ble-core.js +629 -0
  802. package/lib/module/core/unified-ble-core.js.map +1 -0
  803. package/lib/module/diagnostics/trace-format.js +197 -0
  804. package/lib/module/diagnostics/trace-format.js.map +1 -0
  805. package/lib/module/electron/main-binding.js +246 -0
  806. package/lib/module/electron/main-binding.js.map +1 -0
  807. package/lib/module/electron/main-router.js +585 -0
  808. package/lib/module/electron/main-router.js.map +1 -0
  809. package/lib/module/electron/main.js +7 -0
  810. package/lib/module/electron/main.js.map +1 -0
  811. package/lib/module/electron/protocol.js +18 -0
  812. package/lib/module/electron/protocol.js.map +1 -0
  813. package/lib/module/electron/renderer-stream-registry.js +255 -0
  814. package/lib/module/electron/renderer-stream-registry.js.map +1 -0
  815. package/lib/module/electron/renderer.js +187 -0
  816. package/lib/module/electron/renderer.js.map +1 -0
  817. package/lib/module/electron-main.js +35 -0
  818. package/lib/module/electron-main.js.map +1 -0
  819. package/lib/module/electron-renderer.js +7 -0
  820. package/lib/module/electron-renderer.js.map +1 -0
  821. package/lib/module/index.js +16 -0
  822. package/lib/module/index.js.map +1 -0
  823. package/lib/module/manager/ble-manager.js +355 -0
  824. package/lib/module/manager/ble-manager.js.map +1 -0
  825. package/lib/module/manager/index.js +7 -0
  826. package/lib/module/manager/index.js.map +1 -0
  827. package/lib/module/manager/manager-ownership-authority.js +261 -0
  828. package/lib/module/manager/manager-ownership-authority.js.map +1 -0
  829. package/lib/module/native-protocol/generated/native-protocol-v1-schema.js +65 -0
  830. package/lib/module/native-protocol/generated/native-protocol-v1-schema.js.map +1 -0
  831. package/lib/module/native-protocol/rn-android-boundary.js +534 -0
  832. package/lib/module/native-protocol/rn-android-boundary.js.map +1 -0
  833. package/lib/module/native-protocol/rn-android-protocol-records.js +206 -0
  834. package/lib/module/native-protocol/rn-android-protocol-records.js.map +1 -0
  835. package/lib/module/native-protocol/rn-apple-boundary.js +11 -0
  836. package/lib/module/native-protocol/rn-apple-boundary.js.map +1 -0
  837. package/lib/module/native-protocol/rn-jsi-binary-runtime.js +45 -0
  838. package/lib/module/native-protocol/rn-jsi-binary-runtime.js.map +1 -0
  839. package/lib/module/native-protocol/v1-codec.js +434 -0
  840. package/lib/module/native-protocol/v1-codec.js.map +1 -0
  841. package/lib/module/node-bluez.js +18 -0
  842. package/lib/module/node-bluez.js.map +1 -0
  843. package/lib/module/node-corebluetooth.js +31 -0
  844. package/lib/module/node-corebluetooth.js.map +1 -0
  845. package/lib/module/node-winrt.js +39 -0
  846. package/lib/module/node-winrt.js.map +1 -0
  847. package/lib/module/package.json +1 -0
  848. package/lib/module/profiles/battery-service.js +30 -0
  849. package/lib/module/profiles/battery-service.js.map +1 -0
  850. package/lib/module/profiles/blood-pressure.js +73 -0
  851. package/lib/module/profiles/blood-pressure.js.map +1 -0
  852. package/lib/module/profiles/bytes.js +49 -0
  853. package/lib/module/profiles/bytes.js.map +1 -0
  854. package/lib/module/profiles/commands.js +56 -0
  855. package/lib/module/profiles/commands.js.map +1 -0
  856. package/lib/module/profiles/date-time.js +32 -0
  857. package/lib/module/profiles/date-time.js.map +1 -0
  858. package/lib/module/profiles/device-information.js +69 -0
  859. package/lib/module/profiles/device-information.js.map +1 -0
  860. package/lib/module/profiles/errors.js +19 -0
  861. package/lib/module/profiles/errors.js.map +1 -0
  862. package/lib/module/profiles/health-thermometer.js +61 -0
  863. package/lib/module/profiles/health-thermometer.js.map +1 -0
  864. package/lib/module/profiles/heart-rate.js +76 -0
  865. package/lib/module/profiles/heart-rate.js.map +1 -0
  866. package/lib/module/profiles/identifiers.js +37 -0
  867. package/lib/module/profiles/identifiers.js.map +1 -0
  868. package/lib/module/profiles/ieee-11073.js +142 -0
  869. package/lib/module/profiles/ieee-11073.js.map +1 -0
  870. package/lib/module/profiles/standard-commands.js +47 -0
  871. package/lib/module/profiles/standard-commands.js.map +1 -0
  872. package/lib/module/react-native-manager.js +74 -0
  873. package/lib/module/react-native-manager.js.map +1 -0
  874. package/lib/module/react-native.js +18 -0
  875. package/lib/module/react-native.js.map +1 -0
  876. package/lib/module/tck/contracts.js +34 -0
  877. package/lib/module/tck/contracts.js.map +1 -0
  878. package/lib/module/tck/deterministic/deterministic-tck-factory.js +178 -0
  879. package/lib/module/tck/deterministic/deterministic-tck-factory.js.map +1 -0
  880. package/lib/module/tck/deterministic/deterministic-tck-identity.js +141 -0
  881. package/lib/module/tck/deterministic/deterministic-tck-identity.js.map +1 -0
  882. package/lib/module/tck/deterministic/deterministic-tck-lifecycle-diagnostics.js +168 -0
  883. package/lib/module/tck/deterministic/deterministic-tck-lifecycle-diagnostics.js.map +1 -0
  884. package/lib/module/tck/deterministic/deterministic-tck-manager-ownership.js +162 -0
  885. package/lib/module/tck/deterministic/deterministic-tck-manager-ownership.js.map +1 -0
  886. package/lib/module/tck/deterministic/deterministic-tck-scenario-helpers.js +152 -0
  887. package/lib/module/tck/deterministic/deterministic-tck-scenario-helpers.js.map +1 -0
  888. package/lib/module/tck/deterministic/deterministic-tck-scenarios.js +611 -0
  889. package/lib/module/tck/deterministic/deterministic-tck-scenarios.js.map +1 -0
  890. package/lib/module/tck/deterministic/deterministic-tck-subscription-overflow.js +99 -0
  891. package/lib/module/tck/deterministic/deterministic-tck-subscription-overflow.js.map +1 -0
  892. package/lib/module/tck/index.js +8 -0
  893. package/lib/module/tck/index.js.map +1 -0
  894. package/lib/module/tck/runner.js +429 -0
  895. package/lib/module/tck/runner.js.map +1 -0
  896. package/lib/module/tck/scenario-adapter.js +42 -0
  897. package/lib/module/tck/scenario-adapter.js.map +1 -0
  898. package/lib/module/tck/scenarios.js +109 -0
  899. package/lib/module/tck/scenarios.js.map +1 -0
  900. package/lib/module/testing/deterministic/deterministic-backend-base.js +557 -0
  901. package/lib/module/testing/deterministic/deterministic-backend-base.js.map +1 -0
  902. package/lib/module/testing/deterministic/deterministic-operation-admission.js +56 -0
  903. package/lib/module/testing/deterministic/deterministic-operation-admission.js.map +1 -0
  904. package/lib/module/testing/deterministic/deterministic-operation-runtime.js +309 -0
  905. package/lib/module/testing/deterministic/deterministic-operation-runtime.js.map +1 -0
  906. package/lib/module/testing/deterministic/deterministic-stream.js +460 -0
  907. package/lib/module/testing/deterministic/deterministic-stream.js.map +1 -0
  908. package/lib/module/testing/deterministic/deterministic-subscription-lifecycle.js +57 -0
  909. package/lib/module/testing/deterministic/deterministic-subscription-lifecycle.js.map +1 -0
  910. package/lib/module/testing/deterministic/deterministic-test-backend-controller.js +4 -0
  911. package/lib/module/testing/deterministic/deterministic-test-backend-controller.js.map +1 -0
  912. package/lib/module/testing/deterministic/deterministic-test-backend-gatt.js +29 -0
  913. package/lib/module/testing/deterministic/deterministic-test-backend-gatt.js.map +1 -0
  914. package/lib/module/testing/deterministic/deterministic-test-backend-handles.js +261 -0
  915. package/lib/module/testing/deterministic/deterministic-test-backend-handles.js.map +1 -0
  916. package/lib/module/testing/deterministic/deterministic-test-backend-lifecycle-helpers.js +191 -0
  917. package/lib/module/testing/deterministic/deterministic-test-backend-lifecycle-helpers.js.map +1 -0
  918. package/lib/module/testing/deterministic/deterministic-test-backend.js +570 -0
  919. package/lib/module/testing/deterministic/deterministic-test-backend.js.map +1 -0
  920. package/lib/module/testing/deterministic/virtual-clock.js +93 -0
  921. package/lib/module/testing/deterministic/virtual-clock.js.map +1 -0
  922. package/lib/module/testing/deterministic/virtual-peripheral.js +291 -0
  923. package/lib/module/testing/deterministic/virtual-peripheral.js.map +1 -0
  924. package/lib/module/testing/scenarios/deterministic-manager-scenario-factory.js +128 -0
  925. package/lib/module/testing/scenarios/deterministic-manager-scenario-factory.js.map +1 -0
  926. package/lib/module/testing/scenarios/manager-scenario-executor.js +319 -0
  927. package/lib/module/testing/scenarios/manager-scenario-executor.js.map +1 -0
  928. package/lib/module/testing/scenarios/manager-scenario-fixture.js +37 -0
  929. package/lib/module/testing/scenarios/manager-scenario-fixture.js.map +1 -0
  930. package/lib/module/testing/scenarios/manager-scenarios.js +130 -0
  931. package/lib/module/testing/scenarios/manager-scenarios.js.map +1 -0
  932. package/lib/module/testing.js +20 -0
  933. package/lib/module/testing.js.map +1 -0
  934. package/lib/module/web/navigator-web-bluetooth-boundary.js +202 -0
  935. package/lib/module/web/navigator-web-bluetooth-boundary.js.map +1 -0
  936. package/lib/module/web/web-bluetooth-backend.js +665 -0
  937. package/lib/module/web/web-bluetooth-backend.js.map +1 -0
  938. package/lib/module/web/web-bluetooth-boundary.js +4 -0
  939. package/lib/module/web/web-bluetooth-boundary.js.map +1 -0
  940. package/lib/module/web/web-bluetooth-errors.js +62 -0
  941. package/lib/module/web/web-bluetooth-errors.js.map +1 -0
  942. package/lib/module/web/web-bluetooth-gatt.js +494 -0
  943. package/lib/module/web/web-bluetooth-gatt.js.map +1 -0
  944. package/lib/module/web/web-bluetooth-handles.js +133 -0
  945. package/lib/module/web/web-bluetooth-handles.js.map +1 -0
  946. package/lib/module/web/web-bluetooth-tck.js +70 -0
  947. package/lib/module/web/web-bluetooth-tck.js.map +1 -0
  948. package/lib/module/web/web-feature-registry.js +53 -0
  949. package/lib/module/web/web-feature-registry.js.map +1 -0
  950. package/lib/module/web.js +14 -0
  951. package/lib/module/web.js.map +1 -0
  952. package/lib/typescript/commonjs/package.json +1 -0
  953. package/lib/typescript/commonjs/src/BleError.d.ts +448 -0
  954. package/lib/typescript/commonjs/src/BleError.d.ts.map +1 -0
  955. package/lib/typescript/commonjs/src/BleManager.d.ts +844 -0
  956. package/lib/typescript/commonjs/src/BleManager.d.ts.map +1 -0
  957. package/lib/typescript/commonjs/src/BleModule.d.ts +723 -0
  958. package/lib/typescript/commonjs/src/BleModule.d.ts.map +1 -0
  959. package/lib/typescript/commonjs/src/Characteristic.d.ts +154 -0
  960. package/lib/typescript/commonjs/src/Characteristic.d.ts.map +1 -0
  961. package/lib/typescript/commonjs/src/ConnectionManager.d.ts +209 -0
  962. package/lib/typescript/commonjs/src/ConnectionManager.d.ts.map +1 -0
  963. package/lib/typescript/commonjs/src/Descriptor.d.ts +79 -0
  964. package/lib/typescript/commonjs/src/Descriptor.d.ts.map +1 -0
  965. package/lib/typescript/commonjs/src/Device.d.ts +249 -0
  966. package/lib/typescript/commonjs/src/Device.d.ts.map +1 -0
  967. package/lib/typescript/commonjs/src/DeviceOperationQueue.d.ts +81 -0
  968. package/lib/typescript/commonjs/src/DeviceOperationQueue.d.ts.map +1 -0
  969. package/lib/typescript/commonjs/src/NativeBlePlx.d.ts +147 -0
  970. package/lib/typescript/commonjs/src/NativeBlePlx.d.ts.map +1 -0
  971. package/lib/typescript/commonjs/src/NativeUnifiedBleProtocolControl.d.ts +71 -0
  972. package/lib/typescript/commonjs/src/NativeUnifiedBleProtocolControl.d.ts.map +1 -0
  973. package/lib/typescript/commonjs/src/Service.d.ts +134 -0
  974. package/lib/typescript/commonjs/src/Service.d.ts.map +1 -0
  975. package/lib/typescript/commonjs/src/TypeDefinition.d.ts +339 -0
  976. package/lib/typescript/commonjs/src/TypeDefinition.d.ts.map +1 -0
  977. package/lib/typescript/commonjs/src/Utils.d.ts +17 -0
  978. package/lib/typescript/commonjs/src/Utils.d.ts.map +1 -0
  979. package/lib/typescript/commonjs/src/backend-contract/advertisement.d.ts +75 -0
  980. package/lib/typescript/commonjs/src/backend-contract/advertisement.d.ts.map +1 -0
  981. package/lib/typescript/commonjs/src/backend-contract/backend-sdk.d.ts +25 -0
  982. package/lib/typescript/commonjs/src/backend-contract/backend-sdk.d.ts.map +1 -0
  983. package/lib/typescript/commonjs/src/backend-contract/backend.d.ts +139 -0
  984. package/lib/typescript/commonjs/src/backend-contract/backend.d.ts.map +1 -0
  985. package/lib/typescript/commonjs/src/backend-contract/capabilities.d.ts +41 -0
  986. package/lib/typescript/commonjs/src/backend-contract/capabilities.d.ts.map +1 -0
  987. package/lib/typescript/commonjs/src/backend-contract/connection-controls.d.ts +22 -0
  988. package/lib/typescript/commonjs/src/backend-contract/connection-controls.d.ts.map +1 -0
  989. package/lib/typescript/commonjs/src/backend-contract/electron.d.ts +100 -0
  990. package/lib/typescript/commonjs/src/backend-contract/electron.d.ts.map +1 -0
  991. package/lib/typescript/commonjs/src/backend-contract/errors.d.ts +30 -0
  992. package/lib/typescript/commonjs/src/backend-contract/errors.d.ts.map +1 -0
  993. package/lib/typescript/commonjs/src/backend-contract/gatt.d.ts +70 -0
  994. package/lib/typescript/commonjs/src/backend-contract/gatt.d.ts.map +1 -0
  995. package/lib/typescript/commonjs/src/backend-contract/host/electron-main.d.ts +8 -0
  996. package/lib/typescript/commonjs/src/backend-contract/host/electron-main.d.ts.map +1 -0
  997. package/lib/typescript/commonjs/src/backend-contract/host/electron-renderer.d.ts +5 -0
  998. package/lib/typescript/commonjs/src/backend-contract/host/electron-renderer.d.ts.map +1 -0
  999. package/lib/typescript/commonjs/src/backend-contract/host/node.d.ts +5 -0
  1000. package/lib/typescript/commonjs/src/backend-contract/host/node.d.ts.map +1 -0
  1001. package/lib/typescript/commonjs/src/backend-contract/host/web.d.ts +20 -0
  1002. package/lib/typescript/commonjs/src/backend-contract/host/web.d.ts.map +1 -0
  1003. package/lib/typescript/commonjs/src/backend-contract/identity.d.ts +64 -0
  1004. package/lib/typescript/commonjs/src/backend-contract/identity.d.ts.map +1 -0
  1005. package/lib/typescript/commonjs/src/backend-contract/index.d.ts +18 -0
  1006. package/lib/typescript/commonjs/src/backend-contract/index.d.ts.map +1 -0
  1007. package/lib/typescript/commonjs/src/backend-contract/operations.d.ts +64 -0
  1008. package/lib/typescript/commonjs/src/backend-contract/operations.d.ts.map +1 -0
  1009. package/lib/typescript/commonjs/src/backend-contract/primitives.d.ts +142 -0
  1010. package/lib/typescript/commonjs/src/backend-contract/primitives.d.ts.map +1 -0
  1011. package/lib/typescript/commonjs/src/backend-contract/restoration.d.ts +47 -0
  1012. package/lib/typescript/commonjs/src/backend-contract/restoration.d.ts.map +1 -0
  1013. package/lib/typescript/commonjs/src/backend-contract/serializable.d.ts +11 -0
  1014. package/lib/typescript/commonjs/src/backend-contract/serializable.d.ts.map +1 -0
  1015. package/lib/typescript/commonjs/src/backend-contract/streams.d.ts +33 -0
  1016. package/lib/typescript/commonjs/src/backend-contract/streams.d.ts.map +1 -0
  1017. package/lib/typescript/commonjs/src/backend-sdk-authoring.d.ts +52 -0
  1018. package/lib/typescript/commonjs/src/backend-sdk-authoring.d.ts.map +1 -0
  1019. package/lib/typescript/commonjs/src/backend-sdk.d.ts +14 -0
  1020. package/lib/typescript/commonjs/src/backend-sdk.d.ts.map +1 -0
  1021. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend-handles.d.ts +74 -0
  1022. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend-handles.d.ts.map +1 -0
  1023. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend-provider.d.ts +14 -0
  1024. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend-provider.d.ts.map +1 -0
  1025. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend-runtime.d.ts +100 -0
  1026. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend-runtime.d.ts.map +1 -0
  1027. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend.d.ts +30 -0
  1028. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend.d.ts.map +1 -0
  1029. package/lib/typescript/commonjs/src/backends/bluez/bluez-dbus-contract.d.ts +92 -0
  1030. package/lib/typescript/commonjs/src/backends/bluez/bluez-dbus-contract.d.ts.map +1 -0
  1031. package/lib/typescript/commonjs/src/backends/bluez/bluez-dbus-next-boundary.d.ts +6 -0
  1032. package/lib/typescript/commonjs/src/backends/bluez/bluez-dbus-next-boundary.d.ts.map +1 -0
  1033. package/lib/typescript/commonjs/src/backends/bluez/bluez-gatt-operations.d.ts +12 -0
  1034. package/lib/typescript/commonjs/src/backends/bluez/bluez-gatt-operations.d.ts.map +1 -0
  1035. package/lib/typescript/commonjs/src/backends/bluez/bluez-object-store.d.ts +45 -0
  1036. package/lib/typescript/commonjs/src/backends/bluez/bluez-object-store.d.ts.map +1 -0
  1037. package/lib/typescript/commonjs/src/backends/bluez/bluez-operation-dispatcher.d.ts +13 -0
  1038. package/lib/typescript/commonjs/src/backends/bluez/bluez-operation-dispatcher.d.ts.map +1 -0
  1039. package/lib/typescript/commonjs/src/backends/bluez/bluez-property-waiters.d.ts +11 -0
  1040. package/lib/typescript/commonjs/src/backends/bluez/bluez-property-waiters.d.ts.map +1 -0
  1041. package/lib/typescript/commonjs/src/backends/bluez/bluez-runtime-models.d.ts +22 -0
  1042. package/lib/typescript/commonjs/src/backends/bluez/bluez-runtime-models.d.ts.map +1 -0
  1043. package/lib/typescript/commonjs/src/backends/bluez/bluez-runtime-types.d.ts +100 -0
  1044. package/lib/typescript/commonjs/src/backends/bluez/bluez-runtime-types.d.ts.map +1 -0
  1045. package/lib/typescript/commonjs/src/backends/bluez/bluez-scan-runtime.d.ts +11 -0
  1046. package/lib/typescript/commonjs/src/backends/bluez/bluez-scan-runtime.d.ts.map +1 -0
  1047. package/lib/typescript/commonjs/src/backends/bluez/bluez-subscription-runtime.d.ts +11 -0
  1048. package/lib/typescript/commonjs/src/backends/bluez/bluez-subscription-runtime.d.ts.map +1 -0
  1049. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-backend.d.ts +121 -0
  1050. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-backend.d.ts.map +1 -0
  1051. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-boundary.d.ts +61 -0
  1052. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-boundary.d.ts.map +1 -0
  1053. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-connection-controls.d.ts +13 -0
  1054. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-connection-controls.d.ts.map +1 -0
  1055. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-gatt-operations.d.ts +27 -0
  1056. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-gatt-operations.d.ts.map +1 -0
  1057. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-handles.d.ts +91 -0
  1058. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-handles.d.ts.map +1 -0
  1059. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-identity.d.ts +13 -0
  1060. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-identity.d.ts.map +1 -0
  1061. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-operation-dispatcher.d.ts +15 -0
  1062. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-operation-dispatcher.d.ts.map +1 -0
  1063. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-operation-lifecycle.d.ts +10 -0
  1064. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-operation-lifecycle.d.ts.map +1 -0
  1065. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-provider.d.ts +15 -0
  1066. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-provider.d.ts.map +1 -0
  1067. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-stream-limits.d.ts +11 -0
  1068. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-stream-limits.d.ts.map +1 -0
  1069. package/lib/typescript/commonjs/src/backends/reactnative/react-native-android-provider.d.ts +23 -0
  1070. package/lib/typescript/commonjs/src/backends/reactnative/react-native-android-provider.d.ts.map +1 -0
  1071. package/lib/typescript/commonjs/src/backends/reactnative/react-native-apple-provider.d.ts +20 -0
  1072. package/lib/typescript/commonjs/src/backends/reactnative/react-native-apple-provider.d.ts.map +1 -0
  1073. package/lib/typescript/commonjs/src/backends/winrt/winrt-adapter-state.d.ts +6 -0
  1074. package/lib/typescript/commonjs/src/backends/winrt/winrt-adapter-state.d.ts.map +1 -0
  1075. package/lib/typescript/commonjs/src/backends/winrt/winrt-backend-helpers.d.ts +24 -0
  1076. package/lib/typescript/commonjs/src/backends/winrt/winrt-backend-helpers.d.ts.map +1 -0
  1077. package/lib/typescript/commonjs/src/backends/winrt/winrt-backend.d.ts +114 -0
  1078. package/lib/typescript/commonjs/src/backends/winrt/winrt-backend.d.ts.map +1 -0
  1079. package/lib/typescript/commonjs/src/backends/winrt/winrt-boundary.d.ts +96 -0
  1080. package/lib/typescript/commonjs/src/backends/winrt/winrt-boundary.d.ts.map +1 -0
  1081. package/lib/typescript/commonjs/src/backends/winrt/winrt-gatt-operations.d.ts +36 -0
  1082. package/lib/typescript/commonjs/src/backends/winrt/winrt-gatt-operations.d.ts.map +1 -0
  1083. package/lib/typescript/commonjs/src/backends/winrt/winrt-handles.d.ts +84 -0
  1084. package/lib/typescript/commonjs/src/backends/winrt/winrt-handles.d.ts.map +1 -0
  1085. package/lib/typescript/commonjs/src/backends/winrt/winrt-operation-dispatcher.d.ts +26 -0
  1086. package/lib/typescript/commonjs/src/backends/winrt/winrt-operation-dispatcher.d.ts.map +1 -0
  1087. package/lib/typescript/commonjs/src/backends/winrt/winrt-provider.d.ts +17 -0
  1088. package/lib/typescript/commonjs/src/backends/winrt/winrt-provider.d.ts.map +1 -0
  1089. package/lib/typescript/commonjs/src/backends/winrt/winrt-subscription-runtime.d.ts +14 -0
  1090. package/lib/typescript/commonjs/src/backends/winrt/winrt-subscription-runtime.d.ts.map +1 -0
  1091. package/lib/typescript/commonjs/src/cli-json.d.ts +8 -0
  1092. package/lib/typescript/commonjs/src/cli-json.d.ts.map +1 -0
  1093. package/lib/typescript/commonjs/src/cli.d.ts +31 -0
  1094. package/lib/typescript/commonjs/src/cli.d.ts.map +1 -0
  1095. package/lib/typescript/commonjs/src/codecs-primitives.d.ts +5 -0
  1096. package/lib/typescript/commonjs/src/codecs-primitives.d.ts.map +1 -0
  1097. package/lib/typescript/commonjs/src/codecs.d.ts +7 -0
  1098. package/lib/typescript/commonjs/src/codecs.d.ts.map +1 -0
  1099. package/lib/typescript/commonjs/src/core/aggregate-stream-quota.d.ts +17 -0
  1100. package/lib/typescript/commonjs/src/core/aggregate-stream-quota.d.ts.map +1 -0
  1101. package/lib/typescript/commonjs/src/core/bounded-stream.d.ts +69 -0
  1102. package/lib/typescript/commonjs/src/core/bounded-stream.d.ts.map +1 -0
  1103. package/lib/typescript/commonjs/src/core/core-adapter-state.d.ts +5 -0
  1104. package/lib/typescript/commonjs/src/core/core-adapter-state.d.ts.map +1 -0
  1105. package/lib/typescript/commonjs/src/core/core-characteristic-operations.d.ts +12 -0
  1106. package/lib/typescript/commonjs/src/core/core-characteristic-operations.d.ts.map +1 -0
  1107. package/lib/typescript/commonjs/src/core/core-connection-controls.d.ts +14 -0
  1108. package/lib/typescript/commonjs/src/core/core-connection-controls.d.ts.map +1 -0
  1109. package/lib/typescript/commonjs/src/core/core-descriptor-operations.d.ts +12 -0
  1110. package/lib/typescript/commonjs/src/core/core-descriptor-operations.d.ts.map +1 -0
  1111. package/lib/typescript/commonjs/src/core/core-discovery.d.ts +9 -0
  1112. package/lib/typescript/commonjs/src/core/core-discovery.d.ts.map +1 -0
  1113. package/lib/typescript/commonjs/src/core/core-gatt-handles.d.ts +67 -0
  1114. package/lib/typescript/commonjs/src/core/core-gatt-handles.d.ts.map +1 -0
  1115. package/lib/typescript/commonjs/src/core/core-lifecycle-observer.d.ts +14 -0
  1116. package/lib/typescript/commonjs/src/core/core-lifecycle-observer.d.ts.map +1 -0
  1117. package/lib/typescript/commonjs/src/core/gatt-path-equality.d.ts +7 -0
  1118. package/lib/typescript/commonjs/src/core/gatt-path-equality.d.ts.map +1 -0
  1119. package/lib/typescript/commonjs/src/core/index.d.ts +11 -0
  1120. package/lib/typescript/commonjs/src/core/index.d.ts.map +1 -0
  1121. package/lib/typescript/commonjs/src/core/operation-coordinator.d.ts +87 -0
  1122. package/lib/typescript/commonjs/src/core/operation-coordinator.d.ts.map +1 -0
  1123. package/lib/typescript/commonjs/src/core/resource-ledger.d.ts +26 -0
  1124. package/lib/typescript/commonjs/src/core/resource-ledger.d.ts.map +1 -0
  1125. package/lib/typescript/commonjs/src/core/subscription-registry.d.ts +77 -0
  1126. package/lib/typescript/commonjs/src/core/subscription-registry.d.ts.map +1 -0
  1127. package/lib/typescript/commonjs/src/core/trace-recorder.d.ts +39 -0
  1128. package/lib/typescript/commonjs/src/core/trace-recorder.d.ts.map +1 -0
  1129. package/lib/typescript/commonjs/src/core/unified-ble-core-helpers.d.ts +32 -0
  1130. package/lib/typescript/commonjs/src/core/unified-ble-core-helpers.d.ts.map +1 -0
  1131. package/lib/typescript/commonjs/src/core/unified-ble-core.d.ts +101 -0
  1132. package/lib/typescript/commonjs/src/core/unified-ble-core.d.ts.map +1 -0
  1133. package/lib/typescript/commonjs/src/diagnostics/trace-format.d.ts +39 -0
  1134. package/lib/typescript/commonjs/src/diagnostics/trace-format.d.ts.map +1 -0
  1135. package/lib/typescript/commonjs/src/discovery/deviceSort.d.ts +23 -0
  1136. package/lib/typescript/commonjs/src/discovery/deviceSort.d.ts.map +1 -0
  1137. package/lib/typescript/commonjs/src/discovery/filters.d.ts +97 -0
  1138. package/lib/typescript/commonjs/src/discovery/filters.d.ts.map +1 -0
  1139. package/lib/typescript/commonjs/src/discovery/index.d.ts +6 -0
  1140. package/lib/typescript/commonjs/src/discovery/index.d.ts.map +1 -0
  1141. package/lib/typescript/commonjs/src/discovery/uuidMatch.d.ts +29 -0
  1142. package/lib/typescript/commonjs/src/discovery/uuidMatch.d.ts.map +1 -0
  1143. package/lib/typescript/commonjs/src/electron/main-binding.d.ts +48 -0
  1144. package/lib/typescript/commonjs/src/electron/main-binding.d.ts.map +1 -0
  1145. package/lib/typescript/commonjs/src/electron/main-router.d.ts +69 -0
  1146. package/lib/typescript/commonjs/src/electron/main-router.d.ts.map +1 -0
  1147. package/lib/typescript/commonjs/src/electron/main.d.ts +3 -0
  1148. package/lib/typescript/commonjs/src/electron/main.d.ts.map +1 -0
  1149. package/lib/typescript/commonjs/src/electron/protocol.d.ts +73 -0
  1150. package/lib/typescript/commonjs/src/electron/protocol.d.ts.map +1 -0
  1151. package/lib/typescript/commonjs/src/electron/renderer-stream-registry.d.ts +46 -0
  1152. package/lib/typescript/commonjs/src/electron/renderer-stream-registry.d.ts.map +1 -0
  1153. package/lib/typescript/commonjs/src/electron/renderer.d.ts +29 -0
  1154. package/lib/typescript/commonjs/src/electron/renderer.d.ts.map +1 -0
  1155. package/lib/typescript/commonjs/src/electron-main.d.ts +14 -0
  1156. package/lib/typescript/commonjs/src/electron-main.d.ts.map +1 -0
  1157. package/lib/typescript/commonjs/src/electron-renderer.d.ts +3 -0
  1158. package/lib/typescript/commonjs/src/electron-renderer.d.ts.map +1 -0
  1159. package/lib/typescript/commonjs/src/encoding.d.ts +13 -0
  1160. package/lib/typescript/commonjs/src/encoding.d.ts.map +1 -0
  1161. package/lib/typescript/commonjs/src/helpers/central.d.ts +66 -0
  1162. package/lib/typescript/commonjs/src/helpers/central.d.ts.map +1 -0
  1163. package/lib/typescript/commonjs/src/helpers/errors.d.ts +12 -0
  1164. package/lib/typescript/commonjs/src/helpers/errors.d.ts.map +1 -0
  1165. package/lib/typescript/commonjs/src/helpers/index.d.ts +9 -0
  1166. package/lib/typescript/commonjs/src/helpers/index.d.ts.map +1 -0
  1167. package/lib/typescript/commonjs/src/helpers/types.d.ts +122 -0
  1168. package/lib/typescript/commonjs/src/helpers/types.d.ts.map +1 -0
  1169. package/lib/typescript/commonjs/src/hosts/electron.d.ts +78 -0
  1170. package/lib/typescript/commonjs/src/hosts/electron.d.ts.map +1 -0
  1171. package/lib/typescript/commonjs/src/hosts/native/bluez/BluezBlePort.d.ts +79 -0
  1172. package/lib/typescript/commonjs/src/hosts/native/bluez/BluezBlePort.d.ts.map +1 -0
  1173. package/lib/typescript/commonjs/src/hosts/native/corebluetooth/CoreBluetoothBlePort.d.ts +20 -0
  1174. package/lib/typescript/commonjs/src/hosts/native/corebluetooth/CoreBluetoothBlePort.d.ts.map +1 -0
  1175. package/lib/typescript/commonjs/src/hosts/native/winrt/WinRtBlePort.d.ts +18 -0
  1176. package/lib/typescript/commonjs/src/hosts/native/winrt/WinRtBlePort.d.ts.map +1 -0
  1177. package/lib/typescript/commonjs/src/hosts/node.d.ts +20 -0
  1178. package/lib/typescript/commonjs/src/hosts/node.d.ts.map +1 -0
  1179. package/lib/typescript/commonjs/src/hosts/web.d.ts +258 -0
  1180. package/lib/typescript/commonjs/src/hosts/web.d.ts.map +1 -0
  1181. package/lib/typescript/commonjs/src/index.d.ts +23 -0
  1182. package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
  1183. package/lib/typescript/commonjs/src/longWrite.d.ts +25 -0
  1184. package/lib/typescript/commonjs/src/longWrite.d.ts.map +1 -0
  1185. package/lib/typescript/commonjs/src/manager/ble-manager.d.ts +121 -0
  1186. package/lib/typescript/commonjs/src/manager/ble-manager.d.ts.map +1 -0
  1187. package/lib/typescript/commonjs/src/manager/index.d.ts +5 -0
  1188. package/lib/typescript/commonjs/src/manager/index.d.ts.map +1 -0
  1189. package/lib/typescript/commonjs/src/manager/manager-ownership-authority.d.ts +64 -0
  1190. package/lib/typescript/commonjs/src/manager/manager-ownership-authority.d.ts.map +1 -0
  1191. package/lib/typescript/commonjs/src/native-protocol/generated/native-protocol-v1-schema.d.ts +41 -0
  1192. package/lib/typescript/commonjs/src/native-protocol/generated/native-protocol-v1-schema.d.ts.map +1 -0
  1193. package/lib/typescript/commonjs/src/native-protocol/rn-android-boundary.d.ts +66 -0
  1194. package/lib/typescript/commonjs/src/native-protocol/rn-android-boundary.d.ts.map +1 -0
  1195. package/lib/typescript/commonjs/src/native-protocol/rn-android-protocol-records.d.ts +31 -0
  1196. package/lib/typescript/commonjs/src/native-protocol/rn-android-protocol-records.d.ts.map +1 -0
  1197. package/lib/typescript/commonjs/src/native-protocol/rn-apple-boundary.d.ts +7 -0
  1198. package/lib/typescript/commonjs/src/native-protocol/rn-apple-boundary.d.ts.map +1 -0
  1199. package/lib/typescript/commonjs/src/native-protocol/rn-jsi-binary-runtime.d.ts +33 -0
  1200. package/lib/typescript/commonjs/src/native-protocol/rn-jsi-binary-runtime.d.ts.map +1 -0
  1201. package/lib/typescript/commonjs/src/native-protocol/v1-codec.d.ts +15 -0
  1202. package/lib/typescript/commonjs/src/native-protocol/v1-codec.d.ts.map +1 -0
  1203. package/lib/typescript/commonjs/src/node-bluez.d.ts +13 -0
  1204. package/lib/typescript/commonjs/src/node-bluez.d.ts.map +1 -0
  1205. package/lib/typescript/commonjs/src/node-corebluetooth.d.ts +13 -0
  1206. package/lib/typescript/commonjs/src/node-corebluetooth.d.ts.map +1 -0
  1207. package/lib/typescript/commonjs/src/node-winrt.d.ts +13 -0
  1208. package/lib/typescript/commonjs/src/node-winrt.d.ts.map +1 -0
  1209. package/lib/typescript/commonjs/src/permissions.d.ts +43 -0
  1210. package/lib/typescript/commonjs/src/permissions.d.ts.map +1 -0
  1211. package/lib/typescript/commonjs/src/port/BlePort.d.ts +161 -0
  1212. package/lib/typescript/commonjs/src/port/BlePort.d.ts.map +1 -0
  1213. package/lib/typescript/commonjs/src/port/PortBleManager.d.ts +156 -0
  1214. package/lib/typescript/commonjs/src/port/PortBleManager.d.ts.map +1 -0
  1215. package/lib/typescript/commonjs/src/profiles/battery-service.d.ts +8 -0
  1216. package/lib/typescript/commonjs/src/profiles/battery-service.d.ts.map +1 -0
  1217. package/lib/typescript/commonjs/src/profiles/battery.d.ts +34 -0
  1218. package/lib/typescript/commonjs/src/profiles/battery.d.ts.map +1 -0
  1219. package/lib/typescript/commonjs/src/profiles/blood-pressure.d.ts +21 -0
  1220. package/lib/typescript/commonjs/src/profiles/blood-pressure.d.ts.map +1 -0
  1221. package/lib/typescript/commonjs/src/profiles/bloodPressure.d.ts +74 -0
  1222. package/lib/typescript/commonjs/src/profiles/bloodPressure.d.ts.map +1 -0
  1223. package/lib/typescript/commonjs/src/profiles/bytes.d.ts +10 -0
  1224. package/lib/typescript/commonjs/src/profiles/bytes.d.ts.map +1 -0
  1225. package/lib/typescript/commonjs/src/profiles/commands.d.ts +30 -0
  1226. package/lib/typescript/commonjs/src/profiles/commands.d.ts.map +1 -0
  1227. package/lib/typescript/commonjs/src/profiles/date-time.d.ts +10 -0
  1228. package/lib/typescript/commonjs/src/profiles/date-time.d.ts.map +1 -0
  1229. package/lib/typescript/commonjs/src/profiles/device-information.d.ts +24 -0
  1230. package/lib/typescript/commonjs/src/profiles/device-information.d.ts.map +1 -0
  1231. package/lib/typescript/commonjs/src/profiles/deviceInformation.d.ts +109 -0
  1232. package/lib/typescript/commonjs/src/profiles/deviceInformation.d.ts.map +1 -0
  1233. package/lib/typescript/commonjs/src/profiles/errors.d.ts +11 -0
  1234. package/lib/typescript/commonjs/src/profiles/errors.d.ts.map +1 -0
  1235. package/lib/typescript/commonjs/src/profiles/health-thermometer.d.ts +17 -0
  1236. package/lib/typescript/commonjs/src/profiles/health-thermometer.d.ts.map +1 -0
  1237. package/lib/typescript/commonjs/src/profiles/healthThermometer.d.ts +73 -0
  1238. package/lib/typescript/commonjs/src/profiles/healthThermometer.d.ts.map +1 -0
  1239. package/lib/typescript/commonjs/src/profiles/heart-rate.d.ts +20 -0
  1240. package/lib/typescript/commonjs/src/profiles/heart-rate.d.ts.map +1 -0
  1241. package/lib/typescript/commonjs/src/profiles/heartRate.d.ts +129 -0
  1242. package/lib/typescript/commonjs/src/profiles/heartRate.d.ts.map +1 -0
  1243. package/lib/typescript/commonjs/src/profiles/identifiers.d.ts +26 -0
  1244. package/lib/typescript/commonjs/src/profiles/identifiers.d.ts.map +1 -0
  1245. package/lib/typescript/commonjs/src/profiles/ieee-11073.d.ts +15 -0
  1246. package/lib/typescript/commonjs/src/profiles/ieee-11073.d.ts.map +1 -0
  1247. package/lib/typescript/commonjs/src/profiles/ieee11073.d.ts +80 -0
  1248. package/lib/typescript/commonjs/src/profiles/ieee11073.d.ts.map +1 -0
  1249. package/lib/typescript/commonjs/src/profiles/index.d.ts +21 -0
  1250. package/lib/typescript/commonjs/src/profiles/index.d.ts.map +1 -0
  1251. package/lib/typescript/commonjs/src/profiles/serviceHelpers.d.ts +48 -0
  1252. package/lib/typescript/commonjs/src/profiles/serviceHelpers.d.ts.map +1 -0
  1253. package/lib/typescript/commonjs/src/profiles/standard-commands.d.ts +21 -0
  1254. package/lib/typescript/commonjs/src/profiles/standard-commands.d.ts.map +1 -0
  1255. package/lib/typescript/commonjs/src/profiles/types.d.ts +32 -0
  1256. package/lib/typescript/commonjs/src/profiles/types.d.ts.map +1 -0
  1257. package/lib/typescript/commonjs/src/react-native-manager.d.ts +19 -0
  1258. package/lib/typescript/commonjs/src/react-native-manager.d.ts.map +1 -0
  1259. package/lib/typescript/commonjs/src/react-native.d.ts +15 -0
  1260. package/lib/typescript/commonjs/src/react-native.d.ts.map +1 -0
  1261. package/lib/typescript/commonjs/src/stringUtils.d.ts +8 -0
  1262. package/lib/typescript/commonjs/src/stringUtils.d.ts.map +1 -0
  1263. package/lib/typescript/commonjs/src/supports.d.ts +13 -0
  1264. package/lib/typescript/commonjs/src/supports.d.ts.map +1 -0
  1265. package/lib/typescript/commonjs/src/tck/contracts.d.ts +132 -0
  1266. package/lib/typescript/commonjs/src/tck/contracts.d.ts.map +1 -0
  1267. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-factory.d.ts +9 -0
  1268. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-factory.d.ts.map +1 -0
  1269. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-identity.d.ts +9 -0
  1270. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-identity.d.ts.map +1 -0
  1271. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-lifecycle-diagnostics.d.ts +8 -0
  1272. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-lifecycle-diagnostics.d.ts.map +1 -0
  1273. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-manager-ownership.d.ts +4 -0
  1274. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-manager-ownership.d.ts.map +1 -0
  1275. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-scenario-helpers.d.ts +56 -0
  1276. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-scenario-helpers.d.ts.map +1 -0
  1277. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-scenarios.d.ts +14 -0
  1278. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-scenarios.d.ts.map +1 -0
  1279. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-subscription-overflow.d.ts +5 -0
  1280. package/lib/typescript/commonjs/src/tck/deterministic/deterministic-tck-subscription-overflow.d.ts.map +1 -0
  1281. package/lib/typescript/commonjs/src/tck/index.d.ts +6 -0
  1282. package/lib/typescript/commonjs/src/tck/index.d.ts.map +1 -0
  1283. package/lib/typescript/commonjs/src/tck/runner.d.ts +10 -0
  1284. package/lib/typescript/commonjs/src/tck/runner.d.ts.map +1 -0
  1285. package/lib/typescript/commonjs/src/tck/scenario-adapter.d.ts +19 -0
  1286. package/lib/typescript/commonjs/src/tck/scenario-adapter.d.ts.map +1 -0
  1287. package/lib/typescript/commonjs/src/tck/scenarios.d.ts +4 -0
  1288. package/lib/typescript/commonjs/src/tck/scenarios.d.ts.map +1 -0
  1289. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-backend-base.d.ts +118 -0
  1290. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-backend-base.d.ts.map +1 -0
  1291. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-operation-admission.d.ts +5 -0
  1292. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-operation-admission.d.ts.map +1 -0
  1293. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-operation-runtime.d.ts +52 -0
  1294. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-operation-runtime.d.ts.map +1 -0
  1295. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-stream.d.ts +65 -0
  1296. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-stream.d.ts.map +1 -0
  1297. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-subscription-lifecycle.d.ts +22 -0
  1298. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-subscription-lifecycle.d.ts.map +1 -0
  1299. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend-controller.d.ts +25 -0
  1300. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend-controller.d.ts.map +1 -0
  1301. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend-gatt.d.ts +15 -0
  1302. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend-gatt.d.ts.map +1 -0
  1303. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend-handles.d.ts +109 -0
  1304. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend-handles.d.ts.map +1 -0
  1305. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend-lifecycle-helpers.d.ts +48 -0
  1306. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend-lifecycle-helpers.d.ts.map +1 -0
  1307. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend.d.ts +71 -0
  1308. package/lib/typescript/commonjs/src/testing/deterministic/deterministic-test-backend.d.ts.map +1 -0
  1309. package/lib/typescript/commonjs/src/testing/deterministic/virtual-clock.d.ts +22 -0
  1310. package/lib/typescript/commonjs/src/testing/deterministic/virtual-clock.d.ts.map +1 -0
  1311. package/lib/typescript/commonjs/src/testing/deterministic/virtual-peripheral.d.ts +76 -0
  1312. package/lib/typescript/commonjs/src/testing/deterministic/virtual-peripheral.d.ts.map +1 -0
  1313. package/lib/typescript/commonjs/src/testing/scenarios/deterministic-manager-scenario-factory.d.ts +4 -0
  1314. package/lib/typescript/commonjs/src/testing/scenarios/deterministic-manager-scenario-factory.d.ts.map +1 -0
  1315. package/lib/typescript/commonjs/src/testing/scenarios/manager-scenario-executor.d.ts +33 -0
  1316. package/lib/typescript/commonjs/src/testing/scenarios/manager-scenario-executor.d.ts.map +1 -0
  1317. package/lib/typescript/commonjs/src/testing/scenarios/manager-scenario-fixture.d.ts +19 -0
  1318. package/lib/typescript/commonjs/src/testing/scenarios/manager-scenario-fixture.d.ts.map +1 -0
  1319. package/lib/typescript/commonjs/src/testing/scenarios/manager-scenarios.d.ts +60 -0
  1320. package/lib/typescript/commonjs/src/testing/scenarios/manager-scenarios.d.ts.map +1 -0
  1321. package/lib/typescript/commonjs/src/testing.d.ts +22 -0
  1322. package/lib/typescript/commonjs/src/testing.d.ts.map +1 -0
  1323. package/lib/typescript/commonjs/src/unsupported.d.ts +12 -0
  1324. package/lib/typescript/commonjs/src/unsupported.d.ts.map +1 -0
  1325. package/lib/typescript/commonjs/src/web/navigator-web-bluetooth-boundary.d.ts +95 -0
  1326. package/lib/typescript/commonjs/src/web/navigator-web-bluetooth-boundary.d.ts.map +1 -0
  1327. package/lib/typescript/commonjs/src/web/web-bluetooth-backend.d.ts +99 -0
  1328. package/lib/typescript/commonjs/src/web/web-bluetooth-backend.d.ts.map +1 -0
  1329. package/lib/typescript/commonjs/src/web/web-bluetooth-boundary.d.ts +78 -0
  1330. package/lib/typescript/commonjs/src/web/web-bluetooth-boundary.d.ts.map +1 -0
  1331. package/lib/typescript/commonjs/src/web/web-bluetooth-errors.d.ts +13 -0
  1332. package/lib/typescript/commonjs/src/web/web-bluetooth-errors.d.ts.map +1 -0
  1333. package/lib/typescript/commonjs/src/web/web-bluetooth-gatt.d.ts +62 -0
  1334. package/lib/typescript/commonjs/src/web/web-bluetooth-gatt.d.ts.map +1 -0
  1335. package/lib/typescript/commonjs/src/web/web-bluetooth-handles.d.ts +124 -0
  1336. package/lib/typescript/commonjs/src/web/web-bluetooth-handles.d.ts.map +1 -0
  1337. package/lib/typescript/commonjs/src/web/web-bluetooth-tck.d.ts +33 -0
  1338. package/lib/typescript/commonjs/src/web/web-bluetooth-tck.d.ts.map +1 -0
  1339. package/lib/typescript/commonjs/src/web/web-feature-registry.d.ts +3 -0
  1340. package/lib/typescript/commonjs/src/web/web-feature-registry.d.ts.map +1 -0
  1341. package/lib/typescript/commonjs/src/web.d.ts +10 -0
  1342. package/lib/typescript/commonjs/src/web.d.ts.map +1 -0
  1343. package/lib/typescript/module/package.json +1 -0
  1344. package/lib/typescript/module/src/BleError.d.ts +448 -0
  1345. package/lib/typescript/module/src/BleError.d.ts.map +1 -0
  1346. package/lib/typescript/module/src/BleManager.d.ts +844 -0
  1347. package/lib/typescript/module/src/BleManager.d.ts.map +1 -0
  1348. package/lib/typescript/module/src/BleModule.d.ts +723 -0
  1349. package/lib/typescript/module/src/BleModule.d.ts.map +1 -0
  1350. package/lib/typescript/module/src/Characteristic.d.ts +154 -0
  1351. package/lib/typescript/module/src/Characteristic.d.ts.map +1 -0
  1352. package/lib/typescript/module/src/ConnectionManager.d.ts +209 -0
  1353. package/lib/typescript/module/src/ConnectionManager.d.ts.map +1 -0
  1354. package/lib/typescript/module/src/Descriptor.d.ts +79 -0
  1355. package/lib/typescript/module/src/Descriptor.d.ts.map +1 -0
  1356. package/lib/typescript/module/src/Device.d.ts +249 -0
  1357. package/lib/typescript/module/src/Device.d.ts.map +1 -0
  1358. package/lib/typescript/module/src/DeviceOperationQueue.d.ts +81 -0
  1359. package/lib/typescript/module/src/DeviceOperationQueue.d.ts.map +1 -0
  1360. package/lib/typescript/module/src/NativeBlePlx.d.ts +147 -0
  1361. package/lib/typescript/module/src/NativeBlePlx.d.ts.map +1 -0
  1362. package/lib/typescript/module/src/NativeUnifiedBleProtocolControl.d.ts +71 -0
  1363. package/lib/typescript/module/src/NativeUnifiedBleProtocolControl.d.ts.map +1 -0
  1364. package/lib/typescript/module/src/Service.d.ts +134 -0
  1365. package/lib/typescript/module/src/Service.d.ts.map +1 -0
  1366. package/lib/typescript/module/src/TypeDefinition.d.ts +339 -0
  1367. package/lib/typescript/module/src/TypeDefinition.d.ts.map +1 -0
  1368. package/lib/typescript/module/src/Utils.d.ts +17 -0
  1369. package/lib/typescript/module/src/Utils.d.ts.map +1 -0
  1370. package/lib/typescript/module/src/backend-contract/advertisement.d.ts +75 -0
  1371. package/lib/typescript/module/src/backend-contract/advertisement.d.ts.map +1 -0
  1372. package/lib/typescript/module/src/backend-contract/backend-sdk.d.ts +25 -0
  1373. package/lib/typescript/module/src/backend-contract/backend-sdk.d.ts.map +1 -0
  1374. package/lib/typescript/module/src/backend-contract/backend.d.ts +139 -0
  1375. package/lib/typescript/module/src/backend-contract/backend.d.ts.map +1 -0
  1376. package/lib/typescript/module/src/backend-contract/capabilities.d.ts +41 -0
  1377. package/lib/typescript/module/src/backend-contract/capabilities.d.ts.map +1 -0
  1378. package/lib/typescript/module/src/backend-contract/connection-controls.d.ts +22 -0
  1379. package/lib/typescript/module/src/backend-contract/connection-controls.d.ts.map +1 -0
  1380. package/lib/typescript/module/src/backend-contract/electron.d.ts +100 -0
  1381. package/lib/typescript/module/src/backend-contract/electron.d.ts.map +1 -0
  1382. package/lib/typescript/module/src/backend-contract/errors.d.ts +30 -0
  1383. package/lib/typescript/module/src/backend-contract/errors.d.ts.map +1 -0
  1384. package/lib/typescript/module/src/backend-contract/gatt.d.ts +70 -0
  1385. package/lib/typescript/module/src/backend-contract/gatt.d.ts.map +1 -0
  1386. package/lib/typescript/module/src/backend-contract/host/electron-main.d.ts +8 -0
  1387. package/lib/typescript/module/src/backend-contract/host/electron-main.d.ts.map +1 -0
  1388. package/lib/typescript/module/src/backend-contract/host/electron-renderer.d.ts +5 -0
  1389. package/lib/typescript/module/src/backend-contract/host/electron-renderer.d.ts.map +1 -0
  1390. package/lib/typescript/module/src/backend-contract/host/node.d.ts +5 -0
  1391. package/lib/typescript/module/src/backend-contract/host/node.d.ts.map +1 -0
  1392. package/lib/typescript/module/src/backend-contract/host/web.d.ts +20 -0
  1393. package/lib/typescript/module/src/backend-contract/host/web.d.ts.map +1 -0
  1394. package/lib/typescript/module/src/backend-contract/identity.d.ts +64 -0
  1395. package/lib/typescript/module/src/backend-contract/identity.d.ts.map +1 -0
  1396. package/lib/typescript/module/src/backend-contract/index.d.ts +18 -0
  1397. package/lib/typescript/module/src/backend-contract/index.d.ts.map +1 -0
  1398. package/lib/typescript/module/src/backend-contract/operations.d.ts +64 -0
  1399. package/lib/typescript/module/src/backend-contract/operations.d.ts.map +1 -0
  1400. package/lib/typescript/module/src/backend-contract/primitives.d.ts +142 -0
  1401. package/lib/typescript/module/src/backend-contract/primitives.d.ts.map +1 -0
  1402. package/lib/typescript/module/src/backend-contract/restoration.d.ts +47 -0
  1403. package/lib/typescript/module/src/backend-contract/restoration.d.ts.map +1 -0
  1404. package/lib/typescript/module/src/backend-contract/serializable.d.ts +11 -0
  1405. package/lib/typescript/module/src/backend-contract/serializable.d.ts.map +1 -0
  1406. package/lib/typescript/module/src/backend-contract/streams.d.ts +33 -0
  1407. package/lib/typescript/module/src/backend-contract/streams.d.ts.map +1 -0
  1408. package/lib/typescript/module/src/backend-sdk-authoring.d.ts +52 -0
  1409. package/lib/typescript/module/src/backend-sdk-authoring.d.ts.map +1 -0
  1410. package/lib/typescript/module/src/backend-sdk.d.ts +14 -0
  1411. package/lib/typescript/module/src/backend-sdk.d.ts.map +1 -0
  1412. package/lib/typescript/module/src/backends/bluez/bluez-backend-handles.d.ts +74 -0
  1413. package/lib/typescript/module/src/backends/bluez/bluez-backend-handles.d.ts.map +1 -0
  1414. package/lib/typescript/module/src/backends/bluez/bluez-backend-provider.d.ts +14 -0
  1415. package/lib/typescript/module/src/backends/bluez/bluez-backend-provider.d.ts.map +1 -0
  1416. package/lib/typescript/module/src/backends/bluez/bluez-backend-runtime.d.ts +100 -0
  1417. package/lib/typescript/module/src/backends/bluez/bluez-backend-runtime.d.ts.map +1 -0
  1418. package/lib/typescript/module/src/backends/bluez/bluez-backend.d.ts +30 -0
  1419. package/lib/typescript/module/src/backends/bluez/bluez-backend.d.ts.map +1 -0
  1420. package/lib/typescript/module/src/backends/bluez/bluez-dbus-contract.d.ts +92 -0
  1421. package/lib/typescript/module/src/backends/bluez/bluez-dbus-contract.d.ts.map +1 -0
  1422. package/lib/typescript/module/src/backends/bluez/bluez-dbus-next-boundary.d.ts +6 -0
  1423. package/lib/typescript/module/src/backends/bluez/bluez-dbus-next-boundary.d.ts.map +1 -0
  1424. package/lib/typescript/module/src/backends/bluez/bluez-gatt-operations.d.ts +12 -0
  1425. package/lib/typescript/module/src/backends/bluez/bluez-gatt-operations.d.ts.map +1 -0
  1426. package/lib/typescript/module/src/backends/bluez/bluez-object-store.d.ts +45 -0
  1427. package/lib/typescript/module/src/backends/bluez/bluez-object-store.d.ts.map +1 -0
  1428. package/lib/typescript/module/src/backends/bluez/bluez-operation-dispatcher.d.ts +13 -0
  1429. package/lib/typescript/module/src/backends/bluez/bluez-operation-dispatcher.d.ts.map +1 -0
  1430. package/lib/typescript/module/src/backends/bluez/bluez-property-waiters.d.ts +11 -0
  1431. package/lib/typescript/module/src/backends/bluez/bluez-property-waiters.d.ts.map +1 -0
  1432. package/lib/typescript/module/src/backends/bluez/bluez-runtime-models.d.ts +22 -0
  1433. package/lib/typescript/module/src/backends/bluez/bluez-runtime-models.d.ts.map +1 -0
  1434. package/lib/typescript/module/src/backends/bluez/bluez-runtime-types.d.ts +100 -0
  1435. package/lib/typescript/module/src/backends/bluez/bluez-runtime-types.d.ts.map +1 -0
  1436. package/lib/typescript/module/src/backends/bluez/bluez-scan-runtime.d.ts +11 -0
  1437. package/lib/typescript/module/src/backends/bluez/bluez-scan-runtime.d.ts.map +1 -0
  1438. package/lib/typescript/module/src/backends/bluez/bluez-subscription-runtime.d.ts +11 -0
  1439. package/lib/typescript/module/src/backends/bluez/bluez-subscription-runtime.d.ts.map +1 -0
  1440. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-backend.d.ts +121 -0
  1441. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-backend.d.ts.map +1 -0
  1442. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-boundary.d.ts +61 -0
  1443. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-boundary.d.ts.map +1 -0
  1444. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-connection-controls.d.ts +13 -0
  1445. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-connection-controls.d.ts.map +1 -0
  1446. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-gatt-operations.d.ts +27 -0
  1447. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-gatt-operations.d.ts.map +1 -0
  1448. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-handles.d.ts +91 -0
  1449. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-handles.d.ts.map +1 -0
  1450. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-identity.d.ts +13 -0
  1451. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-identity.d.ts.map +1 -0
  1452. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-operation-dispatcher.d.ts +15 -0
  1453. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-operation-dispatcher.d.ts.map +1 -0
  1454. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-operation-lifecycle.d.ts +10 -0
  1455. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-operation-lifecycle.d.ts.map +1 -0
  1456. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-provider.d.ts +15 -0
  1457. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-provider.d.ts.map +1 -0
  1458. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-stream-limits.d.ts +11 -0
  1459. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-stream-limits.d.ts.map +1 -0
  1460. package/lib/typescript/module/src/backends/reactnative/react-native-android-provider.d.ts +23 -0
  1461. package/lib/typescript/module/src/backends/reactnative/react-native-android-provider.d.ts.map +1 -0
  1462. package/lib/typescript/module/src/backends/reactnative/react-native-apple-provider.d.ts +20 -0
  1463. package/lib/typescript/module/src/backends/reactnative/react-native-apple-provider.d.ts.map +1 -0
  1464. package/lib/typescript/module/src/backends/winrt/winrt-adapter-state.d.ts +6 -0
  1465. package/lib/typescript/module/src/backends/winrt/winrt-adapter-state.d.ts.map +1 -0
  1466. package/lib/typescript/module/src/backends/winrt/winrt-backend-helpers.d.ts +24 -0
  1467. package/lib/typescript/module/src/backends/winrt/winrt-backend-helpers.d.ts.map +1 -0
  1468. package/lib/typescript/module/src/backends/winrt/winrt-backend.d.ts +114 -0
  1469. package/lib/typescript/module/src/backends/winrt/winrt-backend.d.ts.map +1 -0
  1470. package/lib/typescript/module/src/backends/winrt/winrt-boundary.d.ts +96 -0
  1471. package/lib/typescript/module/src/backends/winrt/winrt-boundary.d.ts.map +1 -0
  1472. package/lib/typescript/module/src/backends/winrt/winrt-gatt-operations.d.ts +36 -0
  1473. package/lib/typescript/module/src/backends/winrt/winrt-gatt-operations.d.ts.map +1 -0
  1474. package/lib/typescript/module/src/backends/winrt/winrt-handles.d.ts +84 -0
  1475. package/lib/typescript/module/src/backends/winrt/winrt-handles.d.ts.map +1 -0
  1476. package/lib/typescript/module/src/backends/winrt/winrt-operation-dispatcher.d.ts +26 -0
  1477. package/lib/typescript/module/src/backends/winrt/winrt-operation-dispatcher.d.ts.map +1 -0
  1478. package/lib/typescript/module/src/backends/winrt/winrt-provider.d.ts +17 -0
  1479. package/lib/typescript/module/src/backends/winrt/winrt-provider.d.ts.map +1 -0
  1480. package/lib/typescript/module/src/backends/winrt/winrt-subscription-runtime.d.ts +14 -0
  1481. package/lib/typescript/module/src/backends/winrt/winrt-subscription-runtime.d.ts.map +1 -0
  1482. package/lib/typescript/module/src/cli-json.d.ts +8 -0
  1483. package/lib/typescript/module/src/cli-json.d.ts.map +1 -0
  1484. package/lib/typescript/module/src/cli.d.ts +31 -0
  1485. package/lib/typescript/module/src/cli.d.ts.map +1 -0
  1486. package/lib/typescript/module/src/codecs-primitives.d.ts +5 -0
  1487. package/lib/typescript/module/src/codecs-primitives.d.ts.map +1 -0
  1488. package/lib/typescript/module/src/codecs.d.ts +7 -0
  1489. package/lib/typescript/module/src/codecs.d.ts.map +1 -0
  1490. package/lib/typescript/module/src/core/aggregate-stream-quota.d.ts +17 -0
  1491. package/lib/typescript/module/src/core/aggregate-stream-quota.d.ts.map +1 -0
  1492. package/lib/typescript/module/src/core/bounded-stream.d.ts +69 -0
  1493. package/lib/typescript/module/src/core/bounded-stream.d.ts.map +1 -0
  1494. package/lib/typescript/module/src/core/core-adapter-state.d.ts +5 -0
  1495. package/lib/typescript/module/src/core/core-adapter-state.d.ts.map +1 -0
  1496. package/lib/typescript/module/src/core/core-characteristic-operations.d.ts +12 -0
  1497. package/lib/typescript/module/src/core/core-characteristic-operations.d.ts.map +1 -0
  1498. package/lib/typescript/module/src/core/core-connection-controls.d.ts +14 -0
  1499. package/lib/typescript/module/src/core/core-connection-controls.d.ts.map +1 -0
  1500. package/lib/typescript/module/src/core/core-descriptor-operations.d.ts +12 -0
  1501. package/lib/typescript/module/src/core/core-descriptor-operations.d.ts.map +1 -0
  1502. package/lib/typescript/module/src/core/core-discovery.d.ts +9 -0
  1503. package/lib/typescript/module/src/core/core-discovery.d.ts.map +1 -0
  1504. package/lib/typescript/module/src/core/core-gatt-handles.d.ts +67 -0
  1505. package/lib/typescript/module/src/core/core-gatt-handles.d.ts.map +1 -0
  1506. package/lib/typescript/module/src/core/core-lifecycle-observer.d.ts +14 -0
  1507. package/lib/typescript/module/src/core/core-lifecycle-observer.d.ts.map +1 -0
  1508. package/lib/typescript/module/src/core/gatt-path-equality.d.ts +7 -0
  1509. package/lib/typescript/module/src/core/gatt-path-equality.d.ts.map +1 -0
  1510. package/lib/typescript/module/src/core/index.d.ts +11 -0
  1511. package/lib/typescript/module/src/core/index.d.ts.map +1 -0
  1512. package/lib/typescript/module/src/core/operation-coordinator.d.ts +87 -0
  1513. package/lib/typescript/module/src/core/operation-coordinator.d.ts.map +1 -0
  1514. package/lib/typescript/module/src/core/resource-ledger.d.ts +26 -0
  1515. package/lib/typescript/module/src/core/resource-ledger.d.ts.map +1 -0
  1516. package/lib/typescript/module/src/core/subscription-registry.d.ts +77 -0
  1517. package/lib/typescript/module/src/core/subscription-registry.d.ts.map +1 -0
  1518. package/lib/typescript/module/src/core/trace-recorder.d.ts +39 -0
  1519. package/lib/typescript/module/src/core/trace-recorder.d.ts.map +1 -0
  1520. package/lib/typescript/module/src/core/unified-ble-core-helpers.d.ts +32 -0
  1521. package/lib/typescript/module/src/core/unified-ble-core-helpers.d.ts.map +1 -0
  1522. package/lib/typescript/module/src/core/unified-ble-core.d.ts +101 -0
  1523. package/lib/typescript/module/src/core/unified-ble-core.d.ts.map +1 -0
  1524. package/lib/typescript/module/src/diagnostics/trace-format.d.ts +39 -0
  1525. package/lib/typescript/module/src/diagnostics/trace-format.d.ts.map +1 -0
  1526. package/lib/typescript/module/src/discovery/deviceSort.d.ts +23 -0
  1527. package/lib/typescript/module/src/discovery/deviceSort.d.ts.map +1 -0
  1528. package/lib/typescript/module/src/discovery/filters.d.ts +97 -0
  1529. package/lib/typescript/module/src/discovery/filters.d.ts.map +1 -0
  1530. package/lib/typescript/module/src/discovery/index.d.ts +6 -0
  1531. package/lib/typescript/module/src/discovery/index.d.ts.map +1 -0
  1532. package/lib/typescript/module/src/discovery/uuidMatch.d.ts +29 -0
  1533. package/lib/typescript/module/src/discovery/uuidMatch.d.ts.map +1 -0
  1534. package/lib/typescript/module/src/electron/main-binding.d.ts +48 -0
  1535. package/lib/typescript/module/src/electron/main-binding.d.ts.map +1 -0
  1536. package/lib/typescript/module/src/electron/main-router.d.ts +69 -0
  1537. package/lib/typescript/module/src/electron/main-router.d.ts.map +1 -0
  1538. package/lib/typescript/module/src/electron/main.d.ts +3 -0
  1539. package/lib/typescript/module/src/electron/main.d.ts.map +1 -0
  1540. package/lib/typescript/module/src/electron/protocol.d.ts +73 -0
  1541. package/lib/typescript/module/src/electron/protocol.d.ts.map +1 -0
  1542. package/lib/typescript/module/src/electron/renderer-stream-registry.d.ts +46 -0
  1543. package/lib/typescript/module/src/electron/renderer-stream-registry.d.ts.map +1 -0
  1544. package/lib/typescript/module/src/electron/renderer.d.ts +29 -0
  1545. package/lib/typescript/module/src/electron/renderer.d.ts.map +1 -0
  1546. package/lib/typescript/module/src/electron-main.d.ts +14 -0
  1547. package/lib/typescript/module/src/electron-main.d.ts.map +1 -0
  1548. package/lib/typescript/module/src/electron-renderer.d.ts +3 -0
  1549. package/lib/typescript/module/src/electron-renderer.d.ts.map +1 -0
  1550. package/lib/typescript/module/src/encoding.d.ts +13 -0
  1551. package/lib/typescript/module/src/encoding.d.ts.map +1 -0
  1552. package/lib/typescript/module/src/helpers/central.d.ts +66 -0
  1553. package/lib/typescript/module/src/helpers/central.d.ts.map +1 -0
  1554. package/lib/typescript/module/src/helpers/errors.d.ts +12 -0
  1555. package/lib/typescript/module/src/helpers/errors.d.ts.map +1 -0
  1556. package/lib/typescript/module/src/helpers/index.d.ts +9 -0
  1557. package/lib/typescript/module/src/helpers/index.d.ts.map +1 -0
  1558. package/lib/typescript/module/src/helpers/types.d.ts +122 -0
  1559. package/lib/typescript/module/src/helpers/types.d.ts.map +1 -0
  1560. package/lib/typescript/module/src/hosts/electron.d.ts +78 -0
  1561. package/lib/typescript/module/src/hosts/electron.d.ts.map +1 -0
  1562. package/lib/typescript/module/src/hosts/native/bluez/BluezBlePort.d.ts +79 -0
  1563. package/lib/typescript/module/src/hosts/native/bluez/BluezBlePort.d.ts.map +1 -0
  1564. package/lib/typescript/module/src/hosts/native/corebluetooth/CoreBluetoothBlePort.d.ts +20 -0
  1565. package/lib/typescript/module/src/hosts/native/corebluetooth/CoreBluetoothBlePort.d.ts.map +1 -0
  1566. package/lib/typescript/module/src/hosts/native/winrt/WinRtBlePort.d.ts +18 -0
  1567. package/lib/typescript/module/src/hosts/native/winrt/WinRtBlePort.d.ts.map +1 -0
  1568. package/lib/typescript/module/src/hosts/node.d.ts +20 -0
  1569. package/lib/typescript/module/src/hosts/node.d.ts.map +1 -0
  1570. package/lib/typescript/module/src/hosts/web.d.ts +258 -0
  1571. package/lib/typescript/module/src/hosts/web.d.ts.map +1 -0
  1572. package/lib/typescript/module/src/index.d.ts +23 -0
  1573. package/lib/typescript/module/src/index.d.ts.map +1 -0
  1574. package/lib/typescript/module/src/longWrite.d.ts +25 -0
  1575. package/lib/typescript/module/src/longWrite.d.ts.map +1 -0
  1576. package/lib/typescript/module/src/manager/ble-manager.d.ts +121 -0
  1577. package/lib/typescript/module/src/manager/ble-manager.d.ts.map +1 -0
  1578. package/lib/typescript/module/src/manager/index.d.ts +5 -0
  1579. package/lib/typescript/module/src/manager/index.d.ts.map +1 -0
  1580. package/lib/typescript/module/src/manager/manager-ownership-authority.d.ts +64 -0
  1581. package/lib/typescript/module/src/manager/manager-ownership-authority.d.ts.map +1 -0
  1582. package/lib/typescript/module/src/native-protocol/generated/native-protocol-v1-schema.d.ts +41 -0
  1583. package/lib/typescript/module/src/native-protocol/generated/native-protocol-v1-schema.d.ts.map +1 -0
  1584. package/lib/typescript/module/src/native-protocol/rn-android-boundary.d.ts +66 -0
  1585. package/lib/typescript/module/src/native-protocol/rn-android-boundary.d.ts.map +1 -0
  1586. package/lib/typescript/module/src/native-protocol/rn-android-protocol-records.d.ts +31 -0
  1587. package/lib/typescript/module/src/native-protocol/rn-android-protocol-records.d.ts.map +1 -0
  1588. package/lib/typescript/module/src/native-protocol/rn-apple-boundary.d.ts +7 -0
  1589. package/lib/typescript/module/src/native-protocol/rn-apple-boundary.d.ts.map +1 -0
  1590. package/lib/typescript/module/src/native-protocol/rn-jsi-binary-runtime.d.ts +33 -0
  1591. package/lib/typescript/module/src/native-protocol/rn-jsi-binary-runtime.d.ts.map +1 -0
  1592. package/lib/typescript/module/src/native-protocol/v1-codec.d.ts +15 -0
  1593. package/lib/typescript/module/src/native-protocol/v1-codec.d.ts.map +1 -0
  1594. package/lib/typescript/module/src/node-bluez.d.ts +13 -0
  1595. package/lib/typescript/module/src/node-bluez.d.ts.map +1 -0
  1596. package/lib/typescript/module/src/node-corebluetooth.d.ts +13 -0
  1597. package/lib/typescript/module/src/node-corebluetooth.d.ts.map +1 -0
  1598. package/lib/typescript/module/src/node-winrt.d.ts +13 -0
  1599. package/lib/typescript/module/src/node-winrt.d.ts.map +1 -0
  1600. package/lib/typescript/module/src/permissions.d.ts +43 -0
  1601. package/lib/typescript/module/src/permissions.d.ts.map +1 -0
  1602. package/lib/typescript/module/src/port/BlePort.d.ts +161 -0
  1603. package/lib/typescript/module/src/port/BlePort.d.ts.map +1 -0
  1604. package/lib/typescript/module/src/port/PortBleManager.d.ts +156 -0
  1605. package/lib/typescript/module/src/port/PortBleManager.d.ts.map +1 -0
  1606. package/lib/typescript/module/src/profiles/battery-service.d.ts +8 -0
  1607. package/lib/typescript/module/src/profiles/battery-service.d.ts.map +1 -0
  1608. package/lib/typescript/module/src/profiles/battery.d.ts +34 -0
  1609. package/lib/typescript/module/src/profiles/battery.d.ts.map +1 -0
  1610. package/lib/typescript/module/src/profiles/blood-pressure.d.ts +21 -0
  1611. package/lib/typescript/module/src/profiles/blood-pressure.d.ts.map +1 -0
  1612. package/lib/typescript/module/src/profiles/bloodPressure.d.ts +74 -0
  1613. package/lib/typescript/module/src/profiles/bloodPressure.d.ts.map +1 -0
  1614. package/lib/typescript/module/src/profiles/bytes.d.ts +10 -0
  1615. package/lib/typescript/module/src/profiles/bytes.d.ts.map +1 -0
  1616. package/lib/typescript/module/src/profiles/commands.d.ts +30 -0
  1617. package/lib/typescript/module/src/profiles/commands.d.ts.map +1 -0
  1618. package/lib/typescript/module/src/profiles/date-time.d.ts +10 -0
  1619. package/lib/typescript/module/src/profiles/date-time.d.ts.map +1 -0
  1620. package/lib/typescript/module/src/profiles/device-information.d.ts +24 -0
  1621. package/lib/typescript/module/src/profiles/device-information.d.ts.map +1 -0
  1622. package/lib/typescript/module/src/profiles/deviceInformation.d.ts +109 -0
  1623. package/lib/typescript/module/src/profiles/deviceInformation.d.ts.map +1 -0
  1624. package/lib/typescript/module/src/profiles/errors.d.ts +11 -0
  1625. package/lib/typescript/module/src/profiles/errors.d.ts.map +1 -0
  1626. package/lib/typescript/module/src/profiles/health-thermometer.d.ts +17 -0
  1627. package/lib/typescript/module/src/profiles/health-thermometer.d.ts.map +1 -0
  1628. package/lib/typescript/module/src/profiles/healthThermometer.d.ts +73 -0
  1629. package/lib/typescript/module/src/profiles/healthThermometer.d.ts.map +1 -0
  1630. package/lib/typescript/module/src/profiles/heart-rate.d.ts +20 -0
  1631. package/lib/typescript/module/src/profiles/heart-rate.d.ts.map +1 -0
  1632. package/lib/typescript/module/src/profiles/heartRate.d.ts +129 -0
  1633. package/lib/typescript/module/src/profiles/heartRate.d.ts.map +1 -0
  1634. package/lib/typescript/module/src/profiles/identifiers.d.ts +26 -0
  1635. package/lib/typescript/module/src/profiles/identifiers.d.ts.map +1 -0
  1636. package/lib/typescript/module/src/profiles/ieee-11073.d.ts +15 -0
  1637. package/lib/typescript/module/src/profiles/ieee-11073.d.ts.map +1 -0
  1638. package/lib/typescript/module/src/profiles/ieee11073.d.ts +80 -0
  1639. package/lib/typescript/module/src/profiles/ieee11073.d.ts.map +1 -0
  1640. package/lib/typescript/module/src/profiles/index.d.ts +21 -0
  1641. package/lib/typescript/module/src/profiles/index.d.ts.map +1 -0
  1642. package/lib/typescript/module/src/profiles/serviceHelpers.d.ts +48 -0
  1643. package/lib/typescript/module/src/profiles/serviceHelpers.d.ts.map +1 -0
  1644. package/lib/typescript/module/src/profiles/standard-commands.d.ts +21 -0
  1645. package/lib/typescript/module/src/profiles/standard-commands.d.ts.map +1 -0
  1646. package/lib/typescript/module/src/profiles/types.d.ts +32 -0
  1647. package/lib/typescript/module/src/profiles/types.d.ts.map +1 -0
  1648. package/lib/typescript/module/src/react-native-manager.d.ts +19 -0
  1649. package/lib/typescript/module/src/react-native-manager.d.ts.map +1 -0
  1650. package/lib/typescript/module/src/react-native.d.ts +15 -0
  1651. package/lib/typescript/module/src/react-native.d.ts.map +1 -0
  1652. package/lib/typescript/module/src/stringUtils.d.ts +8 -0
  1653. package/lib/typescript/module/src/stringUtils.d.ts.map +1 -0
  1654. package/lib/typescript/module/src/supports.d.ts +13 -0
  1655. package/lib/typescript/module/src/supports.d.ts.map +1 -0
  1656. package/lib/typescript/module/src/tck/contracts.d.ts +132 -0
  1657. package/lib/typescript/module/src/tck/contracts.d.ts.map +1 -0
  1658. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-factory.d.ts +9 -0
  1659. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-factory.d.ts.map +1 -0
  1660. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-identity.d.ts +9 -0
  1661. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-identity.d.ts.map +1 -0
  1662. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-lifecycle-diagnostics.d.ts +8 -0
  1663. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-lifecycle-diagnostics.d.ts.map +1 -0
  1664. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-manager-ownership.d.ts +4 -0
  1665. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-manager-ownership.d.ts.map +1 -0
  1666. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-scenario-helpers.d.ts +56 -0
  1667. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-scenario-helpers.d.ts.map +1 -0
  1668. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-scenarios.d.ts +14 -0
  1669. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-scenarios.d.ts.map +1 -0
  1670. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-subscription-overflow.d.ts +5 -0
  1671. package/lib/typescript/module/src/tck/deterministic/deterministic-tck-subscription-overflow.d.ts.map +1 -0
  1672. package/lib/typescript/module/src/tck/index.d.ts +6 -0
  1673. package/lib/typescript/module/src/tck/index.d.ts.map +1 -0
  1674. package/lib/typescript/module/src/tck/runner.d.ts +10 -0
  1675. package/lib/typescript/module/src/tck/runner.d.ts.map +1 -0
  1676. package/lib/typescript/module/src/tck/scenario-adapter.d.ts +19 -0
  1677. package/lib/typescript/module/src/tck/scenario-adapter.d.ts.map +1 -0
  1678. package/lib/typescript/module/src/tck/scenarios.d.ts +4 -0
  1679. package/lib/typescript/module/src/tck/scenarios.d.ts.map +1 -0
  1680. package/lib/typescript/module/src/testing/deterministic/deterministic-backend-base.d.ts +118 -0
  1681. package/lib/typescript/module/src/testing/deterministic/deterministic-backend-base.d.ts.map +1 -0
  1682. package/lib/typescript/module/src/testing/deterministic/deterministic-operation-admission.d.ts +5 -0
  1683. package/lib/typescript/module/src/testing/deterministic/deterministic-operation-admission.d.ts.map +1 -0
  1684. package/lib/typescript/module/src/testing/deterministic/deterministic-operation-runtime.d.ts +52 -0
  1685. package/lib/typescript/module/src/testing/deterministic/deterministic-operation-runtime.d.ts.map +1 -0
  1686. package/lib/typescript/module/src/testing/deterministic/deterministic-stream.d.ts +65 -0
  1687. package/lib/typescript/module/src/testing/deterministic/deterministic-stream.d.ts.map +1 -0
  1688. package/lib/typescript/module/src/testing/deterministic/deterministic-subscription-lifecycle.d.ts +22 -0
  1689. package/lib/typescript/module/src/testing/deterministic/deterministic-subscription-lifecycle.d.ts.map +1 -0
  1690. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend-controller.d.ts +25 -0
  1691. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend-controller.d.ts.map +1 -0
  1692. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend-gatt.d.ts +15 -0
  1693. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend-gatt.d.ts.map +1 -0
  1694. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend-handles.d.ts +109 -0
  1695. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend-handles.d.ts.map +1 -0
  1696. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend-lifecycle-helpers.d.ts +48 -0
  1697. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend-lifecycle-helpers.d.ts.map +1 -0
  1698. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend.d.ts +71 -0
  1699. package/lib/typescript/module/src/testing/deterministic/deterministic-test-backend.d.ts.map +1 -0
  1700. package/lib/typescript/module/src/testing/deterministic/virtual-clock.d.ts +22 -0
  1701. package/lib/typescript/module/src/testing/deterministic/virtual-clock.d.ts.map +1 -0
  1702. package/lib/typescript/module/src/testing/deterministic/virtual-peripheral.d.ts +76 -0
  1703. package/lib/typescript/module/src/testing/deterministic/virtual-peripheral.d.ts.map +1 -0
  1704. package/lib/typescript/module/src/testing/scenarios/deterministic-manager-scenario-factory.d.ts +4 -0
  1705. package/lib/typescript/module/src/testing/scenarios/deterministic-manager-scenario-factory.d.ts.map +1 -0
  1706. package/lib/typescript/module/src/testing/scenarios/manager-scenario-executor.d.ts +33 -0
  1707. package/lib/typescript/module/src/testing/scenarios/manager-scenario-executor.d.ts.map +1 -0
  1708. package/lib/typescript/module/src/testing/scenarios/manager-scenario-fixture.d.ts +19 -0
  1709. package/lib/typescript/module/src/testing/scenarios/manager-scenario-fixture.d.ts.map +1 -0
  1710. package/lib/typescript/module/src/testing/scenarios/manager-scenarios.d.ts +60 -0
  1711. package/lib/typescript/module/src/testing/scenarios/manager-scenarios.d.ts.map +1 -0
  1712. package/lib/typescript/module/src/testing.d.ts +22 -0
  1713. package/lib/typescript/module/src/testing.d.ts.map +1 -0
  1714. package/lib/typescript/module/src/unsupported.d.ts +12 -0
  1715. package/lib/typescript/module/src/unsupported.d.ts.map +1 -0
  1716. package/lib/typescript/module/src/web/navigator-web-bluetooth-boundary.d.ts +95 -0
  1717. package/lib/typescript/module/src/web/navigator-web-bluetooth-boundary.d.ts.map +1 -0
  1718. package/lib/typescript/module/src/web/web-bluetooth-backend.d.ts +99 -0
  1719. package/lib/typescript/module/src/web/web-bluetooth-backend.d.ts.map +1 -0
  1720. package/lib/typescript/module/src/web/web-bluetooth-boundary.d.ts +78 -0
  1721. package/lib/typescript/module/src/web/web-bluetooth-boundary.d.ts.map +1 -0
  1722. package/lib/typescript/module/src/web/web-bluetooth-errors.d.ts +13 -0
  1723. package/lib/typescript/module/src/web/web-bluetooth-errors.d.ts.map +1 -0
  1724. package/lib/typescript/module/src/web/web-bluetooth-gatt.d.ts +62 -0
  1725. package/lib/typescript/module/src/web/web-bluetooth-gatt.d.ts.map +1 -0
  1726. package/lib/typescript/module/src/web/web-bluetooth-handles.d.ts +124 -0
  1727. package/lib/typescript/module/src/web/web-bluetooth-handles.d.ts.map +1 -0
  1728. package/lib/typescript/module/src/web/web-bluetooth-tck.d.ts +33 -0
  1729. package/lib/typescript/module/src/web/web-bluetooth-tck.d.ts.map +1 -0
  1730. package/lib/typescript/module/src/web/web-feature-registry.d.ts +3 -0
  1731. package/lib/typescript/module/src/web/web-feature-registry.d.ts.map +1 -0
  1732. package/lib/typescript/module/src/web.d.ts +10 -0
  1733. package/lib/typescript/module/src/web.d.ts.map +1 -0
  1734. package/native/electron/bluez/index.js +9 -0
  1735. package/native/electron/corebluetooth/binding.gyp +42 -0
  1736. package/native/electron/corebluetooth/index.js +517 -0
  1737. package/native/electron/corebluetooth/src/addon.mm +1768 -0
  1738. package/native/electron/corebluetooth/src/addon_stub.cc +19 -0
  1739. package/native/electron/winrt/binding.gyp +22 -0
  1740. package/native/electron/winrt/index.js +17 -0
  1741. package/native/electron/winrt/src/addon.cpp +865 -0
  1742. package/native/electron/winrt/src/winrt-boundary.inc +491 -0
  1743. package/native/protocol/CMakeLists.txt +85 -0
  1744. package/native/protocol/generated/NativeProtocolV1Schema.hpp +419 -0
  1745. package/native/protocol/include/NativeProtocolControlRuntime.hpp +83 -0
  1746. package/native/protocol/include/NativeProtocolV1Codec.hpp +99 -0
  1747. package/native/protocol/include/NativeProtocolV1Registry.hpp +153 -0
  1748. package/native/protocol/include/OwnedBinaryPayloadStore.hpp +56 -0
  1749. package/native/protocol/include/OwnedJsiBinaryTransport.hpp +45 -0
  1750. package/native/protocol/schema/native-protocol-v1-abi.json +68 -0
  1751. package/native/protocol/schema/native-protocol-v1.json +359 -0
  1752. package/native/protocol/src/NativeProtocolControlRuntime.cpp +567 -0
  1753. package/native/protocol/src/NativeProtocolV1Codec.cpp +760 -0
  1754. package/native/protocol/src/NativeProtocolV1Registry.cpp +331 -0
  1755. package/native/protocol/src/OwnedBinaryPayloadStore.cpp +140 -0
  1756. package/native/protocol/src/OwnedJsiBinaryTransport.cpp +112 -0
  1757. package/package.json +488 -0
  1758. package/plugin/build/debugLog.d.ts +2 -0
  1759. package/plugin/build/debugLog.js +18 -0
  1760. package/plugin/build/withBLE.d.ts +18 -0
  1761. package/plugin/build/withBLE.js +75 -0
  1762. package/plugin/build/withBLEAndroidForegroundService.d.ts +40 -0
  1763. package/plugin/build/withBLEAndroidForegroundService.js +233 -0
  1764. package/plugin/build/withBLEAndroidManifest.d.ts +44 -0
  1765. package/plugin/build/withBLEAndroidManifest.js +89 -0
  1766. package/plugin/build/withBLEBackgroundModes.d.ts +9 -0
  1767. package/plugin/build/withBLEBackgroundModes.js +37 -0
  1768. package/plugin/build/withBLEDebugLogging.d.ts +19 -0
  1769. package/plugin/build/withBLEDebugLogging.js +54 -0
  1770. package/plugin/build/withBLERestorationPodfile.d.ts +27 -0
  1771. package/plugin/build/withBLERestorationPodfile.js +214 -0
  1772. package/plugin/build/withBluetoothPermissions.d.ts +4 -0
  1773. package/plugin/build/withBluetoothPermissions.js +13 -0
  1774. package/unified-ble-manager.podspec +87 -0
package/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2016 Polidea
190
+ Copyright 2021 intent sp. z o.o.
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,46 @@
1
+ <!-- MIGRATION_4.0.md -->
2
+
3
+ # Migration to `unified-ble-manager` 4.0
4
+
5
+ **Status:** migration boundary; no released 4.0 API instructions yet
6
+
7
+ **Architecture and sequencing authority:** [`docs/UNIFIED_BLE_4.0_IMPLEMENTATION_PLAN.md`](docs/UNIFIED_BLE_4.0_IMPLEMENTATION_PLAN.md)
8
+
9
+ `unified-ble-manager@4.0.0` is a new package with no existing consumers. It is not a source-compatible rename of `@sfourdrinier/react-native-ble-plx`, and it does not promise a compatibility shim or a zero-change upgrade from a 3.x API.
10
+
11
+ ## What will change
12
+
13
+ The released 4.0 contract will converge on:
14
+
15
+ - one public manager/core/backend-contract architecture;
16
+ - `Uint8Array` public and backend payloads, with Base64 only as an explicit codec helper;
17
+ - `AbortSignal` public cancellation;
18
+ - typed runtime capabilities tied to instantiated backend implementations;
19
+ - explicit host subpaths and versioned native/Electron protocols;
20
+ - generation-bound handles, normalized errors, and bounded streams.
21
+
22
+ The old Base64 APIs, `*AsBytes`/`*FromBytes` parallel families, public transaction IDs, static host matrices, `BlePort`/`PortBleManager` architecture, Noble wrappers, and scoped-name shim are transitional source inputs. They are not supported 4.0 migration targets.
23
+
24
+ ## Current state versus target
25
+
26
+ The current repository includes 3.x-style source, examples, tests, and documentation. Those materials characterize behavior that Phase 0 audits must preserve where it is radio-proven, but they are not a published 4.0 package or contract. Do not install unreleased package names, copy current transitional examples, or build an application integration around them.
27
+
28
+ The current released 3.x package and its documentation remain separate historical/current-release material. Continue using the released 3.x instructions until an actual 4.0 release has completed the plan's public API, package, evidence, and release gates.
29
+
30
+ ## Future migration process
31
+
32
+ After contract v1 and the public API are frozen, the release will publish:
33
+
34
+ 1. a versioned migration guide with exact import, construction, lifecycle, capability, cancellation, and bytes-codec changes;
35
+ 2. complete examples tested against the packed artifact;
36
+ 3. backend-specific capability/evidence limitations;
37
+ 4. a deletion statement confirming that no legacy API, shim, or dual data contract remains in the artifact.
38
+
39
+ No compatibility path may be introduced without explicit maintainer approval, an owner, a deletion condition, and tests. `bun-mono` will migrate as a proving consumer after the public contract is independently validated; its product abstractions must not shape the package API.
40
+
41
+ ## Related records
42
+
43
+ - [`ROADMAP.4.0.md`](ROADMAP.4.0.md) — product scope
44
+ - [`docs/UNIFIED_BLE_4.0_IMPLEMENTATION_PLAN.md`](docs/UNIFIED_BLE_4.0_IMPLEMENTATION_PLAN.md) — controlling architecture and sequence
45
+ - [`docs/GAPS.4.0.md`](docs/GAPS.4.0.md) — proof inventory
46
+ - [`RELEASE.md`](RELEASE.md) — publication gate