@blueid/access-proto 2.0.0-beta.2 → 2.0.0-beta.21
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/BlueSDK.proto +2 -1
- package/cjs/BlueSDK_pb.d.ts +6 -1
- package/cjs/BlueSDK_pb.js +8 -1
- package/es/BlueSDK_pb.d.ts +6 -1
- package/es/BlueSDK_pb.js +2 -1
- package/nanopb/BlueSDK.pb.h +7 -4
- package/package.json +1 -1
- package/swift/BlueCore.pb.swift +299 -74
- package/swift/BlueLock.pb.swift +18 -4
- package/swift/BlueSDK.pb.swift +111 -31
- package/swift/BlueSystem.pb.swift +79 -21
package/swift/BlueCore.pb.swift
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// DO NOT EDIT.
|
|
2
2
|
// swift-format-ignore-file
|
|
3
|
-
// swiftlint:disable all
|
|
4
3
|
//
|
|
5
4
|
// Generated by the Swift generator plugin for the protocol buffer compiler.
|
|
6
5
|
// Source: BlueCore.proto
|
|
@@ -21,7 +20,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
|
|
|
21
20
|
typealias Version = _2
|
|
22
21
|
}
|
|
23
22
|
|
|
24
|
-
public enum BlueReturnCode: SwiftProtobuf.Enum
|
|
23
|
+
public enum BlueReturnCode: SwiftProtobuf.Enum {
|
|
25
24
|
public typealias RawValue = Int
|
|
26
25
|
|
|
27
26
|
///
|
|
@@ -356,7 +355,15 @@ public enum BlueReturnCode: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
356
355
|
|
|
357
356
|
}
|
|
358
357
|
|
|
359
|
-
|
|
358
|
+
#if swift(>=4.2)
|
|
359
|
+
|
|
360
|
+
extension BlueReturnCode: CaseIterable {
|
|
361
|
+
// Support synthesized by the compiler.
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
#endif // swift(>=4.2)
|
|
365
|
+
|
|
366
|
+
public enum BlueTimeUnit: SwiftProtobuf.Enum {
|
|
360
367
|
public typealias RawValue = Int
|
|
361
368
|
case seconds // = 1
|
|
362
369
|
case minutes // = 2
|
|
@@ -394,8 +401,16 @@ public enum BlueTimeUnit: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
394
401
|
|
|
395
402
|
}
|
|
396
403
|
|
|
404
|
+
#if swift(>=4.2)
|
|
405
|
+
|
|
406
|
+
extension BlueTimeUnit: CaseIterable {
|
|
407
|
+
// Support synthesized by the compiler.
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
#endif // swift(>=4.2)
|
|
411
|
+
|
|
397
412
|
/// Those may never be changed
|
|
398
|
-
public enum BlueWeekday: SwiftProtobuf.Enum
|
|
413
|
+
public enum BlueWeekday: SwiftProtobuf.Enum {
|
|
399
414
|
public typealias RawValue = Int
|
|
400
415
|
case monday // = 0
|
|
401
416
|
case tuesday // = 1
|
|
@@ -436,9 +451,17 @@ public enum BlueWeekday: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
436
451
|
|
|
437
452
|
}
|
|
438
453
|
|
|
454
|
+
#if swift(>=4.2)
|
|
455
|
+
|
|
456
|
+
extension BlueWeekday: CaseIterable {
|
|
457
|
+
// Support synthesized by the compiler.
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
#endif // swift(>=4.2)
|
|
461
|
+
|
|
439
462
|
/// @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
440
463
|
/// This should be renamed to BlueIdentityRole later on.
|
|
441
|
-
public enum BlueCredentialType: SwiftProtobuf.Enum
|
|
464
|
+
public enum BlueCredentialType: SwiftProtobuf.Enum {
|
|
442
465
|
public typealias RawValue = Int
|
|
443
466
|
|
|
444
467
|
/// Regular credential can only open / enter
|
|
@@ -483,7 +506,15 @@ public enum BlueCredentialType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
483
506
|
|
|
484
507
|
}
|
|
485
508
|
|
|
486
|
-
|
|
509
|
+
#if swift(>=4.2)
|
|
510
|
+
|
|
511
|
+
extension BlueCredentialType: CaseIterable {
|
|
512
|
+
// Support synthesized by the compiler.
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
#endif // swift(>=4.2)
|
|
516
|
+
|
|
517
|
+
public enum BlueAccessType: SwiftProtobuf.Enum {
|
|
487
518
|
public typealias RawValue = Int
|
|
488
519
|
|
|
489
520
|
/// Access with default unlock time
|
|
@@ -543,7 +574,15 @@ public enum BlueAccessType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
543
574
|
|
|
544
575
|
}
|
|
545
576
|
|
|
546
|
-
|
|
577
|
+
#if swift(>=4.2)
|
|
578
|
+
|
|
579
|
+
extension BlueAccessType: CaseIterable {
|
|
580
|
+
// Support synthesized by the compiler.
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
#endif // swift(>=4.2)
|
|
584
|
+
|
|
585
|
+
public enum BlueTransponderType: SwiftProtobuf.Enum {
|
|
547
586
|
public typealias RawValue = Int
|
|
548
587
|
case unknownTransponder // = 0
|
|
549
588
|
case mobileTransponder // = 1
|
|
@@ -572,7 +611,15 @@ public enum BlueTransponderType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
572
611
|
|
|
573
612
|
}
|
|
574
613
|
|
|
575
|
-
|
|
614
|
+
#if swift(>=4.2)
|
|
615
|
+
|
|
616
|
+
extension BlueTransponderType: CaseIterable {
|
|
617
|
+
// Support synthesized by the compiler.
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
#endif // swift(>=4.2)
|
|
621
|
+
|
|
622
|
+
public enum BlueHardwareType: SwiftProtobuf.Enum {
|
|
576
623
|
public typealias RawValue = Int
|
|
577
624
|
case unknownHardware // = 0
|
|
578
625
|
case testHardware // = 1
|
|
@@ -613,7 +660,15 @@ public enum BlueHardwareType: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
613
660
|
|
|
614
661
|
}
|
|
615
662
|
|
|
616
|
-
|
|
663
|
+
#if swift(>=4.2)
|
|
664
|
+
|
|
665
|
+
extension BlueHardwareType: CaseIterable {
|
|
666
|
+
// Support synthesized by the compiler.
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
#endif // swift(>=4.2)
|
|
670
|
+
|
|
671
|
+
public enum BlueBatteryLevel: SwiftProtobuf.Enum {
|
|
617
672
|
public typealias RawValue = Int
|
|
618
673
|
case unknownBattery // = 0
|
|
619
674
|
case onPower // = 1
|
|
@@ -659,7 +714,15 @@ public enum BlueBatteryLevel: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
659
714
|
|
|
660
715
|
}
|
|
661
716
|
|
|
662
|
-
|
|
717
|
+
#if swift(>=4.2)
|
|
718
|
+
|
|
719
|
+
extension BlueBatteryLevel: CaseIterable {
|
|
720
|
+
// Support synthesized by the compiler.
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
#endif // swift(>=4.2)
|
|
724
|
+
|
|
725
|
+
public enum BlueEventId: SwiftProtobuf.Enum {
|
|
663
726
|
public typealias RawValue = Int
|
|
664
727
|
|
|
665
728
|
///* eventInfo = 0
|
|
@@ -752,7 +815,15 @@ public enum BlueEventId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
752
815
|
|
|
753
816
|
}
|
|
754
817
|
|
|
755
|
-
|
|
818
|
+
#if swift(>=4.2)
|
|
819
|
+
|
|
820
|
+
extension BlueEventId: CaseIterable {
|
|
821
|
+
// Support synthesized by the compiler.
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
#endif // swift(>=4.2)
|
|
825
|
+
|
|
826
|
+
public enum BlueEventInfoSystem: SwiftProtobuf.Enum {
|
|
756
827
|
public typealias RawValue = Int
|
|
757
828
|
case systemRestart // = 1
|
|
758
829
|
case systemConfigured // = 2
|
|
@@ -778,7 +849,15 @@ public enum BlueEventInfoSystem: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
778
849
|
|
|
779
850
|
}
|
|
780
851
|
|
|
781
|
-
|
|
852
|
+
#if swift(>=4.2)
|
|
853
|
+
|
|
854
|
+
extension BlueEventInfoSystem: CaseIterable {
|
|
855
|
+
// Support synthesized by the compiler.
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
#endif // swift(>=4.2)
|
|
859
|
+
|
|
860
|
+
public enum BlueEventInfoAccess: SwiftProtobuf.Enum {
|
|
782
861
|
public typealias RawValue = Int
|
|
783
862
|
case granted // = 1
|
|
784
863
|
case grantedDefaultTime // = 2
|
|
@@ -825,7 +904,15 @@ public enum BlueEventInfoAccess: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
825
904
|
|
|
826
905
|
}
|
|
827
906
|
|
|
828
|
-
|
|
907
|
+
#if swift(>=4.2)
|
|
908
|
+
|
|
909
|
+
extension BlueEventInfoAccess: CaseIterable {
|
|
910
|
+
// Support synthesized by the compiler.
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
#endif // swift(>=4.2)
|
|
914
|
+
|
|
915
|
+
public enum BlueOssCredentialTypeSource: SwiftProtobuf.Enum {
|
|
829
916
|
public typealias RawValue = Int
|
|
830
917
|
case oss // = 0
|
|
831
918
|
case proprietary // = 1
|
|
@@ -851,7 +938,15 @@ public enum BlueOssCredentialTypeSource: SwiftProtobuf.Enum, Swift.CaseIterable
|
|
|
851
938
|
|
|
852
939
|
}
|
|
853
940
|
|
|
854
|
-
|
|
941
|
+
#if swift(>=4.2)
|
|
942
|
+
|
|
943
|
+
extension BlueOssCredentialTypeSource: CaseIterable {
|
|
944
|
+
// Support synthesized by the compiler.
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
#endif // swift(>=4.2)
|
|
948
|
+
|
|
949
|
+
public enum BlueOssSoCredentialTypeOssCredential: SwiftProtobuf.Enum {
|
|
855
950
|
public typealias RawValue = Int
|
|
856
951
|
case standard // = 0
|
|
857
952
|
case interventionMedia // = 1
|
|
@@ -877,7 +972,15 @@ public enum BlueOssSoCredentialTypeOssCredential: SwiftProtobuf.Enum, Swift.Case
|
|
|
877
972
|
|
|
878
973
|
}
|
|
879
974
|
|
|
880
|
-
|
|
975
|
+
#if swift(>=4.2)
|
|
976
|
+
|
|
977
|
+
extension BlueOssSoCredentialTypeOssCredential: CaseIterable {
|
|
978
|
+
// Support synthesized by the compiler.
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
#endif // swift(>=4.2)
|
|
982
|
+
|
|
983
|
+
public enum BlueOssSoDoorGroupId: SwiftProtobuf.Enum {
|
|
881
984
|
public typealias RawValue = Int
|
|
882
985
|
case masterGroupID // = 65535
|
|
883
986
|
|
|
@@ -900,7 +1003,15 @@ public enum BlueOssSoDoorGroupId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
900
1003
|
|
|
901
1004
|
}
|
|
902
1005
|
|
|
903
|
-
|
|
1006
|
+
#if swift(>=4.2)
|
|
1007
|
+
|
|
1008
|
+
extension BlueOssSoDoorGroupId: CaseIterable {
|
|
1009
|
+
// Support synthesized by the compiler.
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
#endif // swift(>=4.2)
|
|
1013
|
+
|
|
1014
|
+
public enum BlueOssSoDoorInfoAccessBy: SwiftProtobuf.Enum {
|
|
904
1015
|
public typealias RawValue = Int
|
|
905
1016
|
case doorGroupID // = 0
|
|
906
1017
|
case doorID // = 1
|
|
@@ -926,7 +1037,15 @@ public enum BlueOssSoDoorInfoAccessBy: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
926
1037
|
|
|
927
1038
|
}
|
|
928
1039
|
|
|
929
|
-
|
|
1040
|
+
#if swift(>=4.2)
|
|
1041
|
+
|
|
1042
|
+
extension BlueOssSoDoorInfoAccessBy: CaseIterable {
|
|
1043
|
+
// Support synthesized by the compiler.
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
#endif // swift(>=4.2)
|
|
1047
|
+
|
|
1048
|
+
public enum BlueOssSoFileId: SwiftProtobuf.Enum {
|
|
930
1049
|
public typealias RawValue = Int
|
|
931
1050
|
case info // = 0
|
|
932
1051
|
case data // = 1
|
|
@@ -961,7 +1080,15 @@ public enum BlueOssSoFileId: SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
961
1080
|
|
|
962
1081
|
}
|
|
963
1082
|
|
|
964
|
-
|
|
1083
|
+
#if swift(>=4.2)
|
|
1084
|
+
|
|
1085
|
+
extension BlueOssSoFileId: CaseIterable {
|
|
1086
|
+
// Support synthesized by the compiler.
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
#endif // swift(>=4.2)
|
|
1090
|
+
|
|
1091
|
+
public struct BlueSharedDemoData {
|
|
965
1092
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
966
1093
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
967
1094
|
// methods supported on all messages.
|
|
@@ -1023,7 +1150,7 @@ public struct BlueSharedDemoData: @unchecked Sendable {
|
|
|
1023
1150
|
fileprivate var _signaturePublicKey: Data? = nil
|
|
1024
1151
|
}
|
|
1025
1152
|
|
|
1026
|
-
public struct BlueVersionInfo
|
|
1153
|
+
public struct BlueVersionInfo {
|
|
1027
1154
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1028
1155
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1029
1156
|
// methods supported on all messages.
|
|
@@ -1064,7 +1191,7 @@ public struct BlueVersionInfo: Sendable {
|
|
|
1064
1191
|
fileprivate var _testVersion: UInt32? = nil
|
|
1065
1192
|
}
|
|
1066
1193
|
|
|
1067
|
-
public struct BlueLocalTimestamp
|
|
1194
|
+
public struct BlueLocalTimestamp {
|
|
1068
1195
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1069
1196
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1070
1197
|
// methods supported on all messages.
|
|
@@ -1135,7 +1262,7 @@ public struct BlueLocalTimestamp: Sendable {
|
|
|
1135
1262
|
fileprivate var _seconds: UInt32? = nil
|
|
1136
1263
|
}
|
|
1137
1264
|
|
|
1138
|
-
public struct BlueLocalTimeperiod
|
|
1265
|
+
public struct BlueLocalTimeperiod {
|
|
1139
1266
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1140
1267
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1141
1268
|
// methods supported on all messages.
|
|
@@ -1186,7 +1313,7 @@ public struct BlueLocalTimeperiod: Sendable {
|
|
|
1186
1313
|
fileprivate var _minutesTo: UInt32? = nil
|
|
1187
1314
|
}
|
|
1188
1315
|
|
|
1189
|
-
public struct BlueLocalTimeSchedule
|
|
1316
|
+
public struct BlueLocalTimeSchedule {
|
|
1190
1317
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1191
1318
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1192
1319
|
// methods supported on all messages.
|
|
@@ -1231,7 +1358,7 @@ public struct BlueLocalTimeSchedule: Sendable {
|
|
|
1231
1358
|
fileprivate var _timePeriod: BlueLocalTimeperiod? = nil
|
|
1232
1359
|
}
|
|
1233
1360
|
|
|
1234
|
-
public struct BlueCredentialId
|
|
1361
|
+
public struct BlueCredentialId {
|
|
1235
1362
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1236
1363
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1237
1364
|
// methods supported on all messages.
|
|
@@ -1252,7 +1379,7 @@ public struct BlueCredentialId: Sendable {
|
|
|
1252
1379
|
fileprivate var _id: String? = nil
|
|
1253
1380
|
}
|
|
1254
1381
|
|
|
1255
|
-
public struct BlueBlacklistEntry
|
|
1382
|
+
public struct BlueBlacklistEntry {
|
|
1256
1383
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1257
1384
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1258
1385
|
// methods supported on all messages.
|
|
@@ -1283,7 +1410,7 @@ public struct BlueBlacklistEntry: Sendable {
|
|
|
1283
1410
|
fileprivate var _expiresAt: BlueLocalTimestamp? = nil
|
|
1284
1411
|
}
|
|
1285
1412
|
|
|
1286
|
-
public struct BlueBleManufacturerInfo
|
|
1413
|
+
public struct BlueBleManufacturerInfo {
|
|
1287
1414
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1288
1415
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1289
1416
|
// methods supported on all messages.
|
|
@@ -1356,7 +1483,7 @@ public struct BlueBleManufacturerInfo: Sendable {
|
|
|
1356
1483
|
fileprivate var _hardwareState: UInt32? = nil
|
|
1357
1484
|
}
|
|
1358
1485
|
|
|
1359
|
-
public struct BlueBleAdvertisementInfo
|
|
1486
|
+
public struct BlueBleAdvertisementInfo {
|
|
1360
1487
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1361
1488
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1362
1489
|
// methods supported on all messages.
|
|
@@ -1411,7 +1538,7 @@ public struct BlueBleAdvertisementInfo: Sendable {
|
|
|
1411
1538
|
fileprivate var _mfInfo: BlueBleManufacturerInfo? = nil
|
|
1412
1539
|
}
|
|
1413
1540
|
|
|
1414
|
-
public struct BlueEvent
|
|
1541
|
+
public struct BlueEvent {
|
|
1415
1542
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1416
1543
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1417
1544
|
// methods supported on all messages.
|
|
@@ -1484,7 +1611,7 @@ public struct BlueEvent: Sendable {
|
|
|
1484
1611
|
fileprivate var _command: String? = nil
|
|
1485
1612
|
}
|
|
1486
1613
|
|
|
1487
|
-
public struct BlueSPHandshake
|
|
1614
|
+
public struct BlueSPHandshake {
|
|
1488
1615
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1489
1616
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1490
1617
|
// methods supported on all messages.
|
|
@@ -1505,7 +1632,7 @@ public struct BlueSPHandshake: @unchecked Sendable {
|
|
|
1505
1632
|
fileprivate var _transponderSalt: Data? = nil
|
|
1506
1633
|
}
|
|
1507
1634
|
|
|
1508
|
-
public struct BlueSPHandshakeReply
|
|
1635
|
+
public struct BlueSPHandshakeReply {
|
|
1509
1636
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1510
1637
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1511
1638
|
// methods supported on all messages.
|
|
@@ -1536,7 +1663,7 @@ public struct BlueSPHandshakeReply: @unchecked Sendable {
|
|
|
1536
1663
|
fileprivate var _terminalSignature: Data? = nil
|
|
1537
1664
|
}
|
|
1538
1665
|
|
|
1539
|
-
public struct BlueSPTokenCommand
|
|
1666
|
+
public struct BlueSPTokenCommand {
|
|
1540
1667
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1541
1668
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1542
1669
|
// methods supported on all messages.
|
|
@@ -1598,7 +1725,7 @@ public struct BlueSPTokenCommand: @unchecked Sendable {
|
|
|
1598
1725
|
fileprivate var _data: Data? = nil
|
|
1599
1726
|
}
|
|
1600
1727
|
|
|
1601
|
-
public struct BlueSPToken
|
|
1728
|
+
public struct BlueSPToken {
|
|
1602
1729
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1603
1730
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1604
1731
|
// methods supported on all messages.
|
|
@@ -1640,7 +1767,7 @@ public struct BlueSPToken: @unchecked Sendable {
|
|
|
1640
1767
|
|
|
1641
1768
|
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
1642
1769
|
|
|
1643
|
-
public enum OneOf_Payload: Equatable
|
|
1770
|
+
public enum OneOf_Payload: Equatable {
|
|
1644
1771
|
case command(BlueSPTokenCommand)
|
|
1645
1772
|
case ossSo(BlueOssSoMobile)
|
|
1646
1773
|
case ossSid(BlueOssSidMobile)
|
|
@@ -1665,6 +1792,28 @@ public struct BlueSPToken: @unchecked Sendable {
|
|
|
1665
1792
|
}
|
|
1666
1793
|
}
|
|
1667
1794
|
|
|
1795
|
+
#if !swift(>=4.1)
|
|
1796
|
+
public static func ==(lhs: BlueSPToken.OneOf_Payload, rhs: BlueSPToken.OneOf_Payload) -> Bool {
|
|
1797
|
+
// The use of inline closures is to circumvent an issue where the compiler
|
|
1798
|
+
// allocates stack space for every case branch when no optimizations are
|
|
1799
|
+
// enabled. https://github.com/apple/swift-protobuf/issues/1034
|
|
1800
|
+
switch (lhs, rhs) {
|
|
1801
|
+
case (.command, .command): return {
|
|
1802
|
+
guard case .command(let l) = lhs, case .command(let r) = rhs else { preconditionFailure() }
|
|
1803
|
+
return l == r
|
|
1804
|
+
}()
|
|
1805
|
+
case (.ossSo, .ossSo): return {
|
|
1806
|
+
guard case .ossSo(let l) = lhs, case .ossSo(let r) = rhs else { preconditionFailure() }
|
|
1807
|
+
return l == r
|
|
1808
|
+
}()
|
|
1809
|
+
case (.ossSid, .ossSid): return {
|
|
1810
|
+
guard case .ossSid(let l) = lhs, case .ossSid(let r) = rhs else { preconditionFailure() }
|
|
1811
|
+
return l == r
|
|
1812
|
+
}()
|
|
1813
|
+
default: return false
|
|
1814
|
+
}
|
|
1815
|
+
}
|
|
1816
|
+
#endif
|
|
1668
1817
|
}
|
|
1669
1818
|
|
|
1670
1819
|
public init() {}
|
|
@@ -1672,7 +1821,7 @@ public struct BlueSPToken: @unchecked Sendable {
|
|
|
1672
1821
|
fileprivate var _signature: Data? = nil
|
|
1673
1822
|
}
|
|
1674
1823
|
|
|
1675
|
-
public struct BlueSPResult
|
|
1824
|
+
public struct BlueSPResult {
|
|
1676
1825
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1677
1826
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1678
1827
|
// methods supported on all messages.
|
|
@@ -1694,7 +1843,7 @@ public struct BlueSPResult: @unchecked Sendable {
|
|
|
1694
1843
|
fileprivate var _data: Data? = nil
|
|
1695
1844
|
}
|
|
1696
1845
|
|
|
1697
|
-
public struct BlueOssAccessResult
|
|
1846
|
+
public struct BlueOssAccessResult {
|
|
1698
1847
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1699
1848
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1700
1849
|
// methods supported on all messages.
|
|
@@ -1772,7 +1921,7 @@ public struct BlueOssAccessResult: Sendable {
|
|
|
1772
1921
|
fileprivate var _accessOpenTime: UInt32? = nil
|
|
1773
1922
|
}
|
|
1774
1923
|
|
|
1775
|
-
public struct BlueOssAccessEventsResult
|
|
1924
|
+
public struct BlueOssAccessEventsResult {
|
|
1776
1925
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1777
1926
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1778
1927
|
// methods supported on all messages.
|
|
@@ -1795,7 +1944,7 @@ public struct BlueOssAccessEventsResult: Sendable {
|
|
|
1795
1944
|
fileprivate var _accessResult: BlueOssAccessResult? = nil
|
|
1796
1945
|
}
|
|
1797
1946
|
|
|
1798
|
-
public struct BlueOssSidVersion
|
|
1947
|
+
public struct BlueOssSidVersion {
|
|
1799
1948
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1800
1949
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1801
1950
|
// methods supported on all messages.
|
|
@@ -1826,7 +1975,7 @@ public struct BlueOssSidVersion: Sendable {
|
|
|
1826
1975
|
fileprivate var _versionMinor: UInt32? = nil
|
|
1827
1976
|
}
|
|
1828
1977
|
|
|
1829
|
-
public struct BlueOssSidCredentialTypeOss
|
|
1978
|
+
public struct BlueOssSidCredentialTypeOss {
|
|
1830
1979
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1831
1980
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1832
1981
|
// methods supported on all messages.
|
|
@@ -1847,7 +1996,7 @@ public struct BlueOssSidCredentialTypeOss: Sendable {
|
|
|
1847
1996
|
fileprivate var _notUsed: Bool? = nil
|
|
1848
1997
|
}
|
|
1849
1998
|
|
|
1850
|
-
public struct BlueOssSidCredentialTypeProprietary
|
|
1999
|
+
public struct BlueOssSidCredentialTypeProprietary {
|
|
1851
2000
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1852
2001
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1853
2002
|
// methods supported on all messages.
|
|
@@ -1868,7 +2017,7 @@ public struct BlueOssSidCredentialTypeProprietary: @unchecked Sendable {
|
|
|
1868
2017
|
fileprivate var _mfgCode: Data? = nil
|
|
1869
2018
|
}
|
|
1870
2019
|
|
|
1871
|
-
public struct BlueOssSidCredentialType
|
|
2020
|
+
public struct BlueOssSidCredentialType {
|
|
1872
2021
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1873
2022
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1874
2023
|
// methods supported on all messages.
|
|
@@ -1909,7 +2058,7 @@ public struct BlueOssSidCredentialType: Sendable {
|
|
|
1909
2058
|
fileprivate var _proprietary: BlueOssSidCredentialTypeProprietary? = nil
|
|
1910
2059
|
}
|
|
1911
2060
|
|
|
1912
|
-
public struct BlueOssSidFileInfo
|
|
2061
|
+
public struct BlueOssSidFileInfo {
|
|
1913
2062
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1914
2063
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1915
2064
|
// methods supported on all messages.
|
|
@@ -1960,7 +2109,7 @@ public struct BlueOssSidFileInfo: Sendable {
|
|
|
1960
2109
|
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
1961
2110
|
}
|
|
1962
2111
|
|
|
1963
|
-
public struct BlueOssSidConfiguration
|
|
2112
|
+
public struct BlueOssSidConfiguration {
|
|
1964
2113
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1965
2114
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1966
2115
|
// methods supported on all messages.
|
|
@@ -1981,7 +2130,7 @@ public struct BlueOssSidConfiguration: Sendable {
|
|
|
1981
2130
|
fileprivate var _info: BlueOssSidFileInfo? = nil
|
|
1982
2131
|
}
|
|
1983
2132
|
|
|
1984
|
-
public struct BlueOssSidStorageProfile
|
|
2133
|
+
public struct BlueOssSidStorageProfile {
|
|
1985
2134
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1986
2135
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1987
2136
|
// methods supported on all messages.
|
|
@@ -2032,7 +2181,7 @@ public struct BlueOssSidStorageProfile: Sendable {
|
|
|
2032
2181
|
fileprivate var _infoFileSize: UInt32? = nil
|
|
2033
2182
|
}
|
|
2034
2183
|
|
|
2035
|
-
public struct BlueOssSidProvisioningConfiguration
|
|
2184
|
+
public struct BlueOssSidProvisioningConfiguration {
|
|
2036
2185
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2037
2186
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2038
2187
|
// methods supported on all messages.
|
|
@@ -2053,7 +2202,7 @@ public struct BlueOssSidProvisioningConfiguration: Sendable {
|
|
|
2053
2202
|
fileprivate var _notUsed: Bool? = nil
|
|
2054
2203
|
}
|
|
2055
2204
|
|
|
2056
|
-
public struct BlueOssSidProvisioningData
|
|
2205
|
+
public struct BlueOssSidProvisioningData {
|
|
2057
2206
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2058
2207
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2059
2208
|
// methods supported on all messages.
|
|
@@ -2095,7 +2244,7 @@ public struct BlueOssSidProvisioningData: Sendable {
|
|
|
2095
2244
|
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
2096
2245
|
}
|
|
2097
2246
|
|
|
2098
|
-
public struct BlueOssSidMobile
|
|
2247
|
+
public struct BlueOssSidMobile {
|
|
2099
2248
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2100
2249
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2101
2250
|
// methods supported on all messages.
|
|
@@ -2116,7 +2265,7 @@ public struct BlueOssSidMobile: @unchecked Sendable {
|
|
|
2116
2265
|
fileprivate var _infoFile: Data? = nil
|
|
2117
2266
|
}
|
|
2118
2267
|
|
|
2119
|
-
public struct BlueOssSidMobileProvisioningConfiguration
|
|
2268
|
+
public struct BlueOssSidMobileProvisioningConfiguration {
|
|
2120
2269
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2121
2270
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2122
2271
|
// methods supported on all messages.
|
|
@@ -2138,7 +2287,7 @@ public struct BlueOssSidMobileProvisioningConfiguration: Sendable {
|
|
|
2138
2287
|
}
|
|
2139
2288
|
|
|
2140
2289
|
/// Default configuration from spec
|
|
2141
|
-
public struct BlueOssSidMifareDesfireProvisioningConfiguration
|
|
2290
|
+
public struct BlueOssSidMifareDesfireProvisioningConfiguration {
|
|
2142
2291
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2143
2292
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2144
2293
|
// methods supported on all messages.
|
|
@@ -2160,7 +2309,7 @@ public struct BlueOssSidMifareDesfireProvisioningConfiguration: Sendable {
|
|
|
2160
2309
|
}
|
|
2161
2310
|
|
|
2162
2311
|
/// Demo keys from spec
|
|
2163
|
-
public struct BlueOssSidMifareDesfireConfiguration
|
|
2312
|
+
public struct BlueOssSidMifareDesfireConfiguration {
|
|
2164
2313
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2165
2314
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2166
2315
|
// methods supported on all messages.
|
|
@@ -2215,7 +2364,7 @@ public struct BlueOssSidMifareDesfireConfiguration: @unchecked Sendable {
|
|
|
2215
2364
|
fileprivate var _aid: UInt32? = nil
|
|
2216
2365
|
}
|
|
2217
2366
|
|
|
2218
|
-
public struct BlueOssSidSettings
|
|
2367
|
+
public struct BlueOssSidSettings {
|
|
2219
2368
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2220
2369
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2221
2370
|
// methods supported on all messages.
|
|
@@ -2236,7 +2385,7 @@ public struct BlueOssSidSettings: Sendable {
|
|
|
2236
2385
|
fileprivate var _mifareDesfireConfig: BlueOssSidMifareDesfireConfiguration? = nil
|
|
2237
2386
|
}
|
|
2238
2387
|
|
|
2239
|
-
public struct BlueOssSoVersion
|
|
2388
|
+
public struct BlueOssSoVersion {
|
|
2240
2389
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2241
2390
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2242
2391
|
// methods supported on all messages.
|
|
@@ -2267,7 +2416,7 @@ public struct BlueOssSoVersion: Sendable {
|
|
|
2267
2416
|
fileprivate var _versionMinor: UInt32? = nil
|
|
2268
2417
|
}
|
|
2269
2418
|
|
|
2270
|
-
public struct BlueOssSoCredentialTypeOss
|
|
2419
|
+
public struct BlueOssSoCredentialTypeOss {
|
|
2271
2420
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2272
2421
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2273
2422
|
// methods supported on all messages.
|
|
@@ -2288,7 +2437,7 @@ public struct BlueOssSoCredentialTypeOss: Sendable {
|
|
|
2288
2437
|
fileprivate var _credential: BlueOssSoCredentialTypeOssCredential? = nil
|
|
2289
2438
|
}
|
|
2290
2439
|
|
|
2291
|
-
public struct BlueOssSoCredentialTypeProprietary
|
|
2440
|
+
public struct BlueOssSoCredentialTypeProprietary {
|
|
2292
2441
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2293
2442
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2294
2443
|
// methods supported on all messages.
|
|
@@ -2309,7 +2458,7 @@ public struct BlueOssSoCredentialTypeProprietary: @unchecked Sendable {
|
|
|
2309
2458
|
fileprivate var _mfgCode: Data? = nil
|
|
2310
2459
|
}
|
|
2311
2460
|
|
|
2312
|
-
public struct BlueOssSoCredentialType
|
|
2461
|
+
public struct BlueOssSoCredentialType {
|
|
2313
2462
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2314
2463
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2315
2464
|
// methods supported on all messages.
|
|
@@ -2350,7 +2499,7 @@ public struct BlueOssSoCredentialType: Sendable {
|
|
|
2350
2499
|
fileprivate var _proprietary: BlueOssSoCredentialTypeProprietary? = nil
|
|
2351
2500
|
}
|
|
2352
2501
|
|
|
2353
|
-
public struct BlueOssSoDTScheduleDay
|
|
2502
|
+
public struct BlueOssSoDTScheduleDay {
|
|
2354
2503
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2355
2504
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2356
2505
|
// methods supported on all messages.
|
|
@@ -2365,7 +2514,7 @@ public struct BlueOssSoDTScheduleDay: Sendable {
|
|
|
2365
2514
|
public init() {}
|
|
2366
2515
|
}
|
|
2367
2516
|
|
|
2368
|
-
public struct BlueOssSoDTSchedule
|
|
2517
|
+
public struct BlueOssSoDTSchedule {
|
|
2369
2518
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2370
2519
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2371
2520
|
// methods supported on all messages.
|
|
@@ -2377,7 +2526,7 @@ public struct BlueOssSoDTSchedule: Sendable {
|
|
|
2377
2526
|
public init() {}
|
|
2378
2527
|
}
|
|
2379
2528
|
|
|
2380
|
-
public struct BlueOssSoDoorInfo
|
|
2529
|
+
public struct BlueOssSoDoorInfo {
|
|
2381
2530
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2382
2531
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2383
2532
|
// methods supported on all messages.
|
|
@@ -2428,7 +2577,7 @@ public struct BlueOssSoDoorInfo: Sendable {
|
|
|
2428
2577
|
fileprivate var _accessType: BlueAccessType? = nil
|
|
2429
2578
|
}
|
|
2430
2579
|
|
|
2431
|
-
public struct BlueOssSoEvent
|
|
2580
|
+
public struct BlueOssSoEvent {
|
|
2432
2581
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2433
2582
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2434
2583
|
// methods supported on all messages.
|
|
@@ -2482,7 +2631,7 @@ public struct BlueOssSoEvent: Sendable {
|
|
|
2482
2631
|
fileprivate var _eventInfo: UInt32? = nil
|
|
2483
2632
|
}
|
|
2484
2633
|
|
|
2485
|
-
public struct BlueOssSoExtFeature
|
|
2634
|
+
public struct BlueOssSoExtFeature {
|
|
2486
2635
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2487
2636
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2488
2637
|
// methods supported on all messages.
|
|
@@ -2513,7 +2662,7 @@ public struct BlueOssSoExtFeature: @unchecked Sendable {
|
|
|
2513
2662
|
fileprivate var _value: Data? = nil
|
|
2514
2663
|
}
|
|
2515
2664
|
|
|
2516
|
-
public struct BlueOssSoExtFeature_ValidityStart
|
|
2665
|
+
public struct BlueOssSoExtFeature_ValidityStart {
|
|
2517
2666
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2518
2667
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2519
2668
|
// methods supported on all messages.
|
|
@@ -2544,7 +2693,7 @@ public struct BlueOssSoExtFeature_ValidityStart: Sendable {
|
|
|
2544
2693
|
fileprivate var _validityStartTime: BlueLocalTimestamp? = nil
|
|
2545
2694
|
}
|
|
2546
2695
|
|
|
2547
|
-
public struct BlueOssSoFileInfo
|
|
2696
|
+
public struct BlueOssSoFileInfo {
|
|
2548
2697
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2549
2698
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2550
2699
|
// methods supported on all messages.
|
|
@@ -2615,7 +2764,7 @@ public struct BlueOssSoFileInfo: Sendable {
|
|
|
2615
2764
|
fileprivate var _maxBlacklistEntries: UInt32? = nil
|
|
2616
2765
|
}
|
|
2617
2766
|
|
|
2618
|
-
public struct BlueOssSoFileData
|
|
2767
|
+
public struct BlueOssSoFileData {
|
|
2619
2768
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2620
2769
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2621
2770
|
// methods supported on all messages.
|
|
@@ -2680,7 +2829,7 @@ public struct BlueOssSoFileData: Sendable {
|
|
|
2680
2829
|
fileprivate var _hasExtensions_p: Bool? = nil
|
|
2681
2830
|
}
|
|
2682
2831
|
|
|
2683
|
-
public struct BlueOssSoFileEvent
|
|
2832
|
+
public struct BlueOssSoFileEvent {
|
|
2684
2833
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2685
2834
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2686
2835
|
// methods supported on all messages.
|
|
@@ -2704,7 +2853,7 @@ public struct BlueOssSoFileEvent: @unchecked Sendable {
|
|
|
2704
2853
|
fileprivate var _supportedEventIds: Data? = nil
|
|
2705
2854
|
}
|
|
2706
2855
|
|
|
2707
|
-
public struct BlueOssSoFileBlacklist
|
|
2856
|
+
public struct BlueOssSoFileBlacklist {
|
|
2708
2857
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2709
2858
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2710
2859
|
// methods supported on all messages.
|
|
@@ -2716,7 +2865,7 @@ public struct BlueOssSoFileBlacklist: Sendable {
|
|
|
2716
2865
|
public init() {}
|
|
2717
2866
|
}
|
|
2718
2867
|
|
|
2719
|
-
public struct BlueOssSoFileCustomerExtensions
|
|
2868
|
+
public struct BlueOssSoFileCustomerExtensions {
|
|
2720
2869
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2721
2870
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2722
2871
|
// methods supported on all messages.
|
|
@@ -2741,7 +2890,7 @@ public struct BlueOssSoFileCustomerExtensions: Sendable {
|
|
|
2741
2890
|
fileprivate var _validityStart: BlueOssSoExtFeature_ValidityStart? = nil
|
|
2742
2891
|
}
|
|
2743
2892
|
|
|
2744
|
-
public struct BlueOssSoConfiguration
|
|
2893
|
+
public struct BlueOssSoConfiguration {
|
|
2745
2894
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2746
2895
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2747
2896
|
// methods supported on all messages.
|
|
@@ -2798,7 +2947,7 @@ public struct BlueOssSoConfiguration: @unchecked Sendable {
|
|
|
2798
2947
|
fileprivate var _storage = _StorageClass.defaultInstance
|
|
2799
2948
|
}
|
|
2800
2949
|
|
|
2801
|
-
public struct BlueOssSoStorageProfile
|
|
2950
|
+
public struct BlueOssSoStorageProfile {
|
|
2802
2951
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2803
2952
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2804
2953
|
// methods supported on all messages.
|
|
@@ -2929,7 +3078,7 @@ public struct BlueOssSoStorageProfile: Sendable {
|
|
|
2929
3078
|
fileprivate var _customerExtensionsFileSize: UInt32? = nil
|
|
2930
3079
|
}
|
|
2931
3080
|
|
|
2932
|
-
public struct BlueOssSoProvisioningConfiguration
|
|
3081
|
+
public struct BlueOssSoProvisioningConfiguration {
|
|
2933
3082
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2934
3083
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2935
3084
|
// methods supported on all messages.
|
|
@@ -3021,7 +3170,7 @@ public struct BlueOssSoProvisioningConfiguration: @unchecked Sendable {
|
|
|
3021
3170
|
fileprivate var _customerExtensionsSize: UInt32? = nil
|
|
3022
3171
|
}
|
|
3023
3172
|
|
|
3024
|
-
public struct BlueOssSoProvisioningData
|
|
3173
|
+
public struct BlueOssSoProvisioningData {
|
|
3025
3174
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3026
3175
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3027
3176
|
// methods supported on all messages.
|
|
@@ -3073,7 +3222,7 @@ public struct BlueOssSoProvisioningData: Sendable {
|
|
|
3073
3222
|
fileprivate var _siteID: UInt32? = nil
|
|
3074
3223
|
}
|
|
3075
3224
|
|
|
3076
|
-
public struct BlueOssSoMobile
|
|
3225
|
+
public struct BlueOssSoMobile {
|
|
3077
3226
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3078
3227
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3079
3228
|
// methods supported on all messages.
|
|
@@ -3146,7 +3295,7 @@ public struct BlueOssSoMobile: @unchecked Sendable {
|
|
|
3146
3295
|
fileprivate var _supportedEventIds: Data? = nil
|
|
3147
3296
|
}
|
|
3148
3297
|
|
|
3149
|
-
public struct BlueOssSoMobileProvisioningConfiguration
|
|
3298
|
+
public struct BlueOssSoMobileProvisioningConfiguration {
|
|
3150
3299
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3151
3300
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3152
3301
|
// methods supported on all messages.
|
|
@@ -3239,7 +3388,7 @@ public struct BlueOssSoMobileProvisioningConfiguration: @unchecked Sendable {
|
|
|
3239
3388
|
}
|
|
3240
3389
|
|
|
3241
3390
|
/// Default configuration from spec plus customer extensions spacing
|
|
3242
|
-
public struct BlueOssSoMifareDesfireProvisioningConfiguration
|
|
3391
|
+
public struct BlueOssSoMifareDesfireProvisioningConfiguration {
|
|
3243
3392
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3244
3393
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3245
3394
|
// methods supported on all messages.
|
|
@@ -3332,7 +3481,7 @@ public struct BlueOssSoMifareDesfireProvisioningConfiguration: @unchecked Sendab
|
|
|
3332
3481
|
}
|
|
3333
3482
|
|
|
3334
3483
|
/// Demo keys from spec
|
|
3335
|
-
public struct BlueOssSoMifareDesfireConfiguration
|
|
3484
|
+
public struct BlueOssSoMifareDesfireConfiguration {
|
|
3336
3485
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3337
3486
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3338
3487
|
// methods supported on all messages.
|
|
@@ -3387,7 +3536,7 @@ public struct BlueOssSoMifareDesfireConfiguration: @unchecked Sendable {
|
|
|
3387
3536
|
fileprivate var _aid: UInt32? = nil
|
|
3388
3537
|
}
|
|
3389
3538
|
|
|
3390
|
-
public struct BlueOssSoSettings
|
|
3539
|
+
public struct BlueOssSoSettings {
|
|
3391
3540
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3392
3541
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3393
3542
|
// methods supported on all messages.
|
|
@@ -3408,7 +3557,7 @@ public struct BlueOssSoSettings: Sendable {
|
|
|
3408
3557
|
fileprivate var _mifareDesfireConfig: BlueOssSoMifareDesfireConfiguration? = nil
|
|
3409
3558
|
}
|
|
3410
3559
|
|
|
3411
|
-
public struct _BlueTestEncodeDecode
|
|
3560
|
+
public struct _BlueTestEncodeDecode {
|
|
3412
3561
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3413
3562
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3414
3563
|
// methods supported on all messages.
|
|
@@ -3459,6 +3608,82 @@ public struct _BlueTestEncodeDecode: Sendable {
|
|
|
3459
3608
|
fileprivate var _applicationVersion: Int32? = nil
|
|
3460
3609
|
}
|
|
3461
3610
|
|
|
3611
|
+
#if swift(>=5.5) && canImport(_Concurrency)
|
|
3612
|
+
extension BlueReturnCode: @unchecked Sendable {}
|
|
3613
|
+
extension BlueTimeUnit: @unchecked Sendable {}
|
|
3614
|
+
extension BlueWeekday: @unchecked Sendable {}
|
|
3615
|
+
extension BlueCredentialType: @unchecked Sendable {}
|
|
3616
|
+
extension BlueAccessType: @unchecked Sendable {}
|
|
3617
|
+
extension BlueTransponderType: @unchecked Sendable {}
|
|
3618
|
+
extension BlueHardwareType: @unchecked Sendable {}
|
|
3619
|
+
extension BlueBatteryLevel: @unchecked Sendable {}
|
|
3620
|
+
extension BlueEventId: @unchecked Sendable {}
|
|
3621
|
+
extension BlueEventInfoSystem: @unchecked Sendable {}
|
|
3622
|
+
extension BlueEventInfoAccess: @unchecked Sendable {}
|
|
3623
|
+
extension BlueOssCredentialTypeSource: @unchecked Sendable {}
|
|
3624
|
+
extension BlueOssSoCredentialTypeOssCredential: @unchecked Sendable {}
|
|
3625
|
+
extension BlueOssSoDoorGroupId: @unchecked Sendable {}
|
|
3626
|
+
extension BlueOssSoDoorInfoAccessBy: @unchecked Sendable {}
|
|
3627
|
+
extension BlueOssSoFileId: @unchecked Sendable {}
|
|
3628
|
+
extension BlueSharedDemoData: @unchecked Sendable {}
|
|
3629
|
+
extension BlueVersionInfo: @unchecked Sendable {}
|
|
3630
|
+
extension BlueLocalTimestamp: @unchecked Sendable {}
|
|
3631
|
+
extension BlueLocalTimeperiod: @unchecked Sendable {}
|
|
3632
|
+
extension BlueLocalTimeSchedule: @unchecked Sendable {}
|
|
3633
|
+
extension BlueCredentialId: @unchecked Sendable {}
|
|
3634
|
+
extension BlueBlacklistEntry: @unchecked Sendable {}
|
|
3635
|
+
extension BlueBleManufacturerInfo: @unchecked Sendable {}
|
|
3636
|
+
extension BlueBleAdvertisementInfo: @unchecked Sendable {}
|
|
3637
|
+
extension BlueEvent: @unchecked Sendable {}
|
|
3638
|
+
extension BlueSPHandshake: @unchecked Sendable {}
|
|
3639
|
+
extension BlueSPHandshakeReply: @unchecked Sendable {}
|
|
3640
|
+
extension BlueSPTokenCommand: @unchecked Sendable {}
|
|
3641
|
+
extension BlueSPToken: @unchecked Sendable {}
|
|
3642
|
+
extension BlueSPToken.OneOf_Payload: @unchecked Sendable {}
|
|
3643
|
+
extension BlueSPResult: @unchecked Sendable {}
|
|
3644
|
+
extension BlueOssAccessResult: @unchecked Sendable {}
|
|
3645
|
+
extension BlueOssAccessEventsResult: @unchecked Sendable {}
|
|
3646
|
+
extension BlueOssSidVersion: @unchecked Sendable {}
|
|
3647
|
+
extension BlueOssSidCredentialTypeOss: @unchecked Sendable {}
|
|
3648
|
+
extension BlueOssSidCredentialTypeProprietary: @unchecked Sendable {}
|
|
3649
|
+
extension BlueOssSidCredentialType: @unchecked Sendable {}
|
|
3650
|
+
extension BlueOssSidFileInfo: @unchecked Sendable {}
|
|
3651
|
+
extension BlueOssSidConfiguration: @unchecked Sendable {}
|
|
3652
|
+
extension BlueOssSidStorageProfile: @unchecked Sendable {}
|
|
3653
|
+
extension BlueOssSidProvisioningConfiguration: @unchecked Sendable {}
|
|
3654
|
+
extension BlueOssSidProvisioningData: @unchecked Sendable {}
|
|
3655
|
+
extension BlueOssSidMobile: @unchecked Sendable {}
|
|
3656
|
+
extension BlueOssSidMobileProvisioningConfiguration: @unchecked Sendable {}
|
|
3657
|
+
extension BlueOssSidMifareDesfireProvisioningConfiguration: @unchecked Sendable {}
|
|
3658
|
+
extension BlueOssSidMifareDesfireConfiguration: @unchecked Sendable {}
|
|
3659
|
+
extension BlueOssSidSettings: @unchecked Sendable {}
|
|
3660
|
+
extension BlueOssSoVersion: @unchecked Sendable {}
|
|
3661
|
+
extension BlueOssSoCredentialTypeOss: @unchecked Sendable {}
|
|
3662
|
+
extension BlueOssSoCredentialTypeProprietary: @unchecked Sendable {}
|
|
3663
|
+
extension BlueOssSoCredentialType: @unchecked Sendable {}
|
|
3664
|
+
extension BlueOssSoDTScheduleDay: @unchecked Sendable {}
|
|
3665
|
+
extension BlueOssSoDTSchedule: @unchecked Sendable {}
|
|
3666
|
+
extension BlueOssSoDoorInfo: @unchecked Sendable {}
|
|
3667
|
+
extension BlueOssSoEvent: @unchecked Sendable {}
|
|
3668
|
+
extension BlueOssSoExtFeature: @unchecked Sendable {}
|
|
3669
|
+
extension BlueOssSoExtFeature_ValidityStart: @unchecked Sendable {}
|
|
3670
|
+
extension BlueOssSoFileInfo: @unchecked Sendable {}
|
|
3671
|
+
extension BlueOssSoFileData: @unchecked Sendable {}
|
|
3672
|
+
extension BlueOssSoFileEvent: @unchecked Sendable {}
|
|
3673
|
+
extension BlueOssSoFileBlacklist: @unchecked Sendable {}
|
|
3674
|
+
extension BlueOssSoFileCustomerExtensions: @unchecked Sendable {}
|
|
3675
|
+
extension BlueOssSoConfiguration: @unchecked Sendable {}
|
|
3676
|
+
extension BlueOssSoStorageProfile: @unchecked Sendable {}
|
|
3677
|
+
extension BlueOssSoProvisioningConfiguration: @unchecked Sendable {}
|
|
3678
|
+
extension BlueOssSoProvisioningData: @unchecked Sendable {}
|
|
3679
|
+
extension BlueOssSoMobile: @unchecked Sendable {}
|
|
3680
|
+
extension BlueOssSoMobileProvisioningConfiguration: @unchecked Sendable {}
|
|
3681
|
+
extension BlueOssSoMifareDesfireProvisioningConfiguration: @unchecked Sendable {}
|
|
3682
|
+
extension BlueOssSoMifareDesfireConfiguration: @unchecked Sendable {}
|
|
3683
|
+
extension BlueOssSoSettings: @unchecked Sendable {}
|
|
3684
|
+
extension _BlueTestEncodeDecode: @unchecked Sendable {}
|
|
3685
|
+
#endif // swift(>=5.5) && canImport(_Concurrency)
|
|
3686
|
+
|
|
3462
3687
|
// MARK: - Code below here is support for the SwiftProtobuf runtime.
|
|
3463
3688
|
|
|
3464
3689
|
extension BlueReturnCode: SwiftProtobuf._ProtoNameProviding {
|