@blueid/access-cli 0.55.0 → 0.56.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/lib/proto/BlueCore_pb.js +3 -2
- package/lib/proto/BlueSDK_pb.js +11 -1
- package/package.json +1 -1
package/lib/proto/BlueCore_pb.js
CHANGED
|
@@ -174,8 +174,9 @@ export const BlueHardwareType = proto2.makeEnum(
|
|
|
174
174
|
{no: 1, name: "TestHardware"},
|
|
175
175
|
{no: 2, name: "Gateway"},
|
|
176
176
|
{no: 3, name: "CylinderLock"},
|
|
177
|
-
{no: 4, name: "
|
|
178
|
-
{no: 5, name: "
|
|
177
|
+
{no: 4, name: "DoorHandleLock"},
|
|
178
|
+
{no: 5, name: "WallReader"},
|
|
179
|
+
{no: 6, name: "Kiosk"},
|
|
179
180
|
],
|
|
180
181
|
);
|
|
181
182
|
|
package/lib/proto/BlueSDK_pb.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
6
|
import { proto2 } from "@bufbuild/protobuf";
|
|
7
|
-
import { BlueBleManufacturerInfo, BlueCredentialId, BlueCredentialType, BlueLocalTimestamp } from "./BlueCore_pb.js";
|
|
7
|
+
import { BlueBleManufacturerInfo, BlueCredentialId, BlueCredentialType, BlueLocalTimestamp, BlueReturnCode } from "./BlueCore_pb.js";
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* @generated from enum BlueDeviceType
|
|
@@ -153,3 +153,13 @@ export const BlueAccessObjectList = proto2.makeMessageType(
|
|
|
153
153
|
],
|
|
154
154
|
);
|
|
155
155
|
|
|
156
|
+
/**
|
|
157
|
+
* @generated from message BlueRefreshOssSoCredentialResult
|
|
158
|
+
*/
|
|
159
|
+
export const BlueRefreshOssSoCredentialResult = proto2.makeMessageType(
|
|
160
|
+
"BlueRefreshOssSoCredentialResult",
|
|
161
|
+
() => [
|
|
162
|
+
{ no: 1, name: "eventLogsPushed", kind: "enum", T: proto2.getEnumType(BlueReturnCode) },
|
|
163
|
+
],
|
|
164
|
+
);
|
|
165
|
+
|