@blueid/access-proto 0.22.0 → 0.24.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.
@@ -79,8 +79,15 @@ public struct BlueLockConfig {
79
79
  /// Clears the value of `openScheduleByUser`. Subsequent reads from it will return its default value.
80
80
  public mutating func clearOpenScheduleByUser() {self._openScheduleByUser = nil}
81
81
 
82
- /// Days of year (1-366) the open schedule is ignored (ie vacation days)
83
- public var closedDays: [UInt32] = []
82
+ /// If set keeps the lock closed on federal vacation days
83
+ public var keepClosedOnHolidays: Bool {
84
+ get {return _keepClosedOnHolidays ?? false}
85
+ set {_keepClosedOnHolidays = newValue}
86
+ }
87
+ /// Returns true if `keepClosedOnHolidays` has been explicitly set.
88
+ public var hasKeepClosedOnHolidays: Bool {return self._keepClosedOnHolidays != nil}
89
+ /// Clears the value of `keepClosedOnHolidays`. Subsequent reads from it will return its default value.
90
+ public mutating func clearKeepClosedOnHolidays() {self._keepClosedOnHolidays = nil}
84
91
 
85
92
  /// Default time in seconds to keep the lock open
86
93
  public var defaultOpenTimeSec: UInt32 {
@@ -107,6 +114,7 @@ public struct BlueLockConfig {
107
114
  public init() {}
108
115
 
109
116
  fileprivate var _openScheduleByUser: Bool? = nil
117
+ fileprivate var _keepClosedOnHolidays: Bool? = nil
110
118
  fileprivate var _defaultOpenTimeSec: UInt32? = nil
111
119
  fileprivate var _extendedOpenTimeSec: UInt32? = nil
112
120
  }
@@ -164,13 +172,14 @@ extension BlueLockConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
164
172
  public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
165
173
  1: .same(proto: "openSchedules"),
166
174
  2: .same(proto: "openScheduleByUser"),
167
- 20: .same(proto: "closedDays"),
175
+ 20: .same(proto: "keepClosedOnHolidays"),
168
176
  21: .same(proto: "defaultOpenTimeSec"),
169
177
  22: .same(proto: "extendedOpenTimeSec"),
170
178
  ]
171
179
 
172
180
  public var isInitialized: Bool {
173
181
  if self._openScheduleByUser == nil {return false}
182
+ if self._keepClosedOnHolidays == nil {return false}
174
183
  if self._defaultOpenTimeSec == nil {return false}
175
184
  if self._extendedOpenTimeSec == nil {return false}
176
185
  if !SwiftProtobuf.Internal.areAllInitialized(self.openSchedules) {return false}
@@ -185,7 +194,7 @@ extension BlueLockConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
185
194
  switch fieldNumber {
186
195
  case 1: try { try decoder.decodeRepeatedMessageField(value: &self.openSchedules) }()
187
196
  case 2: try { try decoder.decodeSingularBoolField(value: &self._openScheduleByUser) }()
188
- case 20: try { try decoder.decodeRepeatedUInt32Field(value: &self.closedDays) }()
197
+ case 20: try { try decoder.decodeSingularBoolField(value: &self._keepClosedOnHolidays) }()
189
198
  case 21: try { try decoder.decodeSingularUInt32Field(value: &self._defaultOpenTimeSec) }()
190
199
  case 22: try { try decoder.decodeSingularUInt32Field(value: &self._extendedOpenTimeSec) }()
191
200
  default: break
@@ -204,9 +213,9 @@ extension BlueLockConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
204
213
  try { if let v = self._openScheduleByUser {
205
214
  try visitor.visitSingularBoolField(value: v, fieldNumber: 2)
206
215
  } }()
207
- if !self.closedDays.isEmpty {
208
- try visitor.visitRepeatedUInt32Field(value: self.closedDays, fieldNumber: 20)
209
- }
216
+ try { if let v = self._keepClosedOnHolidays {
217
+ try visitor.visitSingularBoolField(value: v, fieldNumber: 20)
218
+ } }()
210
219
  try { if let v = self._defaultOpenTimeSec {
211
220
  try visitor.visitSingularUInt32Field(value: v, fieldNumber: 21)
212
221
  } }()
@@ -219,7 +228,7 @@ extension BlueLockConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
219
228
  public static func ==(lhs: BlueLockConfig, rhs: BlueLockConfig) -> Bool {
220
229
  if lhs.openSchedules != rhs.openSchedules {return false}
221
230
  if lhs._openScheduleByUser != rhs._openScheduleByUser {return false}
222
- if lhs.closedDays != rhs.closedDays {return false}
231
+ if lhs._keepClosedOnHolidays != rhs._keepClosedOnHolidays {return false}
223
232
  if lhs._defaultOpenTimeSec != rhs._defaultOpenTimeSec {return false}
224
233
  if lhs._extendedOpenTimeSec != rhs._extendedOpenTimeSec {return false}
225
234
  if lhs.unknownFields != rhs.unknownFields {return false}
@@ -316,6 +316,110 @@ public struct BlueDeviceInfo {
316
316
  fileprivate var _manufacturerInfo: BlueBleManufacturerInfo? = nil
317
317
  }
318
318
 
319
+ public struct BlueAccessCredential {
320
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
321
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
322
+ // methods supported on all messages.
323
+
324
+ public var credentialID: BlueCredentialId {
325
+ get {return _credentialID ?? BlueCredentialId()}
326
+ set {_credentialID = newValue}
327
+ }
328
+ /// Returns true if `credentialID` has been explicitly set.
329
+ public var hasCredentialID: Bool {return self._credentialID != nil}
330
+ /// Clears the value of `credentialID`. Subsequent reads from it will return its default value.
331
+ public mutating func clearCredentialID() {self._credentialID = nil}
332
+
333
+ public var credentialType: BlueCredentialType {
334
+ get {return _credentialType ?? .regular}
335
+ set {_credentialType = newValue}
336
+ }
337
+ /// Returns true if `credentialType` has been explicitly set.
338
+ public var hasCredentialType: Bool {return self._credentialType != nil}
339
+ /// Clears the value of `credentialType`. Subsequent reads from it will return its default value.
340
+ public mutating func clearCredentialType() {self._credentialType = nil}
341
+
342
+ public var validFrom: BlueLocalTimestamp {
343
+ get {return _validFrom ?? BlueLocalTimestamp()}
344
+ set {_validFrom = newValue}
345
+ }
346
+ /// Returns true if `validFrom` has been explicitly set.
347
+ public var hasValidFrom: Bool {return self._validFrom != nil}
348
+ /// Clears the value of `validFrom`. Subsequent reads from it will return its default value.
349
+ public mutating func clearValidFrom() {self._validFrom = nil}
350
+
351
+ public var validTo: BlueLocalTimestamp {
352
+ get {return _validTo ?? BlueLocalTimestamp()}
353
+ set {_validTo = newValue}
354
+ }
355
+ /// Returns true if `validTo` has been explicitly set.
356
+ public var hasValidTo: Bool {return self._validTo != nil}
357
+ /// Clears the value of `validTo`. Subsequent reads from it will return its default value.
358
+ public mutating func clearValidTo() {self._validTo = nil}
359
+
360
+ public var privateKey: Data {
361
+ get {return _privateKey ?? Data()}
362
+ set {_privateKey = newValue}
363
+ }
364
+ /// Returns true if `privateKey` has been explicitly set.
365
+ public var hasPrivateKey: Bool {return self._privateKey != nil}
366
+ /// Clears the value of `privateKey`. Subsequent reads from it will return its default value.
367
+ public mutating func clearPrivateKey() {self._privateKey = nil}
368
+
369
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
370
+
371
+ public init() {}
372
+
373
+ fileprivate var _credentialID: BlueCredentialId? = nil
374
+ fileprivate var _credentialType: BlueCredentialType? = nil
375
+ fileprivate var _validFrom: BlueLocalTimestamp? = nil
376
+ fileprivate var _validTo: BlueLocalTimestamp? = nil
377
+ fileprivate var _privateKey: Data? = nil
378
+ }
379
+
380
+ public struct BlueAccessDevice {
381
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
382
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
383
+ // methods supported on all messages.
384
+
385
+ public var deviceID: String {
386
+ get {return _deviceID ?? String()}
387
+ set {_deviceID = newValue}
388
+ }
389
+ /// Returns true if `deviceID` has been explicitly set.
390
+ public var hasDeviceID: Bool {return self._deviceID != nil}
391
+ /// Clears the value of `deviceID`. Subsequent reads from it will return its default value.
392
+ public mutating func clearDeviceID() {self._deviceID = nil}
393
+
394
+ public var name: String {
395
+ get {return _name ?? String()}
396
+ set {_name = newValue}
397
+ }
398
+ /// Returns true if `name` has been explicitly set.
399
+ public var hasName: Bool {return self._name != nil}
400
+ /// Clears the value of `name`. Subsequent reads from it will return its default value.
401
+ public mutating func clearName() {self._name = nil}
402
+
403
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
404
+
405
+ public init() {}
406
+
407
+ fileprivate var _deviceID: String? = nil
408
+ fileprivate var _name: String? = nil
409
+ }
410
+
411
+ public struct BlueAccessDeviceList {
412
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
413
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
414
+ // methods supported on all messages.
415
+
416
+ public var devices: [BlueAccessDevice] = []
417
+
418
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
419
+
420
+ public init() {}
421
+ }
422
+
319
423
  #if swift(>=5.5) && canImport(_Concurrency)
320
424
  extension BlueDeviceType: @unchecked Sendable {}
321
425
  extension BlueI18n: @unchecked Sendable {}
@@ -323,6 +427,9 @@ extension BlueDeviceDetailsBluetooth: @unchecked Sendable {}
323
427
  extension BlueDeviceDetailsUWB: @unchecked Sendable {}
324
428
  extension BlueDeviceInfo: @unchecked Sendable {}
325
429
  extension BlueDeviceInfo.OneOf_Details: @unchecked Sendable {}
430
+ extension BlueAccessCredential: @unchecked Sendable {}
431
+ extension BlueAccessDevice: @unchecked Sendable {}
432
+ extension BlueAccessDeviceList: @unchecked Sendable {}
326
433
  #endif // swift(>=5.5) && canImport(_Concurrency)
327
434
 
328
435
  // MARK: - Code below here is support for the SwiftProtobuf runtime.
@@ -622,3 +729,157 @@ extension BlueDeviceInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
622
729
  return true
623
730
  }
624
731
  }
732
+
733
+ extension BlueAccessCredential: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
734
+ public static let protoMessageName: String = "BlueAccessCredential"
735
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
736
+ 1: .same(proto: "credentialId"),
737
+ 2: .same(proto: "credentialType"),
738
+ 3: .same(proto: "validFrom"),
739
+ 4: .same(proto: "validTo"),
740
+ 5: .same(proto: "privateKey"),
741
+ ]
742
+
743
+ public var isInitialized: Bool {
744
+ if self._credentialID == nil {return false}
745
+ if self._credentialType == nil {return false}
746
+ if self._privateKey == nil {return false}
747
+ if let v = self._credentialID, !v.isInitialized {return false}
748
+ if let v = self._validFrom, !v.isInitialized {return false}
749
+ if let v = self._validTo, !v.isInitialized {return false}
750
+ return true
751
+ }
752
+
753
+ public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
754
+ while let fieldNumber = try decoder.nextFieldNumber() {
755
+ // The use of inline closures is to circumvent an issue where the compiler
756
+ // allocates stack space for every case branch when no optimizations are
757
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
758
+ switch fieldNumber {
759
+ case 1: try { try decoder.decodeSingularMessageField(value: &self._credentialID) }()
760
+ case 2: try { try decoder.decodeSingularEnumField(value: &self._credentialType) }()
761
+ case 3: try { try decoder.decodeSingularMessageField(value: &self._validFrom) }()
762
+ case 4: try { try decoder.decodeSingularMessageField(value: &self._validTo) }()
763
+ case 5: try { try decoder.decodeSingularBytesField(value: &self._privateKey) }()
764
+ default: break
765
+ }
766
+ }
767
+ }
768
+
769
+ public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
770
+ // The use of inline closures is to circumvent an issue where the compiler
771
+ // allocates stack space for every if/case branch local when no optimizations
772
+ // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
773
+ // https://github.com/apple/swift-protobuf/issues/1182
774
+ try { if let v = self._credentialID {
775
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 1)
776
+ } }()
777
+ try { if let v = self._credentialType {
778
+ try visitor.visitSingularEnumField(value: v, fieldNumber: 2)
779
+ } }()
780
+ try { if let v = self._validFrom {
781
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 3)
782
+ } }()
783
+ try { if let v = self._validTo {
784
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 4)
785
+ } }()
786
+ try { if let v = self._privateKey {
787
+ try visitor.visitSingularBytesField(value: v, fieldNumber: 5)
788
+ } }()
789
+ try unknownFields.traverse(visitor: &visitor)
790
+ }
791
+
792
+ public static func ==(lhs: BlueAccessCredential, rhs: BlueAccessCredential) -> Bool {
793
+ if lhs._credentialID != rhs._credentialID {return false}
794
+ if lhs._credentialType != rhs._credentialType {return false}
795
+ if lhs._validFrom != rhs._validFrom {return false}
796
+ if lhs._validTo != rhs._validTo {return false}
797
+ if lhs._privateKey != rhs._privateKey {return false}
798
+ if lhs.unknownFields != rhs.unknownFields {return false}
799
+ return true
800
+ }
801
+ }
802
+
803
+ extension BlueAccessDevice: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
804
+ public static let protoMessageName: String = "BlueAccessDevice"
805
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
806
+ 1: .same(proto: "deviceId"),
807
+ 2: .same(proto: "name"),
808
+ ]
809
+
810
+ public var isInitialized: Bool {
811
+ if self._deviceID == nil {return false}
812
+ return true
813
+ }
814
+
815
+ public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
816
+ while let fieldNumber = try decoder.nextFieldNumber() {
817
+ // The use of inline closures is to circumvent an issue where the compiler
818
+ // allocates stack space for every case branch when no optimizations are
819
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
820
+ switch fieldNumber {
821
+ case 1: try { try decoder.decodeSingularStringField(value: &self._deviceID) }()
822
+ case 2: try { try decoder.decodeSingularStringField(value: &self._name) }()
823
+ default: break
824
+ }
825
+ }
826
+ }
827
+
828
+ public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
829
+ // The use of inline closures is to circumvent an issue where the compiler
830
+ // allocates stack space for every if/case branch local when no optimizations
831
+ // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
832
+ // https://github.com/apple/swift-protobuf/issues/1182
833
+ try { if let v = self._deviceID {
834
+ try visitor.visitSingularStringField(value: v, fieldNumber: 1)
835
+ } }()
836
+ try { if let v = self._name {
837
+ try visitor.visitSingularStringField(value: v, fieldNumber: 2)
838
+ } }()
839
+ try unknownFields.traverse(visitor: &visitor)
840
+ }
841
+
842
+ public static func ==(lhs: BlueAccessDevice, rhs: BlueAccessDevice) -> Bool {
843
+ if lhs._deviceID != rhs._deviceID {return false}
844
+ if lhs._name != rhs._name {return false}
845
+ if lhs.unknownFields != rhs.unknownFields {return false}
846
+ return true
847
+ }
848
+ }
849
+
850
+ extension BlueAccessDeviceList: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
851
+ public static let protoMessageName: String = "BlueAccessDeviceList"
852
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
853
+ 1: .same(proto: "devices"),
854
+ ]
855
+
856
+ public var isInitialized: Bool {
857
+ if !SwiftProtobuf.Internal.areAllInitialized(self.devices) {return false}
858
+ return true
859
+ }
860
+
861
+ public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
862
+ while let fieldNumber = try decoder.nextFieldNumber() {
863
+ // The use of inline closures is to circumvent an issue where the compiler
864
+ // allocates stack space for every case branch when no optimizations are
865
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
866
+ switch fieldNumber {
867
+ case 1: try { try decoder.decodeRepeatedMessageField(value: &self.devices) }()
868
+ default: break
869
+ }
870
+ }
871
+ }
872
+
873
+ public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
874
+ if !self.devices.isEmpty {
875
+ try visitor.visitRepeatedMessageField(value: self.devices, fieldNumber: 1)
876
+ }
877
+ try unknownFields.traverse(visitor: &visitor)
878
+ }
879
+
880
+ public static func ==(lhs: BlueAccessDeviceList, rhs: BlueAccessDeviceList) -> Bool {
881
+ if lhs.devices != rhs.devices {return false}
882
+ if lhs.unknownFields != rhs.unknownFields {return false}
883
+ return true
884
+ }
885
+ }
@@ -781,51 +781,6 @@ public struct BlueSystemStatus {
781
781
  /// Clears the value of `settings`. Subsequent reads from it will return its default value.
782
782
  public mutating func clearSettings() {_uniqueStorage()._settings = nil}
783
783
 
784
- public var blacklistEntriesCount: UInt32 {
785
- get {return _storage._blacklistEntriesCount ?? 0}
786
- set {_uniqueStorage()._blacklistEntriesCount = newValue}
787
- }
788
- /// Returns true if `blacklistEntriesCount` has been explicitly set.
789
- public var hasBlacklistEntriesCount: Bool {return _storage._blacklistEntriesCount != nil}
790
- /// Clears the value of `blacklistEntriesCount`. Subsequent reads from it will return its default value.
791
- public mutating func clearBlacklistEntriesCount() {_uniqueStorage()._blacklistEntriesCount = nil}
792
-
793
- public var eventLogEntriesCount: UInt32 {
794
- get {return _storage._eventLogEntriesCount ?? 0}
795
- set {_uniqueStorage()._eventLogEntriesCount = newValue}
796
- }
797
- /// Returns true if `eventLogEntriesCount` has been explicitly set.
798
- public var hasEventLogEntriesCount: Bool {return _storage._eventLogEntriesCount != nil}
799
- /// Clears the value of `eventLogEntriesCount`. Subsequent reads from it will return its default value.
800
- public mutating func clearEventLogEntriesCount() {_uniqueStorage()._eventLogEntriesCount = nil}
801
-
802
- public var eventLogSequenceID: UInt32 {
803
- get {return _storage._eventLogSequenceID ?? 0}
804
- set {_uniqueStorage()._eventLogSequenceID = newValue}
805
- }
806
- /// Returns true if `eventLogSequenceID` has been explicitly set.
807
- public var hasEventLogSequenceID: Bool {return _storage._eventLogSequenceID != nil}
808
- /// Clears the value of `eventLogSequenceID`. Subsequent reads from it will return its default value.
809
- public mutating func clearEventLogSequenceID() {_uniqueStorage()._eventLogSequenceID = nil}
810
-
811
- public var systemLogEntriesCount: UInt32 {
812
- get {return _storage._systemLogEntriesCount ?? 0}
813
- set {_uniqueStorage()._systemLogEntriesCount = newValue}
814
- }
815
- /// Returns true if `systemLogEntriesCount` has been explicitly set.
816
- public var hasSystemLogEntriesCount: Bool {return _storage._systemLogEntriesCount != nil}
817
- /// Clears the value of `systemLogEntriesCount`. Subsequent reads from it will return its default value.
818
- public mutating func clearSystemLogEntriesCount() {_uniqueStorage()._systemLogEntriesCount = nil}
819
-
820
- public var systemLogSequenceID: UInt32 {
821
- get {return _storage._systemLogSequenceID ?? 0}
822
- set {_uniqueStorage()._systemLogSequenceID = newValue}
823
- }
824
- /// Returns true if `systemLogSequenceID` has been explicitly set.
825
- public var hasSystemLogSequenceID: Bool {return _storage._systemLogSequenceID != nil}
826
- /// Clears the value of `systemLogSequenceID`. Subsequent reads from it will return its default value.
827
- public mutating func clearSystemLogSequenceID() {_uniqueStorage()._systemLogSequenceID = nil}
828
-
829
784
  /// -- Custom
830
785
  public var lock: BlueLockStatus {
831
786
  get {return _storage._lock ?? BlueLockStatus()}
@@ -1932,12 +1887,7 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
1932
1887
  6: .same(proto: "applicationVersion"),
1933
1888
  7: .same(proto: "localTime"),
1934
1889
  8: .same(proto: "settings"),
1935
- 9: .same(proto: "blacklistEntriesCount"),
1936
- 10: .same(proto: "eventLogEntriesCount"),
1937
- 11: .same(proto: "eventLogSequenceId"),
1938
- 12: .same(proto: "systemLogEntriesCount"),
1939
- 13: .same(proto: "systemLogSequenceId"),
1940
- 14: .same(proto: "lock"),
1890
+ 9: .same(proto: "lock"),
1941
1891
  ]
1942
1892
 
1943
1893
  fileprivate class _StorageClass {
@@ -1949,11 +1899,6 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
1949
1899
  var _applicationVersion: UInt32? = nil
1950
1900
  var _localTime: BlueLocalTimestamp? = nil
1951
1901
  var _settings: BlueSystemSettings? = nil
1952
- var _blacklistEntriesCount: UInt32? = nil
1953
- var _eventLogEntriesCount: UInt32? = nil
1954
- var _eventLogSequenceID: UInt32? = nil
1955
- var _systemLogEntriesCount: UInt32? = nil
1956
- var _systemLogSequenceID: UInt32? = nil
1957
1902
  var _lock: BlueLockStatus? = nil
1958
1903
 
1959
1904
  static let defaultInstance = _StorageClass()
@@ -1969,11 +1914,6 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
1969
1914
  _applicationVersion = source._applicationVersion
1970
1915
  _localTime = source._localTime
1971
1916
  _settings = source._settings
1972
- _blacklistEntriesCount = source._blacklistEntriesCount
1973
- _eventLogEntriesCount = source._eventLogEntriesCount
1974
- _eventLogSequenceID = source._eventLogSequenceID
1975
- _systemLogEntriesCount = source._systemLogEntriesCount
1976
- _systemLogSequenceID = source._systemLogSequenceID
1977
1917
  _lock = source._lock
1978
1918
  }
1979
1919
  }
@@ -1995,11 +1935,6 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
1995
1935
  if _storage._applicationVersion == nil {return false}
1996
1936
  if _storage._localTime == nil {return false}
1997
1937
  if _storage._settings == nil {return false}
1998
- if _storage._blacklistEntriesCount == nil {return false}
1999
- if _storage._eventLogEntriesCount == nil {return false}
2000
- if _storage._eventLogSequenceID == nil {return false}
2001
- if _storage._systemLogEntriesCount == nil {return false}
2002
- if _storage._systemLogSequenceID == nil {return false}
2003
1938
  if let v = _storage._localTime, !v.isInitialized {return false}
2004
1939
  if let v = _storage._settings, !v.isInitialized {return false}
2005
1940
  if let v = _storage._lock, !v.isInitialized {return false}
@@ -2023,12 +1958,7 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
2023
1958
  case 6: try { try decoder.decodeSingularUInt32Field(value: &_storage._applicationVersion) }()
2024
1959
  case 7: try { try decoder.decodeSingularMessageField(value: &_storage._localTime) }()
2025
1960
  case 8: try { try decoder.decodeSingularMessageField(value: &_storage._settings) }()
2026
- case 9: try { try decoder.decodeSingularUInt32Field(value: &_storage._blacklistEntriesCount) }()
2027
- case 10: try { try decoder.decodeSingularUInt32Field(value: &_storage._eventLogEntriesCount) }()
2028
- case 11: try { try decoder.decodeSingularUInt32Field(value: &_storage._eventLogSequenceID) }()
2029
- case 12: try { try decoder.decodeSingularUInt32Field(value: &_storage._systemLogEntriesCount) }()
2030
- case 13: try { try decoder.decodeSingularUInt32Field(value: &_storage._systemLogSequenceID) }()
2031
- case 14: try { try decoder.decodeSingularMessageField(value: &_storage._lock) }()
1961
+ case 9: try { try decoder.decodeSingularMessageField(value: &_storage._lock) }()
2032
1962
  default: break
2033
1963
  }
2034
1964
  }
@@ -2065,23 +1995,8 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
2065
1995
  try { if let v = _storage._settings {
2066
1996
  try visitor.visitSingularMessageField(value: v, fieldNumber: 8)
2067
1997
  } }()
2068
- try { if let v = _storage._blacklistEntriesCount {
2069
- try visitor.visitSingularUInt32Field(value: v, fieldNumber: 9)
2070
- } }()
2071
- try { if let v = _storage._eventLogEntriesCount {
2072
- try visitor.visitSingularUInt32Field(value: v, fieldNumber: 10)
2073
- } }()
2074
- try { if let v = _storage._eventLogSequenceID {
2075
- try visitor.visitSingularUInt32Field(value: v, fieldNumber: 11)
2076
- } }()
2077
- try { if let v = _storage._systemLogEntriesCount {
2078
- try visitor.visitSingularUInt32Field(value: v, fieldNumber: 12)
2079
- } }()
2080
- try { if let v = _storage._systemLogSequenceID {
2081
- try visitor.visitSingularUInt32Field(value: v, fieldNumber: 13)
2082
- } }()
2083
1998
  try { if let v = _storage._lock {
2084
- try visitor.visitSingularMessageField(value: v, fieldNumber: 14)
1999
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 9)
2085
2000
  } }()
2086
2001
  }
2087
2002
  try unknownFields.traverse(visitor: &visitor)
@@ -2100,11 +2015,6 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
2100
2015
  if _storage._applicationVersion != rhs_storage._applicationVersion {return false}
2101
2016
  if _storage._localTime != rhs_storage._localTime {return false}
2102
2017
  if _storage._settings != rhs_storage._settings {return false}
2103
- if _storage._blacklistEntriesCount != rhs_storage._blacklistEntriesCount {return false}
2104
- if _storage._eventLogEntriesCount != rhs_storage._eventLogEntriesCount {return false}
2105
- if _storage._eventLogSequenceID != rhs_storage._eventLogSequenceID {return false}
2106
- if _storage._systemLogEntriesCount != rhs_storage._systemLogEntriesCount {return false}
2107
- if _storage._systemLogSequenceID != rhs_storage._systemLogSequenceID {return false}
2108
2018
  if _storage._lock != rhs_storage._lock {return false}
2109
2019
  return true
2110
2020
  }