@blueid/access-cli 0.66.0 → 0.67.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.
@@ -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, BlueOssSoConfiguration } from "./BlueCore_pb.js";
8
8
 
9
9
  /**
10
10
  * @generated from enum BlueDeviceType
@@ -17,6 +17,19 @@ export const BlueDeviceType = proto2.makeEnum(
17
17
  ],
18
18
  );
19
19
 
20
+ /**
21
+ * @generated from enum BlueRefreshOssSoCredentialStatus
22
+ */
23
+ export const BlueRefreshOssSoCredentialStatus = proto2.makeEnum(
24
+ "BlueRefreshOssSoCredentialStatus",
25
+ [
26
+ {no: 1, name: "Succeeded"},
27
+ {no: 2, name: "Failed"},
28
+ {no: 3, name: "NotNeeded"},
29
+ {no: 4, name: "Unsupported"},
30
+ ],
31
+ );
32
+
20
33
  /**
21
34
  * @generated from message BlueI18n
22
35
  */
@@ -154,3 +167,25 @@ export const BlueAccessObjectList = proto2.makeMessageType(
154
167
  ],
155
168
  );
156
169
 
170
+ /**
171
+ * @generated from message BlueRefreshOssSoCredential
172
+ */
173
+ export const BlueRefreshOssSoCredential = proto2.makeMessageType(
174
+ "BlueRefreshOssSoCredential",
175
+ () => [
176
+ { no: 1, name: "credentialId", kind: "message", T: BlueCredentialId },
177
+ { no: 2, name: "status", kind: "enum", T: proto2.getEnumType(BlueRefreshOssSoCredentialStatus) },
178
+ { no: 3, name: "configuration", kind: "message", T: BlueOssSoConfiguration, opt: true },
179
+ ],
180
+ );
181
+
182
+ /**
183
+ * @generated from message BlueRefreshOssSoCredentials
184
+ */
185
+ export const BlueRefreshOssSoCredentials = proto2.makeMessageType(
186
+ "BlueRefreshOssSoCredentials",
187
+ () => [
188
+ { no: 1, name: "credentials", kind: "message", T: BlueRefreshOssSoCredential, repeated: true },
189
+ ],
190
+ );
191
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueid/access-cli",
3
- "version": "0.66.0",
3
+ "version": "0.67.0",
4
4
  "description": "BlueID Access CLI",
5
5
  "type": "module",
6
6
  "main": "./index.js",