@blueid/access-proto 1.24.0 → 1.27.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/BlueCore.proto CHANGED
@@ -1,5 +1,5 @@
1
1
  syntax = "proto2";
2
-
2
+ option java_package = "blueid.access.sdk.pb";
3
3
  import "nanopb.proto";
4
4
 
5
5
  ///////////////////////////////////////////////////////////////////////
package/BlueLock.proto CHANGED
@@ -1,4 +1,5 @@
1
1
  syntax = "proto2";
2
+ option java_package = "blueid.access.sdk.pb";
2
3
 
3
4
  import "BlueCore.proto";
4
5
 
package/BlueSDK.proto CHANGED
@@ -1,4 +1,5 @@
1
1
  syntax = "proto2";
2
+ option java_package = "blueid.access.sdk.pb";
2
3
 
3
4
  // import "nanopb.proto";
4
5
 
package/BlueSystem.proto CHANGED
@@ -1,4 +1,5 @@
1
1
  syntax = "proto2";
2
+ option java_package = "blueid.access.sdk.pb";
2
3
 
3
4
  import "BlueCore.proto";
4
5
  import "BlueLock.proto";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueid/access-proto",
3
- "version": "1.24.0",
3
+ "version": "1.27.0",
4
4
  "description": "BlueID Access Proto files",
5
5
  "author": "BlueID GmbH",
6
6
  "main": "cjs/index.js",
@@ -6406,7 +6406,15 @@ extension BlueOssSoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageI
6406
6406
  var _blacklist: BlueOssSoFileBlacklist? = nil
6407
6407
  var _customerExtensions: BlueOssSoFileCustomerExtensions? = nil
6408
6408
 
6409
- static let defaultInstance = _StorageClass()
6409
+ #if swift(>=5.10)
6410
+ // This property is used as the initial default value for new instances of the type.
6411
+ // The type itself is protecting the reference to its storage via CoW semantics.
6412
+ // This will force a copy to be made of this reference when the first mutation occurs;
6413
+ // hence, it is safe to mark this as `nonisolated(unsafe)`.
6414
+ static nonisolated(unsafe) let defaultInstance = _StorageClass()
6415
+ #else
6416
+ static let defaultInstance = _StorageClass()
6417
+ #endif
6410
6418
 
6411
6419
  private init() {}
6412
6420
 
@@ -1204,7 +1204,15 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1204
1204
  var _dfuUpdateFwlabel: String? = nil
1205
1205
  var _dfuWaitForDeviceToRestartTaskLabel: String? = nil
1206
1206
 
1207
- static let defaultInstance = _StorageClass()
1207
+ #if swift(>=5.10)
1208
+ // This property is used as the initial default value for new instances of the type.
1209
+ // The type itself is protecting the reference to its storage via CoW semantics.
1210
+ // This will force a copy to be made of this reference when the first mutation occurs;
1211
+ // hence, it is safe to mark this as `nonisolated(unsafe)`.
1212
+ static nonisolated(unsafe) let defaultInstance = _StorageClass()
1213
+ #else
1214
+ static let defaultInstance = _StorageClass()
1215
+ #endif
1208
1216
 
1209
1217
  private init() {}
1210
1218
 
@@ -1824,7 +1832,15 @@ extension BlueAccessCredential: SwiftProtobuf.Message, SwiftProtobuf._MessageImp
1824
1832
  var _organisation: String? = nil
1825
1833
  var _organisationName: String? = nil
1826
1834
 
1827
- static let defaultInstance = _StorageClass()
1835
+ #if swift(>=5.10)
1836
+ // This property is used as the initial default value for new instances of the type.
1837
+ // The type itself is protecting the reference to its storage via CoW semantics.
1838
+ // This will force a copy to be made of this reference when the first mutation occurs;
1839
+ // hence, it is safe to mark this as `nonisolated(unsafe)`.
1840
+ static nonisolated(unsafe) let defaultInstance = _StorageClass()
1841
+ #else
1842
+ static let defaultInstance = _StorageClass()
1843
+ #endif
1828
1844
 
1829
1845
  private init() {}
1830
1846
 
@@ -1594,7 +1594,15 @@ extension BlueSystemConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
1594
1594
  var _oss: BlueOssConfig? = nil
1595
1595
  var _lock: BlueLockConfig? = nil
1596
1596
 
1597
- static let defaultInstance = _StorageClass()
1597
+ #if swift(>=5.10)
1598
+ // This property is used as the initial default value for new instances of the type.
1599
+ // The type itself is protecting the reference to its storage via CoW semantics.
1600
+ // This will force a copy to be made of this reference when the first mutation occurs;
1601
+ // hence, it is safe to mark this as `nonisolated(unsafe)`.
1602
+ static nonisolated(unsafe) let defaultInstance = _StorageClass()
1603
+ #else
1604
+ static let defaultInstance = _StorageClass()
1605
+ #endif
1598
1606
 
1599
1607
  private init() {}
1600
1608
 
@@ -2087,7 +2095,15 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
2087
2095
  var _newConfigurationAvailable: Bool? = nil
2088
2096
  var _hardwareInfo: BlueHardwareInfo? = nil
2089
2097
 
2090
- static let defaultInstance = _StorageClass()
2098
+ #if swift(>=5.10)
2099
+ // This property is used as the initial default value for new instances of the type.
2100
+ // The type itself is protecting the reference to its storage via CoW semantics.
2101
+ // This will force a copy to be made of this reference when the first mutation occurs;
2102
+ // hence, it is safe to mark this as `nonisolated(unsafe)`.
2103
+ static nonisolated(unsafe) let defaultInstance = _StorageClass()
2104
+ #else
2105
+ static let defaultInstance = _StorageClass()
2106
+ #endif
2091
2107
 
2092
2108
  private init() {}
2093
2109