@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.
Files changed (33) hide show
  1. package/frameworks/CBlueIDAccess.xcframework/Info.plist +6 -6
  2. package/frameworks/CBlueIDAccess.xcframework/ios-arm64/Headers/core/BlueCore.h +1 -1
  3. package/frameworks/CBlueIDAccess.xcframework/ios-arm64/libCBlueIDAccess.a +0 -0
  4. package/frameworks/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/Headers/core/BlueCore.h +1 -1
  5. package/frameworks/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/libCBlueIDAccess.a +0 -0
  6. package/frameworks/CBlueIDAccess.xcframework/macos-arm64_x86_64/Headers/core/BlueCore.h +1 -1
  7. package/frameworks/CBlueIDAccess.xcframework/macos-arm64_x86_64/libCBlueIDAccess.a +0 -0
  8. package/ios/BlueIDAccessSDK/BlueAPI.swift +7 -0
  9. package/ios/BlueIDAccessSDK/BlueAPIProtocol.swift +22 -0
  10. package/ios/BlueIDAccessSDK/BlueCore.pb.swift +9 -1
  11. package/ios/BlueIDAccessSDK/BlueDevices.swift +11 -25
  12. package/ios/BlueIDAccessSDK/BlueDevicesList.swift +89 -0
  13. package/ios/BlueIDAccessSDK/BlueSDK.pb.swift +18 -2
  14. package/ios/BlueIDAccessSDK/BlueSPTransponder.swift +1 -3
  15. package/ios/BlueIDAccessSDK/BlueSystem.pb.swift +185 -3
  16. package/ios/BlueIDAccessSDK/BlueSystem.swift +43 -17
  17. package/lib/commonjs/BlueSystem_pb.js +43 -1
  18. package/lib/commonjs/BlueSystem_pb.js.map +1 -1
  19. package/lib/commonjs/interop.js +0 -3
  20. package/lib/commonjs/interop.js.map +1 -1
  21. package/lib/module/BlueSystem_pb.d.js +4 -0
  22. package/lib/module/BlueSystem_pb.d.js.map +1 -1
  23. package/lib/module/BlueSystem_pb.js +42 -0
  24. package/lib/module/BlueSystem_pb.js.map +1 -1
  25. package/lib/module/interop.js +0 -3
  26. package/lib/module/interop.js.map +1 -1
  27. package/lib/typescript/src/BlueSystem_pb.d.ts +4 -0
  28. package/lib/typescript/src/BlueSystem_pb.d.ts.map +1 -1
  29. package/lib/typescript/src/interop.d.ts.map +1 -1
  30. package/package.json +1 -1
  31. package/src/BlueSystem_pb.d.ts +54 -0
  32. package/src/BlueSystem_pb.js +16 -0
  33. 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