@blueid/access-proto 12.32.0 → 12.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BlueSDK.proto +12 -0
- package/cjs/BlueSDK_pb.d.ts +58 -0
- package/cjs/BlueSDK_pb.js +23 -1
- package/es/BlueSDK_pb.d.ts +58 -0
- package/es/BlueSDK_pb.js +22 -0
- package/nanopb/BlueSDK.pb.c +8 -2
- package/nanopb/BlueSDK.pb.h +42 -2
- package/package.json +1 -1
- package/swift/BlueCore.pb.swift +161 -161
- package/swift/BlueLock.pb.swift +7 -7
- package/swift/BlueSDK.pb.swift +205 -59
- package/swift/BlueSystem.pb.swift +41 -41
package/swift/BlueCore.pb.swift
CHANGED
|
@@ -20,12 +20,12 @@ import SwiftProtobuf
|
|
|
20
20
|
// incompatible with the version of SwiftProtobuf to which you are linking.
|
|
21
21
|
// Please ensure that you are building against the same version of the API
|
|
22
22
|
// that was used to generate this file.
|
|
23
|
-
fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck {
|
|
23
|
+
fileprivate nonisolated struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck {
|
|
24
24
|
struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {}
|
|
25
25
|
typealias Version = _2
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
public enum BlueReturnCode: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
28
|
+
public nonisolated enum BlueReturnCode: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
29
29
|
|
|
30
30
|
///
|
|
31
31
|
/// Success results
|
|
@@ -152,7 +152,7 @@ public enum BlueReturnCode: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
152
152
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
public enum BlueTimeUnit: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
155
|
+
public nonisolated enum BlueTimeUnit: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
156
156
|
case seconds = 1
|
|
157
157
|
case minutes = 2
|
|
158
158
|
case hours = 3
|
|
@@ -167,7 +167,7 @@ public enum BlueTimeUnit: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
/// Those may never be changed
|
|
170
|
-
public enum BlueWeekday: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
170
|
+
public nonisolated enum BlueWeekday: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
171
171
|
case monday = 0
|
|
172
172
|
case tuesday = 1
|
|
173
173
|
case wednesday = 2
|
|
@@ -184,7 +184,7 @@ public enum BlueWeekday: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
184
184
|
|
|
185
185
|
/// @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
186
186
|
/// This should be renamed to BlueIdentityRole later on.
|
|
187
|
-
public enum BlueCredentialType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
187
|
+
public nonisolated enum BlueCredentialType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
188
188
|
|
|
189
189
|
/// Regular credential can only open / enter
|
|
190
190
|
case regular = 1
|
|
@@ -207,7 +207,7 @@ public enum BlueCredentialType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
207
207
|
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
-
public enum BlueAccessType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
210
|
+
public nonisolated enum BlueAccessType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
211
211
|
|
|
212
212
|
/// Access with default unlock time
|
|
213
213
|
case defaultTime = 1
|
|
@@ -239,7 +239,7 @@ public enum BlueAccessType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
239
239
|
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
public enum BlueTransponderType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
242
|
+
public nonisolated enum BlueTransponderType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
243
243
|
case unknownTransponder = 0
|
|
244
244
|
case mobileTransponder = 1
|
|
245
245
|
case mifareDesfire = 2
|
|
@@ -250,7 +250,7 @@ public enum BlueTransponderType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
250
250
|
|
|
251
251
|
}
|
|
252
252
|
|
|
253
|
-
public enum BlueHardwareType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
253
|
+
public nonisolated enum BlueHardwareType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
254
254
|
case unknownHardware = 0
|
|
255
255
|
case testHardware = 1
|
|
256
256
|
case gateway = 2
|
|
@@ -267,7 +267,7 @@ public enum BlueHardwareType: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
267
267
|
|
|
268
268
|
}
|
|
269
269
|
|
|
270
|
-
public enum BlueBatteryLevel: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
270
|
+
public nonisolated enum BlueBatteryLevel: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
271
271
|
case unknownBattery = 0
|
|
272
272
|
case onPower = 1
|
|
273
273
|
case goodPower = 10
|
|
@@ -285,7 +285,7 @@ public enum BlueBatteryLevel: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
285
285
|
|
|
286
286
|
}
|
|
287
287
|
|
|
288
|
-
public enum BlueEventId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
288
|
+
public nonisolated enum BlueEventId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
289
289
|
|
|
290
290
|
///* eventInfo = 0
|
|
291
291
|
case batteryLow = 1
|
|
@@ -336,7 +336,7 @@ public enum BlueEventId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
336
336
|
|
|
337
337
|
}
|
|
338
338
|
|
|
339
|
-
public enum BlueEventInfoSystem: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
339
|
+
public nonisolated enum BlueEventInfoSystem: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
340
340
|
case systemRestart = 1
|
|
341
341
|
case systemConfigured = 2
|
|
342
342
|
|
|
@@ -346,7 +346,7 @@ public enum BlueEventInfoSystem: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
346
346
|
|
|
347
347
|
}
|
|
348
348
|
|
|
349
|
-
public enum BlueEventInfoAccess: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
349
|
+
public nonisolated enum BlueEventInfoAccess: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
350
350
|
case granted = 1
|
|
351
351
|
case grantedDefaultTime = 2
|
|
352
352
|
case grantedExtendedTime = 3
|
|
@@ -366,7 +366,7 @@ public enum BlueEventInfoAccess: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
366
366
|
|
|
367
367
|
}
|
|
368
368
|
|
|
369
|
-
public enum BlueOssCredentialTypeSource: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
369
|
+
public nonisolated enum BlueOssCredentialTypeSource: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
370
370
|
case oss = 0
|
|
371
371
|
case proprietary = 1
|
|
372
372
|
|
|
@@ -376,7 +376,7 @@ public enum BlueOssCredentialTypeSource: Int, SwiftProtobuf.Enum, Swift.CaseIter
|
|
|
376
376
|
|
|
377
377
|
}
|
|
378
378
|
|
|
379
|
-
public enum BlueOssSoCredentialTypeOssCredential: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
379
|
+
public nonisolated enum BlueOssSoCredentialTypeOssCredential: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
380
380
|
case standard = 0
|
|
381
381
|
case interventionMedia = 1
|
|
382
382
|
|
|
@@ -386,7 +386,7 @@ public enum BlueOssSoCredentialTypeOssCredential: Int, SwiftProtobuf.Enum, Swift
|
|
|
386
386
|
|
|
387
387
|
}
|
|
388
388
|
|
|
389
|
-
public enum BlueOssSoDoorGroupId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
389
|
+
public nonisolated enum BlueOssSoDoorGroupId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
390
390
|
case masterGroupID = 65535
|
|
391
391
|
|
|
392
392
|
public init() {
|
|
@@ -395,7 +395,7 @@ public enum BlueOssSoDoorGroupId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
395
395
|
|
|
396
396
|
}
|
|
397
397
|
|
|
398
|
-
public enum BlueOssSoDoorInfoAccessBy: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
398
|
+
public nonisolated enum BlueOssSoDoorInfoAccessBy: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
399
399
|
case doorGroupID = 0
|
|
400
400
|
case doorID = 1
|
|
401
401
|
|
|
@@ -405,7 +405,7 @@ public enum BlueOssSoDoorInfoAccessBy: Int, SwiftProtobuf.Enum, Swift.CaseIterab
|
|
|
405
405
|
|
|
406
406
|
}
|
|
407
407
|
|
|
408
|
-
public enum BlueOssSoFileId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
408
|
+
public nonisolated enum BlueOssSoFileId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
409
409
|
case info = 0
|
|
410
410
|
case data = 1
|
|
411
411
|
case event = 2
|
|
@@ -418,7 +418,7 @@ public enum BlueOssSoFileId: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
418
418
|
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
-
public enum BlueOssSoWriteStatus: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
421
|
+
public nonisolated enum BlueOssSoWriteStatus: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
422
422
|
|
|
423
423
|
/// transponder is writable with the default DES master key.
|
|
424
424
|
case writableByAnyOrg = 0
|
|
@@ -435,7 +435,7 @@ public enum BlueOssSoWriteStatus: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
435
435
|
|
|
436
436
|
}
|
|
437
437
|
|
|
438
|
-
public struct BlueSharedDemoData: Sendable {
|
|
438
|
+
public nonisolated struct BlueSharedDemoData: Sendable {
|
|
439
439
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
440
440
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
441
441
|
// methods supported on all messages.
|
|
@@ -497,7 +497,7 @@ public struct BlueSharedDemoData: Sendable {
|
|
|
497
497
|
fileprivate var _signaturePublicKey: Data? = nil
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
-
public struct BlueVersionInfo: Sendable {
|
|
500
|
+
public nonisolated struct BlueVersionInfo: Sendable {
|
|
501
501
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
502
502
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
503
503
|
// methods supported on all messages.
|
|
@@ -538,7 +538,7 @@ public struct BlueVersionInfo: Sendable {
|
|
|
538
538
|
fileprivate var _testVersion: UInt32? = nil
|
|
539
539
|
}
|
|
540
540
|
|
|
541
|
-
public struct BlueLocalTimestamp: Sendable {
|
|
541
|
+
public nonisolated struct BlueLocalTimestamp: Sendable {
|
|
542
542
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
543
543
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
544
544
|
// methods supported on all messages.
|
|
@@ -609,7 +609,7 @@ public struct BlueLocalTimestamp: Sendable {
|
|
|
609
609
|
fileprivate var _seconds: UInt32? = nil
|
|
610
610
|
}
|
|
611
611
|
|
|
612
|
-
public struct BlueLocalTimeperiod: Sendable {
|
|
612
|
+
public nonisolated struct BlueLocalTimeperiod: Sendable {
|
|
613
613
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
614
614
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
615
615
|
// methods supported on all messages.
|
|
@@ -660,7 +660,7 @@ public struct BlueLocalTimeperiod: Sendable {
|
|
|
660
660
|
fileprivate var _minutesTo: UInt32? = nil
|
|
661
661
|
}
|
|
662
662
|
|
|
663
|
-
public struct BlueLocalTimeSchedule: Sendable {
|
|
663
|
+
public nonisolated struct BlueLocalTimeSchedule: Sendable {
|
|
664
664
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
665
665
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
666
666
|
// methods supported on all messages.
|
|
@@ -705,7 +705,7 @@ public struct BlueLocalTimeSchedule: Sendable {
|
|
|
705
705
|
fileprivate var _timePeriod: BlueLocalTimeperiod? = nil
|
|
706
706
|
}
|
|
707
707
|
|
|
708
|
-
public struct BlueCredentialId: Sendable {
|
|
708
|
+
public nonisolated struct BlueCredentialId: Sendable {
|
|
709
709
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
710
710
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
711
711
|
// methods supported on all messages.
|
|
@@ -726,7 +726,7 @@ public struct BlueCredentialId: Sendable {
|
|
|
726
726
|
fileprivate var _id: String? = nil
|
|
727
727
|
}
|
|
728
728
|
|
|
729
|
-
public struct BlueBlacklistEntry: Sendable {
|
|
729
|
+
public nonisolated struct BlueBlacklistEntry: Sendable {
|
|
730
730
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
731
731
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
732
732
|
// methods supported on all messages.
|
|
@@ -757,7 +757,7 @@ public struct BlueBlacklistEntry: Sendable {
|
|
|
757
757
|
fileprivate var _expiresAt: BlueLocalTimestamp? = nil
|
|
758
758
|
}
|
|
759
759
|
|
|
760
|
-
public struct BlueBleManufacturerInfo: Sendable {
|
|
760
|
+
public nonisolated struct BlueBleManufacturerInfo: Sendable {
|
|
761
761
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
762
762
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
763
763
|
// methods supported on all messages.
|
|
@@ -830,7 +830,7 @@ public struct BlueBleManufacturerInfo: Sendable {
|
|
|
830
830
|
fileprivate var _hardwareState: UInt32? = nil
|
|
831
831
|
}
|
|
832
832
|
|
|
833
|
-
public struct BlueBleAdvertisementInfo: Sendable {
|
|
833
|
+
public nonisolated struct BlueBleAdvertisementInfo: Sendable {
|
|
834
834
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
835
835
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
836
836
|
// methods supported on all messages.
|
|
@@ -885,7 +885,7 @@ public struct BlueBleAdvertisementInfo: Sendable {
|
|
|
885
885
|
fileprivate var _mfInfo: BlueBleManufacturerInfo? = nil
|
|
886
886
|
}
|
|
887
887
|
|
|
888
|
-
public struct BlueEvent: Sendable {
|
|
888
|
+
public nonisolated struct BlueEvent: Sendable {
|
|
889
889
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
890
890
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
891
891
|
// methods supported on all messages.
|
|
@@ -958,7 +958,7 @@ public struct BlueEvent: Sendable {
|
|
|
958
958
|
fileprivate var _command: String? = nil
|
|
959
959
|
}
|
|
960
960
|
|
|
961
|
-
public struct BlueSPHandshake: Sendable {
|
|
961
|
+
public nonisolated struct BlueSPHandshake: Sendable {
|
|
962
962
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
963
963
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
964
964
|
// methods supported on all messages.
|
|
@@ -979,7 +979,7 @@ public struct BlueSPHandshake: Sendable {
|
|
|
979
979
|
fileprivate var _transponderSalt: Data? = nil
|
|
980
980
|
}
|
|
981
981
|
|
|
982
|
-
public struct BlueSPHandshakeReply: Sendable {
|
|
982
|
+
public nonisolated struct BlueSPHandshakeReply: Sendable {
|
|
983
983
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
984
984
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
985
985
|
// methods supported on all messages.
|
|
@@ -1010,7 +1010,7 @@ public struct BlueSPHandshakeReply: Sendable {
|
|
|
1010
1010
|
fileprivate var _terminalSignature: Data? = nil
|
|
1011
1011
|
}
|
|
1012
1012
|
|
|
1013
|
-
public struct BlueSPTokenCommand: Sendable {
|
|
1013
|
+
public nonisolated struct BlueSPTokenCommand: Sendable {
|
|
1014
1014
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1015
1015
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1016
1016
|
// methods supported on all messages.
|
|
@@ -1072,7 +1072,7 @@ public struct BlueSPTokenCommand: Sendable {
|
|
|
1072
1072
|
fileprivate var _data: Data? = nil
|
|
1073
1073
|
}
|
|
1074
1074
|
|
|
1075
|
-
public struct BlueSPToken: Sendable {
|
|
1075
|
+
public nonisolated struct BlueSPToken: Sendable {
|
|
1076
1076
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1077
1077
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1078
1078
|
// methods supported on all messages.
|
|
@@ -1114,7 +1114,7 @@ public struct BlueSPToken: Sendable {
|
|
|
1114
1114
|
|
|
1115
1115
|
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
1116
1116
|
|
|
1117
|
-
public enum OneOf_Payload: Equatable, Sendable {
|
|
1117
|
+
public nonisolated enum OneOf_Payload: Equatable, Sendable {
|
|
1118
1118
|
case command(BlueSPTokenCommand)
|
|
1119
1119
|
case ossSo(BlueOssSoMobile)
|
|
1120
1120
|
case ossSid(BlueOssSidMobile)
|
|
@@ -1146,7 +1146,7 @@ public struct BlueSPToken: Sendable {
|
|
|
1146
1146
|
fileprivate var _signature: Data? = nil
|
|
1147
1147
|
}
|
|
1148
1148
|
|
|
1149
|
-
public struct BlueSPResult: Sendable {
|
|
1149
|
+
public nonisolated struct BlueSPResult: Sendable {
|
|
1150
1150
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1151
1151
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1152
1152
|
// methods supported on all messages.
|
|
@@ -1168,7 +1168,7 @@ public struct BlueSPResult: Sendable {
|
|
|
1168
1168
|
fileprivate var _data: Data? = nil
|
|
1169
1169
|
}
|
|
1170
1170
|
|
|
1171
|
-
public struct BlueWebSPHandshake: Sendable {
|
|
1171
|
+
public nonisolated struct BlueWebSPHandshake: Sendable {
|
|
1172
1172
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1173
1173
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1174
1174
|
// methods supported on all messages.
|
|
@@ -1189,7 +1189,7 @@ public struct BlueWebSPHandshake: Sendable {
|
|
|
1189
1189
|
fileprivate var _salt: Data? = nil
|
|
1190
1190
|
}
|
|
1191
1191
|
|
|
1192
|
-
public struct BlueWebSPHandshakeReply: Sendable {
|
|
1192
|
+
public nonisolated struct BlueWebSPHandshakeReply: Sendable {
|
|
1193
1193
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1194
1194
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1195
1195
|
// methods supported on all messages.
|
|
@@ -1220,7 +1220,7 @@ public struct BlueWebSPHandshakeReply: Sendable {
|
|
|
1220
1220
|
fileprivate var _signature: Data? = nil
|
|
1221
1221
|
}
|
|
1222
1222
|
|
|
1223
|
-
public struct BlueWebSPMessage: Sendable {
|
|
1223
|
+
public nonisolated struct BlueWebSPMessage: Sendable {
|
|
1224
1224
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1225
1225
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1226
1226
|
// methods supported on all messages.
|
|
@@ -1252,7 +1252,7 @@ public struct BlueWebSPMessage: Sendable {
|
|
|
1252
1252
|
}
|
|
1253
1253
|
|
|
1254
1254
|
/// Message sent by the server to the device
|
|
1255
|
-
public struct BlueWebSPServerMessage: Sendable {
|
|
1255
|
+
public nonisolated struct BlueWebSPServerMessage: Sendable {
|
|
1256
1256
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1257
1257
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1258
1258
|
// methods supported on all messages.
|
|
@@ -1293,7 +1293,7 @@ public struct BlueWebSPServerMessage: Sendable {
|
|
|
1293
1293
|
|
|
1294
1294
|
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
1295
1295
|
|
|
1296
|
-
public enum OneOf_Payload: Equatable, Sendable {
|
|
1296
|
+
public nonisolated enum OneOf_Payload: Equatable, Sendable {
|
|
1297
1297
|
case handshake(BlueWebSPHandshake)
|
|
1298
1298
|
case command(BlueSPTokenCommand)
|
|
1299
1299
|
case ossSo(BlueOssSoMobile)
|
|
@@ -1329,7 +1329,7 @@ public struct BlueWebSPServerMessage: Sendable {
|
|
|
1329
1329
|
}
|
|
1330
1330
|
|
|
1331
1331
|
/// TODO: payload
|
|
1332
|
-
public struct BlueWebSPClientMessage: Sendable {
|
|
1332
|
+
public nonisolated struct BlueWebSPClientMessage: Sendable {
|
|
1333
1333
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1334
1334
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1335
1335
|
// methods supported on all messages.
|
|
@@ -1339,7 +1339,7 @@ public struct BlueWebSPClientMessage: Sendable {
|
|
|
1339
1339
|
public init() {}
|
|
1340
1340
|
}
|
|
1341
1341
|
|
|
1342
|
-
public struct BlueWebSPStatusMessage: Sendable {
|
|
1342
|
+
public nonisolated struct BlueWebSPStatusMessage: Sendable {
|
|
1343
1343
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1344
1344
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1345
1345
|
// methods supported on all messages.
|
|
@@ -1360,7 +1360,7 @@ public struct BlueWebSPStatusMessage: Sendable {
|
|
|
1360
1360
|
fileprivate var _status: BlueReturnCode? = nil
|
|
1361
1361
|
}
|
|
1362
1362
|
|
|
1363
|
-
public struct BlueOssAccessResult: Sendable {
|
|
1363
|
+
public nonisolated struct BlueOssAccessResult: Sendable {
|
|
1364
1364
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1365
1365
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1366
1366
|
// methods supported on all messages.
|
|
@@ -1438,7 +1438,7 @@ public struct BlueOssAccessResult: Sendable {
|
|
|
1438
1438
|
fileprivate var _accessOpenTime: UInt32? = nil
|
|
1439
1439
|
}
|
|
1440
1440
|
|
|
1441
|
-
public struct BlueOssAccessEventsResult: Sendable {
|
|
1441
|
+
public nonisolated struct BlueOssAccessEventsResult: Sendable {
|
|
1442
1442
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1443
1443
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1444
1444
|
// methods supported on all messages.
|
|
@@ -1461,7 +1461,7 @@ public struct BlueOssAccessEventsResult: Sendable {
|
|
|
1461
1461
|
fileprivate var _accessResult: BlueOssAccessResult? = nil
|
|
1462
1462
|
}
|
|
1463
1463
|
|
|
1464
|
-
public struct BlueOssSidVersion: Sendable {
|
|
1464
|
+
public nonisolated struct BlueOssSidVersion: Sendable {
|
|
1465
1465
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1466
1466
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1467
1467
|
// methods supported on all messages.
|
|
@@ -1492,7 +1492,7 @@ public struct BlueOssSidVersion: Sendable {
|
|
|
1492
1492
|
fileprivate var _versionMinor: UInt32? = nil
|
|
1493
1493
|
}
|
|
1494
1494
|
|
|
1495
|
-
public struct BlueOssSidCredentialTypeOss: Sendable {
|
|
1495
|
+
public nonisolated struct BlueOssSidCredentialTypeOss: Sendable {
|
|
1496
1496
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1497
1497
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1498
1498
|
// methods supported on all messages.
|
|
@@ -1513,7 +1513,7 @@ public struct BlueOssSidCredentialTypeOss: Sendable {
|
|
|
1513
1513
|
fileprivate var _notUsed: Bool? = nil
|
|
1514
1514
|
}
|
|
1515
1515
|
|
|
1516
|
-
public struct BlueOssSidCredentialTypeProprietary: Sendable {
|
|
1516
|
+
public nonisolated struct BlueOssSidCredentialTypeProprietary: Sendable {
|
|
1517
1517
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1518
1518
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1519
1519
|
// methods supported on all messages.
|
|
@@ -1534,7 +1534,7 @@ public struct BlueOssSidCredentialTypeProprietary: Sendable {
|
|
|
1534
1534
|
fileprivate var _mfgCode: Data? = nil
|
|
1535
1535
|
}
|
|
1536
1536
|
|
|
1537
|
-
public struct BlueOssSidCredentialType: Sendable {
|
|
1537
|
+
public nonisolated struct BlueOssSidCredentialType: Sendable {
|
|
1538
1538
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1539
1539
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1540
1540
|
// methods supported on all messages.
|
|
@@ -1575,7 +1575,7 @@ public struct BlueOssSidCredentialType: Sendable {
|
|
|
1575
1575
|
fileprivate var _proprietary: BlueOssSidCredentialTypeProprietary? = nil
|
|
1576
1576
|
}
|
|
1577
1577
|
|
|
1578
|
-
public struct BlueOssSidFileInfo: Sendable {
|
|
1578
|
+
public nonisolated struct BlueOssSidFileInfo: Sendable {
|
|
1579
1579
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1580
1580
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1581
1581
|
// methods supported on all messages.
|
|
@@ -1626,7 +1626,7 @@ public struct BlueOssSidFileInfo: Sendable {
|
|
|
1626
1626
|
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
1627
1627
|
}
|
|
1628
1628
|
|
|
1629
|
-
public struct BlueOssSidConfiguration: Sendable {
|
|
1629
|
+
public nonisolated struct BlueOssSidConfiguration: Sendable {
|
|
1630
1630
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1631
1631
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1632
1632
|
// methods supported on all messages.
|
|
@@ -1647,7 +1647,7 @@ public struct BlueOssSidConfiguration: Sendable {
|
|
|
1647
1647
|
fileprivate var _info: BlueOssSidFileInfo? = nil
|
|
1648
1648
|
}
|
|
1649
1649
|
|
|
1650
|
-
public struct BlueOssSidStorageProfile: Sendable {
|
|
1650
|
+
public nonisolated struct BlueOssSidStorageProfile: Sendable {
|
|
1651
1651
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1652
1652
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1653
1653
|
// methods supported on all messages.
|
|
@@ -1698,7 +1698,7 @@ public struct BlueOssSidStorageProfile: Sendable {
|
|
|
1698
1698
|
fileprivate var _infoFileSize: UInt32? = nil
|
|
1699
1699
|
}
|
|
1700
1700
|
|
|
1701
|
-
public struct BlueOssSidProvisioningConfiguration: Sendable {
|
|
1701
|
+
public nonisolated struct BlueOssSidProvisioningConfiguration: Sendable {
|
|
1702
1702
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1703
1703
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1704
1704
|
// methods supported on all messages.
|
|
@@ -1719,7 +1719,7 @@ public struct BlueOssSidProvisioningConfiguration: Sendable {
|
|
|
1719
1719
|
fileprivate var _notUsed: Bool? = nil
|
|
1720
1720
|
}
|
|
1721
1721
|
|
|
1722
|
-
public struct BlueOssSidProvisioningData: Sendable {
|
|
1722
|
+
public nonisolated struct BlueOssSidProvisioningData: Sendable {
|
|
1723
1723
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1724
1724
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1725
1725
|
// methods supported on all messages.
|
|
@@ -1761,7 +1761,7 @@ public struct BlueOssSidProvisioningData: Sendable {
|
|
|
1761
1761
|
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
1762
1762
|
}
|
|
1763
1763
|
|
|
1764
|
-
public struct BlueOssSidMobile: Sendable {
|
|
1764
|
+
public nonisolated struct BlueOssSidMobile: Sendable {
|
|
1765
1765
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1766
1766
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1767
1767
|
// methods supported on all messages.
|
|
@@ -1782,7 +1782,7 @@ public struct BlueOssSidMobile: Sendable {
|
|
|
1782
1782
|
fileprivate var _infoFile: Data? = nil
|
|
1783
1783
|
}
|
|
1784
1784
|
|
|
1785
|
-
public struct BlueOssSidMobileProvisioningConfiguration: Sendable {
|
|
1785
|
+
public nonisolated struct BlueOssSidMobileProvisioningConfiguration: Sendable {
|
|
1786
1786
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1787
1787
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1788
1788
|
// methods supported on all messages.
|
|
@@ -1804,7 +1804,7 @@ public struct BlueOssSidMobileProvisioningConfiguration: Sendable {
|
|
|
1804
1804
|
}
|
|
1805
1805
|
|
|
1806
1806
|
/// Default configuration from spec
|
|
1807
|
-
public struct BlueOssSidMifareDesfireProvisioningConfiguration: Sendable {
|
|
1807
|
+
public nonisolated struct BlueOssSidMifareDesfireProvisioningConfiguration: Sendable {
|
|
1808
1808
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1809
1809
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1810
1810
|
// methods supported on all messages.
|
|
@@ -1826,7 +1826,7 @@ public struct BlueOssSidMifareDesfireProvisioningConfiguration: Sendable {
|
|
|
1826
1826
|
}
|
|
1827
1827
|
|
|
1828
1828
|
/// Demo keys from spec
|
|
1829
|
-
public struct BlueOssSidMifareDesfireConfiguration: Sendable {
|
|
1829
|
+
public nonisolated struct BlueOssSidMifareDesfireConfiguration: Sendable {
|
|
1830
1830
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1831
1831
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1832
1832
|
// methods supported on all messages.
|
|
@@ -1881,7 +1881,7 @@ public struct BlueOssSidMifareDesfireConfiguration: Sendable {
|
|
|
1881
1881
|
fileprivate var _aid: UInt32? = nil
|
|
1882
1882
|
}
|
|
1883
1883
|
|
|
1884
|
-
public struct BlueOssSidSettings: Sendable {
|
|
1884
|
+
public nonisolated struct BlueOssSidSettings: Sendable {
|
|
1885
1885
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1886
1886
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1887
1887
|
// methods supported on all messages.
|
|
@@ -1902,7 +1902,7 @@ public struct BlueOssSidSettings: Sendable {
|
|
|
1902
1902
|
fileprivate var _mifareDesfireConfig: BlueOssSidMifareDesfireConfiguration? = nil
|
|
1903
1903
|
}
|
|
1904
1904
|
|
|
1905
|
-
public struct BlueOssSoVersion: Sendable {
|
|
1905
|
+
public nonisolated struct BlueOssSoVersion: Sendable {
|
|
1906
1906
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1907
1907
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1908
1908
|
// methods supported on all messages.
|
|
@@ -1933,7 +1933,7 @@ public struct BlueOssSoVersion: Sendable {
|
|
|
1933
1933
|
fileprivate var _versionMinor: UInt32? = nil
|
|
1934
1934
|
}
|
|
1935
1935
|
|
|
1936
|
-
public struct BlueOssSoCredentialTypeOss: Sendable {
|
|
1936
|
+
public nonisolated struct BlueOssSoCredentialTypeOss: Sendable {
|
|
1937
1937
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1938
1938
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1939
1939
|
// methods supported on all messages.
|
|
@@ -1954,7 +1954,7 @@ public struct BlueOssSoCredentialTypeOss: Sendable {
|
|
|
1954
1954
|
fileprivate var _credential: BlueOssSoCredentialTypeOssCredential? = nil
|
|
1955
1955
|
}
|
|
1956
1956
|
|
|
1957
|
-
public struct BlueOssSoCredentialTypeProprietary: Sendable {
|
|
1957
|
+
public nonisolated struct BlueOssSoCredentialTypeProprietary: Sendable {
|
|
1958
1958
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1959
1959
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1960
1960
|
// methods supported on all messages.
|
|
@@ -1975,7 +1975,7 @@ public struct BlueOssSoCredentialTypeProprietary: Sendable {
|
|
|
1975
1975
|
fileprivate var _mfgCode: Data? = nil
|
|
1976
1976
|
}
|
|
1977
1977
|
|
|
1978
|
-
public struct BlueOssSoCredentialType: Sendable {
|
|
1978
|
+
public nonisolated struct BlueOssSoCredentialType: Sendable {
|
|
1979
1979
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1980
1980
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1981
1981
|
// methods supported on all messages.
|
|
@@ -2016,7 +2016,7 @@ public struct BlueOssSoCredentialType: Sendable {
|
|
|
2016
2016
|
fileprivate var _proprietary: BlueOssSoCredentialTypeProprietary? = nil
|
|
2017
2017
|
}
|
|
2018
2018
|
|
|
2019
|
-
public struct BlueOssSoDTScheduleDay: Sendable {
|
|
2019
|
+
public nonisolated struct BlueOssSoDTScheduleDay: Sendable {
|
|
2020
2020
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2021
2021
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2022
2022
|
// methods supported on all messages.
|
|
@@ -2031,7 +2031,7 @@ public struct BlueOssSoDTScheduleDay: Sendable {
|
|
|
2031
2031
|
public init() {}
|
|
2032
2032
|
}
|
|
2033
2033
|
|
|
2034
|
-
public struct BlueOssSoDTSchedule: Sendable {
|
|
2034
|
+
public nonisolated struct BlueOssSoDTSchedule: Sendable {
|
|
2035
2035
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2036
2036
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2037
2037
|
// methods supported on all messages.
|
|
@@ -2043,7 +2043,7 @@ public struct BlueOssSoDTSchedule: Sendable {
|
|
|
2043
2043
|
public init() {}
|
|
2044
2044
|
}
|
|
2045
2045
|
|
|
2046
|
-
public struct BlueOssSoDoorInfo: Sendable {
|
|
2046
|
+
public nonisolated struct BlueOssSoDoorInfo: Sendable {
|
|
2047
2047
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2048
2048
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2049
2049
|
// methods supported on all messages.
|
|
@@ -2094,7 +2094,7 @@ public struct BlueOssSoDoorInfo: Sendable {
|
|
|
2094
2094
|
fileprivate var _accessType: BlueAccessType? = nil
|
|
2095
2095
|
}
|
|
2096
2096
|
|
|
2097
|
-
public struct BlueOssSoEvent: Sendable {
|
|
2097
|
+
public nonisolated struct BlueOssSoEvent: Sendable {
|
|
2098
2098
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2099
2099
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2100
2100
|
// methods supported on all messages.
|
|
@@ -2148,7 +2148,7 @@ public struct BlueOssSoEvent: Sendable {
|
|
|
2148
2148
|
fileprivate var _eventInfo: UInt32? = nil
|
|
2149
2149
|
}
|
|
2150
2150
|
|
|
2151
|
-
public struct BlueOssSoExtFeature: Sendable {
|
|
2151
|
+
public nonisolated struct BlueOssSoExtFeature: Sendable {
|
|
2152
2152
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2153
2153
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2154
2154
|
// methods supported on all messages.
|
|
@@ -2179,7 +2179,7 @@ public struct BlueOssSoExtFeature: Sendable {
|
|
|
2179
2179
|
fileprivate var _value: Data? = nil
|
|
2180
2180
|
}
|
|
2181
2181
|
|
|
2182
|
-
public struct BlueOssSoExtFeature_ValidityStart: Sendable {
|
|
2182
|
+
public nonisolated struct BlueOssSoExtFeature_ValidityStart: Sendable {
|
|
2183
2183
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2184
2184
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2185
2185
|
// methods supported on all messages.
|
|
@@ -2210,7 +2210,7 @@ public struct BlueOssSoExtFeature_ValidityStart: Sendable {
|
|
|
2210
2210
|
fileprivate var _validityStartTime: BlueLocalTimestamp? = nil
|
|
2211
2211
|
}
|
|
2212
2212
|
|
|
2213
|
-
public struct BlueOssSoFileInfo: Sendable {
|
|
2213
|
+
public nonisolated struct BlueOssSoFileInfo: Sendable {
|
|
2214
2214
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2215
2215
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2216
2216
|
// methods supported on all messages.
|
|
@@ -2281,7 +2281,7 @@ public struct BlueOssSoFileInfo: Sendable {
|
|
|
2281
2281
|
fileprivate var _maxBlacklistEntries: UInt32? = nil
|
|
2282
2282
|
}
|
|
2283
2283
|
|
|
2284
|
-
public struct BlueOssSoFileData: Sendable {
|
|
2284
|
+
public nonisolated struct BlueOssSoFileData: Sendable {
|
|
2285
2285
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2286
2286
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2287
2287
|
// methods supported on all messages.
|
|
@@ -2346,7 +2346,7 @@ public struct BlueOssSoFileData: Sendable {
|
|
|
2346
2346
|
fileprivate var _hasExtensions_p: Bool? = nil
|
|
2347
2347
|
}
|
|
2348
2348
|
|
|
2349
|
-
public struct BlueOssSoFileEvent: Sendable {
|
|
2349
|
+
public nonisolated struct BlueOssSoFileEvent: Sendable {
|
|
2350
2350
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2351
2351
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2352
2352
|
// methods supported on all messages.
|
|
@@ -2370,7 +2370,7 @@ public struct BlueOssSoFileEvent: Sendable {
|
|
|
2370
2370
|
fileprivate var _supportedEventIds: Data? = nil
|
|
2371
2371
|
}
|
|
2372
2372
|
|
|
2373
|
-
public struct BlueOssSoFileBlacklist: Sendable {
|
|
2373
|
+
public nonisolated struct BlueOssSoFileBlacklist: Sendable {
|
|
2374
2374
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2375
2375
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2376
2376
|
// methods supported on all messages.
|
|
@@ -2382,7 +2382,7 @@ public struct BlueOssSoFileBlacklist: Sendable {
|
|
|
2382
2382
|
public init() {}
|
|
2383
2383
|
}
|
|
2384
2384
|
|
|
2385
|
-
public struct BlueOssSoFileCustomerExtensions: Sendable {
|
|
2385
|
+
public nonisolated struct BlueOssSoFileCustomerExtensions: Sendable {
|
|
2386
2386
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2387
2387
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2388
2388
|
// methods supported on all messages.
|
|
@@ -2407,7 +2407,7 @@ public struct BlueOssSoFileCustomerExtensions: Sendable {
|
|
|
2407
2407
|
fileprivate var _validityStart: BlueOssSoExtFeature_ValidityStart? = nil
|
|
2408
2408
|
}
|
|
2409
2409
|
|
|
2410
|
-
public struct BlueOssSoConfiguration: @unchecked Sendable {
|
|
2410
|
+
public nonisolated struct BlueOssSoConfiguration: @unchecked Sendable {
|
|
2411
2411
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2412
2412
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2413
2413
|
// methods supported on all messages.
|
|
@@ -2464,7 +2464,7 @@ public struct BlueOssSoConfiguration: @unchecked Sendable {
|
|
|
2464
2464
|
fileprivate var _storage = _StorageClass.defaultInstance
|
|
2465
2465
|
}
|
|
2466
2466
|
|
|
2467
|
-
public struct BlueOssSoStorageProfile: Sendable {
|
|
2467
|
+
public nonisolated struct BlueOssSoStorageProfile: Sendable {
|
|
2468
2468
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2469
2469
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2470
2470
|
// methods supported on all messages.
|
|
@@ -2595,7 +2595,7 @@ public struct BlueOssSoStorageProfile: Sendable {
|
|
|
2595
2595
|
fileprivate var _customerExtensionsFileSize: UInt32? = nil
|
|
2596
2596
|
}
|
|
2597
2597
|
|
|
2598
|
-
public struct BlueOssSoProvisioningConfiguration: Sendable {
|
|
2598
|
+
public nonisolated struct BlueOssSoProvisioningConfiguration: Sendable {
|
|
2599
2599
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2600
2600
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2601
2601
|
// methods supported on all messages.
|
|
@@ -2698,7 +2698,7 @@ public struct BlueOssSoProvisioningConfiguration: Sendable {
|
|
|
2698
2698
|
fileprivate var _hasData_p: Bool? = nil
|
|
2699
2699
|
}
|
|
2700
2700
|
|
|
2701
|
-
public struct BlueOssSoProvisioningData: Sendable {
|
|
2701
|
+
public nonisolated struct BlueOssSoProvisioningData: Sendable {
|
|
2702
2702
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2703
2703
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2704
2704
|
// methods supported on all messages.
|
|
@@ -2750,7 +2750,7 @@ public struct BlueOssSoProvisioningData: Sendable {
|
|
|
2750
2750
|
fileprivate var _siteID: UInt32? = nil
|
|
2751
2751
|
}
|
|
2752
2752
|
|
|
2753
|
-
public struct BlueOssSoMobile: Sendable {
|
|
2753
|
+
public nonisolated struct BlueOssSoMobile: Sendable {
|
|
2754
2754
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2755
2755
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2756
2756
|
// methods supported on all messages.
|
|
@@ -2823,7 +2823,7 @@ public struct BlueOssSoMobile: Sendable {
|
|
|
2823
2823
|
fileprivate var _supportedEventIds: Data? = nil
|
|
2824
2824
|
}
|
|
2825
2825
|
|
|
2826
|
-
public struct BlueOssSoMobileProvisioningConfiguration: Sendable {
|
|
2826
|
+
public nonisolated struct BlueOssSoMobileProvisioningConfiguration: Sendable {
|
|
2827
2827
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2828
2828
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2829
2829
|
// methods supported on all messages.
|
|
@@ -2926,7 +2926,7 @@ public struct BlueOssSoMobileProvisioningConfiguration: Sendable {
|
|
|
2926
2926
|
}
|
|
2927
2927
|
|
|
2928
2928
|
/// Default configuration from spec plus customer extensions spacing
|
|
2929
|
-
public struct BlueOssSoMifareDesfireProvisioningConfiguration: Sendable {
|
|
2929
|
+
public nonisolated struct BlueOssSoMifareDesfireProvisioningConfiguration: Sendable {
|
|
2930
2930
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
2931
2931
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
2932
2932
|
// methods supported on all messages.
|
|
@@ -3030,7 +3030,7 @@ public struct BlueOssSoMifareDesfireProvisioningConfiguration: Sendable {
|
|
|
3030
3030
|
}
|
|
3031
3031
|
|
|
3032
3032
|
/// Demo keys from spec
|
|
3033
|
-
public struct BlueOssSoMifareDesfireConfiguration: Sendable {
|
|
3033
|
+
public nonisolated struct BlueOssSoMifareDesfireConfiguration: Sendable {
|
|
3034
3034
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3035
3035
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3036
3036
|
// methods supported on all messages.
|
|
@@ -3085,7 +3085,7 @@ public struct BlueOssSoMifareDesfireConfiguration: Sendable {
|
|
|
3085
3085
|
fileprivate var _aid: UInt32? = nil
|
|
3086
3086
|
}
|
|
3087
3087
|
|
|
3088
|
-
public struct BlueOssSoSettings: Sendable {
|
|
3088
|
+
public nonisolated struct BlueOssSoSettings: Sendable {
|
|
3089
3089
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3090
3090
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3091
3091
|
// methods supported on all messages.
|
|
@@ -3106,7 +3106,7 @@ public struct BlueOssSoSettings: Sendable {
|
|
|
3106
3106
|
fileprivate var _mifareDesfireConfig: BlueOssSoMifareDesfireConfiguration? = nil
|
|
3107
3107
|
}
|
|
3108
3108
|
|
|
3109
|
-
public struct _BlueTestEncodeDecode: Sendable {
|
|
3109
|
+
public nonisolated struct _BlueTestEncodeDecode: Sendable {
|
|
3110
3110
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
3111
3111
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
3112
3112
|
// methods supported on all messages.
|
|
@@ -3159,75 +3159,75 @@ public struct _BlueTestEncodeDecode: Sendable {
|
|
|
3159
3159
|
|
|
3160
3160
|
// MARK: - Code below here is support for the SwiftProtobuf runtime.
|
|
3161
3161
|
|
|
3162
|
-
extension BlueReturnCode: SwiftProtobuf._ProtoNameProviding {
|
|
3162
|
+
nonisolated extension BlueReturnCode: SwiftProtobuf._ProtoNameProviding {
|
|
3163
3163
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}tn\u{7f}\u{7f}\u{7f}\u{3}OssMAReturnCodeEnd\0\u{2}d\u{1}OssMAReturnCodeStart\0\u{2}{\u{8}SdkIdentityHasExpired\0\u{1}SdkIdentityHasDeleted\0\u{1}SdkIdentityHasRevoked\0\u{1}SdkClaimDeviceAndAutoUnclaimFailed\0\u{1}SdkClaimDeviceFailedAutoUnclaimSuccess\0\u{1}SdkDeviceFactoryStateRequired\0\u{1}SdkInvalidFirmwareURL\0\u{1}SdkUnzipError\0\u{1}SdkWaitDeviceToRestartFailed\0\u{1}SdkGetSystemStatusFailed\0\u{1}SdkGetBlacklistEntriesFailed\0\u{1}SdkUpdateDeviceFailed\0\u{1}SdkGetAuthenticationTokenFailed\0\u{1}SdkTimeout\0\u{1}SdkFetchDataFailed\0\u{1}SdkDecodeJsonFailed\0\u{1}SdkDecodeBase64Failed\0\u{1}SdkNetworkError\0\u{1}SdkDeviceSystemStatusPushFailed\0\u{1}SdkBlacklistEntriesDeployFailed\0\u{1}SdkSystemLogEntriesPushFailed\0\u{1}SdkEventLogsPushFailed\0\u{1}SdkGetSystemConfigFailed\0\u{1}SdkOssSoSettingsNotFound\0\u{1}SdkOssEntryNotFound\0\u{1}SdkSpTokenNotFound\0\u{1}SdkDeviceNotFound\0\u{1}SdkUnsupportedPlatform\0\u{1}SdkCredentialPrivateKeyNotFound\0\u{1}SdkCredentialNotFound\0\u{2}`\u{1}MifareDesfireNoneOrInvalidAid\0\u{1}MifareDesfireCmacNotVerified\0\u{1}MifareDesfireCmacNotReceived\0\u{1}MifareDesfireWrongKey\0\u{1}MifareDesfireWrongKeyType\0\u{2}\u{13}OssSidInvalidCredentialType\0\u{1}OssSidIncompatibleMajorVersion\0\u{2}\u{1e}OssSoMaxBlacklistEntriesExceeded\0\u{1}OssSoMaxEventEntriesExceeded\0\u{1}OssSoInvalidExtensionTag\0\u{1}OssSoInvalidExtensionLength\0\u{1}OssSoExtensionValueTooLarge\0\u{1}OssSoExtensionTooManyFeatures\0\u{1}OssSoExtensionFileSizeInvalid\0\u{1}OssSoExtensionFileSizeTooLarge\0\u{1}OssSoEventIdNotSupportedForWrite\0\u{2}\u{3}OssSoInvalidDTScheduleNumber\0\u{1}OssSoTimePeriodsCountMissmatch\0\u{1}OssSoInvalidDoorDTScheduleNumber\0\u{1}OssSoInvalidDoorAccessBy\0\u{1}OssSoInvalidSiteId\0\u{1}OssSoInvalidTimeperiod\0\u{1}OssSoInvalidTimestamp\0\u{2}\u{2}OssSoInvalidCredentialType\0\u{1}OssSoIncompatibleMajorVersion\0\u{2}\u{1d}OssMaFailedMcpLib\0\u{1}OssInvalidCredentialId\0\u{2}\u{1e}SPErrorStatusCode\0\u{2}\u{c}SPFailedSignature\0\u{1}SPFailedGetCurrentTime\0\u{1}SPFailedDecrypt\0\u{1}SPFailedEncrypt\0\u{1}SPFailedSetPeerSalt\0\u{1}SPFailedGetOwnSalt\0\u{1}SPFailedSigning\0\u{1}SPFailedHashing\0\u{1}SPInvalidSalt\0\u{2}+BleFailSetCharacteristicNotify\0\u{1}BleCharacteristicNotFound\0\u{1}BleServiceNotFound\0\u{1}InvalidTransponder\0\u{1}NfcTransponderAuthenticateFailed\0\u{1}NfcTransponderStorageFull\0\u{1}NfcTransponderCommandError\0\u{1}NfcTransponderNoResult\0\u{2}A\u{1}InvalidProvisioning\0\u{1}InvalidSystemConfig\0\u{1}BleInvalidCompanyIdentifier\0\u{1}DecodeDataReadFailed\0\u{1}EncodeDataWriteNothingWritten\0\u{1}EncodeDataWriteFailed\0\u{1}Test\0\u{2}\u{6}OutOfMemory\0\u{1}Aborted\0\u{1}Unavailable\0\u{1}PointerConversionFailed\0\u{1}Disconnected\0\u{1}Timeout\0\u{1}AlreadyExists\0\u{1}NotFound\0\u{2}\u{2}CryptLibraryFailed\0\u{1}InvalidValidity\0\u{1}InvalidSignature\0\u{1}VersionMissmatch\0\u{1}InvalidMemoryAddress\0\u{1}InvalidCrc\0\u{1}StorageFull\0\u{1}Overflow\0\u{1}EOF\0\u{1}NotSupported\0\u{1}InvalidState\0\u{1}InvalidArguments\0\u{2}\u{2}Error\0\u{1}Ok\0\u{1}Pending\0")
|
|
3164
3164
|
}
|
|
3165
3165
|
|
|
3166
|
-
extension BlueTimeUnit: SwiftProtobuf._ProtoNameProviding {
|
|
3166
|
+
nonisolated extension BlueTimeUnit: SwiftProtobuf._ProtoNameProviding {
|
|
3167
3167
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}Seconds\0\u{1}Minutes\0\u{1}Hours\0\u{1}Days\0\u{1}Months\0\u{1}Years\0")
|
|
3168
3168
|
}
|
|
3169
3169
|
|
|
3170
|
-
extension BlueWeekday: SwiftProtobuf._ProtoNameProviding {
|
|
3170
|
+
nonisolated extension BlueWeekday: SwiftProtobuf._ProtoNameProviding {
|
|
3171
3171
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0Monday\0\u{1}Tuesday\0\u{1}Wednesday\0\u{1}Thursday\0\u{1}Friday\0\u{1}Saturday\0\u{1}Sunday\0")
|
|
3172
3172
|
}
|
|
3173
3173
|
|
|
3174
|
-
extension BlueCredentialType: SwiftProtobuf._ProtoNameProviding {
|
|
3174
|
+
nonisolated extension BlueCredentialType: SwiftProtobuf._ProtoNameProviding {
|
|
3175
3175
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}Regular\0\u{1}Maintenance\0\u{1}Master\0\u{1}NfcWriter\0\u{1}Emergency\0")
|
|
3176
3176
|
}
|
|
3177
3177
|
|
|
3178
|
-
extension BlueAccessType: SwiftProtobuf._ProtoNameProviding {
|
|
3178
|
+
nonisolated extension BlueAccessType: SwiftProtobuf._ProtoNameProviding {
|
|
3179
3179
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}DefaultTime\0\u{1}ExtendedTime\0\u{1}CustomTime\0\u{1}Toggle\0\u{1}Close\0\u{1}NoAccess\0\u{1}NoAccessValidity\0\u{1}NoAccessBlacklisted\0")
|
|
3180
3180
|
}
|
|
3181
3181
|
|
|
3182
|
-
extension BlueTransponderType: SwiftProtobuf._ProtoNameProviding {
|
|
3182
|
+
nonisolated extension BlueTransponderType: SwiftProtobuf._ProtoNameProviding {
|
|
3183
3183
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UnknownTransponder\0\u{1}MobileTransponder\0\u{1}MifareDesfire\0")
|
|
3184
3184
|
}
|
|
3185
3185
|
|
|
3186
|
-
extension BlueHardwareType: SwiftProtobuf._ProtoNameProviding {
|
|
3186
|
+
nonisolated extension BlueHardwareType: SwiftProtobuf._ProtoNameProviding {
|
|
3187
3187
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UnknownHardware\0\u{1}TestHardware\0\u{1}Gateway\0\u{1}CylinderLock\0\u{1}DoorHandleLock\0\u{1}WallReader\0\u{1}Kiosk\0\u{1}CylinderLockCompact\0\u{1}FurnitureLock\0")
|
|
3188
3188
|
}
|
|
3189
3189
|
|
|
3190
|
-
extension BlueBatteryLevel: SwiftProtobuf._ProtoNameProviding {
|
|
3190
|
+
nonisolated extension BlueBatteryLevel: SwiftProtobuf._ProtoNameProviding {
|
|
3191
3191
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UnknownBattery\0\u{1}OnPower\0\u{2}\u{9}GoodPower\0\u{1}LowPower\0\u{1}CriticalPower\0\u{1}AlmostEmpty\0\u{2}W\u{1}FullyDischarged\0\u{2}d\u{1}FullyCharged\0")
|
|
3192
3192
|
}
|
|
3193
3193
|
|
|
3194
|
-
extension BlueEventId: SwiftProtobuf._ProtoNameProviding {
|
|
3194
|
+
nonisolated extension BlueEventId: SwiftProtobuf._ProtoNameProviding {
|
|
3195
3195
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}BatteryLow\0\u{1}BatteryReplaced\0\u{1}LockJammed\0\u{1}SystemEvent\0\u{1}InternalError\0\u{1}FailedToUnlock\0\u{1}TamperingDetected\0\u{1}BlacklistedCredentialDetected\0\u{1}BlacklistFull\0\u{1}AccessGranted\0\u{1}AccessDenied\0\u{1}CRCError\0\u{1}MaxOssSoEventId\0\u{1}TerminalCommand\0\u{1}TerminalOss\0")
|
|
3196
3196
|
}
|
|
3197
3197
|
|
|
3198
|
-
extension BlueEventInfoSystem: SwiftProtobuf._ProtoNameProviding {
|
|
3198
|
+
nonisolated extension BlueEventInfoSystem: SwiftProtobuf._ProtoNameProviding {
|
|
3199
3199
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}SystemRestart\0\u{1}SystemConfigured\0")
|
|
3200
3200
|
}
|
|
3201
3201
|
|
|
3202
|
-
extension BlueEventInfoAccess: SwiftProtobuf._ProtoNameProviding {
|
|
3202
|
+
nonisolated extension BlueEventInfoAccess: SwiftProtobuf._ProtoNameProviding {
|
|
3203
3203
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}Granted\0\u{1}GrantedDefaultTime\0\u{1}GrantedExtendedTime\0\u{1}GrantedToggleUnlock\0\u{1}GrantedToggleLock\0\u{2}{\u{1}Denied\0\u{2}\u{2}DeniedBlacklisted\0\u{1}DeniedValidity\0\u{1}DeniedDTSchedule\0\u{1}DeniedInternalError\0\u{1}DeniedTransponderError\0\u{1}DeniedInvalidTransponderData\0")
|
|
3204
3204
|
}
|
|
3205
3205
|
|
|
3206
|
-
extension BlueOssCredentialTypeSource: SwiftProtobuf._ProtoNameProviding {
|
|
3206
|
+
nonisolated extension BlueOssCredentialTypeSource: SwiftProtobuf._ProtoNameProviding {
|
|
3207
3207
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0Oss\0\u{1}Proprietary\0")
|
|
3208
3208
|
}
|
|
3209
3209
|
|
|
3210
|
-
extension BlueOssSoCredentialTypeOssCredential: SwiftProtobuf._ProtoNameProviding {
|
|
3210
|
+
nonisolated extension BlueOssSoCredentialTypeOssCredential: SwiftProtobuf._ProtoNameProviding {
|
|
3211
3211
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0Standard\0\u{1}InterventionMedia\0")
|
|
3212
3212
|
}
|
|
3213
3213
|
|
|
3214
|
-
extension BlueOssSoDoorGroupId: SwiftProtobuf._ProtoNameProviding {
|
|
3214
|
+
nonisolated extension BlueOssSoDoorGroupId: SwiftProtobuf._ProtoNameProviding {
|
|
3215
3215
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\u{7f}\u{7f}\u{f}MasterGroupId\0")
|
|
3216
3216
|
}
|
|
3217
3217
|
|
|
3218
|
-
extension BlueOssSoDoorInfoAccessBy: SwiftProtobuf._ProtoNameProviding {
|
|
3218
|
+
nonisolated extension BlueOssSoDoorInfoAccessBy: SwiftProtobuf._ProtoNameProviding {
|
|
3219
3219
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DoorGroupId\0\u{1}DoorId\0")
|
|
3220
3220
|
}
|
|
3221
3221
|
|
|
3222
|
-
extension BlueOssSoFileId: SwiftProtobuf._ProtoNameProviding {
|
|
3222
|
+
nonisolated extension BlueOssSoFileId: SwiftProtobuf._ProtoNameProviding {
|
|
3223
3223
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0Info\0\u{1}Data\0\u{1}Event\0\u{1}Blacklist\0\u{1}CustomerExtensions\0")
|
|
3224
3224
|
}
|
|
3225
3225
|
|
|
3226
|
-
extension BlueOssSoWriteStatus: SwiftProtobuf._ProtoNameProviding {
|
|
3226
|
+
nonisolated extension BlueOssSoWriteStatus: SwiftProtobuf._ProtoNameProviding {
|
|
3227
3227
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0WritableByAnyOrg\0\u{1}WritableBySpecificOrg\0\u{1}NotWritable\0")
|
|
3228
3228
|
}
|
|
3229
3229
|
|
|
3230
|
-
extension BlueSharedDemoData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3230
|
+
nonisolated extension BlueSharedDemoData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3231
3231
|
public static let protoMessageName: String = "BlueSharedDemoData"
|
|
3232
3232
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}deviceId\0\u{1}terminalPrivateKey\0\u{1}terminalPublicKey\0\u{1}signaturePrivateKey\0\u{1}signaturePublicKey\0")
|
|
3233
3233
|
|
|
@@ -3290,7 +3290,7 @@ extension BlueSharedDemoData: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
|
|
|
3290
3290
|
}
|
|
3291
3291
|
}
|
|
3292
3292
|
|
|
3293
|
-
extension BlueVersionInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3293
|
+
nonisolated extension BlueVersionInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3294
3294
|
public static let protoMessageName: String = "BlueVersionInfo"
|
|
3295
3295
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}buildTime\0\u{1}version\0\u{1}testVersion\0")
|
|
3296
3296
|
|
|
@@ -3341,7 +3341,7 @@ extension BlueVersionInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplemen
|
|
|
3341
3341
|
}
|
|
3342
3342
|
}
|
|
3343
3343
|
|
|
3344
|
-
extension BlueLocalTimestamp: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3344
|
+
nonisolated extension BlueLocalTimestamp: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3345
3345
|
public static let protoMessageName: String = "BlueLocalTimestamp"
|
|
3346
3346
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}year\0\u{1}month\0\u{1}date\0\u{1}hours\0\u{1}minutes\0\u{1}seconds\0")
|
|
3347
3347
|
|
|
@@ -3410,7 +3410,7 @@ extension BlueLocalTimestamp: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
|
|
|
3410
3410
|
}
|
|
3411
3411
|
}
|
|
3412
3412
|
|
|
3413
|
-
extension BlueLocalTimeperiod: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3413
|
+
nonisolated extension BlueLocalTimeperiod: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3414
3414
|
public static let protoMessageName: String = "BlueLocalTimeperiod"
|
|
3415
3415
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}hoursFrom\0\u{1}minutesFrom\0\u{1}hoursTo\0\u{1}minutesTo\0")
|
|
3416
3416
|
|
|
@@ -3467,7 +3467,7 @@ extension BlueLocalTimeperiod: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl
|
|
|
3467
3467
|
}
|
|
3468
3468
|
}
|
|
3469
3469
|
|
|
3470
|
-
extension BlueLocalTimeSchedule: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3470
|
+
nonisolated extension BlueLocalTimeSchedule: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3471
3471
|
public static let protoMessageName: String = "BlueLocalTimeSchedule"
|
|
3472
3472
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}dayOfYearStart\0\u{1}dayOfYearEnd\0\u{1}weekdays\0\u{1}timePeriod\0")
|
|
3473
3473
|
|
|
@@ -3524,7 +3524,7 @@ extension BlueLocalTimeSchedule: SwiftProtobuf.Message, SwiftProtobuf._MessageIm
|
|
|
3524
3524
|
}
|
|
3525
3525
|
}
|
|
3526
3526
|
|
|
3527
|
-
extension BlueCredentialId: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3527
|
+
nonisolated extension BlueCredentialId: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3528
3528
|
public static let protoMessageName: String = "BlueCredentialId"
|
|
3529
3529
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0")
|
|
3530
3530
|
|
|
@@ -3563,7 +3563,7 @@ extension BlueCredentialId: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
|
|
|
3563
3563
|
}
|
|
3564
3564
|
}
|
|
3565
3565
|
|
|
3566
|
-
extension BlueBlacklistEntry: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3566
|
+
nonisolated extension BlueBlacklistEntry: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3567
3567
|
public static let protoMessageName: String = "BlueBlacklistEntry"
|
|
3568
3568
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}credentialId\0\u{1}expiresAt\0")
|
|
3569
3569
|
|
|
@@ -3610,7 +3610,7 @@ extension BlueBlacklistEntry: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
|
|
|
3610
3610
|
}
|
|
3611
3611
|
}
|
|
3612
3612
|
|
|
3613
|
-
extension BlueBleManufacturerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3613
|
+
nonisolated extension BlueBleManufacturerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3614
3614
|
public static let protoMessageName: String = "BlueBleManufacturerInfo"
|
|
3615
3615
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}hardwareType\0\u{1}batteryLevel\0\u{1}applicationVersion\0\u{1}localMidnightTimeEpoch\0\u{1}isFactory\0\u{1}hardwareState\0")
|
|
3616
3616
|
|
|
@@ -3679,7 +3679,7 @@ extension BlueBleManufacturerInfo: SwiftProtobuf.Message, SwiftProtobuf._Message
|
|
|
3679
3679
|
}
|
|
3680
3680
|
}
|
|
3681
3681
|
|
|
3682
|
-
extension BlueBleAdvertisementInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3682
|
+
nonisolated extension BlueBleAdvertisementInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3683
3683
|
public static let protoMessageName: String = "BlueBleAdvertisementInfo"
|
|
3684
3684
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}deviceId\0\u{1}txPower1Meter\0\u{1}isIBeacon\0\u{1}mfInfo\0")
|
|
3685
3685
|
|
|
@@ -3737,7 +3737,7 @@ extension BlueBleAdvertisementInfo: SwiftProtobuf.Message, SwiftProtobuf._Messag
|
|
|
3737
3737
|
}
|
|
3738
3738
|
}
|
|
3739
3739
|
|
|
3740
|
-
extension BlueEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3740
|
+
nonisolated extension BlueEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3741
3741
|
public static let protoMessageName: String = "BlueEvent"
|
|
3742
3742
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sequenceId\0\u{1}eventTime\0\u{1}eventId\0\u{1}eventInfo\0\u{1}credentialId\0\u{1}command\0")
|
|
3743
3743
|
|
|
@@ -3806,7 +3806,7 @@ extension BlueEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementation
|
|
|
3806
3806
|
}
|
|
3807
3807
|
}
|
|
3808
3808
|
|
|
3809
|
-
extension BlueSPHandshake: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3809
|
+
nonisolated extension BlueSPHandshake: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3810
3810
|
public static let protoMessageName: String = "BlueSPHandshake"
|
|
3811
3811
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}transponderSalt\0")
|
|
3812
3812
|
|
|
@@ -3845,7 +3845,7 @@ extension BlueSPHandshake: SwiftProtobuf.Message, SwiftProtobuf._MessageImplemen
|
|
|
3845
3845
|
}
|
|
3846
3846
|
}
|
|
3847
3847
|
|
|
3848
|
-
extension BlueSPHandshakeReply: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3848
|
+
nonisolated extension BlueSPHandshakeReply: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3849
3849
|
public static let protoMessageName: String = "BlueSPHandshakeReply"
|
|
3850
3850
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}terminalSalt\0\u{1}terminalSignature\0")
|
|
3851
3851
|
|
|
@@ -3890,7 +3890,7 @@ extension BlueSPHandshakeReply: SwiftProtobuf.Message, SwiftProtobuf._MessageImp
|
|
|
3890
3890
|
}
|
|
3891
3891
|
}
|
|
3892
3892
|
|
|
3893
|
-
extension BlueSPTokenCommand: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3893
|
+
nonisolated extension BlueSPTokenCommand: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3894
3894
|
public static let protoMessageName: String = "BlueSPTokenCommand"
|
|
3895
3895
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}credentialId\0\u{1}validityStart\0\u{1}validityEnd\0\u{1}command\0\u{1}data\0")
|
|
3896
3896
|
|
|
@@ -3956,7 +3956,7 @@ extension BlueSPTokenCommand: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
|
|
|
3956
3956
|
}
|
|
3957
3957
|
}
|
|
3958
3958
|
|
|
3959
|
-
extension BlueSPToken: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3959
|
+
nonisolated extension BlueSPToken: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3960
3960
|
public static let protoMessageName: String = "BlueSPToken"
|
|
3961
3961
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}signature\0\u{1}command\0\u{1}ossSo\0\u{1}ossSid\0")
|
|
3962
3962
|
|
|
@@ -4051,7 +4051,7 @@ extension BlueSPToken: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
|
|
|
4051
4051
|
}
|
|
4052
4052
|
}
|
|
4053
4053
|
|
|
4054
|
-
extension BlueSPResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4054
|
+
nonisolated extension BlueSPResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4055
4055
|
public static let protoMessageName: String = "BlueSPResult"
|
|
4056
4056
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}data\0")
|
|
4057
4057
|
|
|
@@ -4090,7 +4090,7 @@ extension BlueSPResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
|
|
|
4090
4090
|
}
|
|
4091
4091
|
}
|
|
4092
4092
|
|
|
4093
|
-
extension BlueWebSPHandshake: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4093
|
+
nonisolated extension BlueWebSPHandshake: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4094
4094
|
public static let protoMessageName: String = "BlueWebSPHandshake"
|
|
4095
4095
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}salt\0")
|
|
4096
4096
|
|
|
@@ -4129,7 +4129,7 @@ extension BlueWebSPHandshake: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
|
|
|
4129
4129
|
}
|
|
4130
4130
|
}
|
|
4131
4131
|
|
|
4132
|
-
extension BlueWebSPHandshakeReply: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4132
|
+
nonisolated extension BlueWebSPHandshakeReply: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4133
4133
|
public static let protoMessageName: String = "BlueWebSPHandshakeReply"
|
|
4134
4134
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}deviceId\0\u{1}signature\0")
|
|
4135
4135
|
|
|
@@ -4174,7 +4174,7 @@ extension BlueWebSPHandshakeReply: SwiftProtobuf.Message, SwiftProtobuf._Message
|
|
|
4174
4174
|
}
|
|
4175
4175
|
}
|
|
4176
4176
|
|
|
4177
|
-
extension BlueWebSPMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4177
|
+
nonisolated extension BlueWebSPMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4178
4178
|
public static let protoMessageName: String = "BlueWebSPMessage"
|
|
4179
4179
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}transactionId\0\u{1}payload\0")
|
|
4180
4180
|
|
|
@@ -4220,7 +4220,7 @@ extension BlueWebSPMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
|
|
|
4220
4220
|
}
|
|
4221
4221
|
}
|
|
4222
4222
|
|
|
4223
|
-
extension BlueWebSPServerMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4223
|
+
nonisolated extension BlueWebSPServerMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4224
4224
|
public static let protoMessageName: String = "BlueWebSPServerMessage"
|
|
4225
4225
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\u{2}handshake\0\u{1}command\0\u{1}ossSo\0\u{1}ossSid\0")
|
|
4226
4226
|
|
|
@@ -4326,7 +4326,7 @@ extension BlueWebSPServerMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageI
|
|
|
4326
4326
|
}
|
|
4327
4327
|
}
|
|
4328
4328
|
|
|
4329
|
-
extension BlueWebSPClientMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4329
|
+
nonisolated extension BlueWebSPClientMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4330
4330
|
public static let protoMessageName: String = "BlueWebSPClientMessage"
|
|
4331
4331
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap()
|
|
4332
4332
|
|
|
@@ -4345,7 +4345,7 @@ extension BlueWebSPClientMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageI
|
|
|
4345
4345
|
}
|
|
4346
4346
|
}
|
|
4347
4347
|
|
|
4348
|
-
extension BlueWebSPStatusMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4348
|
+
nonisolated extension BlueWebSPStatusMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4349
4349
|
public static let protoMessageName: String = "BlueWebSPStatusMessage"
|
|
4350
4350
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}status\0")
|
|
4351
4351
|
|
|
@@ -4384,7 +4384,7 @@ extension BlueWebSPStatusMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageI
|
|
|
4384
4384
|
}
|
|
4385
4385
|
}
|
|
4386
4386
|
|
|
4387
|
-
extension BlueOssAccessResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4387
|
+
nonisolated extension BlueOssAccessResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4388
4388
|
public static let protoMessageName: String = "BlueOssAccessResult"
|
|
4389
4389
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}accessGranted\0\u{1}accessType\0\u{1}accessInfo\0\u{1}scheduleEndTime\0\u{1}scheduleMissmatch\0\u{1}accessOpenTime\0")
|
|
4390
4390
|
|
|
@@ -4453,7 +4453,7 @@ extension BlueOssAccessResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl
|
|
|
4453
4453
|
}
|
|
4454
4454
|
}
|
|
4455
4455
|
|
|
4456
|
-
extension BlueOssAccessEventsResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4456
|
+
nonisolated extension BlueOssAccessEventsResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4457
4457
|
public static let protoMessageName: String = "BlueOssAccessEventsResult"
|
|
4458
4458
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}accessResult\0\u{1}events\0")
|
|
4459
4459
|
|
|
@@ -4499,7 +4499,7 @@ extension BlueOssAccessEventsResult: SwiftProtobuf.Message, SwiftProtobuf._Messa
|
|
|
4499
4499
|
}
|
|
4500
4500
|
}
|
|
4501
4501
|
|
|
4502
|
-
extension BlueOssSidVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4502
|
+
nonisolated extension BlueOssSidVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4503
4503
|
public static let protoMessageName: String = "BlueOssSidVersion"
|
|
4504
4504
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}versionMajor\0\u{1}versionMinor\0")
|
|
4505
4505
|
|
|
@@ -4538,7 +4538,7 @@ extension BlueOssSidVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem
|
|
|
4538
4538
|
}
|
|
4539
4539
|
}
|
|
4540
4540
|
|
|
4541
|
-
extension BlueOssSidCredentialTypeOss: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4541
|
+
nonisolated extension BlueOssSidCredentialTypeOss: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4542
4542
|
public static let protoMessageName: String = "BlueOssSidCredentialTypeOss"
|
|
4543
4543
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}notUsed\0")
|
|
4544
4544
|
|
|
@@ -4572,7 +4572,7 @@ extension BlueOssSidCredentialTypeOss: SwiftProtobuf.Message, SwiftProtobuf._Mes
|
|
|
4572
4572
|
}
|
|
4573
4573
|
}
|
|
4574
4574
|
|
|
4575
|
-
extension BlueOssSidCredentialTypeProprietary: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4575
|
+
nonisolated extension BlueOssSidCredentialTypeProprietary: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4576
4576
|
public static let protoMessageName: String = "BlueOssSidCredentialTypeProprietary"
|
|
4577
4577
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}mfgCode\0")
|
|
4578
4578
|
|
|
@@ -4611,7 +4611,7 @@ extension BlueOssSidCredentialTypeProprietary: SwiftProtobuf.Message, SwiftProto
|
|
|
4611
4611
|
}
|
|
4612
4612
|
}
|
|
4613
4613
|
|
|
4614
|
-
extension BlueOssSidCredentialType: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4614
|
+
nonisolated extension BlueOssSidCredentialType: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4615
4615
|
public static let protoMessageName: String = "BlueOssSidCredentialType"
|
|
4616
4616
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}typeSource\0\u{1}oss\0\u{1}proprietary\0")
|
|
4617
4617
|
|
|
@@ -4661,7 +4661,7 @@ extension BlueOssSidCredentialType: SwiftProtobuf.Message, SwiftProtobuf._Messag
|
|
|
4661
4661
|
}
|
|
4662
4662
|
}
|
|
4663
4663
|
|
|
4664
|
-
extension BlueOssSidFileInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4664
|
+
nonisolated extension BlueOssSidFileInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4665
4665
|
public static let protoMessageName: String = "BlueOssSidFileInfo"
|
|
4666
4666
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}versionMajor\0\u{1}versionMinor\0\u{1}credentialType\0\u{1}credentialId\0")
|
|
4667
4667
|
|
|
@@ -4720,7 +4720,7 @@ extension BlueOssSidFileInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
|
|
|
4720
4720
|
}
|
|
4721
4721
|
}
|
|
4722
4722
|
|
|
4723
|
-
extension BlueOssSidConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4723
|
+
nonisolated extension BlueOssSidConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4724
4724
|
public static let protoMessageName: String = "BlueOssSidConfiguration"
|
|
4725
4725
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}info\0")
|
|
4726
4726
|
|
|
@@ -4760,7 +4760,7 @@ extension BlueOssSidConfiguration: SwiftProtobuf.Message, SwiftProtobuf._Message
|
|
|
4760
4760
|
}
|
|
4761
4761
|
}
|
|
4762
4762
|
|
|
4763
|
-
extension BlueOssSidStorageProfile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4763
|
+
nonisolated extension BlueOssSidStorageProfile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4764
4764
|
public static let protoMessageName: String = "BlueOssSidStorageProfile"
|
|
4765
4765
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}dataLength\0\u{1}fileSize\0\u{1}infoDataLength\0\u{1}infoFileSize\0")
|
|
4766
4766
|
|
|
@@ -4817,7 +4817,7 @@ extension BlueOssSidStorageProfile: SwiftProtobuf.Message, SwiftProtobuf._Messag
|
|
|
4817
4817
|
}
|
|
4818
4818
|
}
|
|
4819
4819
|
|
|
4820
|
-
extension BlueOssSidProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4820
|
+
nonisolated extension BlueOssSidProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4821
4821
|
public static let protoMessageName: String = "BlueOssSidProvisioningConfiguration"
|
|
4822
4822
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}notUsed\0")
|
|
4823
4823
|
|
|
@@ -4851,7 +4851,7 @@ extension BlueOssSidProvisioningConfiguration: SwiftProtobuf.Message, SwiftProto
|
|
|
4851
4851
|
}
|
|
4852
4852
|
}
|
|
4853
4853
|
|
|
4854
|
-
extension BlueOssSidProvisioningData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4854
|
+
nonisolated extension BlueOssSidProvisioningData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4855
4855
|
public static let protoMessageName: String = "BlueOssSidProvisioningData"
|
|
4856
4856
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}configuration\0\u{1}credentialType\0\u{1}credentialId\0")
|
|
4857
4857
|
|
|
@@ -4903,7 +4903,7 @@ extension BlueOssSidProvisioningData: SwiftProtobuf.Message, SwiftProtobuf._Mess
|
|
|
4903
4903
|
}
|
|
4904
4904
|
}
|
|
4905
4905
|
|
|
4906
|
-
extension BlueOssSidMobile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4906
|
+
nonisolated extension BlueOssSidMobile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4907
4907
|
public static let protoMessageName: String = "BlueOssSidMobile"
|
|
4908
4908
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}infoFile\0")
|
|
4909
4909
|
|
|
@@ -4942,7 +4942,7 @@ extension BlueOssSidMobile: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
|
|
|
4942
4942
|
}
|
|
4943
4943
|
}
|
|
4944
4944
|
|
|
4945
|
-
extension BlueOssSidMobileProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4945
|
+
nonisolated extension BlueOssSidMobileProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4946
4946
|
public static let protoMessageName: String = "BlueOssSidMobileProvisioningConfiguration"
|
|
4947
4947
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}notUsed\0")
|
|
4948
4948
|
|
|
@@ -4976,7 +4976,7 @@ extension BlueOssSidMobileProvisioningConfiguration: SwiftProtobuf.Message, Swif
|
|
|
4976
4976
|
}
|
|
4977
4977
|
}
|
|
4978
4978
|
|
|
4979
|
-
extension BlueOssSidMifareDesfireProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4979
|
+
nonisolated extension BlueOssSidMifareDesfireProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
4980
4980
|
public static let protoMessageName: String = "BlueOssSidMifareDesfireProvisioningConfiguration"
|
|
4981
4981
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}notUsed\0")
|
|
4982
4982
|
|
|
@@ -5010,7 +5010,7 @@ extension BlueOssSidMifareDesfireProvisioningConfiguration: SwiftProtobuf.Messag
|
|
|
5010
5010
|
}
|
|
5011
5011
|
}
|
|
5012
5012
|
|
|
5013
|
-
extension BlueOssSidMifareDesfireConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5013
|
+
nonisolated extension BlueOssSidMifareDesfireConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5014
5014
|
public static let protoMessageName: String = "BlueOssSidMifareDesfireConfiguration"
|
|
5015
5015
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}piccMasterKey\0\u{1}appMasterKey\0\u{1}projectKey\0\u{1}aid\0")
|
|
5016
5016
|
|
|
@@ -5067,7 +5067,7 @@ extension BlueOssSidMifareDesfireConfiguration: SwiftProtobuf.Message, SwiftProt
|
|
|
5067
5067
|
}
|
|
5068
5068
|
}
|
|
5069
5069
|
|
|
5070
|
-
extension BlueOssSidSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5070
|
+
nonisolated extension BlueOssSidSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5071
5071
|
public static let protoMessageName: String = "BlueOssSidSettings"
|
|
5072
5072
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}mifareDesfireConfig\0")
|
|
5073
5073
|
|
|
@@ -5106,7 +5106,7 @@ extension BlueOssSidSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
|
|
|
5106
5106
|
}
|
|
5107
5107
|
}
|
|
5108
5108
|
|
|
5109
|
-
extension BlueOssSoVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5109
|
+
nonisolated extension BlueOssSoVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5110
5110
|
public static let protoMessageName: String = "BlueOssSoVersion"
|
|
5111
5111
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}versionMajor\0\u{1}versionMinor\0")
|
|
5112
5112
|
|
|
@@ -5145,7 +5145,7 @@ extension BlueOssSoVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
|
|
|
5145
5145
|
}
|
|
5146
5146
|
}
|
|
5147
5147
|
|
|
5148
|
-
extension BlueOssSoCredentialTypeOss: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5148
|
+
nonisolated extension BlueOssSoCredentialTypeOss: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5149
5149
|
public static let protoMessageName: String = "BlueOssSoCredentialTypeOss"
|
|
5150
5150
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}credential\0")
|
|
5151
5151
|
|
|
@@ -5184,7 +5184,7 @@ extension BlueOssSoCredentialTypeOss: SwiftProtobuf.Message, SwiftProtobuf._Mess
|
|
|
5184
5184
|
}
|
|
5185
5185
|
}
|
|
5186
5186
|
|
|
5187
|
-
extension BlueOssSoCredentialTypeProprietary: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5187
|
+
nonisolated extension BlueOssSoCredentialTypeProprietary: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5188
5188
|
public static let protoMessageName: String = "BlueOssSoCredentialTypeProprietary"
|
|
5189
5189
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}mfgCode\0")
|
|
5190
5190
|
|
|
@@ -5223,7 +5223,7 @@ extension BlueOssSoCredentialTypeProprietary: SwiftProtobuf.Message, SwiftProtob
|
|
|
5223
5223
|
}
|
|
5224
5224
|
}
|
|
5225
5225
|
|
|
5226
|
-
extension BlueOssSoCredentialType: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5226
|
+
nonisolated extension BlueOssSoCredentialType: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5227
5227
|
public static let protoMessageName: String = "BlueOssSoCredentialType"
|
|
5228
5228
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}typeSource\0\u{1}oss\0\u{1}proprietary\0")
|
|
5229
5229
|
|
|
@@ -5274,7 +5274,7 @@ extension BlueOssSoCredentialType: SwiftProtobuf.Message, SwiftProtobuf._Message
|
|
|
5274
5274
|
}
|
|
5275
5275
|
}
|
|
5276
5276
|
|
|
5277
|
-
extension BlueOssSoDTScheduleDay: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5277
|
+
nonisolated extension BlueOssSoDTScheduleDay: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5278
5278
|
public static let protoMessageName: String = "BlueOssSoDTScheduleDay"
|
|
5279
5279
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\u{3}weekdays\0\u{2}\u{5}timePeriods\0")
|
|
5280
5280
|
|
|
@@ -5314,7 +5314,7 @@ extension BlueOssSoDTScheduleDay: SwiftProtobuf.Message, SwiftProtobuf._MessageI
|
|
|
5314
5314
|
}
|
|
5315
5315
|
}
|
|
5316
5316
|
|
|
5317
|
-
extension BlueOssSoDTSchedule: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5317
|
+
nonisolated extension BlueOssSoDTSchedule: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5318
5318
|
public static let protoMessageName: String = "BlueOssSoDTSchedule"
|
|
5319
5319
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}days\0")
|
|
5320
5320
|
|
|
@@ -5349,7 +5349,7 @@ extension BlueOssSoDTSchedule: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl
|
|
|
5349
5349
|
}
|
|
5350
5350
|
}
|
|
5351
5351
|
|
|
5352
|
-
extension BlueOssSoDoorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5352
|
+
nonisolated extension BlueOssSoDoorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5353
5353
|
public static let protoMessageName: String = "BlueOssSoDoorInfo"
|
|
5354
5354
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{1}accessBy\0\u{1}dtScheduleNumber\0\u{1}accessType\0")
|
|
5355
5355
|
|
|
@@ -5406,7 +5406,7 @@ extension BlueOssSoDoorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem
|
|
|
5406
5406
|
}
|
|
5407
5407
|
}
|
|
5408
5408
|
|
|
5409
|
-
extension BlueOssSoEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5409
|
+
nonisolated extension BlueOssSoEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5410
5410
|
public static let protoMessageName: String = "BlueOssSoEvent"
|
|
5411
5411
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}eventTime\0\u{1}doorId\0\u{1}eventId\0\u{1}eventInfo\0")
|
|
5412
5412
|
|
|
@@ -5464,7 +5464,7 @@ extension BlueOssSoEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
|
|
|
5464
5464
|
}
|
|
5465
5465
|
}
|
|
5466
5466
|
|
|
5467
|
-
extension BlueOssSoExtFeature: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5467
|
+
nonisolated extension BlueOssSoExtFeature: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5468
5468
|
public static let protoMessageName: String = "BlueOssSoExtFeature"
|
|
5469
5469
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}tag\0\u{1}value\0")
|
|
5470
5470
|
|
|
@@ -5509,7 +5509,7 @@ extension BlueOssSoExtFeature: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl
|
|
|
5509
5509
|
}
|
|
5510
5510
|
}
|
|
5511
5511
|
|
|
5512
|
-
extension BlueOssSoExtFeature_ValidityStart: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5512
|
+
nonisolated extension BlueOssSoExtFeature_ValidityStart: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5513
5513
|
public static let protoMessageName: String = "BlueOssSoExtFeature_ValidityStart"
|
|
5514
5514
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}isValid\0\u{1}validityStartTime\0")
|
|
5515
5515
|
|
|
@@ -5555,7 +5555,7 @@ extension BlueOssSoExtFeature_ValidityStart: SwiftProtobuf.Message, SwiftProtobu
|
|
|
5555
5555
|
}
|
|
5556
5556
|
}
|
|
5557
5557
|
|
|
5558
|
-
extension BlueOssSoFileInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5558
|
+
nonisolated extension BlueOssSoFileInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5559
5559
|
public static let protoMessageName: String = "BlueOssSoFileInfo"
|
|
5560
5560
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}versionMajor\0\u{1}versionMinor\0\u{1}credentialType\0\u{1}credentialId\0\u{1}maxEventEntries\0\u{1}maxBlacklistEntries\0")
|
|
5561
5561
|
|
|
@@ -5626,7 +5626,7 @@ extension BlueOssSoFileInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem
|
|
|
5626
5626
|
}
|
|
5627
5627
|
}
|
|
5628
5628
|
|
|
5629
|
-
extension BlueOssSoFileData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5629
|
+
nonisolated extension BlueOssSoFileData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5630
5630
|
public static let protoMessageName: String = "BlueOssSoFileData"
|
|
5631
5631
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}validity\0\u{1}siteId\0\u{1}numberOfDayIdsPerDTSchedule\0\u{1}numberOfTimePeriodsPerDayId\0\u{1}hasExtensions\0\u{1}doorInfoEntries\0\u{1}dtSchedules\0")
|
|
5632
5632
|
|
|
@@ -5702,7 +5702,7 @@ extension BlueOssSoFileData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem
|
|
|
5702
5702
|
}
|
|
5703
5703
|
}
|
|
5704
5704
|
|
|
5705
|
-
extension BlueOssSoFileEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5705
|
+
nonisolated extension BlueOssSoFileEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5706
5706
|
public static let protoMessageName: String = "BlueOssSoFileEvent"
|
|
5707
5707
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}supportedEventIds\0\u{1}events\0")
|
|
5708
5708
|
|
|
@@ -5747,7 +5747,7 @@ extension BlueOssSoFileEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
|
|
|
5747
5747
|
}
|
|
5748
5748
|
}
|
|
5749
5749
|
|
|
5750
|
-
extension BlueOssSoFileBlacklist: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5750
|
+
nonisolated extension BlueOssSoFileBlacklist: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5751
5751
|
public static let protoMessageName: String = "BlueOssSoFileBlacklist"
|
|
5752
5752
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}entries\0")
|
|
5753
5753
|
|
|
@@ -5782,7 +5782,7 @@ extension BlueOssSoFileBlacklist: SwiftProtobuf.Message, SwiftProtobuf._MessageI
|
|
|
5782
5782
|
}
|
|
5783
5783
|
}
|
|
5784
5784
|
|
|
5785
|
-
extension BlueOssSoFileCustomerExtensions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5785
|
+
nonisolated extension BlueOssSoFileCustomerExtensions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5786
5786
|
public static let protoMessageName: String = "BlueOssSoFileCustomerExtensions"
|
|
5787
5787
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}extFeatures\0\u{1}validityStart\0")
|
|
5788
5788
|
|
|
@@ -5827,7 +5827,7 @@ extension BlueOssSoFileCustomerExtensions: SwiftProtobuf.Message, SwiftProtobuf.
|
|
|
5827
5827
|
}
|
|
5828
5828
|
}
|
|
5829
5829
|
|
|
5830
|
-
extension BlueOssSoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5830
|
+
nonisolated extension BlueOssSoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5831
5831
|
public static let protoMessageName: String = "BlueOssSoConfiguration"
|
|
5832
5832
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}info\0\u{1}data\0\u{1}event\0\u{1}blacklist\0\u{1}customerExtensions\0")
|
|
5833
5833
|
|
|
@@ -5936,7 +5936,7 @@ extension BlueOssSoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageI
|
|
|
5936
5936
|
}
|
|
5937
5937
|
}
|
|
5938
5938
|
|
|
5939
|
-
extension BlueOssSoStorageProfile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5939
|
+
nonisolated extension BlueOssSoStorageProfile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
5940
5940
|
public static let protoMessageName: String = "BlueOssSoStorageProfile"
|
|
5941
5941
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}dataLength\0\u{1}fileSize\0\u{1}infoDataLength\0\u{1}infoFileSize\0\u{1}dataDataLength\0\u{1}dataFileSize\0\u{1}eventDataLength\0\u{1}eventFileSize\0\u{1}blacklistDataLength\0\u{1}blacklistFileSize\0\u{1}customerExtensionsDataLength\0\u{1}customerExtensionsFileSize\0")
|
|
5942
5942
|
|
|
@@ -6041,7 +6041,7 @@ extension BlueOssSoStorageProfile: SwiftProtobuf.Message, SwiftProtobuf._Message
|
|
|
6041
6041
|
}
|
|
6042
6042
|
}
|
|
6043
6043
|
|
|
6044
|
-
extension BlueOssSoProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6044
|
+
nonisolated extension BlueOssSoProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6045
6045
|
public static let protoMessageName: String = "BlueOssSoProvisioningConfiguration"
|
|
6046
6046
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}numberOfDoors\0\u{1}numberOfDTSchedules\0\u{1}numberOfDayIdsPerDTSchedule\0\u{1}numberOfTimePeriodsPerDayId\0\u{1}numberOfEvents\0\u{1}supportedEventIds\0\u{1}numberOfBlacklistEntries\0\u{1}customerExtensionsSize\0\u{3}has_data\0")
|
|
6047
6047
|
|
|
@@ -6128,7 +6128,7 @@ extension BlueOssSoProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtob
|
|
|
6128
6128
|
}
|
|
6129
6129
|
}
|
|
6130
6130
|
|
|
6131
|
-
extension BlueOssSoProvisioningData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6131
|
+
nonisolated extension BlueOssSoProvisioningData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6132
6132
|
public static let protoMessageName: String = "BlueOssSoProvisioningData"
|
|
6133
6133
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}configuration\0\u{1}credentialType\0\u{1}credentialId\0\u{1}siteId\0")
|
|
6134
6134
|
|
|
@@ -6187,7 +6187,7 @@ extension BlueOssSoProvisioningData: SwiftProtobuf.Message, SwiftProtobuf._Messa
|
|
|
6187
6187
|
}
|
|
6188
6188
|
}
|
|
6189
6189
|
|
|
6190
|
-
extension BlueOssSoMobile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6190
|
+
nonisolated extension BlueOssSoMobile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6191
6191
|
public static let protoMessageName: String = "BlueOssSoMobile"
|
|
6192
6192
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}infoFile\0\u{1}dataFile\0\u{1}blacklistFile\0\u{1}customerExtensionsFile\0\u{1}requestedEventCount\0\u{1}supportedEventIds\0")
|
|
6193
6193
|
|
|
@@ -6254,7 +6254,7 @@ extension BlueOssSoMobile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplemen
|
|
|
6254
6254
|
}
|
|
6255
6255
|
}
|
|
6256
6256
|
|
|
6257
|
-
extension BlueOssSoMobileProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6257
|
+
nonisolated extension BlueOssSoMobileProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6258
6258
|
public static let protoMessageName: String = "BlueOssSoMobileProvisioningConfiguration"
|
|
6259
6259
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}numberOfDoors\0\u{1}numberOfDTSchedules\0\u{1}numberOfDayIdsPerDTSchedule\0\u{1}numberOfTimePeriodsPerDayId\0\u{1}numberOfEvents\0\u{1}supportedEventIds\0\u{1}numberOfBlacklistEntries\0\u{1}customerExtensionsSize\0\u{3}has_data\0")
|
|
6260
6260
|
|
|
@@ -6341,7 +6341,7 @@ extension BlueOssSoMobileProvisioningConfiguration: SwiftProtobuf.Message, Swift
|
|
|
6341
6341
|
}
|
|
6342
6342
|
}
|
|
6343
6343
|
|
|
6344
|
-
extension BlueOssSoMifareDesfireProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6344
|
+
nonisolated extension BlueOssSoMifareDesfireProvisioningConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6345
6345
|
public static let protoMessageName: String = "BlueOssSoMifareDesfireProvisioningConfiguration"
|
|
6346
6346
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}numberOfDoors\0\u{1}numberOfDTSchedules\0\u{1}numberOfDayIdsPerDTSchedule\0\u{1}numberOfTimePeriodsPerDayId\0\u{1}numberOfEvents\0\u{1}supportedEventIds\0\u{1}numberOfBlacklistEntries\0\u{1}customerExtensionsSize\0\u{3}has_data\0")
|
|
6347
6347
|
|
|
@@ -6428,7 +6428,7 @@ extension BlueOssSoMifareDesfireProvisioningConfiguration: SwiftProtobuf.Message
|
|
|
6428
6428
|
}
|
|
6429
6429
|
}
|
|
6430
6430
|
|
|
6431
|
-
extension BlueOssSoMifareDesfireConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6431
|
+
nonisolated extension BlueOssSoMifareDesfireConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6432
6432
|
public static let protoMessageName: String = "BlueOssSoMifareDesfireConfiguration"
|
|
6433
6433
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}piccMasterKey\0\u{1}appMasterKey\0\u{1}projectKey\0\u{1}aid\0")
|
|
6434
6434
|
|
|
@@ -6485,7 +6485,7 @@ extension BlueOssSoMifareDesfireConfiguration: SwiftProtobuf.Message, SwiftProto
|
|
|
6485
6485
|
}
|
|
6486
6486
|
}
|
|
6487
6487
|
|
|
6488
|
-
extension BlueOssSoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6488
|
+
nonisolated extension BlueOssSoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6489
6489
|
public static let protoMessageName: String = "BlueOssSoSettings"
|
|
6490
6490
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}mifareDesfireConfig\0")
|
|
6491
6491
|
|
|
@@ -6524,7 +6524,7 @@ extension BlueOssSoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem
|
|
|
6524
6524
|
}
|
|
6525
6525
|
}
|
|
6526
6526
|
|
|
6527
|
-
extension _BlueTestEncodeDecode: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6527
|
+
nonisolated extension _BlueTestEncodeDecode: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
6528
6528
|
public static let protoMessageName: String = "_BlueTestEncodeDecode"
|
|
6529
6529
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}vendor\0\u{3}hardware_name\0\u{3}hardware_version\0\u{3}application_version\0")
|
|
6530
6530
|
|