@blueid/access-proto 1.1.0 → 1.5.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
|
|
|
@@ -1514,7 +1514,15 @@ extension BlueSystemConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
|
|
|
1514
1514
|
var _oss: BlueOssConfig? = nil
|
|
1515
1515
|
var _lock: BlueLockConfig? = nil
|
|
1516
1516
|
|
|
1517
|
-
|
|
1517
|
+
#if swift(>=5.10)
|
|
1518
|
+
// This property is used as the initial default value for new instances of the type.
|
|
1519
|
+
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
1520
|
+
// This will force a copy to be made of this reference when the first mutation occurs;
|
|
1521
|
+
// hence, it is safe to mark this as `nonisolated(unsafe)`.
|
|
1522
|
+
static nonisolated(unsafe) let defaultInstance = _StorageClass()
|
|
1523
|
+
#else
|
|
1524
|
+
static let defaultInstance = _StorageClass()
|
|
1525
|
+
#endif
|
|
1518
1526
|
|
|
1519
1527
|
private init() {}
|
|
1520
1528
|
|
|
@@ -1934,7 +1942,15 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
|
|
|
1934
1942
|
var _newFirmwareVersionAvailable: Bool? = nil
|
|
1935
1943
|
var _newTestFirmwareVersionAvailable: Bool? = nil
|
|
1936
1944
|
|
|
1937
|
-
|
|
1945
|
+
#if swift(>=5.10)
|
|
1946
|
+
// This property is used as the initial default value for new instances of the type.
|
|
1947
|
+
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
1948
|
+
// This will force a copy to be made of this reference when the first mutation occurs;
|
|
1949
|
+
// hence, it is safe to mark this as `nonisolated(unsafe)`.
|
|
1950
|
+
static nonisolated(unsafe) let defaultInstance = _StorageClass()
|
|
1951
|
+
#else
|
|
1952
|
+
static let defaultInstance = _StorageClass()
|
|
1953
|
+
#endif
|
|
1938
1954
|
|
|
1939
1955
|
private init() {}
|
|
1940
1956
|
|