@blueid/access-capacitor 0.88.0 → 0.90.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/dist/esm/BlueCore_pb.d.ts +4 -6
- package/dist/esm/BlueCore_pb.js +5 -6
- package/dist/esm/BlueCore_pb.js.map +1 -1
- package/dist/esm/interop.js +2 -1
- package/dist/esm/interop.js.map +1 -1
- package/dist/plugin.cjs.js +7 -7
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +7 -7
- package/dist/plugin.js.map +1 -1
- package/ios/CBlueIDAccess.xcframework/Info.plist +8 -8
- package/ios/CBlueIDAccess.xcframework/ios-arm64/Headers/core/BlueCore.pb.h +27 -26
- package/ios/CBlueIDAccess.xcframework/ios-arm64/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/Headers/core/BlueCore.pb.h +27 -26
- package/ios/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/macos-arm64_x86_64/Headers/core/BlueCore.pb.h +27 -26
- package/ios/CBlueIDAccess.xcframework/macos-arm64_x86_64/libCBlueIDAccess.a +0 -0
- package/ios/Plugin/BlueIDAccessSDK/BlueAccessAPIHelper.swift +9 -2
- package/ios/Plugin/BlueIDAccessSDK/BlueAccessSync.swift +1 -1
- package/ios/Plugin/BlueIDAccessSDK/BlueCore.pb.swift +4 -3
- package/ios/Plugin/BlueIDAccessSDK/BlueError.swift +5 -4
- package/ios/Plugin/BlueIDAccessSDK/BlueKeychain.swift +20 -2
- package/ios/Plugin/BlueIDAccessSDK/BlueNfc.swift +1 -1
- package/ios/Plugin/BlueIDAccessSDK/BlueOssSid.swift +3 -3
- package/ios/Plugin/BlueIDAccessSDK/BlueOssSo.swift +4 -4
- package/ios/Plugin/BlueIDAccessSDK/BlueUtils.swift +1 -1
- package/package.json +1 -1
package/dist/plugin.js
CHANGED
|
@@ -434,6 +434,10 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
434
434
|
* @generated from enum value: SdkFetchDataFailed = -415;
|
|
435
435
|
*/
|
|
436
436
|
BlueReturnCode[BlueReturnCode["SdkFetchDataFailed"] = -415] = "SdkFetchDataFailed";
|
|
437
|
+
/**
|
|
438
|
+
* @generated from enum value: SdkTimeout = -416;
|
|
439
|
+
*/
|
|
440
|
+
BlueReturnCode[BlueReturnCode["SdkTimeout"] = -416] = "SdkTimeout";
|
|
437
441
|
/**
|
|
438
442
|
* @generated from enum value: OssMAReturnCodeStart = -1000;
|
|
439
443
|
*/
|
|
@@ -534,6 +538,7 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
534
538
|
{ no: -413, name: "SdkDecodeBase64Failed" },
|
|
535
539
|
{ no: -414, name: "SdkDecodeJsonFailed" },
|
|
536
540
|
{ no: -415, name: "SdkFetchDataFailed" },
|
|
541
|
+
{ no: -416, name: "SdkTimeout" },
|
|
537
542
|
{ no: -1000, name: "OssMAReturnCodeStart" },
|
|
538
543
|
{ no: -1100, name: "OssMAReturnCodeEnd" },
|
|
539
544
|
]);
|
|
@@ -844,8 +849,6 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
844
849
|
{ no: 200, name: "FullyCharged" },
|
|
845
850
|
]);
|
|
846
851
|
/**
|
|
847
|
-
* Oss So events --
|
|
848
|
-
*
|
|
849
852
|
* @generated from enum BlueEventId
|
|
850
853
|
*/
|
|
851
854
|
exports.BlueEventId = void 0;
|
|
@@ -958,8 +961,6 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
958
961
|
{ no: 15, name: "TerminalOss" },
|
|
959
962
|
]);
|
|
960
963
|
/**
|
|
961
|
-
* Oss So events --
|
|
962
|
-
*
|
|
963
964
|
* @generated from enum BlueEventInfoSystem
|
|
964
965
|
*/
|
|
965
966
|
exports.BlueEventInfoSystem = void 0;
|
|
@@ -979,8 +980,6 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
979
980
|
{ no: 2, name: "SystemConfigured" },
|
|
980
981
|
]);
|
|
981
982
|
/**
|
|
982
|
-
* Oss So events --
|
|
983
|
-
*
|
|
984
983
|
* @generated from enum BlueEventInfoAccess
|
|
985
984
|
*/
|
|
986
985
|
exports.BlueEventInfoAccess = void 0;
|
|
@@ -4136,7 +4135,8 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
4136
4135
|
});
|
|
4137
4136
|
}
|
|
4138
4137
|
else if (typeof result.data === "string" &&
|
|
4139
|
-
result.data.startsWith("message:")
|
|
4138
|
+
result.data.startsWith("message:") &&
|
|
4139
|
+
result.data !== "message:") {
|
|
4140
4140
|
throw new Error(`Missing resultMessageTypeName for action '${request.action}'`);
|
|
4141
4141
|
}
|
|
4142
4142
|
else {
|