@blueid/access-cli 0.77.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.
- package/lib/proto/BlueSDK_pb.js +34 -7
- package/package.json +1 -1
package/lib/proto/BlueSDK_pb.js
CHANGED
|
@@ -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
|
|
@@ -36,7 +36,7 @@ export const BlueRefreshOssSoCredentialStatus = proto2.makeEnum(
|
|
|
36
36
|
export const BlueI18n = proto2.makeMessageType(
|
|
37
37
|
"BlueI18n",
|
|
38
38
|
() => [
|
|
39
|
-
{ no: 1, name: "nfcWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Waiting for transponder" },
|
|
39
|
+
{ no: 1, name: "nfcWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Waiting for transponder..." },
|
|
40
40
|
{ no: 2, name: "nfcOssSuccessReadConfigurationMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Configuration read successfully" },
|
|
41
41
|
{ no: 3, name: "nfcOssSuccessUpdateConfigurationMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Configuration successfully updated" },
|
|
42
42
|
{ no: 4, name: "nfcOssSuccessClearEventsMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Events successfully cleared" },
|
|
@@ -44,11 +44,16 @@ export const BlueI18n = proto2.makeMessageType(
|
|
|
44
44
|
{ no: 6, name: "nfcOssSuccessProvisionMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Successfully provisioned" },
|
|
45
45
|
{ no: 7, name: "nfcOssSuccessUnprovisionMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Successfully unprovisioned" },
|
|
46
46
|
{ no: 8, name: "nfcOssSuccessFormatMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder was successfully formatted" },
|
|
47
|
-
{ no: 9, name: "
|
|
48
|
-
{ no: 10, name: "
|
|
49
|
-
{ no: 11, name: "
|
|
50
|
-
{ no: 12, name: "
|
|
51
|
-
{ no: 13, name: "
|
|
47
|
+
{ no: 9, name: "nfcInitializingWritingProcess", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Initializing writing process" },
|
|
48
|
+
{ no: 10, name: "cmnCancelLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancel" },
|
|
49
|
+
{ no: 11, name: "openViaOssTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Unlocking in Progress" },
|
|
50
|
+
{ no: 12, name: "openViaOssWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Establishing secure connection..." },
|
|
51
|
+
{ no: 13, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Granted" },
|
|
52
|
+
{ no: 14, name: "openViaOssAccessGrantedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Please proceed." },
|
|
53
|
+
{ no: 15, name: "openViaOssAccessDeniedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Denied" },
|
|
54
|
+
{ no: 16, name: "openViaOssAccessDeniedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are invalid or outdated." },
|
|
55
|
+
{ no: 17, name: "openViaOssAccessDeniedScheduleMismatchMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are not valid at this time and/or day of the week." },
|
|
56
|
+
{ no: 18, name: "openViaOssErrorTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Error" },
|
|
52
57
|
],
|
|
53
58
|
);
|
|
54
59
|
|
|
@@ -189,3 +194,25 @@ export const BlueRefreshOssSoCredentials = proto2.makeMessageType(
|
|
|
189
194
|
],
|
|
190
195
|
);
|
|
191
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
|
+
|