@blueid/access-proto 1.53.0 → 1.55.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/BlueCore.proto +1 -1
- package/cjs/BlueCore_pb.d.ts +2 -2
- package/cjs/BlueCore_pb.js +1 -1
- package/es/BlueCore_pb.d.ts +2 -2
- package/es/BlueCore_pb.js +1 -1
- package/nanopb/BlueCore.pb.h +1 -1
- package/package.json +1 -1
- package/swift/BlueCore.pb.swift +4 -4
package/BlueCore.proto
CHANGED
package/cjs/BlueCore_pb.d.ts
CHANGED
|
@@ -1025,9 +1025,9 @@ export declare enum BlueOssSoCredentialTypeOssCredential {
|
|
|
1025
1025
|
*/
|
|
1026
1026
|
export declare enum BlueOssSoDoorGroupId {
|
|
1027
1027
|
/**
|
|
1028
|
-
* @generated from enum value: MasterGroupId =
|
|
1028
|
+
* @generated from enum value: MasterGroupId = 65535;
|
|
1029
1029
|
*/
|
|
1030
|
-
MasterGroupId =
|
|
1030
|
+
MasterGroupId = 65535,
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
1033
|
/**
|
package/cjs/BlueCore_pb.js
CHANGED
|
@@ -335,7 +335,7 @@ const BlueOssSoCredentialTypeOssCredential = import_protobuf.proto2.makeEnum(
|
|
|
335
335
|
const BlueOssSoDoorGroupId = import_protobuf.proto2.makeEnum(
|
|
336
336
|
"BlueOssSoDoorGroupId",
|
|
337
337
|
[
|
|
338
|
-
{ no:
|
|
338
|
+
{ no: 65535, name: "MasterGroupId" }
|
|
339
339
|
]
|
|
340
340
|
);
|
|
341
341
|
const BlueOssSoDoorInfoAccessBy = import_protobuf.proto2.makeEnum(
|
package/es/BlueCore_pb.d.ts
CHANGED
|
@@ -1025,9 +1025,9 @@ export declare enum BlueOssSoCredentialTypeOssCredential {
|
|
|
1025
1025
|
*/
|
|
1026
1026
|
export declare enum BlueOssSoDoorGroupId {
|
|
1027
1027
|
/**
|
|
1028
|
-
* @generated from enum value: MasterGroupId =
|
|
1028
|
+
* @generated from enum value: MasterGroupId = 65535;
|
|
1029
1029
|
*/
|
|
1030
|
-
MasterGroupId =
|
|
1030
|
+
MasterGroupId = 65535,
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
1033
|
/**
|
package/es/BlueCore_pb.js
CHANGED
|
@@ -305,7 +305,7 @@ export const BlueOssSoCredentialTypeOssCredential = proto2.makeEnum(
|
|
|
305
305
|
export const BlueOssSoDoorGroupId = proto2.makeEnum(
|
|
306
306
|
"BlueOssSoDoorGroupId",
|
|
307
307
|
[
|
|
308
|
-
{no:
|
|
308
|
+
{no: 65535, name: "MasterGroupId"},
|
|
309
309
|
],
|
|
310
310
|
);
|
|
311
311
|
|
package/nanopb/BlueCore.pb.h
CHANGED
|
@@ -258,7 +258,7 @@ typedef enum BlueOssSoCredentialTypeOssCredential {
|
|
|
258
258
|
} pb_packed BlueOssSoCredentialTypeOssCredential_t;
|
|
259
259
|
|
|
260
260
|
typedef enum BlueOssSoDoorGroupId {
|
|
261
|
-
BlueOssSoDoorGroupId_MasterGroupId =
|
|
261
|
+
BlueOssSoDoorGroupId_MasterGroupId = 65535
|
|
262
262
|
} pb_packed BlueOssSoDoorGroupId_t;
|
|
263
263
|
|
|
264
264
|
typedef enum BlueOssSoDoorInfoAccessBy {
|
package/package.json
CHANGED
package/swift/BlueCore.pb.swift
CHANGED
|
@@ -980,7 +980,7 @@ extension BlueOssSoCredentialTypeOssCredential: CaseIterable {
|
|
|
980
980
|
|
|
981
981
|
public enum BlueOssSoDoorGroupId: SwiftProtobuf.Enum {
|
|
982
982
|
public typealias RawValue = Int
|
|
983
|
-
case masterGroupID // =
|
|
983
|
+
case masterGroupID // = 65535
|
|
984
984
|
|
|
985
985
|
public init() {
|
|
986
986
|
self = .masterGroupID
|
|
@@ -988,14 +988,14 @@ public enum BlueOssSoDoorGroupId: SwiftProtobuf.Enum {
|
|
|
988
988
|
|
|
989
989
|
public init?(rawValue: Int) {
|
|
990
990
|
switch rawValue {
|
|
991
|
-
case
|
|
991
|
+
case 65535: self = .masterGroupID
|
|
992
992
|
default: return nil
|
|
993
993
|
}
|
|
994
994
|
}
|
|
995
995
|
|
|
996
996
|
public var rawValue: Int {
|
|
997
997
|
switch self {
|
|
998
|
-
case .masterGroupID: return
|
|
998
|
+
case .masterGroupID: return 65535
|
|
999
999
|
}
|
|
1000
1000
|
}
|
|
1001
1001
|
|
|
@@ -3926,7 +3926,7 @@ extension BlueOssSoCredentialTypeOssCredential: SwiftProtobuf._ProtoNameProvidin
|
|
|
3926
3926
|
|
|
3927
3927
|
extension BlueOssSoDoorGroupId: SwiftProtobuf._ProtoNameProviding {
|
|
3928
3928
|
public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
|
|
3929
|
-
|
|
3929
|
+
65535: .same(proto: "MasterGroupId"),
|
|
3930
3930
|
]
|
|
3931
3931
|
}
|
|
3932
3932
|
|