Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-ble-manager

Package Overview
Dependencies
Maintainers
1
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-ble-manager - npm Package Compare versions

Comparing version 7.6.1 to 7.6.2

35

index.d.ts

@@ -123,5 +123,38 @@ declare module "react-native-ble-manager" {

export interface PeripheralInfo {
export interface Service {
uuid: string;
}
export interface Descriptor {
value: string;
uuid: string;
}
export interface Characteristic {
// See https://developer.apple.com/documentation/corebluetooth/cbcharacteristicproperties
properties: {
Broadcast?: "Broadcast";
Read?: "Read";
WriteWithoutResponse?: "WriteWithoutResponse";
Write?: "Write";
Notify?: "Notify";
Indicate?: "Indicate";
AuthenticatedSignedWrites?: "AuthenticatedSignedWrites";
ExtendedProperties?: "ExtendedProperties";
NotifyEncryptionRequired?: "NotifyEncryptionRequired";
IndicateEncryptionRequired?: "IndicateEncryptionRequired";
}
characteristic: string;
service: string;
descriptors?: Descriptor[];
}
export interface PeripheralInfo extends Peripheral {
serviceUUIDs?: string[];
characteristics?: Characteristic[];
services?: Service[];
}
export function retrieveServices(

@@ -128,0 +161,0 @@ peripheralID: string,

2

package.json
{
"name": "react-native-ble-manager",
"version": "7.6.1",
"version": "7.6.2",
"description": "A BLE module for react native.",

@@ -5,0 +5,0 @@ "main": "BleManager",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc