@blueid/access-proto 1.96.0 → 2.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BlueCore.proto +2 -0
- package/BlueSDK.proto +104 -41
- package/cjs/BlueCore_pb.d.ts +3 -0
- package/cjs/BlueSDK_pb.d.ts +427 -117
- package/cjs/BlueSDK_pb.js +193 -49
- package/es/BlueCore_pb.d.ts +3 -0
- package/es/BlueCore_pb.js +3 -0
- package/es/BlueSDK_pb.d.ts +427 -117
- package/es/BlueSDK_pb.js +151 -47
- package/nanopb/BlueCore.pb.h +2 -0
- package/nanopb/BlueSDK.pb.c +32 -8
- package/nanopb/BlueSDK.pb.h +335 -122
- package/package.json +1 -1
- package/swift/BlueCore.pb.swift +76 -299
- package/swift/BlueLock.pb.swift +4 -18
- package/swift/BlueSDK.pb.swift +2133 -1306
- 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,9 @@ public enum BlueWeekday: SwiftProtobuf.Enum {
|
|
|
451
436
|
|
|
452
437
|
}
|
|
453
438
|
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
// Support synthesized by the compiler.
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
#endif // swift(>=4.2)
|
|
461
|
-
|
|
462
|
-
public enum BlueCredentialType: SwiftProtobuf.Enum {
|
|
439
|
+
/// @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
440
|
+
/// This should be renamed to BlueIdentityRole later on.
|
|
441
|
+
public enum BlueCredentialType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
463
442
|
public typealias RawValue = Int
|
|
464
443
|
|
|
465
444
|
/// Regular credential can only open / enter
|
|
@@ -504,15 +483,7 @@ public enum BlueCredentialType: SwiftProtobuf.Enum {
|
|
|
504
483
|
|
|
505
484
|
}
|
|
506
485
|
|
|
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 {
|
|
486
|
+
public enum BlueAccessType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
516
487
|
public typealias RawValue = Int
|
|
517
488
|
|
|
518
489
|
/// Access with default unlock time
|
|
@@ -572,15 +543,7 @@ public enum BlueAccessType: SwiftProtobuf.Enum {
|
|
|
572
543
|
|
|
573
544
|
}
|
|
574
545
|
|
|
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 {
|
|
546
|
+
public enum BlueTransponderType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
584
547
|
public typealias RawValue = Int
|
|
585
548
|
case unknownTransponder // = 0
|
|
586
549
|
case mobileTransponder // = 1
|
|
@@ -609,15 +572,7 @@ public enum BlueTransponderType: SwiftProtobuf.Enum {
|
|
|
609
572
|
|
|
610
573
|
}
|
|
611
574
|
|
|
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 {
|
|
575
|
+
public enum BlueHardwareType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
621
576
|
public typealias RawValue = Int
|
|
622
577
|
case unknownHardware // = 0
|
|
623
578
|
case testHardware // = 1
|
|
@@ -658,15 +613,7 @@ public enum BlueHardwareType: SwiftProtobuf.Enum {
|
|
|
658
613
|
|
|
659
614
|
}
|
|
660
615
|
|
|
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 {
|
|
616
|
+
public enum BlueBatteryLevel: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
670
617
|
public typealias RawValue = Int
|
|
671
618
|
case unknownBattery // = 0
|
|
672
619
|
case onPower // = 1
|
|
@@ -712,15 +659,7 @@ public enum BlueBatteryLevel: SwiftProtobuf.Enum {
|
|
|
712
659
|
|
|
713
660
|
}
|
|
714
661
|
|
|
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 {
|
|
662
|
+
public enum BlueEventId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
724
663
|
public typealias RawValue = Int
|
|
725
664
|
|
|
726
665
|
///* eventInfo = 0
|
|
@@ -813,15 +752,7 @@ public enum BlueEventId: SwiftProtobuf.Enum {
|
|
|
813
752
|
|
|
814
753
|
}
|
|
815
754
|
|
|
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 {
|
|
755
|
+
public enum BlueEventInfoSystem: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
825
756
|
public typealias RawValue = Int
|
|
826
757
|
case systemRestart // = 1
|
|
827
758
|
case systemConfigured // = 2
|
|
@@ -847,15 +778,7 @@ public enum BlueEventInfoSystem: SwiftProtobuf.Enum {
|
|
|
847
778
|
|
|
848
779
|
}
|
|
849
780
|
|
|
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 {
|
|
781
|
+
public enum BlueEventInfoAccess: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
859
782
|
public typealias RawValue = Int
|
|
860
783
|
case granted // = 1
|
|
861
784
|
case grantedDefaultTime // = 2
|
|
@@ -902,15 +825,7 @@ public enum BlueEventInfoAccess: SwiftProtobuf.Enum {
|
|
|
902
825
|
|
|
903
826
|
}
|
|
904
827
|
|
|
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 {
|
|
828
|
+
public enum BlueOssCredentialTypeSource: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
914
829
|
public typealias RawValue = Int
|
|
915
830
|
case oss // = 0
|
|
916
831
|
case proprietary // = 1
|
|
@@ -936,15 +851,7 @@ public enum BlueOssCredentialTypeSource: SwiftProtobuf.Enum {
|
|
|
936
851
|
|
|
937
852
|
}
|
|
938
853
|
|
|
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 {
|
|
854
|
+
public enum BlueOssSoCredentialTypeOssCredential: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
948
855
|
public typealias RawValue = Int
|
|
949
856
|
case standard // = 0
|
|
950
857
|
case interventionMedia // = 1
|
|
@@ -970,15 +877,7 @@ public enum BlueOssSoCredentialTypeOssCredential: SwiftProtobuf.Enum {
|
|
|
970
877
|
|
|
971
878
|
}
|
|
972
879
|
|
|
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 {
|
|
880
|
+
public enum BlueOssSoDoorGroupId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
982
881
|
public typealias RawValue = Int
|
|
983
882
|
case masterGroupID // = 65535
|
|
984
883
|
|
|
@@ -1001,15 +900,7 @@ public enum BlueOssSoDoorGroupId: SwiftProtobuf.Enum {
|
|
|
1001
900
|
|
|
1002
901
|
}
|
|
1003
902
|
|
|
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 {
|
|
903
|
+
public enum BlueOssSoDoorInfoAccessBy: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
1013
904
|
public typealias RawValue = Int
|
|
1014
905
|
case doorGroupID // = 0
|
|
1015
906
|
case doorID // = 1
|
|
@@ -1035,15 +926,7 @@ public enum BlueOssSoDoorInfoAccessBy: SwiftProtobuf.Enum {
|
|
|
1035
926
|
|
|
1036
927
|
}
|
|
1037
928
|
|
|
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 {
|
|
929
|
+
public enum BlueOssSoFileId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
1047
930
|
public typealias RawValue = Int
|
|
1048
931
|
case info // = 0
|
|
1049
932
|
case data // = 1
|
|
@@ -1078,15 +961,7 @@ public enum BlueOssSoFileId: SwiftProtobuf.Enum {
|
|
|
1078
961
|
|
|
1079
962
|
}
|
|
1080
963
|
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
extension BlueOssSoFileId: CaseIterable {
|
|
1084
|
-
// Support synthesized by the compiler.
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
#endif // swift(>=4.2)
|
|
1088
|
-
|
|
1089
|
-
public struct BlueSharedDemoData {
|
|
964
|
+
public struct BlueSharedDemoData: @unchecked Sendable {
|
|
1090
965
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1091
966
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1092
967
|
// methods supported on all messages.
|
|
@@ -1148,7 +1023,7 @@ public struct BlueSharedDemoData {
|
|
|
1148
1023
|
fileprivate var _signaturePublicKey: Data? = nil
|
|
1149
1024
|
}
|
|
1150
1025
|
|
|
1151
|
-
public struct BlueVersionInfo {
|
|
1026
|
+
public struct BlueVersionInfo: Sendable {
|
|
1152
1027
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1153
1028
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1154
1029
|
// methods supported on all messages.
|
|
@@ -1189,7 +1064,7 @@ public struct BlueVersionInfo {
|
|
|
1189
1064
|
fileprivate var _testVersion: UInt32? = nil
|
|
1190
1065
|
}
|
|
1191
1066
|
|
|
1192
|
-
public struct BlueLocalTimestamp {
|
|
1067
|
+
public struct BlueLocalTimestamp: Sendable {
|
|
1193
1068
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1194
1069
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1195
1070
|
// methods supported on all messages.
|
|
@@ -1260,7 +1135,7 @@ public struct BlueLocalTimestamp {
|
|
|
1260
1135
|
fileprivate var _seconds: UInt32? = nil
|
|
1261
1136
|
}
|
|
1262
1137
|
|
|
1263
|
-
public struct BlueLocalTimeperiod {
|
|
1138
|
+
public struct BlueLocalTimeperiod: Sendable {
|
|
1264
1139
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1265
1140
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1266
1141
|
// methods supported on all messages.
|
|
@@ -1311,7 +1186,7 @@ public struct BlueLocalTimeperiod {
|
|
|
1311
1186
|
fileprivate var _minutesTo: UInt32? = nil
|
|
1312
1187
|
}
|
|
1313
1188
|
|
|
1314
|
-
public struct BlueLocalTimeSchedule {
|
|
1189
|
+
public struct BlueLocalTimeSchedule: Sendable {
|
|
1315
1190
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1316
1191
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1317
1192
|
// methods supported on all messages.
|
|
@@ -1356,7 +1231,7 @@ public struct BlueLocalTimeSchedule {
|
|
|
1356
1231
|
fileprivate var _timePeriod: BlueLocalTimeperiod? = nil
|
|
1357
1232
|
}
|
|
1358
1233
|
|
|
1359
|
-
public struct BlueCredentialId {
|
|
1234
|
+
public struct BlueCredentialId: Sendable {
|
|
1360
1235
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1361
1236
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1362
1237
|
// methods supported on all messages.
|
|
@@ -1377,7 +1252,7 @@ public struct BlueCredentialId {
|
|
|
1377
1252
|
fileprivate var _id: String? = nil
|
|
1378
1253
|
}
|
|
1379
1254
|
|
|
1380
|
-
public struct BlueBlacklistEntry {
|
|
1255
|
+
public struct BlueBlacklistEntry: Sendable {
|
|
1381
1256
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1382
1257
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1383
1258
|
// methods supported on all messages.
|
|
@@ -1408,7 +1283,7 @@ public struct BlueBlacklistEntry {
|
|
|
1408
1283
|
fileprivate var _expiresAt: BlueLocalTimestamp? = nil
|
|
1409
1284
|
}
|
|
1410
1285
|
|
|
1411
|
-
public struct BlueBleManufacturerInfo {
|
|
1286
|
+
public struct BlueBleManufacturerInfo: Sendable {
|
|
1412
1287
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1413
1288
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1414
1289
|
// methods supported on all messages.
|
|
@@ -1481,7 +1356,7 @@ public struct BlueBleManufacturerInfo {
|
|
|
1481
1356
|
fileprivate var _hardwareState: UInt32? = nil
|
|
1482
1357
|
}
|
|
1483
1358
|
|
|
1484
|
-
public struct BlueBleAdvertisementInfo {
|
|
1359
|
+
public struct BlueBleAdvertisementInfo: Sendable {
|
|
1485
1360
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1486
1361
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1487
1362
|
// methods supported on all messages.
|
|
@@ -1536,7 +1411,7 @@ public struct BlueBleAdvertisementInfo {
|
|
|
1536
1411
|
fileprivate var _mfInfo: BlueBleManufacturerInfo? = nil
|
|
1537
1412
|
}
|
|
1538
1413
|
|
|
1539
|
-
public struct BlueEvent {
|
|
1414
|
+
public struct BlueEvent: Sendable {
|
|
1540
1415
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1541
1416
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1542
1417
|
// methods supported on all messages.
|
|
@@ -1609,7 +1484,7 @@ public struct BlueEvent {
|
|
|
1609
1484
|
fileprivate var _command: String? = nil
|
|
1610
1485
|
}
|
|
1611
1486
|
|
|
1612
|
-
public struct BlueSPHandshake {
|
|
1487
|
+
public struct BlueSPHandshake: @unchecked Sendable {
|
|
1613
1488
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1614
1489
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1615
1490
|
// methods supported on all messages.
|
|
@@ -1630,7 +1505,7 @@ public struct BlueSPHandshake {
|
|
|
1630
1505
|
fileprivate var _transponderSalt: Data? = nil
|
|
1631
1506
|
}
|
|
1632
1507
|
|
|
1633
|
-
public struct BlueSPHandshakeReply {
|
|
1508
|
+
public struct BlueSPHandshakeReply: @unchecked Sendable {
|
|
1634
1509
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1635
1510
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1636
1511
|
// methods supported on all messages.
|
|
@@ -1661,7 +1536,7 @@ public struct BlueSPHandshakeReply {
|
|
|
1661
1536
|
fileprivate var _terminalSignature: Data? = nil
|
|
1662
1537
|
}
|
|
1663
1538
|
|
|
1664
|
-
public struct BlueSPTokenCommand {
|
|
1539
|
+
public struct BlueSPTokenCommand: @unchecked Sendable {
|
|
1665
1540
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1666
1541
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1667
1542
|
// methods supported on all messages.
|
|
@@ -1723,7 +1598,7 @@ public struct BlueSPTokenCommand {
|
|
|
1723
1598
|
fileprivate var _data: Data? = nil
|
|
1724
1599
|
}
|
|
1725
1600
|
|
|
1726
|
-
public struct BlueSPToken {
|
|
1601
|
+
public struct BlueSPToken: @unchecked Sendable {
|
|
1727
1602
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1728
1603
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1729
1604
|
// methods supported on all messages.
|
|
@@ -1765,7 +1640,7 @@ public struct BlueSPToken {
|
|
|
1765
1640
|
|
|
1766
1641
|
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
1767
1642
|
|
|
1768
|
-
public enum OneOf_Payload: Equatable {
|
|
1643
|
+
public enum OneOf_Payload: Equatable, Sendable {
|
|
1769
1644
|
case command(BlueSPTokenCommand)
|
|
1770
1645
|
case ossSo(BlueOssSoMobile)
|
|
1771
1646
|
case ossSid(BlueOssSidMobile)
|
|
@@ -1790,28 +1665,6 @@ public struct BlueSPToken {
|
|
|
1790
1665
|
}
|
|
1791
1666
|
}
|
|
1792
1667
|
|
|
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
1668
|
}
|
|
1816
1669
|
|
|
1817
1670
|
public init() {}
|
|
@@ -1819,7 +1672,7 @@ public struct BlueSPToken {
|
|
|
1819
1672
|
fileprivate var _signature: Data? = nil
|
|
1820
1673
|
}
|
|
1821
1674
|
|
|
1822
|
-
public struct BlueSPResult {
|
|
1675
|
+
public struct BlueSPResult: @unchecked Sendable {
|
|
1823
1676
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1824
1677
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1825
1678
|
// methods supported on all messages.
|
|
@@ -1841,7 +1694,7 @@ public struct BlueSPResult {
|
|
|
1841
1694
|
fileprivate var _data: Data? = nil
|
|
1842
1695
|
}
|
|
1843
1696
|
|
|
1844
|
-
public struct BlueOssAccessResult {
|
|
1697
|
+
public struct BlueOssAccessResult: Sendable {
|
|
1845
1698
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1846
1699
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1847
1700
|
// methods supported on all messages.
|
|
@@ -1919,7 +1772,7 @@ public struct BlueOssAccessResult {
|
|
|
1919
1772
|
fileprivate var _accessOpenTime: UInt32? = nil
|
|
1920
1773
|
}
|
|
1921
1774
|
|
|
1922
|
-
public struct BlueOssAccessEventsResult {
|
|
1775
|
+
public struct BlueOssAccessEventsResult: Sendable {
|
|
1923
1776
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1924
1777
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1925
1778
|
// methods supported on all messages.
|
|
@@ -1942,7 +1795,7 @@ public struct BlueOssAccessEventsResult {
|
|
|
1942
1795
|
fileprivate var _accessResult: BlueOssAccessResult? = nil
|
|
1943
1796
|
}
|
|
1944
1797
|
|
|
1945
|
-
public struct BlueOssSidVersion {
|
|
1798
|
+
public struct BlueOssSidVersion: Sendable {
|
|
1946
1799
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1947
1800
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1948
1801
|
// methods supported on all messages.
|
|
@@ -1973,7 +1826,7 @@ public struct BlueOssSidVersion {
|
|
|
1973
1826
|
fileprivate var _versionMinor: UInt32? = nil
|
|
1974
1827
|
}
|
|
1975
1828
|
|
|
1976
|
-
public struct BlueOssSidCredentialTypeOss {
|
|
1829
|
+
public struct BlueOssSidCredentialTypeOss: Sendable {
|
|
1977
1830
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1978
1831
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1979
1832
|
// methods supported on all messages.
|
|
@@ -1994,7 +1847,7 @@ public struct BlueOssSidCredentialTypeOss {
|
|
|
1994
1847
|
fileprivate var _notUsed: Bool? = nil
|
|
1995
1848
|
}
|
|
1996
1849
|
|
|
1997
|
-
public struct BlueOssSidCredentialTypeProprietary {
|
|
1850
|
+
public struct BlueOssSidCredentialTypeProprietary: @unchecked Sendable {
|
|
1998
1851
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1999
1852
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2000
1853
|
// methods supported on all messages.
|
|
@@ -2015,7 +1868,7 @@ public struct BlueOssSidCredentialTypeProprietary {
|
|
|
2015
1868
|
fileprivate var _mfgCode: Data? = nil
|
|
2016
1869
|
}
|
|
2017
1870
|
|
|
2018
|
-
public struct BlueOssSidCredentialType {
|
|
1871
|
+
public struct BlueOssSidCredentialType: Sendable {
|
|
2019
1872
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2020
1873
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2021
1874
|
// methods supported on all messages.
|
|
@@ -2056,7 +1909,7 @@ public struct BlueOssSidCredentialType {
|
|
|
2056
1909
|
fileprivate var _proprietary: BlueOssSidCredentialTypeProprietary? = nil
|
|
2057
1910
|
}
|
|
2058
1911
|
|
|
2059
|
-
public struct BlueOssSidFileInfo {
|
|
1912
|
+
public struct BlueOssSidFileInfo: Sendable {
|
|
2060
1913
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2061
1914
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2062
1915
|
// methods supported on all messages.
|
|
@@ -2107,7 +1960,7 @@ public struct BlueOssSidFileInfo {
|
|
|
2107
1960
|
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
2108
1961
|
}
|
|
2109
1962
|
|
|
2110
|
-
public struct BlueOssSidConfiguration {
|
|
1963
|
+
public struct BlueOssSidConfiguration: Sendable {
|
|
2111
1964
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2112
1965
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2113
1966
|
// methods supported on all messages.
|
|
@@ -2128,7 +1981,7 @@ public struct BlueOssSidConfiguration {
|
|
|
2128
1981
|
fileprivate var _info: BlueOssSidFileInfo? = nil
|
|
2129
1982
|
}
|
|
2130
1983
|
|
|
2131
|
-
public struct BlueOssSidStorageProfile {
|
|
1984
|
+
public struct BlueOssSidStorageProfile: Sendable {
|
|
2132
1985
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2133
1986
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2134
1987
|
// methods supported on all messages.
|
|
@@ -2179,7 +2032,7 @@ public struct BlueOssSidStorageProfile {
|
|
|
2179
2032
|
fileprivate var _infoFileSize: UInt32? = nil
|
|
2180
2033
|
}
|
|
2181
2034
|
|
|
2182
|
-
public struct BlueOssSidProvisioningConfiguration {
|
|
2035
|
+
public struct BlueOssSidProvisioningConfiguration: Sendable {
|
|
2183
2036
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2184
2037
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2185
2038
|
// methods supported on all messages.
|
|
@@ -2200,7 +2053,7 @@ public struct BlueOssSidProvisioningConfiguration {
|
|
|
2200
2053
|
fileprivate var _notUsed: Bool? = nil
|
|
2201
2054
|
}
|
|
2202
2055
|
|
|
2203
|
-
public struct BlueOssSidProvisioningData {
|
|
2056
|
+
public struct BlueOssSidProvisioningData: Sendable {
|
|
2204
2057
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2205
2058
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2206
2059
|
// methods supported on all messages.
|
|
@@ -2242,7 +2095,7 @@ public struct BlueOssSidProvisioningData {
|
|
|
2242
2095
|
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
2243
2096
|
}
|
|
2244
2097
|
|
|
2245
|
-
public struct BlueOssSidMobile {
|
|
2098
|
+
public struct BlueOssSidMobile: @unchecked Sendable {
|
|
2246
2099
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2247
2100
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2248
2101
|
// methods supported on all messages.
|
|
@@ -2263,7 +2116,7 @@ public struct BlueOssSidMobile {
|
|
|
2263
2116
|
fileprivate var _infoFile: Data? = nil
|
|
2264
2117
|
}
|
|
2265
2118
|
|
|
2266
|
-
public struct BlueOssSidMobileProvisioningConfiguration {
|
|
2119
|
+
public struct BlueOssSidMobileProvisioningConfiguration: Sendable {
|
|
2267
2120
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2268
2121
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2269
2122
|
// methods supported on all messages.
|
|
@@ -2285,7 +2138,7 @@ public struct BlueOssSidMobileProvisioningConfiguration {
|
|
|
2285
2138
|
}
|
|
2286
2139
|
|
|
2287
2140
|
/// Default configuration from spec
|
|
2288
|
-
public struct BlueOssSidMifareDesfireProvisioningConfiguration {
|
|
2141
|
+
public struct BlueOssSidMifareDesfireProvisioningConfiguration: Sendable {
|
|
2289
2142
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2290
2143
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2291
2144
|
// methods supported on all messages.
|
|
@@ -2307,7 +2160,7 @@ public struct BlueOssSidMifareDesfireProvisioningConfiguration {
|
|
|
2307
2160
|
}
|
|
2308
2161
|
|
|
2309
2162
|
/// Demo keys from spec
|
|
2310
|
-
public struct BlueOssSidMifareDesfireConfiguration {
|
|
2163
|
+
public struct BlueOssSidMifareDesfireConfiguration: @unchecked Sendable {
|
|
2311
2164
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2312
2165
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2313
2166
|
// methods supported on all messages.
|
|
@@ -2362,7 +2215,7 @@ public struct BlueOssSidMifareDesfireConfiguration {
|
|
|
2362
2215
|
fileprivate var _aid: UInt32? = nil
|
|
2363
2216
|
}
|
|
2364
2217
|
|
|
2365
|
-
public struct BlueOssSidSettings {
|
|
2218
|
+
public struct BlueOssSidSettings: Sendable {
|
|
2366
2219
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2367
2220
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2368
2221
|
// methods supported on all messages.
|
|
@@ -2383,7 +2236,7 @@ public struct BlueOssSidSettings {
|
|
|
2383
2236
|
fileprivate var _mifareDesfireConfig: BlueOssSidMifareDesfireConfiguration? = nil
|
|
2384
2237
|
}
|
|
2385
2238
|
|
|
2386
|
-
public struct BlueOssSoVersion {
|
|
2239
|
+
public struct BlueOssSoVersion: Sendable {
|
|
2387
2240
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2388
2241
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2389
2242
|
// methods supported on all messages.
|
|
@@ -2414,7 +2267,7 @@ public struct BlueOssSoVersion {
|
|
|
2414
2267
|
fileprivate var _versionMinor: UInt32? = nil
|
|
2415
2268
|
}
|
|
2416
2269
|
|
|
2417
|
-
public struct BlueOssSoCredentialTypeOss {
|
|
2270
|
+
public struct BlueOssSoCredentialTypeOss: Sendable {
|
|
2418
2271
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2419
2272
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2420
2273
|
// methods supported on all messages.
|
|
@@ -2435,7 +2288,7 @@ public struct BlueOssSoCredentialTypeOss {
|
|
|
2435
2288
|
fileprivate var _credential: BlueOssSoCredentialTypeOssCredential? = nil
|
|
2436
2289
|
}
|
|
2437
2290
|
|
|
2438
|
-
public struct BlueOssSoCredentialTypeProprietary {
|
|
2291
|
+
public struct BlueOssSoCredentialTypeProprietary: @unchecked Sendable {
|
|
2439
2292
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2440
2293
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2441
2294
|
// methods supported on all messages.
|
|
@@ -2456,7 +2309,7 @@ public struct BlueOssSoCredentialTypeProprietary {
|
|
|
2456
2309
|
fileprivate var _mfgCode: Data? = nil
|
|
2457
2310
|
}
|
|
2458
2311
|
|
|
2459
|
-
public struct BlueOssSoCredentialType {
|
|
2312
|
+
public struct BlueOssSoCredentialType: Sendable {
|
|
2460
2313
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2461
2314
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2462
2315
|
// methods supported on all messages.
|
|
@@ -2497,7 +2350,7 @@ public struct BlueOssSoCredentialType {
|
|
|
2497
2350
|
fileprivate var _proprietary: BlueOssSoCredentialTypeProprietary? = nil
|
|
2498
2351
|
}
|
|
2499
2352
|
|
|
2500
|
-
public struct BlueOssSoDTScheduleDay {
|
|
2353
|
+
public struct BlueOssSoDTScheduleDay: Sendable {
|
|
2501
2354
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2502
2355
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2503
2356
|
// methods supported on all messages.
|
|
@@ -2512,7 +2365,7 @@ public struct BlueOssSoDTScheduleDay {
|
|
|
2512
2365
|
public init() {}
|
|
2513
2366
|
}
|
|
2514
2367
|
|
|
2515
|
-
public struct BlueOssSoDTSchedule {
|
|
2368
|
+
public struct BlueOssSoDTSchedule: Sendable {
|
|
2516
2369
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2517
2370
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2518
2371
|
// methods supported on all messages.
|
|
@@ -2524,7 +2377,7 @@ public struct BlueOssSoDTSchedule {
|
|
|
2524
2377
|
public init() {}
|
|
2525
2378
|
}
|
|
2526
2379
|
|
|
2527
|
-
public struct BlueOssSoDoorInfo {
|
|
2380
|
+
public struct BlueOssSoDoorInfo: Sendable {
|
|
2528
2381
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2529
2382
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2530
2383
|
// methods supported on all messages.
|
|
@@ -2575,7 +2428,7 @@ public struct BlueOssSoDoorInfo {
|
|
|
2575
2428
|
fileprivate var _accessType: BlueAccessType? = nil
|
|
2576
2429
|
}
|
|
2577
2430
|
|
|
2578
|
-
public struct BlueOssSoEvent {
|
|
2431
|
+
public struct BlueOssSoEvent: Sendable {
|
|
2579
2432
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2580
2433
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2581
2434
|
// methods supported on all messages.
|
|
@@ -2629,7 +2482,7 @@ public struct BlueOssSoEvent {
|
|
|
2629
2482
|
fileprivate var _eventInfo: UInt32? = nil
|
|
2630
2483
|
}
|
|
2631
2484
|
|
|
2632
|
-
public struct BlueOssSoExtFeature {
|
|
2485
|
+
public struct BlueOssSoExtFeature: @unchecked Sendable {
|
|
2633
2486
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2634
2487
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2635
2488
|
// methods supported on all messages.
|
|
@@ -2660,7 +2513,7 @@ public struct BlueOssSoExtFeature {
|
|
|
2660
2513
|
fileprivate var _value: Data? = nil
|
|
2661
2514
|
}
|
|
2662
2515
|
|
|
2663
|
-
public struct BlueOssSoExtFeature_ValidityStart {
|
|
2516
|
+
public struct BlueOssSoExtFeature_ValidityStart: Sendable {
|
|
2664
2517
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2665
2518
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2666
2519
|
// methods supported on all messages.
|
|
@@ -2691,7 +2544,7 @@ public struct BlueOssSoExtFeature_ValidityStart {
|
|
|
2691
2544
|
fileprivate var _validityStartTime: BlueLocalTimestamp? = nil
|
|
2692
2545
|
}
|
|
2693
2546
|
|
|
2694
|
-
public struct BlueOssSoFileInfo {
|
|
2547
|
+
public struct BlueOssSoFileInfo: Sendable {
|
|
2695
2548
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2696
2549
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2697
2550
|
// methods supported on all messages.
|
|
@@ -2762,7 +2615,7 @@ public struct BlueOssSoFileInfo {
|
|
|
2762
2615
|
fileprivate var _maxBlacklistEntries: UInt32? = nil
|
|
2763
2616
|
}
|
|
2764
2617
|
|
|
2765
|
-
public struct BlueOssSoFileData {
|
|
2618
|
+
public struct BlueOssSoFileData: Sendable {
|
|
2766
2619
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2767
2620
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2768
2621
|
// methods supported on all messages.
|
|
@@ -2827,7 +2680,7 @@ public struct BlueOssSoFileData {
|
|
|
2827
2680
|
fileprivate var _hasExtensions_p: Bool? = nil
|
|
2828
2681
|
}
|
|
2829
2682
|
|
|
2830
|
-
public struct BlueOssSoFileEvent {
|
|
2683
|
+
public struct BlueOssSoFileEvent: @unchecked Sendable {
|
|
2831
2684
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2832
2685
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2833
2686
|
// methods supported on all messages.
|
|
@@ -2851,7 +2704,7 @@ public struct BlueOssSoFileEvent {
|
|
|
2851
2704
|
fileprivate var _supportedEventIds: Data? = nil
|
|
2852
2705
|
}
|
|
2853
2706
|
|
|
2854
|
-
public struct BlueOssSoFileBlacklist {
|
|
2707
|
+
public struct BlueOssSoFileBlacklist: Sendable {
|
|
2855
2708
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2856
2709
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2857
2710
|
// methods supported on all messages.
|
|
@@ -2863,7 +2716,7 @@ public struct BlueOssSoFileBlacklist {
|
|
|
2863
2716
|
public init() {}
|
|
2864
2717
|
}
|
|
2865
2718
|
|
|
2866
|
-
public struct BlueOssSoFileCustomerExtensions {
|
|
2719
|
+
public struct BlueOssSoFileCustomerExtensions: Sendable {
|
|
2867
2720
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2868
2721
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2869
2722
|
// methods supported on all messages.
|
|
@@ -2888,7 +2741,7 @@ public struct BlueOssSoFileCustomerExtensions {
|
|
|
2888
2741
|
fileprivate var _validityStart: BlueOssSoExtFeature_ValidityStart? = nil
|
|
2889
2742
|
}
|
|
2890
2743
|
|
|
2891
|
-
public struct BlueOssSoConfiguration {
|
|
2744
|
+
public struct BlueOssSoConfiguration: @unchecked Sendable {
|
|
2892
2745
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2893
2746
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2894
2747
|
// methods supported on all messages.
|
|
@@ -2945,7 +2798,7 @@ public struct BlueOssSoConfiguration {
|
|
|
2945
2798
|
fileprivate var _storage = _StorageClass.defaultInstance
|
|
2946
2799
|
}
|
|
2947
2800
|
|
|
2948
|
-
public struct BlueOssSoStorageProfile {
|
|
2801
|
+
public struct BlueOssSoStorageProfile: Sendable {
|
|
2949
2802
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2950
2803
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2951
2804
|
// methods supported on all messages.
|
|
@@ -3076,7 +2929,7 @@ public struct BlueOssSoStorageProfile {
|
|
|
3076
2929
|
fileprivate var _customerExtensionsFileSize: UInt32? = nil
|
|
3077
2930
|
}
|
|
3078
2931
|
|
|
3079
|
-
public struct BlueOssSoProvisioningConfiguration {
|
|
2932
|
+
public struct BlueOssSoProvisioningConfiguration: @unchecked Sendable {
|
|
3080
2933
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3081
2934
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3082
2935
|
// methods supported on all messages.
|
|
@@ -3168,7 +3021,7 @@ public struct BlueOssSoProvisioningConfiguration {
|
|
|
3168
3021
|
fileprivate var _customerExtensionsSize: UInt32? = nil
|
|
3169
3022
|
}
|
|
3170
3023
|
|
|
3171
|
-
public struct BlueOssSoProvisioningData {
|
|
3024
|
+
public struct BlueOssSoProvisioningData: Sendable {
|
|
3172
3025
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3173
3026
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3174
3027
|
// methods supported on all messages.
|
|
@@ -3220,7 +3073,7 @@ public struct BlueOssSoProvisioningData {
|
|
|
3220
3073
|
fileprivate var _siteID: UInt32? = nil
|
|
3221
3074
|
}
|
|
3222
3075
|
|
|
3223
|
-
public struct BlueOssSoMobile {
|
|
3076
|
+
public struct BlueOssSoMobile: @unchecked Sendable {
|
|
3224
3077
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3225
3078
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3226
3079
|
// methods supported on all messages.
|
|
@@ -3293,7 +3146,7 @@ public struct BlueOssSoMobile {
|
|
|
3293
3146
|
fileprivate var _supportedEventIds: Data? = nil
|
|
3294
3147
|
}
|
|
3295
3148
|
|
|
3296
|
-
public struct BlueOssSoMobileProvisioningConfiguration {
|
|
3149
|
+
public struct BlueOssSoMobileProvisioningConfiguration: @unchecked Sendable {
|
|
3297
3150
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3298
3151
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3299
3152
|
// methods supported on all messages.
|
|
@@ -3386,7 +3239,7 @@ public struct BlueOssSoMobileProvisioningConfiguration {
|
|
|
3386
3239
|
}
|
|
3387
3240
|
|
|
3388
3241
|
/// Default configuration from spec plus customer extensions spacing
|
|
3389
|
-
public struct BlueOssSoMifareDesfireProvisioningConfiguration {
|
|
3242
|
+
public struct BlueOssSoMifareDesfireProvisioningConfiguration: @unchecked Sendable {
|
|
3390
3243
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3391
3244
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3392
3245
|
// methods supported on all messages.
|
|
@@ -3479,7 +3332,7 @@ public struct BlueOssSoMifareDesfireProvisioningConfiguration {
|
|
|
3479
3332
|
}
|
|
3480
3333
|
|
|
3481
3334
|
/// Demo keys from spec
|
|
3482
|
-
public struct BlueOssSoMifareDesfireConfiguration {
|
|
3335
|
+
public struct BlueOssSoMifareDesfireConfiguration: @unchecked Sendable {
|
|
3483
3336
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3484
3337
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3485
3338
|
// methods supported on all messages.
|
|
@@ -3534,7 +3387,7 @@ public struct BlueOssSoMifareDesfireConfiguration {
|
|
|
3534
3387
|
fileprivate var _aid: UInt32? = nil
|
|
3535
3388
|
}
|
|
3536
3389
|
|
|
3537
|
-
public struct BlueOssSoSettings {
|
|
3390
|
+
public struct BlueOssSoSettings: Sendable {
|
|
3538
3391
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3539
3392
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3540
3393
|
// methods supported on all messages.
|
|
@@ -3555,7 +3408,7 @@ public struct BlueOssSoSettings {
|
|
|
3555
3408
|
fileprivate var _mifareDesfireConfig: BlueOssSoMifareDesfireConfiguration? = nil
|
|
3556
3409
|
}
|
|
3557
3410
|
|
|
3558
|
-
public struct _BlueTestEncodeDecode {
|
|
3411
|
+
public struct _BlueTestEncodeDecode: Sendable {
|
|
3559
3412
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3560
3413
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3561
3414
|
// methods supported on all messages.
|
|
@@ -3606,82 +3459,6 @@ public struct _BlueTestEncodeDecode {
|
|
|
3606
3459
|
fileprivate var _applicationVersion: Int32? = nil
|
|
3607
3460
|
}
|
|
3608
3461
|
|
|
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
3462
|
// MARK: - Code below here is support for the SwiftProtobuf runtime.
|
|
3686
3463
|
|
|
3687
3464
|
extension BlueReturnCode: SwiftProtobuf._ProtoNameProviding {
|