@blueid/access-capacitor 0.81.0 → 0.83.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/ios/CBlueIDAccess.xcframework/Info.plist +6 -6
- package/ios/CBlueIDAccess.xcframework/ios-arm64/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/macos-arm64_x86_64/libCBlueIDAccess.a +0 -0
- package/ios/Plugin/BlueIDAccessSDK/BlueAccess.swift +2 -2
- package/ios/Plugin/BlueIDAccessSDK/BlueCommands.swift +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<key>HeadersPath</key>
|
|
11
11
|
<string>Headers</string>
|
|
12
12
|
<key>LibraryIdentifier</key>
|
|
13
|
-
<string>
|
|
13
|
+
<string>macos-arm64_x86_64</string>
|
|
14
14
|
<key>LibraryPath</key>
|
|
15
15
|
<string>libCBlueIDAccess.a</string>
|
|
16
16
|
<key>SupportedArchitectures</key>
|
|
@@ -19,9 +19,7 @@
|
|
|
19
19
|
<string>x86_64</string>
|
|
20
20
|
</array>
|
|
21
21
|
<key>SupportedPlatform</key>
|
|
22
|
-
<string>
|
|
23
|
-
<key>SupportedPlatformVariant</key>
|
|
24
|
-
<string>simulator</string>
|
|
22
|
+
<string>macos</string>
|
|
25
23
|
</dict>
|
|
26
24
|
<dict>
|
|
27
25
|
<key>BinaryPath</key>
|
|
@@ -45,7 +43,7 @@
|
|
|
45
43
|
<key>HeadersPath</key>
|
|
46
44
|
<string>Headers</string>
|
|
47
45
|
<key>LibraryIdentifier</key>
|
|
48
|
-
<string>
|
|
46
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
49
47
|
<key>LibraryPath</key>
|
|
50
48
|
<string>libCBlueIDAccess.a</string>
|
|
51
49
|
<key>SupportedArchitectures</key>
|
|
@@ -54,7 +52,9 @@
|
|
|
54
52
|
<string>x86_64</string>
|
|
55
53
|
</array>
|
|
56
54
|
<key>SupportedPlatform</key>
|
|
57
|
-
<string>
|
|
55
|
+
<string>ios</string>
|
|
56
|
+
<key>SupportedPlatformVariant</key>
|
|
57
|
+
<string>simulator</string>
|
|
58
58
|
</dict>
|
|
59
59
|
</array>
|
|
60
60
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -120,7 +120,7 @@ public struct BlueGetAccessDevicesCommand: BlueCommand {
|
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
public class
|
|
123
|
+
public class BlueSynchronizeAccessDeviceCommand: BlueAPIAsyncCommand {
|
|
124
124
|
internal override func runAsync(arg0: Any? = nil, arg1: Any? = nil, arg2: Any? = nil) async throws -> Any? {
|
|
125
125
|
if #available(macOS 10.15, *) {
|
|
126
126
|
return try await runAsync(
|
|
@@ -429,7 +429,7 @@ public class BlueClaimAccessDeviceCommand: BlueAPIAsyncCommand {
|
|
|
429
429
|
|
|
430
430
|
try await BlueSynchronizeMobileAccessCommand(self.blueAPI).runAsync(credentialID: credential.credentialID.id)
|
|
431
431
|
|
|
432
|
-
let status = try await
|
|
432
|
+
let status = try await BlueSynchronizeAccessDeviceCommand(self.blueAPI).runAsync(credentialID: credential.credentialID.id, deviceID: deviceID)
|
|
433
433
|
|
|
434
434
|
blueFireListeners(fireEvent: .accessDeviceClaimed, data: nil)
|
|
435
435
|
|
|
@@ -77,7 +77,7 @@ public struct BlueCommands {
|
|
|
77
77
|
public let synchronizeAccessCredentials = BlueSynchronizeAccessCredentialsCommand()
|
|
78
78
|
public let getAccessDevices = BlueGetAccessDevicesCommand()
|
|
79
79
|
public let listAccessDevices = BlueListAccessDevicesCommand()
|
|
80
|
-
public let
|
|
80
|
+
public let synchronizeAccessDevice = BlueSynchronizeAccessDeviceCommand()
|
|
81
81
|
public let getAccessObjects = BlueGetAccessObjectsCommand()
|
|
82
82
|
public let claimAccessDevice = BlueClaimAccessDeviceCommand()
|
|
83
83
|
public let getWritableAccessCredentials = BlueGetWritableAccessCredentialsCommand()
|