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