@blueid/access-react-native 1.9.0 → 1.18.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.
- package/frameworks/CBlueIDAccess.xcframework/Info.plist +6 -6
- package/frameworks/CBlueIDAccess.xcframework/ios-arm64/Headers/core/BlueCore.h +1 -1
- package/frameworks/CBlueIDAccess.xcframework/ios-arm64/libCBlueIDAccess.a +0 -0
- package/frameworks/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/Headers/core/BlueCore.h +1 -1
- package/frameworks/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/libCBlueIDAccess.a +0 -0
- package/frameworks/CBlueIDAccess.xcframework/macos-arm64_x86_64/Headers/core/BlueCore.h +1 -1
- package/frameworks/CBlueIDAccess.xcframework/macos-arm64_x86_64/libCBlueIDAccess.a +0 -0
- package/ios/BlueIDAccessSDK/BlueAPI.swift +7 -0
- package/ios/BlueIDAccessSDK/BlueAPIProtocol.swift +22 -0
- package/ios/BlueIDAccessSDK/BlueCore.pb.swift +9 -1
- package/ios/BlueIDAccessSDK/BlueDevices.swift +11 -25
- package/ios/BlueIDAccessSDK/BlueDevicesList.swift +89 -0
- package/ios/BlueIDAccessSDK/BlueSDK.pb.swift +18 -2
- package/ios/BlueIDAccessSDK/BlueSPTransponder.swift +1 -3
- package/ios/BlueIDAccessSDK/BlueSystem.pb.swift +185 -3
- package/ios/BlueIDAccessSDK/BlueSystem.swift +43 -17
- package/lib/commonjs/BlueSystem_pb.js +43 -1
- package/lib/commonjs/BlueSystem_pb.js.map +1 -1
- package/lib/commonjs/interop.js +0 -3
- package/lib/commonjs/interop.js.map +1 -1
- package/lib/module/BlueSystem_pb.d.js +4 -0
- package/lib/module/BlueSystem_pb.d.js.map +1 -1
- package/lib/module/BlueSystem_pb.js +42 -0
- package/lib/module/BlueSystem_pb.js.map +1 -1
- package/lib/module/interop.js +0 -3
- package/lib/module/interop.js.map +1 -1
- package/lib/typescript/src/BlueSystem_pb.d.ts +4 -0
- package/lib/typescript/src/BlueSystem_pb.d.ts.map +1 -1
- package/lib/typescript/src/interop.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/BlueSystem_pb.d.ts +54 -0
- package/src/BlueSystem_pb.js +16 -0
- package/src/interop.ts +0 -6
package/src/interop.ts
CHANGED
|
@@ -116,8 +116,6 @@ export class BlueIDAccessInterop {
|
|
|
116
116
|
throw new Error("Missing valid command");
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
console.log('Starting command: '+ JSON.stringify(command));
|
|
120
|
-
|
|
121
119
|
const result = await this.runCommandFunc({
|
|
122
120
|
command,
|
|
123
121
|
arg0: encodeArgument(arg0),
|
|
@@ -125,8 +123,6 @@ export class BlueIDAccessInterop {
|
|
|
125
123
|
arg2: encodeArgument(arg2),
|
|
126
124
|
});
|
|
127
125
|
|
|
128
|
-
console.log('Running command with result : '+ JSON.stringify(result));
|
|
129
|
-
|
|
130
126
|
if (!result) {
|
|
131
127
|
return null;
|
|
132
128
|
}
|
|
@@ -135,8 +131,6 @@ export class BlueIDAccessInterop {
|
|
|
135
131
|
return decodeResult(result.messageTypeName, result.data);
|
|
136
132
|
}
|
|
137
133
|
|
|
138
|
-
console.log('result from interop '+ command + ' : ' + JSON.stringify(result.data));
|
|
139
|
-
|
|
140
134
|
return result.data;
|
|
141
135
|
}
|
|
142
136
|
|