@blueid/access-cli 1.34.0 → 1.35.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/BlueSDK_pb.js +32 -3
- package/lib/proto/BlueSystem_pb.js +0 -18
- package/package.json +1 -1
package/lib/proto/BlueSDK_pb.js
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
6
|
import { proto2 } from "@bufbuild/protobuf";
|
|
7
|
-
import { BlueBleManufacturerInfo, BlueCredentialId, BlueCredentialType, BlueLocalTimestamp, BlueOssSoConfiguration, BlueReturnCode } from "./BlueCore_pb.js";
|
|
7
|
+
import { BlueBleManufacturerInfo, BlueCredentialId, BlueCredentialType, BlueHardwareType, BlueLocalTimestamp, BlueOssSoConfiguration, BlueReturnCode } from "./BlueCore_pb.js";
|
|
8
|
+
import { BlueSystemStatus } from "./BlueSystem_pb.js";
|
|
8
9
|
|
|
9
10
|
/**
|
|
10
11
|
* @generated from enum BlueDeviceType
|
|
@@ -50,9 +51,9 @@ export const BlueI18n = proto2.makeMessageType(
|
|
|
50
51
|
{ no: 12, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Granted" },
|
|
51
52
|
{ no: 13, name: "openViaOssAccessGrantedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Please proceed." },
|
|
52
53
|
{ no: 14, name: "openViaOssAccessGrantedLockEngagedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock engaged" },
|
|
53
|
-
{ no: 15, name: "openViaOssAccessGrantedLockEngagedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock
|
|
54
|
+
{ no: 15, name: "openViaOssAccessGrantedLockEngagedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock permanently closed." },
|
|
54
55
|
{ no: 16, name: "openViaOssAccessGrantedLockDisengagedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock disengaged" },
|
|
55
|
-
{ no: 17, name: "openViaOssAccessGrantedLockDisengagedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock
|
|
56
|
+
{ no: 17, name: "openViaOssAccessGrantedLockDisengagedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock permanently opened." },
|
|
56
57
|
{ no: 18, name: "openViaOssAccessGrantedExtendedTimeMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock will remain disengaged for %d seconds." },
|
|
57
58
|
{ no: 19, name: "openViaOssAccessDeniedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Denied" },
|
|
58
59
|
{ no: 20, name: "openViaOssAccessDeniedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are invalid or outdated." },
|
|
@@ -250,3 +251,31 @@ export const BlueSynchronizeAccessCredentials = proto2.makeMessageType(
|
|
|
250
251
|
],
|
|
251
252
|
);
|
|
252
253
|
|
|
254
|
+
/**
|
|
255
|
+
* @generated from message BlueHardwareInfo
|
|
256
|
+
*/
|
|
257
|
+
export const BlueHardwareInfo = proto2.makeMessageType(
|
|
258
|
+
"BlueHardwareInfo",
|
|
259
|
+
() => [
|
|
260
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
261
|
+
{ no: 2, name: "vendor", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
262
|
+
{ no: 3, name: "vendorName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
263
|
+
{ no: 4, name: "version", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
264
|
+
{ no: 5, name: "type", kind: "enum", T: proto2.getEnumType(BlueHardwareType) },
|
|
265
|
+
],
|
|
266
|
+
);
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* @generated from message BlueSystemStatusExt
|
|
270
|
+
*/
|
|
271
|
+
export const BlueSystemStatusExt = proto2.makeMessageType(
|
|
272
|
+
"BlueSystemStatusExt",
|
|
273
|
+
() => [
|
|
274
|
+
{ no: 1, name: "status", kind: "message", T: BlueSystemStatus },
|
|
275
|
+
{ no: 2, name: "newFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
276
|
+
{ no: 3, name: "newTestFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
277
|
+
{ no: 4, name: "newConfigurationAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
278
|
+
{ no: 5, name: "hardwareInfo", kind: "message", T: BlueHardwareInfo, opt: true },
|
|
279
|
+
],
|
|
280
|
+
);
|
|
281
|
+
|
|
@@ -166,20 +166,6 @@ export const BlueSystemProvisioning = proto2.makeMessageType(
|
|
|
166
166
|
],
|
|
167
167
|
);
|
|
168
168
|
|
|
169
|
-
/**
|
|
170
|
-
* @generated from message BlueHardwareInfo
|
|
171
|
-
*/
|
|
172
|
-
export const BlueHardwareInfo = proto2.makeMessageType(
|
|
173
|
-
"BlueHardwareInfo",
|
|
174
|
-
() => [
|
|
175
|
-
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
176
|
-
{ no: 2, name: "vendor", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
177
|
-
{ no: 3, name: "vendorName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
178
|
-
{ no: 4, name: "version", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
179
|
-
{ no: 5, name: "type", kind: "enum", T: proto2.getEnumType(BlueHardwareType) },
|
|
180
|
-
],
|
|
181
|
-
);
|
|
182
|
-
|
|
183
169
|
/**
|
|
184
170
|
* @generated from message BlueSystemStatus
|
|
185
171
|
*/
|
|
@@ -196,10 +182,6 @@ export const BlueSystemStatus = proto2.makeMessageType(
|
|
|
196
182
|
{ no: 8, name: "settings", kind: "message", T: BlueSystemSettings },
|
|
197
183
|
{ no: 9, name: "lock", kind: "message", T: BlueLockStatus, opt: true },
|
|
198
184
|
{ no: 10, name: "applicationVersionTest", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
199
|
-
{ no: 11, name: "newFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
200
|
-
{ no: 12, name: "newTestFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
201
|
-
{ no: 13, name: "newConfigurationAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
202
|
-
{ no: 14, name: "hardwareInfo", kind: "message", T: BlueHardwareInfo, opt: true },
|
|
203
185
|
],
|
|
204
186
|
);
|
|
205
187
|
|