@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.
@@ -10,7 +10,7 @@
10
10
  <key>HeadersPath</key>
11
11
  <string>Headers</string>
12
12
  <key>LibraryIdentifier</key>
13
- <string>ios-arm64_x86_64-simulator</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>ios</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>macos-arm64_x86_64</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>macos</string>
55
+ <string>ios</string>
56
+ <key>SupportedPlatformVariant</key>
57
+ <string>simulator</string>
58
58
  </dict>
59
59
  </array>
60
60
  <key>CFBundlePackageType</key>
@@ -120,7 +120,7 @@ public struct BlueGetAccessDevicesCommand: BlueCommand {
120
120
  }
121
121
  }
122
122
 
123
- public class BlueUpdateDeviceConfigurationCommand: BlueAPIAsyncCommand {
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 BlueUpdateDeviceConfigurationCommand(self.blueAPI).runAsync(credentialID: credential.credentialID.id, deviceID: deviceID)
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 updateDeviceConfiguration = BlueUpdateDeviceConfigurationCommand()
80
+ public let synchronizeAccessDevice = BlueSynchronizeAccessDeviceCommand()
81
81
  public let getAccessObjects = BlueGetAccessObjectsCommand()
82
82
  public let claimAccessDevice = BlueClaimAccessDeviceCommand()
83
83
  public let getWritableAccessCredentials = BlueGetWritableAccessCredentialsCommand()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueid/access-capacitor",
3
- "version": "0.81.0",
3
+ "version": "0.83.0",
4
4
  "description": "Capacitor JS plugin for the BlueID Access SDK",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",