react-native-ble-manager 12.1.0 → 12.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ble-manager",
3
- "version": "12.1.0",
3
+ "version": "12.1.2",
4
4
  "description": "A BLE module for react native.",
5
5
  "homepage": "https://innoveit.github.io/react-native-ble-manager/",
6
6
  "repository": {
@@ -94,6 +94,14 @@ export interface Spec extends TurboModule {
94
94
  callback: (error: string | null, data: number[]) => void
95
95
  ): void;
96
96
 
97
+ startNotificationWithBuffer(
98
+ peripheralUUID: string,
99
+ serviceUUID: string,
100
+ characteristicUUID: string,
101
+ bufferLength: number,
102
+ callback: (error: string | null) => void
103
+ ): void;
104
+
97
105
  startNotification(
98
106
  peripheralUUID: string,
99
107
  serviceUUID: string,