@blueid/access-cli 5.20.0 → 6.1.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.
@@ -49,6 +49,9 @@ export const BlueI18n = proto2.makeMessageType(
49
49
  { no: 100, name: "nfcTransponderConnected", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder Connected" },
50
50
  { no: 101, name: "nfcTransponderDisconnected", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder was disconnected" },
51
51
  { no: 102, name: "nfcTransponderSuccessReadMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder was successfully read" },
52
+ { no: 103, name: "nfcKioskRefreshTransponderNoRefreshNeededMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are valid — no refresh needed" },
53
+ { no: 104, name: "nfcKioskRefreshTransponderPartialRefreshMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "%d out of %d credentials have been refreshed" },
54
+ { no: 105, name: "nfcKioskRefreshTransponderHoldYourCardSteadyMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Please hold your card steady until the process is done" },
52
55
  { no: 10, name: "openViaOssTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Unlocking in Progress" },
53
56
  { no: 11, name: "openViaOssWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Establishing secure connection..." },
54
57
  { no: 12, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Granted" },
@@ -317,6 +320,29 @@ export const BlueLegacyProvisioningResponse = proto2.makeMessageType(
317
320
  ],
318
321
  );
319
322
 
323
+ /**
324
+ * @generated from message BlueRefreshTransponderResultItem
325
+ */
326
+ export const BlueRefreshTransponderResultItem = proto2.makeMessageType(
327
+ "BlueRefreshTransponderResultItem",
328
+ () => [
329
+ { no: 1, name: "credentialId", kind: "message", T: BlueCredentialId },
330
+ { no: 2, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
331
+ ],
332
+ );
333
+
334
+ /**
335
+ * @generated from message BlueRefreshTransponderResult
336
+ */
337
+ export const BlueRefreshTransponderResult = proto2.makeMessageType(
338
+ "BlueRefreshTransponderResult",
339
+ () => [
340
+ { no: 1, name: "updated", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true },
341
+ { no: 2, name: "skipped", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true },
342
+ { no: 3, name: "failed", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true },
343
+ ],
344
+ );
345
+
320
346
  /**
321
347
  * @TODO: Keep it until we have updated all places in both iOS and Android SDK.
322
348
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueid/access-cli",
3
- "version": "5.20.0",
3
+ "version": "6.1.0",
4
4
  "description": "BlueID Access CLI",
5
5
  "type": "module",
6
6
  "main": "./index.js",