@blueid/access-proto 12.32.0 → 12.34.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/BlueLock.pb.swift
CHANGED
|
@@ -15,12 +15,12 @@ import SwiftProtobuf
|
|
|
15
15
|
// incompatible with the version of SwiftProtobuf to which you are linking.
|
|
16
16
|
// Please ensure that you are building against the same version of the API
|
|
17
17
|
// that was used to generate this file.
|
|
18
|
-
fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck {
|
|
18
|
+
fileprivate nonisolated struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck {
|
|
19
19
|
struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {}
|
|
20
20
|
typealias Version = _2
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
public enum BlueLockState: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
23
|
+
public nonisolated enum BlueLockState: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
24
24
|
case unknownLockState = 1
|
|
25
25
|
case locked = 2
|
|
26
26
|
case unlocked = 3
|
|
@@ -32,7 +32,7 @@ public enum BlueLockState: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
|
32
32
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
public struct BlueLockConfig: Sendable {
|
|
35
|
+
public nonisolated struct BlueLockConfig: Sendable {
|
|
36
36
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
37
37
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
38
38
|
// methods supported on all messages.
|
|
@@ -91,7 +91,7 @@ public struct BlueLockConfig: Sendable {
|
|
|
91
91
|
fileprivate var _extendedOpenTimeSec: UInt32? = nil
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
public struct BlueLockStatus: Sendable {
|
|
94
|
+
public nonisolated struct BlueLockStatus: Sendable {
|
|
95
95
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
96
96
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
97
97
|
// methods supported on all messages.
|
|
@@ -124,11 +124,11 @@ public struct BlueLockStatus: Sendable {
|
|
|
124
124
|
|
|
125
125
|
// MARK: - Code below here is support for the SwiftProtobuf runtime.
|
|
126
126
|
|
|
127
|
-
extension BlueLockState: SwiftProtobuf._ProtoNameProviding {
|
|
127
|
+
nonisolated extension BlueLockState: SwiftProtobuf._ProtoNameProviding {
|
|
128
128
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}UnknownLockState\0\u{1}Locked\0\u{1}Unlocked\0\u{1}Jammed\0")
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
extension BlueLockConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
131
|
+
nonisolated extension BlueLockConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
132
132
|
public static let protoMessageName: String = "BlueLockConfig"
|
|
133
133
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}openSchedules\0\u{1}openScheduleByUser\0\u{2}\u{12}keepClosedOnHolidays\0\u{1}defaultOpenTimeSec\0\u{1}extendedOpenTimeSec\0")
|
|
134
134
|
|
|
@@ -191,7 +191,7 @@ extension BlueLockConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
|
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
extension BlueLockStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
194
|
+
nonisolated extension BlueLockStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
195
195
|
public static let protoMessageName: String = "BlueLockStatus"
|
|
196
196
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}state\0\u{1}openings\0")
|
|
197
197
|
|