@blueid/access-cli 0.78.0 → 0.79.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, BlueOssSoConfiguration } from "./BlueCore_pb.js";
7
+ import { BlueBleManufacturerInfo, BlueCredentialId, BlueCredentialType, BlueLocalTimestamp, BlueOssSoConfiguration, BlueReturnCode } from "./BlueCore_pb.js";
8
8
 
9
9
  /**
10
10
  * @generated from enum BlueDeviceType
@@ -194,3 +194,25 @@ export const BlueRefreshOssSoCredentials = proto2.makeMessageType(
194
194
  ],
195
195
  );
196
196
 
197
+ /**
198
+ * @generated from message BlueSynchronizeAccessCredential
199
+ */
200
+ export const BlueSynchronizeAccessCredential = proto2.makeMessageType(
201
+ "BlueSynchronizeAccessCredential",
202
+ () => [
203
+ { no: 1, name: "credentialId", kind: "message", T: BlueCredentialId },
204
+ { no: 2, name: "returnCode", kind: "enum", T: proto2.getEnumType(BlueReturnCode) },
205
+ { no: 3, name: "errorDescription", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
206
+ ],
207
+ );
208
+
209
+ /**
210
+ * @generated from message BlueSynchronizeAccessCredentials
211
+ */
212
+ export const BlueSynchronizeAccessCredentials = proto2.makeMessageType(
213
+ "BlueSynchronizeAccessCredentials",
214
+ () => [
215
+ { no: 1, name: "credentials", kind: "message", T: BlueSynchronizeAccessCredential, repeated: true },
216
+ ],
217
+ );
218
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueid/access-cli",
3
- "version": "0.78.0",
3
+ "version": "0.79.0",
4
4
  "description": "BlueID Access CLI",
5
5
  "type": "module",
6
6
  "main": "./index.js",