@blueid/access-cli 0.31.0 → 0.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/lib/proto/BlueCore_pb.js +4 -4
- package/lib/proto/BlueSDK_pb.js +24 -0
- package/package.json +1 -1
package/lib/proto/BlueCore_pb.js
CHANGED
|
@@ -424,10 +424,10 @@ export const BlueEvent = proto2.makeMessageType(
|
|
|
424
424
|
() => [
|
|
425
425
|
{ no: 1, name: "sequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
426
426
|
{ no: 2, name: "eventTime", kind: "message", T: BlueLocalTimestamp },
|
|
427
|
-
{ no:
|
|
428
|
-
{ no:
|
|
429
|
-
{ no:
|
|
430
|
-
{ no:
|
|
427
|
+
{ no: 3, name: "eventId", kind: "enum", T: proto2.getEnumType(BlueEventId) },
|
|
428
|
+
{ no: 4, name: "eventInfo", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
429
|
+
{ no: 5, name: "credentialId", kind: "message", T: BlueCredentialId, opt: true },
|
|
430
|
+
{ no: 6, name: "command", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
431
431
|
],
|
|
432
432
|
);
|
|
433
433
|
|
package/lib/proto/BlueSDK_pb.js
CHANGED
|
@@ -107,6 +107,7 @@ export const BlueAccessDevice = proto2.makeMessageType(
|
|
|
107
107
|
() => [
|
|
108
108
|
{ no: 1, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
109
109
|
{ no: 2, name: "objectName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
110
|
+
{ no: 3, name: "objectId", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
110
111
|
],
|
|
111
112
|
);
|
|
112
113
|
|
|
@@ -120,3 +121,26 @@ export const BlueAccessDeviceList = proto2.makeMessageType(
|
|
|
120
121
|
],
|
|
121
122
|
);
|
|
122
123
|
|
|
124
|
+
/**
|
|
125
|
+
* @generated from message BlueAccessObject
|
|
126
|
+
*/
|
|
127
|
+
export const BlueAccessObject = proto2.makeMessageType(
|
|
128
|
+
"BlueAccessObject",
|
|
129
|
+
() => [
|
|
130
|
+
{ no: 1, name: "_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
131
|
+
{ no: 2, name: "objectId", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
132
|
+
{ no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
133
|
+
{ no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
134
|
+
],
|
|
135
|
+
);
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* @generated from message BlueAccessObjectList
|
|
139
|
+
*/
|
|
140
|
+
export const BlueAccessObjectList = proto2.makeMessageType(
|
|
141
|
+
"BlueAccessObjectList",
|
|
142
|
+
() => [
|
|
143
|
+
{ no: 1, name: "objects", kind: "message", T: BlueAccessObject, repeated: true },
|
|
144
|
+
],
|
|
145
|
+
);
|
|
146
|
+
|