@blueid/access-proto 1.21.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 +1 -1
- package/BlueLock.proto +1 -0
- package/BlueSDK.proto +1 -0
- package/BlueSystem.proto +1 -0
- package/package.json +1 -1
- package/swift/BlueCore.pb.swift +9 -1
- package/swift/BlueSDK.pb.swift +18 -2
- package/swift/BlueSystem.pb.swift +18 -2
package/BlueCore.proto
CHANGED
package/BlueLock.proto
CHANGED
package/BlueSDK.proto
CHANGED
package/BlueSystem.proto
CHANGED
package/package.json
CHANGED
package/swift/BlueCore.pb.swift
CHANGED
|
@@ -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
|
-
|
|
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
|
|
package/swift/BlueSDK.pb.swift
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|