@blueid/access-proto 1.83.0 → 1.89.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/package.json +1 -1
- package/swift/BlueCore.pb.swift +299 -74
- package/swift/BlueLock.pb.swift +18 -4
- package/swift/BlueSDK.pb.swift +75 -20
- package/swift/BlueSystem.pb.swift +79 -21
package/swift/BlueCore.pb.swift
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// DO NOT EDIT.
|
|
2
2
|
// swift-format-ignore-file
|
|
3
|
-
// swiftlint:disable all
|
|
4
3
|
//
|
|
5
4
|
// Generated by the Swift generator plugin for the protocol buffer compiler.
|
|
6
5
|
// Source: BlueCore.proto
|
|
@@ -21,7 +20,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
|
|
|
21
20
|
typealias Version = _2
|
|
22
21
|
}
|
|
23
22
|
|
|
24
|
-
public enum BlueReturnCode: SwiftProtobuf.Enum
|
|
23
|
+
public enum BlueReturnCode: SwiftProtobuf.Enum {
|
|
25
24
|
public typealias RawValue = Int
|
|
26
25
|
|
|
27
26
|
///
|
|
@@ -356,7 +355,15 @@ public enum BlueReturnCode: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
356
355
|
|
|
357
356
|
}
|
|
358
357
|
|
|
359
|
-
|
|
358
|
+
#if swift(>=4.2)
|
|
359
|
+
|
|
360
|
+
extension BlueReturnCode: CaseIterable {
|
|
361
|
+
// Support synthesized by the compiler.
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
#endif // swift(>=4.2)
|
|
365
|
+
|
|
366
|
+
public enum BlueTimeUnit: SwiftProtobuf.Enum {
|
|
360
367
|
public typealias RawValue = Int
|
|
361
368
|
case seconds // = 1
|
|
362
369
|
case minutes // = 2
|
|
@@ -394,8 +401,16 @@ public enum BlueTimeUnit: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
394
401
|
|
|
395
402
|
}
|
|
396
403
|
|
|
404
|
+
#if swift(>=4.2)
|
|
405
|
+
|
|
406
|
+
extension BlueTimeUnit: CaseIterable {
|
|
407
|
+
// Support synthesized by the compiler.
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
#endif // swift(>=4.2)
|
|
411
|
+
|
|
397
412
|
/// Those may never be changed
|
|
398
|
-
public enum BlueWeekday: SwiftProtobuf.Enum
|
|
413
|
+
public enum BlueWeekday: SwiftProtobuf.Enum {
|
|
399
414
|
public typealias RawValue = Int
|
|
400
415
|
case monday // = 0
|
|
401
416
|
case tuesday // = 1
|
|
@@ -436,7 +451,15 @@ public enum BlueWeekday: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
436
451
|
|
|
437
452
|
}
|
|
438
453
|
|
|
439
|
-
|
|
454
|
+
#if swift(>=4.2)
|
|
455
|
+
|
|
456
|
+
extension BlueWeekday: CaseIterable {
|
|
457
|
+
// Support synthesized by the compiler.
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
#endif // swift(>=4.2)
|
|
461
|
+
|
|
462
|
+
public enum BlueCredentialType: SwiftProtobuf.Enum {
|
|
440
463
|
public typealias RawValue = Int
|
|
441
464
|
|
|
442
465
|
/// Regular credential can only open / enter
|
|
@@ -481,7 +504,15 @@ public enum BlueCredentialType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
481
504
|
|
|
482
505
|
}
|
|
483
506
|
|
|
484
|
-
|
|
507
|
+
#if swift(>=4.2)
|
|
508
|
+
|
|
509
|
+
extension BlueCredentialType: CaseIterable {
|
|
510
|
+
// Support synthesized by the compiler.
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
#endif // swift(>=4.2)
|
|
514
|
+
|
|
515
|
+
public enum BlueAccessType: SwiftProtobuf.Enum {
|
|
485
516
|
public typealias RawValue = Int
|
|
486
517
|
|
|
487
518
|
/// Access with default unlock time
|
|
@@ -541,7 +572,15 @@ public enum BlueAccessType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
541
572
|
|
|
542
573
|
}
|
|
543
574
|
|
|
544
|
-
|
|
575
|
+
#if swift(>=4.2)
|
|
576
|
+
|
|
577
|
+
extension BlueAccessType: CaseIterable {
|
|
578
|
+
// Support synthesized by the compiler.
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
#endif // swift(>=4.2)
|
|
582
|
+
|
|
583
|
+
public enum BlueTransponderType: SwiftProtobuf.Enum {
|
|
545
584
|
public typealias RawValue = Int
|
|
546
585
|
case unknownTransponder // = 0
|
|
547
586
|
case mobileTransponder // = 1
|
|
@@ -570,7 +609,15 @@ public enum BlueTransponderType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
570
609
|
|
|
571
610
|
}
|
|
572
611
|
|
|
573
|
-
|
|
612
|
+
#if swift(>=4.2)
|
|
613
|
+
|
|
614
|
+
extension BlueTransponderType: CaseIterable {
|
|
615
|
+
// Support synthesized by the compiler.
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
#endif // swift(>=4.2)
|
|
619
|
+
|
|
620
|
+
public enum BlueHardwareType: SwiftProtobuf.Enum {
|
|
574
621
|
public typealias RawValue = Int
|
|
575
622
|
case unknownHardware // = 0
|
|
576
623
|
case testHardware // = 1
|
|
@@ -611,7 +658,15 @@ public enum BlueHardwareType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
611
658
|
|
|
612
659
|
}
|
|
613
660
|
|
|
614
|
-
|
|
661
|
+
#if swift(>=4.2)
|
|
662
|
+
|
|
663
|
+
extension BlueHardwareType: CaseIterable {
|
|
664
|
+
// Support synthesized by the compiler.
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
#endif // swift(>=4.2)
|
|
668
|
+
|
|
669
|
+
public enum BlueBatteryLevel: SwiftProtobuf.Enum {
|
|
615
670
|
public typealias RawValue = Int
|
|
616
671
|
case unknownBattery // = 0
|
|
617
672
|
case onPower // = 1
|
|
@@ -657,7 +712,15 @@ public enum BlueBatteryLevel: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
657
712
|
|
|
658
713
|
}
|
|
659
714
|
|
|
660
|
-
|
|
715
|
+
#if swift(>=4.2)
|
|
716
|
+
|
|
717
|
+
extension BlueBatteryLevel: CaseIterable {
|
|
718
|
+
// Support synthesized by the compiler.
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
#endif // swift(>=4.2)
|
|
722
|
+
|
|
723
|
+
public enum BlueEventId: SwiftProtobuf.Enum {
|
|
661
724
|
public typealias RawValue = Int
|
|
662
725
|
|
|
663
726
|
///* eventInfo = 0
|
|
@@ -750,7 +813,15 @@ public enum BlueEventId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
750
813
|
|
|
751
814
|
}
|
|
752
815
|
|
|
753
|
-
|
|
816
|
+
#if swift(>=4.2)
|
|
817
|
+
|
|
818
|
+
extension BlueEventId: CaseIterable {
|
|
819
|
+
// Support synthesized by the compiler.
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
#endif // swift(>=4.2)
|
|
823
|
+
|
|
824
|
+
public enum BlueEventInfoSystem: SwiftProtobuf.Enum {
|
|
754
825
|
public typealias RawValue = Int
|
|
755
826
|
case systemRestart // = 1
|
|
756
827
|
case systemConfigured // = 2
|
|
@@ -776,7 +847,15 @@ public enum BlueEventInfoSystem: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
776
847
|
|
|
777
848
|
}
|
|
778
849
|
|
|
779
|
-
|
|
850
|
+
#if swift(>=4.2)
|
|
851
|
+
|
|
852
|
+
extension BlueEventInfoSystem: CaseIterable {
|
|
853
|
+
// Support synthesized by the compiler.
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
#endif // swift(>=4.2)
|
|
857
|
+
|
|
858
|
+
public enum BlueEventInfoAccess: SwiftProtobuf.Enum {
|
|
780
859
|
public typealias RawValue = Int
|
|
781
860
|
case granted // = 1
|
|
782
861
|
case grantedDefaultTime // = 2
|
|
@@ -823,7 +902,15 @@ public enum BlueEventInfoAccess: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
823
902
|
|
|
824
903
|
}
|
|
825
904
|
|
|
826
|
-
|
|
905
|
+
#if swift(>=4.2)
|
|
906
|
+
|
|
907
|
+
extension BlueEventInfoAccess: CaseIterable {
|
|
908
|
+
// Support synthesized by the compiler.
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
#endif // swift(>=4.2)
|
|
912
|
+
|
|
913
|
+
public enum BlueOssCredentialTypeSource: SwiftProtobuf.Enum {
|
|
827
914
|
public typealias RawValue = Int
|
|
828
915
|
case oss // = 0
|
|
829
916
|
case proprietary // = 1
|
|
@@ -849,7 +936,15 @@ public enum BlueOssCredentialTypeSource: SwiftProtobuf.Enum, Swift.CaseIterable
|
|
|
849
936
|
|
|
850
937
|
}
|
|
851
938
|
|
|
852
|
-
|
|
939
|
+
#if swift(>=4.2)
|
|
940
|
+
|
|
941
|
+
extension BlueOssCredentialTypeSource: CaseIterable {
|
|
942
|
+
// Support synthesized by the compiler.
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
#endif // swift(>=4.2)
|
|
946
|
+
|
|
947
|
+
public enum BlueOssSoCredentialTypeOssCredential: SwiftProtobuf.Enum {
|
|
853
948
|
public typealias RawValue = Int
|
|
854
949
|
case standard // = 0
|
|
855
950
|
case interventionMedia // = 1
|
|
@@ -875,7 +970,15 @@ public enum BlueOssSoCredentialTypeOssCredential: SwiftProtobuf.Enum, Swift.Case
|
|
|
875
970
|
|
|
876
971
|
}
|
|
877
972
|
|
|
878
|
-
|
|
973
|
+
#if swift(>=4.2)
|
|
974
|
+
|
|
975
|
+
extension BlueOssSoCredentialTypeOssCredential: CaseIterable {
|
|
976
|
+
// Support synthesized by the compiler.
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
#endif // swift(>=4.2)
|
|
980
|
+
|
|
981
|
+
public enum BlueOssSoDoorGroupId: SwiftProtobuf.Enum {
|
|
879
982
|
public typealias RawValue = Int
|
|
880
983
|
case masterGroupID // = 65535
|
|
881
984
|
|
|
@@ -898,7 +1001,15 @@ public enum BlueOssSoDoorGroupId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
898
1001
|
|
|
899
1002
|
}
|
|
900
1003
|
|
|
901
|
-
|
|
1004
|
+
#if swift(>=4.2)
|
|
1005
|
+
|
|
1006
|
+
extension BlueOssSoDoorGroupId: CaseIterable {
|
|
1007
|
+
// Support synthesized by the compiler.
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
#endif // swift(>=4.2)
|
|
1011
|
+
|
|
1012
|
+
public enum BlueOssSoDoorInfoAccessBy: SwiftProtobuf.Enum {
|
|
902
1013
|
public typealias RawValue = Int
|
|
903
1014
|
case doorGroupID // = 0
|
|
904
1015
|
case doorID // = 1
|
|
@@ -924,7 +1035,15 @@ public enum BlueOssSoDoorInfoAccessBy: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
924
1035
|
|
|
925
1036
|
}
|
|
926
1037
|
|
|
927
|
-
|
|
1038
|
+
#if swift(>=4.2)
|
|
1039
|
+
|
|
1040
|
+
extension BlueOssSoDoorInfoAccessBy: CaseIterable {
|
|
1041
|
+
// Support synthesized by the compiler.
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
#endif // swift(>=4.2)
|
|
1045
|
+
|
|
1046
|
+
public enum BlueOssSoFileId: SwiftProtobuf.Enum {
|
|
928
1047
|
public typealias RawValue = Int
|
|
929
1048
|
case info // = 0
|
|
930
1049
|
case data // = 1
|
|
@@ -959,7 +1078,15 @@ public enum BlueOssSoFileId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
959
1078
|
|
|
960
1079
|
}
|
|
961
1080
|
|
|
962
|
-
|
|
1081
|
+
#if swift(>=4.2)
|
|
1082
|
+
|
|
1083
|
+
extension BlueOssSoFileId: CaseIterable {
|
|
1084
|
+
// Support synthesized by the compiler.
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
#endif // swift(>=4.2)
|
|
1088
|
+
|
|
1089
|
+
public struct BlueSharedDemoData {
|
|
963
1090
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
964
1091
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
965
1092
|
// methods supported on all messages.
|
|
@@ -1021,7 +1148,7 @@ public struct BlueSharedDemoData: @unchecked Sendable {
|
|
|
1021
1148
|
fileprivate var _signaturePublicKey: Data? = nil
|
|
1022
1149
|
}
|
|
1023
1150
|
|
|
1024
|
-
public struct BlueVersionInfo
|
|
1151
|
+
public struct BlueVersionInfo {
|
|
1025
1152
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1026
1153
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1027
1154
|
// methods supported on all messages.
|
|
@@ -1062,7 +1189,7 @@ public struct BlueVersionInfo: Sendable {
|
|
|
1062
1189
|
fileprivate var _testVersion: UInt32? = nil
|
|
1063
1190
|
}
|
|
1064
1191
|
|
|
1065
|
-
public struct BlueLocalTimestamp
|
|
1192
|
+
public struct BlueLocalTimestamp {
|
|
1066
1193
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1067
1194
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1068
1195
|
// methods supported on all messages.
|
|
@@ -1133,7 +1260,7 @@ public struct BlueLocalTimestamp: Sendable {
|
|
|
1133
1260
|
fileprivate var _seconds: UInt32? = nil
|
|
1134
1261
|
}
|
|
1135
1262
|
|
|
1136
|
-
public struct BlueLocalTimeperiod
|
|
1263
|
+
public struct BlueLocalTimeperiod {
|
|
1137
1264
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1138
1265
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1139
1266
|
// methods supported on all messages.
|
|
@@ -1184,7 +1311,7 @@ public struct BlueLocalTimeperiod: Sendable {
|
|
|
1184
1311
|
fileprivate var _minutesTo: UInt32? = nil
|
|
1185
1312
|
}
|
|
1186
1313
|
|
|
1187
|
-
public struct BlueLocalTimeSchedule
|
|
1314
|
+
public struct BlueLocalTimeSchedule {
|
|
1188
1315
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1189
1316
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1190
1317
|
// methods supported on all messages.
|
|
@@ -1229,7 +1356,7 @@ public struct BlueLocalTimeSchedule: Sendable {
|
|
|
1229
1356
|
fileprivate var _timePeriod: BlueLocalTimeperiod? = nil
|
|
1230
1357
|
}
|
|
1231
1358
|
|
|
1232
|
-
public struct BlueCredentialId
|
|
1359
|
+
public struct BlueCredentialId {
|
|
1233
1360
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1234
1361
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1235
1362
|
// methods supported on all messages.
|
|
@@ -1250,7 +1377,7 @@ public struct BlueCredentialId: Sendable {
|
|
|
1250
1377
|
fileprivate var _id: String? = nil
|
|
1251
1378
|
}
|
|
1252
1379
|
|
|
1253
|
-
public struct BlueBlacklistEntry
|
|
1380
|
+
public struct BlueBlacklistEntry {
|
|
1254
1381
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1255
1382
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1256
1383
|
// methods supported on all messages.
|
|
@@ -1281,7 +1408,7 @@ public struct BlueBlacklistEntry: Sendable {
|
|
|
1281
1408
|
fileprivate var _expiresAt: BlueLocalTimestamp? = nil
|
|
1282
1409
|
}
|
|
1283
1410
|
|
|
1284
|
-
public struct BlueBleManufacturerInfo
|
|
1411
|
+
public struct BlueBleManufacturerInfo {
|
|
1285
1412
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1286
1413
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1287
1414
|
// methods supported on all messages.
|
|
@@ -1354,7 +1481,7 @@ public struct BlueBleManufacturerInfo: Sendable {
|
|
|
1354
1481
|
fileprivate var _hardwareState: UInt32? = nil
|
|
1355
1482
|
}
|
|
1356
1483
|
|
|
1357
|
-
public struct BlueBleAdvertisementInfo
|
|
1484
|
+
public struct BlueBleAdvertisementInfo {
|
|
1358
1485
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1359
1486
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1360
1487
|
// methods supported on all messages.
|
|
@@ -1409,7 +1536,7 @@ public struct BlueBleAdvertisementInfo: Sendable {
|
|
|
1409
1536
|
fileprivate var _mfInfo: BlueBleManufacturerInfo? = nil
|
|
1410
1537
|
}
|
|
1411
1538
|
|
|
1412
|
-
public struct BlueEvent
|
|
1539
|
+
public struct BlueEvent {
|
|
1413
1540
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1414
1541
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1415
1542
|
// methods supported on all messages.
|
|
@@ -1482,7 +1609,7 @@ public struct BlueEvent: Sendable {
|
|
|
1482
1609
|
fileprivate var _command: String? = nil
|
|
1483
1610
|
}
|
|
1484
1611
|
|
|
1485
|
-
public struct BlueSPHandshake
|
|
1612
|
+
public struct BlueSPHandshake {
|
|
1486
1613
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1487
1614
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1488
1615
|
// methods supported on all messages.
|
|
@@ -1503,7 +1630,7 @@ public struct BlueSPHandshake: @unchecked Sendable {
|
|
|
1503
1630
|
fileprivate var _transponderSalt: Data? = nil
|
|
1504
1631
|
}
|
|
1505
1632
|
|
|
1506
|
-
public struct BlueSPHandshakeReply
|
|
1633
|
+
public struct BlueSPHandshakeReply {
|
|
1507
1634
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1508
1635
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1509
1636
|
// methods supported on all messages.
|
|
@@ -1534,7 +1661,7 @@ public struct BlueSPHandshakeReply: @unchecked Sendable {
|
|
|
1534
1661
|
fileprivate var _terminalSignature: Data? = nil
|
|
1535
1662
|
}
|
|
1536
1663
|
|
|
1537
|
-
public struct BlueSPTokenCommand
|
|
1664
|
+
public struct BlueSPTokenCommand {
|
|
1538
1665
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1539
1666
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1540
1667
|
// methods supported on all messages.
|
|
@@ -1596,7 +1723,7 @@ public struct BlueSPTokenCommand: @unchecked Sendable {
|
|
|
1596
1723
|
fileprivate var _data: Data? = nil
|
|
1597
1724
|
}
|
|
1598
1725
|
|
|
1599
|
-
public struct BlueSPToken
|
|
1726
|
+
public struct BlueSPToken {
|
|
1600
1727
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1601
1728
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1602
1729
|
// methods supported on all messages.
|
|
@@ -1638,7 +1765,7 @@ public struct BlueSPToken: @unchecked Sendable {
|
|
|
1638
1765
|
|
|
1639
1766
|
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
1640
1767
|
|
|
1641
|
-
public enum OneOf_Payload: Equatable
|
|
1768
|
+
public enum OneOf_Payload: Equatable {
|
|
1642
1769
|
case command(BlueSPTokenCommand)
|
|
1643
1770
|
case ossSo(BlueOssSoMobile)
|
|
1644
1771
|
case ossSid(BlueOssSidMobile)
|
|
@@ -1663,6 +1790,28 @@ public struct BlueSPToken: @unchecked Sendable {
|
|
|
1663
1790
|
}
|
|
1664
1791
|
}
|
|
1665
1792
|
|
|
1793
|
+
#if !swift(>=4.1)
|
|
1794
|
+
public static func ==(lhs: BlueSPToken.OneOf_Payload, rhs: BlueSPToken.OneOf_Payload) -> Bool {
|
|
1795
|
+
// The use of inline closures is to circumvent an issue where the compiler
|
|
1796
|
+
// allocates stack space for every case branch when no optimizations are
|
|
1797
|
+
// enabled. https://github.com/apple/swift-protobuf/issues/1034
|
|
1798
|
+
switch (lhs, rhs) {
|
|
1799
|
+
case (.command, .command): return {
|
|
1800
|
+
guard case .command(let l) = lhs, case .command(let r) = rhs else { preconditionFailure() }
|
|
1801
|
+
return l == r
|
|
1802
|
+
}()
|
|
1803
|
+
case (.ossSo, .ossSo): return {
|
|
1804
|
+
guard case .ossSo(let l) = lhs, case .ossSo(let r) = rhs else { preconditionFailure() }
|
|
1805
|
+
return l == r
|
|
1806
|
+
}()
|
|
1807
|
+
case (.ossSid, .ossSid): return {
|
|
1808
|
+
guard case .ossSid(let l) = lhs, case .ossSid(let r) = rhs else { preconditionFailure() }
|
|
1809
|
+
return l == r
|
|
1810
|
+
}()
|
|
1811
|
+
default: return false
|
|
1812
|
+
}
|
|
1813
|
+
}
|
|
1814
|
+
#endif
|
|
1666
1815
|
}
|
|
1667
1816
|
|
|
1668
1817
|
public init() {}
|
|
@@ -1670,7 +1819,7 @@ public struct BlueSPToken: @unchecked Sendable {
|
|
|
1670
1819
|
fileprivate var _signature: Data? = nil
|
|
1671
1820
|
}
|
|
1672
1821
|
|
|
1673
|
-
public struct BlueSPResult
|
|
1822
|
+
public struct BlueSPResult {
|
|
1674
1823
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1675
1824
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1676
1825
|
// methods supported on all messages.
|
|
@@ -1692,7 +1841,7 @@ public struct BlueSPResult: @unchecked Sendable {
|
|
|
1692
1841
|
fileprivate var _data: Data? = nil
|
|
1693
1842
|
}
|
|
1694
1843
|
|
|
1695
|
-
public struct BlueOssAccessResult
|
|
1844
|
+
public struct BlueOssAccessResult {
|
|
1696
1845
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1697
1846
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1698
1847
|
// methods supported on all messages.
|
|
@@ -1770,7 +1919,7 @@ public struct BlueOssAccessResult: Sendable {
|
|
|
1770
1919
|
fileprivate var _accessOpenTime: UInt32? = nil
|
|
1771
1920
|
}
|
|
1772
1921
|
|
|
1773
|
-
public struct BlueOssAccessEventsResult
|
|
1922
|
+
public struct BlueOssAccessEventsResult {
|
|
1774
1923
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1775
1924
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1776
1925
|
// methods supported on all messages.
|
|
@@ -1793,7 +1942,7 @@ public struct BlueOssAccessEventsResult: Sendable {
|
|
|
1793
1942
|
fileprivate var _accessResult: BlueOssAccessResult? = nil
|
|
1794
1943
|
}
|
|
1795
1944
|
|
|
1796
|
-
public struct BlueOssSidVersion
|
|
1945
|
+
public struct BlueOssSidVersion {
|
|
1797
1946
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1798
1947
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1799
1948
|
// methods supported on all messages.
|
|
@@ -1824,7 +1973,7 @@ public struct BlueOssSidVersion: Sendable {
|
|
|
1824
1973
|
fileprivate var _versionMinor: UInt32? = nil
|
|
1825
1974
|
}
|
|
1826
1975
|
|
|
1827
|
-
public struct BlueOssSidCredentialTypeOss
|
|
1976
|
+
public struct BlueOssSidCredentialTypeOss {
|
|
1828
1977
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1829
1978
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1830
1979
|
// methods supported on all messages.
|
|
@@ -1845,7 +1994,7 @@ public struct BlueOssSidCredentialTypeOss: Sendable {
|
|
|
1845
1994
|
fileprivate var _notUsed: Bool? = nil
|
|
1846
1995
|
}
|
|
1847
1996
|
|
|
1848
|
-
public struct BlueOssSidCredentialTypeProprietary
|
|
1997
|
+
public struct BlueOssSidCredentialTypeProprietary {
|
|
1849
1998
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1850
1999
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1851
2000
|
// methods supported on all messages.
|
|
@@ -1866,7 +2015,7 @@ public struct BlueOssSidCredentialTypeProprietary: @unchecked Sendable {
|
|
|
1866
2015
|
fileprivate var _mfgCode: Data? = nil
|
|
1867
2016
|
}
|
|
1868
2017
|
|
|
1869
|
-
public struct BlueOssSidCredentialType
|
|
2018
|
+
public struct BlueOssSidCredentialType {
|
|
1870
2019
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1871
2020
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1872
2021
|
// methods supported on all messages.
|
|
@@ -1907,7 +2056,7 @@ public struct BlueOssSidCredentialType: Sendable {
|
|
|
1907
2056
|
fileprivate var _proprietary: BlueOssSidCredentialTypeProprietary? = nil
|
|
1908
2057
|
}
|
|
1909
2058
|
|
|
1910
|
-
public struct BlueOssSidFileInfo
|
|
2059
|
+
public struct BlueOssSidFileInfo {
|
|
1911
2060
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1912
2061
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1913
2062
|
// methods supported on all messages.
|
|
@@ -1958,7 +2107,7 @@ public struct BlueOssSidFileInfo: Sendable {
|
|
|
1958
2107
|
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
1959
2108
|
}
|
|
1960
2109
|
|
|
1961
|
-
public struct BlueOssSidConfiguration
|
|
2110
|
+
public struct BlueOssSidConfiguration {
|
|
1962
2111
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1963
2112
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1964
2113
|
// methods supported on all messages.
|
|
@@ -1979,7 +2128,7 @@ public struct BlueOssSidConfiguration: Sendable {
|
|
|
1979
2128
|
fileprivate var _info: BlueOssSidFileInfo? = nil
|
|
1980
2129
|
}
|
|
1981
2130
|
|
|
1982
|
-
public struct BlueOssSidStorageProfile
|
|
2131
|
+
public struct BlueOssSidStorageProfile {
|
|
1983
2132
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1984
2133
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1985
2134
|
// methods supported on all messages.
|
|
@@ -2030,7 +2179,7 @@ public struct BlueOssSidStorageProfile: Sendable {
|
|
|
2030
2179
|
fileprivate var _infoFileSize: UInt32? = nil
|
|
2031
2180
|
}
|
|
2032
2181
|
|
|
2033
|
-
public struct BlueOssSidProvisioningConfiguration
|
|
2182
|
+
public struct BlueOssSidProvisioningConfiguration {
|
|
2034
2183
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2035
2184
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2036
2185
|
// methods supported on all messages.
|
|
@@ -2051,7 +2200,7 @@ public struct BlueOssSidProvisioningConfiguration: Sendable {
|
|
|
2051
2200
|
fileprivate var _notUsed: Bool? = nil
|
|
2052
2201
|
}
|
|
2053
2202
|
|
|
2054
|
-
public struct BlueOssSidProvisioningData
|
|
2203
|
+
public struct BlueOssSidProvisioningData {
|
|
2055
2204
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2056
2205
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2057
2206
|
// methods supported on all messages.
|
|
@@ -2093,7 +2242,7 @@ public struct BlueOssSidProvisioningData: Sendable {
|
|
|
2093
2242
|
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
2094
2243
|
}
|
|
2095
2244
|
|
|
2096
|
-
public struct BlueOssSidMobile
|
|
2245
|
+
public struct BlueOssSidMobile {
|
|
2097
2246
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2098
2247
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2099
2248
|
// methods supported on all messages.
|
|
@@ -2114,7 +2263,7 @@ public struct BlueOssSidMobile: @unchecked Sendable {
|
|
|
2114
2263
|
fileprivate var _infoFile: Data? = nil
|
|
2115
2264
|
}
|
|
2116
2265
|
|
|
2117
|
-
public struct BlueOssSidMobileProvisioningConfiguration
|
|
2266
|
+
public struct BlueOssSidMobileProvisioningConfiguration {
|
|
2118
2267
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2119
2268
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2120
2269
|
// methods supported on all messages.
|
|
@@ -2136,7 +2285,7 @@ public struct BlueOssSidMobileProvisioningConfiguration: Sendable {
|
|
|
2136
2285
|
}
|
|
2137
2286
|
|
|
2138
2287
|
/// Default configuration from spec
|
|
2139
|
-
public struct BlueOssSidMifareDesfireProvisioningConfiguration
|
|
2288
|
+
public struct BlueOssSidMifareDesfireProvisioningConfiguration {
|
|
2140
2289
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2141
2290
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2142
2291
|
// methods supported on all messages.
|
|
@@ -2158,7 +2307,7 @@ public struct BlueOssSidMifareDesfireProvisioningConfiguration: Sendable {
|
|
|
2158
2307
|
}
|
|
2159
2308
|
|
|
2160
2309
|
/// Demo keys from spec
|
|
2161
|
-
public struct BlueOssSidMifareDesfireConfiguration
|
|
2310
|
+
public struct BlueOssSidMifareDesfireConfiguration {
|
|
2162
2311
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2163
2312
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2164
2313
|
// methods supported on all messages.
|
|
@@ -2213,7 +2362,7 @@ public struct BlueOssSidMifareDesfireConfiguration: @unchecked Sendable {
|
|
|
2213
2362
|
fileprivate var _aid: UInt32? = nil
|
|
2214
2363
|
}
|
|
2215
2364
|
|
|
2216
|
-
public struct BlueOssSidSettings
|
|
2365
|
+
public struct BlueOssSidSettings {
|
|
2217
2366
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2218
2367
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2219
2368
|
// methods supported on all messages.
|
|
@@ -2234,7 +2383,7 @@ public struct BlueOssSidSettings: Sendable {
|
|
|
2234
2383
|
fileprivate var _mifareDesfireConfig: BlueOssSidMifareDesfireConfiguration? = nil
|
|
2235
2384
|
}
|
|
2236
2385
|
|
|
2237
|
-
public struct BlueOssSoVersion
|
|
2386
|
+
public struct BlueOssSoVersion {
|
|
2238
2387
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2239
2388
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2240
2389
|
// methods supported on all messages.
|
|
@@ -2265,7 +2414,7 @@ public struct BlueOssSoVersion: Sendable {
|
|
|
2265
2414
|
fileprivate var _versionMinor: UInt32? = nil
|
|
2266
2415
|
}
|
|
2267
2416
|
|
|
2268
|
-
public struct BlueOssSoCredentialTypeOss
|
|
2417
|
+
public struct BlueOssSoCredentialTypeOss {
|
|
2269
2418
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2270
2419
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2271
2420
|
// methods supported on all messages.
|
|
@@ -2286,7 +2435,7 @@ public struct BlueOssSoCredentialTypeOss: Sendable {
|
|
|
2286
2435
|
fileprivate var _credential: BlueOssSoCredentialTypeOssCredential? = nil
|
|
2287
2436
|
}
|
|
2288
2437
|
|
|
2289
|
-
public struct BlueOssSoCredentialTypeProprietary
|
|
2438
|
+
public struct BlueOssSoCredentialTypeProprietary {
|
|
2290
2439
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2291
2440
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2292
2441
|
// methods supported on all messages.
|
|
@@ -2307,7 +2456,7 @@ public struct BlueOssSoCredentialTypeProprietary: @unchecked Sendable {
|
|
|
2307
2456
|
fileprivate var _mfgCode: Data? = nil
|
|
2308
2457
|
}
|
|
2309
2458
|
|
|
2310
|
-
public struct BlueOssSoCredentialType
|
|
2459
|
+
public struct BlueOssSoCredentialType {
|
|
2311
2460
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2312
2461
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2313
2462
|
// methods supported on all messages.
|
|
@@ -2348,7 +2497,7 @@ public struct BlueOssSoCredentialType: Sendable {
|
|
|
2348
2497
|
fileprivate var _proprietary: BlueOssSoCredentialTypeProprietary? = nil
|
|
2349
2498
|
}
|
|
2350
2499
|
|
|
2351
|
-
public struct BlueOssSoDTScheduleDay
|
|
2500
|
+
public struct BlueOssSoDTScheduleDay {
|
|
2352
2501
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2353
2502
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2354
2503
|
// methods supported on all messages.
|
|
@@ -2363,7 +2512,7 @@ public struct BlueOssSoDTScheduleDay: Sendable {
|
|
|
2363
2512
|
public init() {}
|
|
2364
2513
|
}
|
|
2365
2514
|
|
|
2366
|
-
public struct BlueOssSoDTSchedule
|
|
2515
|
+
public struct BlueOssSoDTSchedule {
|
|
2367
2516
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2368
2517
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2369
2518
|
// methods supported on all messages.
|
|
@@ -2375,7 +2524,7 @@ public struct BlueOssSoDTSchedule: Sendable {
|
|
|
2375
2524
|
public init() {}
|
|
2376
2525
|
}
|
|
2377
2526
|
|
|
2378
|
-
public struct BlueOssSoDoorInfo
|
|
2527
|
+
public struct BlueOssSoDoorInfo {
|
|
2379
2528
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2380
2529
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2381
2530
|
// methods supported on all messages.
|
|
@@ -2426,7 +2575,7 @@ public struct BlueOssSoDoorInfo: Sendable {
|
|
|
2426
2575
|
fileprivate var _accessType: BlueAccessType? = nil
|
|
2427
2576
|
}
|
|
2428
2577
|
|
|
2429
|
-
public struct BlueOssSoEvent
|
|
2578
|
+
public struct BlueOssSoEvent {
|
|
2430
2579
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2431
2580
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2432
2581
|
// methods supported on all messages.
|
|
@@ -2480,7 +2629,7 @@ public struct BlueOssSoEvent: Sendable {
|
|
|
2480
2629
|
fileprivate var _eventInfo: UInt32? = nil
|
|
2481
2630
|
}
|
|
2482
2631
|
|
|
2483
|
-
public struct BlueOssSoExtFeature
|
|
2632
|
+
public struct BlueOssSoExtFeature {
|
|
2484
2633
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2485
2634
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2486
2635
|
// methods supported on all messages.
|
|
@@ -2511,7 +2660,7 @@ public struct BlueOssSoExtFeature: @unchecked Sendable {
|
|
|
2511
2660
|
fileprivate var _value: Data? = nil
|
|
2512
2661
|
}
|
|
2513
2662
|
|
|
2514
|
-
public struct BlueOssSoExtFeature_ValidityStart
|
|
2663
|
+
public struct BlueOssSoExtFeature_ValidityStart {
|
|
2515
2664
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2516
2665
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2517
2666
|
// methods supported on all messages.
|
|
@@ -2542,7 +2691,7 @@ public struct BlueOssSoExtFeature_ValidityStart: Sendable {
|
|
|
2542
2691
|
fileprivate var _validityStartTime: BlueLocalTimestamp? = nil
|
|
2543
2692
|
}
|
|
2544
2693
|
|
|
2545
|
-
public struct BlueOssSoFileInfo
|
|
2694
|
+
public struct BlueOssSoFileInfo {
|
|
2546
2695
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2547
2696
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2548
2697
|
// methods supported on all messages.
|
|
@@ -2613,7 +2762,7 @@ public struct BlueOssSoFileInfo: Sendable {
|
|
|
2613
2762
|
fileprivate var _maxBlacklistEntries: UInt32? = nil
|
|
2614
2763
|
}
|
|
2615
2764
|
|
|
2616
|
-
public struct BlueOssSoFileData
|
|
2765
|
+
public struct BlueOssSoFileData {
|
|
2617
2766
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2618
2767
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2619
2768
|
// methods supported on all messages.
|
|
@@ -2678,7 +2827,7 @@ public struct BlueOssSoFileData: Sendable {
|
|
|
2678
2827
|
fileprivate var _hasExtensions_p: Bool? = nil
|
|
2679
2828
|
}
|
|
2680
2829
|
|
|
2681
|
-
public struct BlueOssSoFileEvent
|
|
2830
|
+
public struct BlueOssSoFileEvent {
|
|
2682
2831
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2683
2832
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2684
2833
|
// methods supported on all messages.
|
|
@@ -2702,7 +2851,7 @@ public struct BlueOssSoFileEvent: @unchecked Sendable {
|
|
|
2702
2851
|
fileprivate var _supportedEventIds: Data? = nil
|
|
2703
2852
|
}
|
|
2704
2853
|
|
|
2705
|
-
public struct BlueOssSoFileBlacklist
|
|
2854
|
+
public struct BlueOssSoFileBlacklist {
|
|
2706
2855
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2707
2856
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2708
2857
|
// methods supported on all messages.
|
|
@@ -2714,7 +2863,7 @@ public struct BlueOssSoFileBlacklist: Sendable {
|
|
|
2714
2863
|
public init() {}
|
|
2715
2864
|
}
|
|
2716
2865
|
|
|
2717
|
-
public struct BlueOssSoFileCustomerExtensions
|
|
2866
|
+
public struct BlueOssSoFileCustomerExtensions {
|
|
2718
2867
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2719
2868
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2720
2869
|
// methods supported on all messages.
|
|
@@ -2739,7 +2888,7 @@ public struct BlueOssSoFileCustomerExtensions: Sendable {
|
|
|
2739
2888
|
fileprivate var _validityStart: BlueOssSoExtFeature_ValidityStart? = nil
|
|
2740
2889
|
}
|
|
2741
2890
|
|
|
2742
|
-
public struct BlueOssSoConfiguration
|
|
2891
|
+
public struct BlueOssSoConfiguration {
|
|
2743
2892
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2744
2893
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2745
2894
|
// methods supported on all messages.
|
|
@@ -2796,7 +2945,7 @@ public struct BlueOssSoConfiguration: @unchecked Sendable {
|
|
|
2796
2945
|
fileprivate var _storage = _StorageClass.defaultInstance
|
|
2797
2946
|
}
|
|
2798
2947
|
|
|
2799
|
-
public struct BlueOssSoStorageProfile
|
|
2948
|
+
public struct BlueOssSoStorageProfile {
|
|
2800
2949
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2801
2950
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2802
2951
|
// methods supported on all messages.
|
|
@@ -2927,7 +3076,7 @@ public struct BlueOssSoStorageProfile: Sendable {
|
|
|
2927
3076
|
fileprivate var _customerExtensionsFileSize: UInt32? = nil
|
|
2928
3077
|
}
|
|
2929
3078
|
|
|
2930
|
-
public struct BlueOssSoProvisioningConfiguration
|
|
3079
|
+
public struct BlueOssSoProvisioningConfiguration {
|
|
2931
3080
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2932
3081
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2933
3082
|
// methods supported on all messages.
|
|
@@ -3019,7 +3168,7 @@ public struct BlueOssSoProvisioningConfiguration: @unchecked Sendable {
|
|
|
3019
3168
|
fileprivate var _customerExtensionsSize: UInt32? = nil
|
|
3020
3169
|
}
|
|
3021
3170
|
|
|
3022
|
-
public struct BlueOssSoProvisioningData
|
|
3171
|
+
public struct BlueOssSoProvisioningData {
|
|
3023
3172
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3024
3173
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3025
3174
|
// methods supported on all messages.
|
|
@@ -3071,7 +3220,7 @@ public struct BlueOssSoProvisioningData: Sendable {
|
|
|
3071
3220
|
fileprivate var _siteID: UInt32? = nil
|
|
3072
3221
|
}
|
|
3073
3222
|
|
|
3074
|
-
public struct BlueOssSoMobile
|
|
3223
|
+
public struct BlueOssSoMobile {
|
|
3075
3224
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3076
3225
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3077
3226
|
// methods supported on all messages.
|
|
@@ -3144,7 +3293,7 @@ public struct BlueOssSoMobile: @unchecked Sendable {
|
|
|
3144
3293
|
fileprivate var _supportedEventIds: Data? = nil
|
|
3145
3294
|
}
|
|
3146
3295
|
|
|
3147
|
-
public struct BlueOssSoMobileProvisioningConfiguration
|
|
3296
|
+
public struct BlueOssSoMobileProvisioningConfiguration {
|
|
3148
3297
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3149
3298
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3150
3299
|
// methods supported on all messages.
|
|
@@ -3237,7 +3386,7 @@ public struct BlueOssSoMobileProvisioningConfiguration: @unchecked Sendable {
|
|
|
3237
3386
|
}
|
|
3238
3387
|
|
|
3239
3388
|
/// Default configuration from spec plus customer extensions spacing
|
|
3240
|
-
public struct BlueOssSoMifareDesfireProvisioningConfiguration
|
|
3389
|
+
public struct BlueOssSoMifareDesfireProvisioningConfiguration {
|
|
3241
3390
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3242
3391
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3243
3392
|
// methods supported on all messages.
|
|
@@ -3330,7 +3479,7 @@ public struct BlueOssSoMifareDesfireProvisioningConfiguration: @unchecked Sendab
|
|
|
3330
3479
|
}
|
|
3331
3480
|
|
|
3332
3481
|
/// Demo keys from spec
|
|
3333
|
-
public struct BlueOssSoMifareDesfireConfiguration
|
|
3482
|
+
public struct BlueOssSoMifareDesfireConfiguration {
|
|
3334
3483
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3335
3484
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3336
3485
|
// methods supported on all messages.
|
|
@@ -3385,7 +3534,7 @@ public struct BlueOssSoMifareDesfireConfiguration: @unchecked Sendable {
|
|
|
3385
3534
|
fileprivate var _aid: UInt32? = nil
|
|
3386
3535
|
}
|
|
3387
3536
|
|
|
3388
|
-
public struct BlueOssSoSettings
|
|
3537
|
+
public struct BlueOssSoSettings {
|
|
3389
3538
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3390
3539
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3391
3540
|
// methods supported on all messages.
|
|
@@ -3406,7 +3555,7 @@ public struct BlueOssSoSettings: Sendable {
|
|
|
3406
3555
|
fileprivate var _mifareDesfireConfig: BlueOssSoMifareDesfireConfiguration? = nil
|
|
3407
3556
|
}
|
|
3408
3557
|
|
|
3409
|
-
public struct _BlueTestEncodeDecode
|
|
3558
|
+
public struct _BlueTestEncodeDecode {
|
|
3410
3559
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3411
3560
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3412
3561
|
// methods supported on all messages.
|
|
@@ -3457,6 +3606,82 @@ public struct _BlueTestEncodeDecode: Sendable {
|
|
|
3457
3606
|
fileprivate var _applicationVersion: Int32? = nil
|
|
3458
3607
|
}
|
|
3459
3608
|
|
|
3609
|
+
#if swift(>=5.5) && canImport(_Concurrency)
|
|
3610
|
+
extension BlueReturnCode: @unchecked Sendable {}
|
|
3611
|
+
extension BlueTimeUnit: @unchecked Sendable {}
|
|
3612
|
+
extension BlueWeekday: @unchecked Sendable {}
|
|
3613
|
+
extension BlueCredentialType: @unchecked Sendable {}
|
|
3614
|
+
extension BlueAccessType: @unchecked Sendable {}
|
|
3615
|
+
extension BlueTransponderType: @unchecked Sendable {}
|
|
3616
|
+
extension BlueHardwareType: @unchecked Sendable {}
|
|
3617
|
+
extension BlueBatteryLevel: @unchecked Sendable {}
|
|
3618
|
+
extension BlueEventId: @unchecked Sendable {}
|
|
3619
|
+
extension BlueEventInfoSystem: @unchecked Sendable {}
|
|
3620
|
+
extension BlueEventInfoAccess: @unchecked Sendable {}
|
|
3621
|
+
extension BlueOssCredentialTypeSource: @unchecked Sendable {}
|
|
3622
|
+
extension BlueOssSoCredentialTypeOssCredential: @unchecked Sendable {}
|
|
3623
|
+
extension BlueOssSoDoorGroupId: @unchecked Sendable {}
|
|
3624
|
+
extension BlueOssSoDoorInfoAccessBy: @unchecked Sendable {}
|
|
3625
|
+
extension BlueOssSoFileId: @unchecked Sendable {}
|
|
3626
|
+
extension BlueSharedDemoData: @unchecked Sendable {}
|
|
3627
|
+
extension BlueVersionInfo: @unchecked Sendable {}
|
|
3628
|
+
extension BlueLocalTimestamp: @unchecked Sendable {}
|
|
3629
|
+
extension BlueLocalTimeperiod: @unchecked Sendable {}
|
|
3630
|
+
extension BlueLocalTimeSchedule: @unchecked Sendable {}
|
|
3631
|
+
extension BlueCredentialId: @unchecked Sendable {}
|
|
3632
|
+
extension BlueBlacklistEntry: @unchecked Sendable {}
|
|
3633
|
+
extension BlueBleManufacturerInfo: @unchecked Sendable {}
|
|
3634
|
+
extension BlueBleAdvertisementInfo: @unchecked Sendable {}
|
|
3635
|
+
extension BlueEvent: @unchecked Sendable {}
|
|
3636
|
+
extension BlueSPHandshake: @unchecked Sendable {}
|
|
3637
|
+
extension BlueSPHandshakeReply: @unchecked Sendable {}
|
|
3638
|
+
extension BlueSPTokenCommand: @unchecked Sendable {}
|
|
3639
|
+
extension BlueSPToken: @unchecked Sendable {}
|
|
3640
|
+
extension BlueSPToken.OneOf_Payload: @unchecked Sendable {}
|
|
3641
|
+
extension BlueSPResult: @unchecked Sendable {}
|
|
3642
|
+
extension BlueOssAccessResult: @unchecked Sendable {}
|
|
3643
|
+
extension BlueOssAccessEventsResult: @unchecked Sendable {}
|
|
3644
|
+
extension BlueOssSidVersion: @unchecked Sendable {}
|
|
3645
|
+
extension BlueOssSidCredentialTypeOss: @unchecked Sendable {}
|
|
3646
|
+
extension BlueOssSidCredentialTypeProprietary: @unchecked Sendable {}
|
|
3647
|
+
extension BlueOssSidCredentialType: @unchecked Sendable {}
|
|
3648
|
+
extension BlueOssSidFileInfo: @unchecked Sendable {}
|
|
3649
|
+
extension BlueOssSidConfiguration: @unchecked Sendable {}
|
|
3650
|
+
extension BlueOssSidStorageProfile: @unchecked Sendable {}
|
|
3651
|
+
extension BlueOssSidProvisioningConfiguration: @unchecked Sendable {}
|
|
3652
|
+
extension BlueOssSidProvisioningData: @unchecked Sendable {}
|
|
3653
|
+
extension BlueOssSidMobile: @unchecked Sendable {}
|
|
3654
|
+
extension BlueOssSidMobileProvisioningConfiguration: @unchecked Sendable {}
|
|
3655
|
+
extension BlueOssSidMifareDesfireProvisioningConfiguration: @unchecked Sendable {}
|
|
3656
|
+
extension BlueOssSidMifareDesfireConfiguration: @unchecked Sendable {}
|
|
3657
|
+
extension BlueOssSidSettings: @unchecked Sendable {}
|
|
3658
|
+
extension BlueOssSoVersion: @unchecked Sendable {}
|
|
3659
|
+
extension BlueOssSoCredentialTypeOss: @unchecked Sendable {}
|
|
3660
|
+
extension BlueOssSoCredentialTypeProprietary: @unchecked Sendable {}
|
|
3661
|
+
extension BlueOssSoCredentialType: @unchecked Sendable {}
|
|
3662
|
+
extension BlueOssSoDTScheduleDay: @unchecked Sendable {}
|
|
3663
|
+
extension BlueOssSoDTSchedule: @unchecked Sendable {}
|
|
3664
|
+
extension BlueOssSoDoorInfo: @unchecked Sendable {}
|
|
3665
|
+
extension BlueOssSoEvent: @unchecked Sendable {}
|
|
3666
|
+
extension BlueOssSoExtFeature: @unchecked Sendable {}
|
|
3667
|
+
extension BlueOssSoExtFeature_ValidityStart: @unchecked Sendable {}
|
|
3668
|
+
extension BlueOssSoFileInfo: @unchecked Sendable {}
|
|
3669
|
+
extension BlueOssSoFileData: @unchecked Sendable {}
|
|
3670
|
+
extension BlueOssSoFileEvent: @unchecked Sendable {}
|
|
3671
|
+
extension BlueOssSoFileBlacklist: @unchecked Sendable {}
|
|
3672
|
+
extension BlueOssSoFileCustomerExtensions: @unchecked Sendable {}
|
|
3673
|
+
extension BlueOssSoConfiguration: @unchecked Sendable {}
|
|
3674
|
+
extension BlueOssSoStorageProfile: @unchecked Sendable {}
|
|
3675
|
+
extension BlueOssSoProvisioningConfiguration: @unchecked Sendable {}
|
|
3676
|
+
extension BlueOssSoProvisioningData: @unchecked Sendable {}
|
|
3677
|
+
extension BlueOssSoMobile: @unchecked Sendable {}
|
|
3678
|
+
extension BlueOssSoMobileProvisioningConfiguration: @unchecked Sendable {}
|
|
3679
|
+
extension BlueOssSoMifareDesfireProvisioningConfiguration: @unchecked Sendable {}
|
|
3680
|
+
extension BlueOssSoMifareDesfireConfiguration: @unchecked Sendable {}
|
|
3681
|
+
extension BlueOssSoSettings: @unchecked Sendable {}
|
|
3682
|
+
extension _BlueTestEncodeDecode: @unchecked Sendable {}
|
|
3683
|
+
#endif // swift(>=5.5) && canImport(_Concurrency)
|
|
3684
|
+
|
|
3460
3685
|
// MARK: - Code below here is support for the SwiftProtobuf runtime.
|
|
3461
3686
|
|
|
3462
3687
|
extension BlueReturnCode: SwiftProtobuf._ProtoNameProviding {
|