@blueid/access-proto 9.18.0 → 9.20.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/BlueSDK.proto CHANGED
@@ -118,7 +118,7 @@ message BlueI18n {
118
118
  [ default = "Cancelling..." ];
119
119
  required string dfuCompletedTitle = 44
120
120
  [ default = "Update has been completed" ];
121
- required string dfuGetAuthenticationTokenTaskLabel = 45
121
+ required string getAuthenticationTokenTaskLabel = 45
122
122
  [ default = "Issue authentication token" ];
123
123
  required string dfuCheckLatestFWLabel = 46
124
124
  [ default = "Check latest firmware" ];
@@ -132,7 +132,7 @@ message BlueI18n {
132
132
  [ default = "DFU initialization" ];
133
133
  required string dfuUpdateFWLabel = 51
134
134
  [ default = "Update firmware" ];
135
- required string dfuWaitForDeviceToRestartTaskLabel = 52
135
+ required string waitForDeviceToRestartTaskLabel = 52
136
136
  [ default = "Wait for device to restart" ];
137
137
 
138
138
  required string accessTypeDefaultTime = 53
@@ -153,7 +153,27 @@ message BlueI18n {
153
153
 
154
154
  required string provisioningDone = 60
155
155
  [ default = "Device %s has been provisioned. Please wait a few seconds for it to be ready for setup. If it doesn’t discover, try removing the batteries and restarting the lock." ];
156
- }
156
+
157
+
158
+ required string checkCurrentAVR = 62
159
+ [ default = "Check current AVR" ];
160
+
161
+ required string checkIfAVRUpdateNedded = 63
162
+ [ default = "Check If AVR needs to update" ];
163
+
164
+ required string downloadAVR = 64
165
+ [ default = "Download AVR" ];
166
+
167
+ required string downloadingAVR = 65
168
+ [ default = "Downloading AVR %d.%d.%d" ];
169
+
170
+ required string updateAVR = 66
171
+ [ default = "Update AVR" ];
172
+
173
+ required string avrIsAlreadyUpToDate = 67
174
+ [ default = "AVR is already up to date" ];
175
+
176
+ }
157
177
 
158
178
  ///////////////////////////////////////////////////////////////////////
159
179
  // Device
@@ -303,9 +303,9 @@ export declare class BlueI18n extends Message<BlueI18n> {
303
303
  dfuCompletedTitle: string;
304
304
 
305
305
  /**
306
- * @generated from field: required string dfuGetAuthenticationTokenTaskLabel = 45 [default = "Issue authentication token"];
306
+ * @generated from field: required string getAuthenticationTokenTaskLabel = 45 [default = "Issue authentication token"];
307
307
  */
308
- dfuGetAuthenticationTokenTaskLabel: string;
308
+ getAuthenticationTokenTaskLabel: string;
309
309
 
310
310
  /**
311
311
  * @generated from field: required string dfuCheckLatestFWLabel = 46 [default = "Check latest firmware"];
@@ -338,9 +338,9 @@ export declare class BlueI18n extends Message<BlueI18n> {
338
338
  dfuUpdateFWLabel: string;
339
339
 
340
340
  /**
341
- * @generated from field: required string dfuWaitForDeviceToRestartTaskLabel = 52 [default = "Wait for device to restart"];
341
+ * @generated from field: required string waitForDeviceToRestartTaskLabel = 52 [default = "Wait for device to restart"];
342
342
  */
343
- dfuWaitForDeviceToRestartTaskLabel: string;
343
+ waitForDeviceToRestartTaskLabel: string;
344
344
 
345
345
  /**
346
346
  * @generated from field: required string accessTypeDefaultTime = 53 [default = "Default"];
@@ -382,6 +382,36 @@ export declare class BlueI18n extends Message<BlueI18n> {
382
382
  */
383
383
  provisioningDone: string;
384
384
 
385
+ /**
386
+ * @generated from field: required string checkCurrentAVR = 62 [default = "Check current AVR"];
387
+ */
388
+ checkCurrentAVR: string;
389
+
390
+ /**
391
+ * @generated from field: required string checkIfAVRUpdateNedded = 63 [default = "Check If AVR needs to update"];
392
+ */
393
+ checkIfAVRUpdateNedded: string;
394
+
395
+ /**
396
+ * @generated from field: required string downloadAVR = 64 [default = "Download AVR"];
397
+ */
398
+ downloadAVR: string;
399
+
400
+ /**
401
+ * @generated from field: required string downloadingAVR = 65 [default = "Downloading AVR %d.%d.%d"];
402
+ */
403
+ downloadingAVR: string;
404
+
405
+ /**
406
+ * @generated from field: required string updateAVR = 66 [default = "Update AVR"];
407
+ */
408
+ updateAVR: string;
409
+
410
+ /**
411
+ * @generated from field: required string avrIsAlreadyUpToDate = 67 [default = "AVR is already up to date"];
412
+ */
413
+ avrIsAlreadyUpToDate: string;
414
+
385
415
  constructor(data?: PartialMessage<BlueI18n>);
386
416
 
387
417
  static readonly runtime: typeof proto2;
package/cjs/BlueSDK_pb.js CHANGED
@@ -119,14 +119,14 @@ const BlueI18n = import_protobuf.proto2.makeMessageType(
119
119
  { no: 42, name: "dfuFailedTitle", kind: "scalar", T: 9, default: "Update has failed" },
120
120
  { no: 43, name: "dfuCancellingTitle", kind: "scalar", T: 9, default: "Cancelling..." },
121
121
  { no: 44, name: "dfuCompletedTitle", kind: "scalar", T: 9, default: "Update has been completed" },
122
- { no: 45, name: "dfuGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9, default: "Issue authentication token" },
122
+ { no: 45, name: "getAuthenticationTokenTaskLabel", kind: "scalar", T: 9, default: "Issue authentication token" },
123
123
  { no: 46, name: "dfuCheckLatestFWLabel", kind: "scalar", T: 9, default: "Check latest firmware" },
124
124
  { no: 47, name: "dfuDownloadLatestFWLabel", kind: "scalar", T: 9, default: "Download latest firmware" },
125
125
  { no: 48, name: "dfuPrepareUpdateLabel", kind: "scalar", T: 9, default: "Prepare Update" },
126
126
  { no: 49, name: "dfuStartBootloaderLabel", kind: "scalar", T: 9, default: "Start Bootloader" },
127
127
  { no: 50, name: "dfuInitializationLabel", kind: "scalar", T: 9, default: "DFU initialization" },
128
128
  { no: 51, name: "dfuUpdateFWLabel", kind: "scalar", T: 9, default: "Update firmware" },
129
- { no: 52, name: "dfuWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9, default: "Wait for device to restart" },
129
+ { no: 52, name: "waitForDeviceToRestartTaskLabel", kind: "scalar", T: 9, default: "Wait for device to restart" },
130
130
  { no: 53, name: "accessTypeDefaultTime", kind: "scalar", T: 9, default: "Default" },
131
131
  { no: 54, name: "accessTypeExtendedTime", kind: "scalar", T: 9, default: "Extended" },
132
132
  { no: 55, name: "accessTypeToggle", kind: "scalar", T: 9, default: "Toggle" },
@@ -134,7 +134,13 @@ const BlueI18n = import_protobuf.proto2.makeMessageType(
134
134
  { no: 57, name: "accessTypeCustomTime", kind: "scalar", T: 9, default: "Custom" },
135
135
  { no: 58, name: "openViaOssSoSelectAccessTypeTitle", kind: "scalar", T: 9, default: "Select an access type" },
136
136
  { no: 59, name: "openViaOssSoSelectAccessTypeMessage", kind: "scalar", T: 9, default: "You have multiple access types available." },
137
- { no: 60, name: "provisioningDone", kind: "scalar", T: 9, default: "Device %s has been provisioned. Please wait a few seconds for it to be ready for setup. If it doesn\u2019t discover, try removing the batteries and restarting the lock." }
137
+ { no: 60, name: "provisioningDone", kind: "scalar", T: 9, default: "Device %s has been provisioned. Please wait a few seconds for it to be ready for setup. If it doesn\u2019t discover, try removing the batteries and restarting the lock." },
138
+ { no: 62, name: "checkCurrentAVR", kind: "scalar", T: 9, default: "Check current AVR" },
139
+ { no: 63, name: "checkIfAVRUpdateNedded", kind: "scalar", T: 9, default: "Check If AVR needs to update" },
140
+ { no: 64, name: "downloadAVR", kind: "scalar", T: 9, default: "Download AVR" },
141
+ { no: 65, name: "downloadingAVR", kind: "scalar", T: 9, default: "Downloading AVR %d.%d.%d" },
142
+ { no: 66, name: "updateAVR", kind: "scalar", T: 9, default: "Update AVR" },
143
+ { no: 67, name: "avrIsAlreadyUpToDate", kind: "scalar", T: 9, default: "AVR is already up to date" }
138
144
  ]
139
145
  );
140
146
  const BlueDeviceDetailsBluetooth = import_protobuf.proto2.makeMessageType(
@@ -303,9 +303,9 @@ export declare class BlueI18n extends Message<BlueI18n> {
303
303
  dfuCompletedTitle: string;
304
304
 
305
305
  /**
306
- * @generated from field: required string dfuGetAuthenticationTokenTaskLabel = 45 [default = "Issue authentication token"];
306
+ * @generated from field: required string getAuthenticationTokenTaskLabel = 45 [default = "Issue authentication token"];
307
307
  */
308
- dfuGetAuthenticationTokenTaskLabel: string;
308
+ getAuthenticationTokenTaskLabel: string;
309
309
 
310
310
  /**
311
311
  * @generated from field: required string dfuCheckLatestFWLabel = 46 [default = "Check latest firmware"];
@@ -338,9 +338,9 @@ export declare class BlueI18n extends Message<BlueI18n> {
338
338
  dfuUpdateFWLabel: string;
339
339
 
340
340
  /**
341
- * @generated from field: required string dfuWaitForDeviceToRestartTaskLabel = 52 [default = "Wait for device to restart"];
341
+ * @generated from field: required string waitForDeviceToRestartTaskLabel = 52 [default = "Wait for device to restart"];
342
342
  */
343
- dfuWaitForDeviceToRestartTaskLabel: string;
343
+ waitForDeviceToRestartTaskLabel: string;
344
344
 
345
345
  /**
346
346
  * @generated from field: required string accessTypeDefaultTime = 53 [default = "Default"];
@@ -382,6 +382,36 @@ export declare class BlueI18n extends Message<BlueI18n> {
382
382
  */
383
383
  provisioningDone: string;
384
384
 
385
+ /**
386
+ * @generated from field: required string checkCurrentAVR = 62 [default = "Check current AVR"];
387
+ */
388
+ checkCurrentAVR: string;
389
+
390
+ /**
391
+ * @generated from field: required string checkIfAVRUpdateNedded = 63 [default = "Check If AVR needs to update"];
392
+ */
393
+ checkIfAVRUpdateNedded: string;
394
+
395
+ /**
396
+ * @generated from field: required string downloadAVR = 64 [default = "Download AVR"];
397
+ */
398
+ downloadAVR: string;
399
+
400
+ /**
401
+ * @generated from field: required string downloadingAVR = 65 [default = "Downloading AVR %d.%d.%d"];
402
+ */
403
+ downloadingAVR: string;
404
+
405
+ /**
406
+ * @generated from field: required string updateAVR = 66 [default = "Update AVR"];
407
+ */
408
+ updateAVR: string;
409
+
410
+ /**
411
+ * @generated from field: required string avrIsAlreadyUpToDate = 67 [default = "AVR is already up to date"];
412
+ */
413
+ avrIsAlreadyUpToDate: string;
414
+
385
415
  constructor(data?: PartialMessage<BlueI18n>);
386
416
 
387
417
  static readonly runtime: typeof proto2;
package/es/BlueSDK_pb.js CHANGED
@@ -87,14 +87,14 @@ export const BlueI18n = proto2.makeMessageType(
87
87
  { no: 42, name: "dfuFailedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update has failed" },
88
88
  { no: 43, name: "dfuCancellingTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancelling..." },
89
89
  { no: 44, name: "dfuCompletedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update has been completed" },
90
- { no: 45, name: "dfuGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
90
+ { no: 45, name: "getAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
91
91
  { no: 46, name: "dfuCheckLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check latest firmware" },
92
92
  { no: 47, name: "dfuDownloadLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Download latest firmware" },
93
93
  { no: 48, name: "dfuPrepareUpdateLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Prepare Update" },
94
94
  { no: 49, name: "dfuStartBootloaderLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Start Bootloader" },
95
95
  { no: 50, name: "dfuInitializationLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "DFU initialization" },
96
96
  { no: 51, name: "dfuUpdateFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update firmware" },
97
- { no: 52, name: "dfuWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
97
+ { no: 52, name: "waitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
98
98
  { no: 53, name: "accessTypeDefaultTime", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Default" },
99
99
  { no: 54, name: "accessTypeExtendedTime", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Extended" },
100
100
  { no: 55, name: "accessTypeToggle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Toggle" },
@@ -103,6 +103,12 @@ export const BlueI18n = proto2.makeMessageType(
103
103
  { no: 58, name: "openViaOssSoSelectAccessTypeTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Select an access type" },
104
104
  { no: 59, name: "openViaOssSoSelectAccessTypeMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "You have multiple access types available." },
105
105
  { no: 60, name: "provisioningDone", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Device %s has been provisioned. Please wait a few seconds for it to be ready for setup. If it doesn’t discover, try removing the batteries and restarting the lock." },
106
+ { no: 62, name: "checkCurrentAVR", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check current AVR" },
107
+ { no: 63, name: "checkIfAVRUpdateNedded", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check If AVR needs to update" },
108
+ { no: 64, name: "downloadAVR", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Download AVR" },
109
+ { no: 65, name: "downloadingAVR", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Downloading AVR %d.%d.%d" },
110
+ { no: 66, name: "updateAVR", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update AVR" },
111
+ { no: 67, name: "avrIsAlreadyUpToDate", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "AVR is already up to date" },
106
112
  ],
107
113
  );
108
114
 
@@ -88,8 +88,8 @@ PB_BIND(BLUESYNCHRONIZEACCESSCREDENTIALS, BlueSynchronizeAccessCredentials_t, AU
88
88
 
89
89
 
90
90
  /* Check that missing required fields will be properly detected */
91
- #if PB_MAX_REQUIRED_FIELDS < 66
91
+ #if PB_MAX_REQUIRED_FIELDS < 72
92
92
  #error Properly detecting missing required fields in BlueI18n requires \
93
- setting PB_MAX_REQUIRED_FIELDS to 66 or more.
93
+ setting PB_MAX_REQUIRED_FIELDS to 72 or more.
94
94
  #endif
95
95
 
@@ -70,14 +70,14 @@ typedef struct BlueI18n {
70
70
  pb_callback_t dfuFailedTitle;
71
71
  pb_callback_t dfuCancellingTitle;
72
72
  pb_callback_t dfuCompletedTitle;
73
- pb_callback_t dfuGetAuthenticationTokenTaskLabel;
73
+ pb_callback_t getAuthenticationTokenTaskLabel;
74
74
  pb_callback_t dfuCheckLatestFWLabel;
75
75
  pb_callback_t dfuDownloadLatestFWLabel;
76
76
  pb_callback_t dfuPrepareUpdateLabel;
77
77
  pb_callback_t dfuStartBootloaderLabel;
78
78
  pb_callback_t dfuInitializationLabel;
79
79
  pb_callback_t dfuUpdateFWLabel;
80
- pb_callback_t dfuWaitForDeviceToRestartTaskLabel;
80
+ pb_callback_t waitForDeviceToRestartTaskLabel;
81
81
  pb_callback_t accessTypeDefaultTime;
82
82
  pb_callback_t accessTypeExtendedTime;
83
83
  pb_callback_t accessTypeToggle;
@@ -86,6 +86,12 @@ typedef struct BlueI18n {
86
86
  pb_callback_t openViaOssSoSelectAccessTypeTitle;
87
87
  pb_callback_t openViaOssSoSelectAccessTypeMessage;
88
88
  pb_callback_t provisioningDone;
89
+ pb_callback_t checkCurrentAVR;
90
+ pb_callback_t checkIfAVRUpdateNedded;
91
+ pb_callback_t downloadAVR;
92
+ pb_callback_t downloadingAVR;
93
+ pb_callback_t updateAVR;
94
+ pb_callback_t avrIsAlreadyUpToDate;
89
95
  pb_callback_t nfcTransponderConnected;
90
96
  pb_callback_t nfcTransponderDisconnected;
91
97
  pb_callback_t nfcTransponderSuccessReadMessage;
@@ -330,7 +336,7 @@ extern "C" {
330
336
 
331
337
 
332
338
  /* Initializer values for message structs */
333
- #define BLUEI18N_INIT_DEFAULT {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
339
+ #define BLUEI18N_INIT_DEFAULT {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
334
340
  #define BLUEDEVICEDETAILSBLUETOOTH_INIT_DEFAULT {0, 0, 0}
335
341
  #define BLUEDEVICEDETAILSUWB_INIT_DEFAULT {0}
336
342
  #define BLUEDEVICEINFO_INIT_DEFAULT {_BLUEDEVICETYPE_MIN, {{NULL}, NULL}, 0, false, BLUEBLEMANUFACTURERINFO_INIT_DEFAULT, 0, {BLUEDEVICEDETAILSBLUETOOTH_INIT_DEFAULT}}
@@ -356,7 +362,7 @@ extern "C" {
356
362
  #define BLUEREFRESHOSSSOCREDENTIALS_INIT_DEFAULT {{{NULL}, NULL}}
357
363
  #define BLUESYNCHRONIZEACCESSCREDENTIAL_INIT_DEFAULT {BLUECREDENTIALID_INIT_DEFAULT, _BLUERETURNCODE_MIN, {{NULL}, NULL}}
358
364
  #define BLUESYNCHRONIZEACCESSCREDENTIALS_INIT_DEFAULT {{{NULL}, NULL}}
359
- #define BLUEI18N_INIT_ZERO {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
365
+ #define BLUEI18N_INIT_ZERO {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
360
366
  #define BLUEDEVICEDETAILSBLUETOOTH_INIT_ZERO {0, 0, 0}
361
367
  #define BLUEDEVICEDETAILSUWB_INIT_ZERO {0}
362
368
  #define BLUEDEVICEINFO_INIT_ZERO {_BLUEDEVICETYPE_MIN, {{NULL}, NULL}, 0, false, BLUEBLEMANUFACTURERINFO_INIT_ZERO, 0, {BLUEDEVICEDETAILSBLUETOOTH_INIT_ZERO}}
@@ -428,14 +434,14 @@ extern "C" {
428
434
  #define BLUEI18N_DFUFAILEDTITLE_TAG 42
429
435
  #define BLUEI18N_DFUCANCELLINGTITLE_TAG 43
430
436
  #define BLUEI18N_DFUCOMPLETEDTITLE_TAG 44
431
- #define BLUEI18N_DFUGETAUTHENTICATIONTOKENTASKLABEL_TAG 45
437
+ #define BLUEI18N_GETAUTHENTICATIONTOKENTASKLABEL_TAG 45
432
438
  #define BLUEI18N_DFUCHECKLATESTFWLABEL_TAG 46
433
439
  #define BLUEI18N_DFUDOWNLOADLATESTFWLABEL_TAG 47
434
440
  #define BLUEI18N_DFUPREPAREUPDATELABEL_TAG 48
435
441
  #define BLUEI18N_DFUSTARTBOOTLOADERLABEL_TAG 49
436
442
  #define BLUEI18N_DFUINITIALIZATIONLABEL_TAG 50
437
443
  #define BLUEI18N_DFUUPDATEFWLABEL_TAG 51
438
- #define BLUEI18N_DFUWAITFORDEVICETORESTARTTASKLABEL_TAG 52
444
+ #define BLUEI18N_WAITFORDEVICETORESTARTTASKLABEL_TAG 52
439
445
  #define BLUEI18N_ACCESSTYPEDEFAULTTIME_TAG 53
440
446
  #define BLUEI18N_ACCESSTYPEEXTENDEDTIME_TAG 54
441
447
  #define BLUEI18N_ACCESSTYPETOGGLE_TAG 55
@@ -444,6 +450,12 @@ extern "C" {
444
450
  #define BLUEI18N_OPENVIAOSSSOSELECTACCESSTYPETITLE_TAG 58
445
451
  #define BLUEI18N_OPENVIAOSSSOSELECTACCESSTYPEMESSAGE_TAG 59
446
452
  #define BLUEI18N_PROVISIONINGDONE_TAG 60
453
+ #define BLUEI18N_CHECKCURRENTAVR_TAG 62
454
+ #define BLUEI18N_CHECKIFAVRUPDATENEDDED_TAG 63
455
+ #define BLUEI18N_DOWNLOADAVR_TAG 64
456
+ #define BLUEI18N_DOWNLOADINGAVR_TAG 65
457
+ #define BLUEI18N_UPDATEAVR_TAG 66
458
+ #define BLUEI18N_AVRISALREADYUPTODATE_TAG 67
447
459
  #define BLUEI18N_NFCTRANSPONDERCONNECTED_TAG 100
448
460
  #define BLUEI18N_NFCTRANSPONDERDISCONNECTED_TAG 101
449
461
  #define BLUEI18N_NFCTRANSPONDERSUCCESSREADMESSAGE_TAG 102
@@ -586,14 +598,14 @@ X(a, CALLBACK, REQUIRED, STRING, dfuInProgressTitle, 41) \
586
598
  X(a, CALLBACK, REQUIRED, STRING, dfuFailedTitle, 42) \
587
599
  X(a, CALLBACK, REQUIRED, STRING, dfuCancellingTitle, 43) \
588
600
  X(a, CALLBACK, REQUIRED, STRING, dfuCompletedTitle, 44) \
589
- X(a, CALLBACK, REQUIRED, STRING, dfuGetAuthenticationTokenTaskLabel, 45) \
601
+ X(a, CALLBACK, REQUIRED, STRING, getAuthenticationTokenTaskLabel, 45) \
590
602
  X(a, CALLBACK, REQUIRED, STRING, dfuCheckLatestFWLabel, 46) \
591
603
  X(a, CALLBACK, REQUIRED, STRING, dfuDownloadLatestFWLabel, 47) \
592
604
  X(a, CALLBACK, REQUIRED, STRING, dfuPrepareUpdateLabel, 48) \
593
605
  X(a, CALLBACK, REQUIRED, STRING, dfuStartBootloaderLabel, 49) \
594
606
  X(a, CALLBACK, REQUIRED, STRING, dfuInitializationLabel, 50) \
595
607
  X(a, CALLBACK, REQUIRED, STRING, dfuUpdateFWLabel, 51) \
596
- X(a, CALLBACK, REQUIRED, STRING, dfuWaitForDeviceToRestartTaskLabel, 52) \
608
+ X(a, CALLBACK, REQUIRED, STRING, waitForDeviceToRestartTaskLabel, 52) \
597
609
  X(a, CALLBACK, REQUIRED, STRING, accessTypeDefaultTime, 53) \
598
610
  X(a, CALLBACK, REQUIRED, STRING, accessTypeExtendedTime, 54) \
599
611
  X(a, CALLBACK, REQUIRED, STRING, accessTypeToggle, 55) \
@@ -602,6 +614,12 @@ X(a, CALLBACK, REQUIRED, STRING, accessTypeCustomTime, 57) \
602
614
  X(a, CALLBACK, REQUIRED, STRING, openViaOssSoSelectAccessTypeTitle, 58) \
603
615
  X(a, CALLBACK, REQUIRED, STRING, openViaOssSoSelectAccessTypeMessage, 59) \
604
616
  X(a, CALLBACK, REQUIRED, STRING, provisioningDone, 60) \
617
+ X(a, CALLBACK, REQUIRED, STRING, checkCurrentAVR, 62) \
618
+ X(a, CALLBACK, REQUIRED, STRING, checkIfAVRUpdateNedded, 63) \
619
+ X(a, CALLBACK, REQUIRED, STRING, downloadAVR, 64) \
620
+ X(a, CALLBACK, REQUIRED, STRING, downloadingAVR, 65) \
621
+ X(a, CALLBACK, REQUIRED, STRING, updateAVR, 66) \
622
+ X(a, CALLBACK, REQUIRED, STRING, avrIsAlreadyUpToDate, 67) \
605
623
  X(a, CALLBACK, REQUIRED, STRING, nfcTransponderConnected, 100) \
606
624
  X(a, CALLBACK, REQUIRED, STRING, nfcTransponderDisconnected, 101) \
607
625
  X(a, CALLBACK, REQUIRED, STRING, nfcTransponderSuccessReadMessage, 102) \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueid/access-proto",
3
- "version": "9.18.0",
3
+ "version": "9.20.0",
4
4
  "description": "BlueID Access Proto files",
5
5
  "author": "BlueID GmbH",
6
6
  "main": "cjs/index.js",
@@ -498,14 +498,14 @@ public struct BlueI18n: @unchecked Sendable {
498
498
  /// Clears the value of `dfuCompletedTitle`. Subsequent reads from it will return its default value.
499
499
  public mutating func clearDfuCompletedTitle() {_uniqueStorage()._dfuCompletedTitle = nil}
500
500
 
501
- public var dfuGetAuthenticationTokenTaskLabel: String {
502
- get {return _storage._dfuGetAuthenticationTokenTaskLabel ?? "Issue authentication token"}
503
- set {_uniqueStorage()._dfuGetAuthenticationTokenTaskLabel = newValue}
501
+ public var getAuthenticationTokenTaskLabel: String {
502
+ get {return _storage._getAuthenticationTokenTaskLabel ?? "Issue authentication token"}
503
+ set {_uniqueStorage()._getAuthenticationTokenTaskLabel = newValue}
504
504
  }
505
- /// Returns true if `dfuGetAuthenticationTokenTaskLabel` has been explicitly set.
506
- public var hasDfuGetAuthenticationTokenTaskLabel: Bool {return _storage._dfuGetAuthenticationTokenTaskLabel != nil}
507
- /// Clears the value of `dfuGetAuthenticationTokenTaskLabel`. Subsequent reads from it will return its default value.
508
- public mutating func clearDfuGetAuthenticationTokenTaskLabel() {_uniqueStorage()._dfuGetAuthenticationTokenTaskLabel = nil}
505
+ /// Returns true if `getAuthenticationTokenTaskLabel` has been explicitly set.
506
+ public var hasGetAuthenticationTokenTaskLabel: Bool {return _storage._getAuthenticationTokenTaskLabel != nil}
507
+ /// Clears the value of `getAuthenticationTokenTaskLabel`. Subsequent reads from it will return its default value.
508
+ public mutating func clearGetAuthenticationTokenTaskLabel() {_uniqueStorage()._getAuthenticationTokenTaskLabel = nil}
509
509
 
510
510
  public var dfuCheckLatestFwlabel: String {
511
511
  get {return _storage._dfuCheckLatestFwlabel ?? "Check latest firmware"}
@@ -561,14 +561,14 @@ public struct BlueI18n: @unchecked Sendable {
561
561
  /// Clears the value of `dfuUpdateFwlabel`. Subsequent reads from it will return its default value.
562
562
  public mutating func clearDfuUpdateFwlabel() {_uniqueStorage()._dfuUpdateFwlabel = nil}
563
563
 
564
- public var dfuWaitForDeviceToRestartTaskLabel: String {
565
- get {return _storage._dfuWaitForDeviceToRestartTaskLabel ?? "Wait for device to restart"}
566
- set {_uniqueStorage()._dfuWaitForDeviceToRestartTaskLabel = newValue}
564
+ public var waitForDeviceToRestartTaskLabel: String {
565
+ get {return _storage._waitForDeviceToRestartTaskLabel ?? "Wait for device to restart"}
566
+ set {_uniqueStorage()._waitForDeviceToRestartTaskLabel = newValue}
567
567
  }
568
- /// Returns true if `dfuWaitForDeviceToRestartTaskLabel` has been explicitly set.
569
- public var hasDfuWaitForDeviceToRestartTaskLabel: Bool {return _storage._dfuWaitForDeviceToRestartTaskLabel != nil}
570
- /// Clears the value of `dfuWaitForDeviceToRestartTaskLabel`. Subsequent reads from it will return its default value.
571
- public mutating func clearDfuWaitForDeviceToRestartTaskLabel() {_uniqueStorage()._dfuWaitForDeviceToRestartTaskLabel = nil}
568
+ /// Returns true if `waitForDeviceToRestartTaskLabel` has been explicitly set.
569
+ public var hasWaitForDeviceToRestartTaskLabel: Bool {return _storage._waitForDeviceToRestartTaskLabel != nil}
570
+ /// Clears the value of `waitForDeviceToRestartTaskLabel`. Subsequent reads from it will return its default value.
571
+ public mutating func clearWaitForDeviceToRestartTaskLabel() {_uniqueStorage()._waitForDeviceToRestartTaskLabel = nil}
572
572
 
573
573
  public var accessTypeDefaultTime: String {
574
574
  get {return _storage._accessTypeDefaultTime ?? "Default"}
@@ -642,6 +642,60 @@ public struct BlueI18n: @unchecked Sendable {
642
642
  /// Clears the value of `provisioningDone`. Subsequent reads from it will return its default value.
643
643
  public mutating func clearProvisioningDone() {_uniqueStorage()._provisioningDone = nil}
644
644
 
645
+ public var checkCurrentAvr: String {
646
+ get {return _storage._checkCurrentAvr ?? "Check current AVR"}
647
+ set {_uniqueStorage()._checkCurrentAvr = newValue}
648
+ }
649
+ /// Returns true if `checkCurrentAvr` has been explicitly set.
650
+ public var hasCheckCurrentAvr: Bool {return _storage._checkCurrentAvr != nil}
651
+ /// Clears the value of `checkCurrentAvr`. Subsequent reads from it will return its default value.
652
+ public mutating func clearCheckCurrentAvr() {_uniqueStorage()._checkCurrentAvr = nil}
653
+
654
+ public var checkIfAvrupdateNedded: String {
655
+ get {return _storage._checkIfAvrupdateNedded ?? "Check If AVR needs to update"}
656
+ set {_uniqueStorage()._checkIfAvrupdateNedded = newValue}
657
+ }
658
+ /// Returns true if `checkIfAvrupdateNedded` has been explicitly set.
659
+ public var hasCheckIfAvrupdateNedded: Bool {return _storage._checkIfAvrupdateNedded != nil}
660
+ /// Clears the value of `checkIfAvrupdateNedded`. Subsequent reads from it will return its default value.
661
+ public mutating func clearCheckIfAvrupdateNedded() {_uniqueStorage()._checkIfAvrupdateNedded = nil}
662
+
663
+ public var downloadAvr: String {
664
+ get {return _storage._downloadAvr ?? "Download AVR"}
665
+ set {_uniqueStorage()._downloadAvr = newValue}
666
+ }
667
+ /// Returns true if `downloadAvr` has been explicitly set.
668
+ public var hasDownloadAvr: Bool {return _storage._downloadAvr != nil}
669
+ /// Clears the value of `downloadAvr`. Subsequent reads from it will return its default value.
670
+ public mutating func clearDownloadAvr() {_uniqueStorage()._downloadAvr = nil}
671
+
672
+ public var downloadingAvr: String {
673
+ get {return _storage._downloadingAvr ?? "Downloading AVR %d.%d.%d"}
674
+ set {_uniqueStorage()._downloadingAvr = newValue}
675
+ }
676
+ /// Returns true if `downloadingAvr` has been explicitly set.
677
+ public var hasDownloadingAvr: Bool {return _storage._downloadingAvr != nil}
678
+ /// Clears the value of `downloadingAvr`. Subsequent reads from it will return its default value.
679
+ public mutating func clearDownloadingAvr() {_uniqueStorage()._downloadingAvr = nil}
680
+
681
+ public var updateAvr: String {
682
+ get {return _storage._updateAvr ?? "Update AVR"}
683
+ set {_uniqueStorage()._updateAvr = newValue}
684
+ }
685
+ /// Returns true if `updateAvr` has been explicitly set.
686
+ public var hasUpdateAvr: Bool {return _storage._updateAvr != nil}
687
+ /// Clears the value of `updateAvr`. Subsequent reads from it will return its default value.
688
+ public mutating func clearUpdateAvr() {_uniqueStorage()._updateAvr = nil}
689
+
690
+ public var avrIsAlreadyUpToDate: String {
691
+ get {return _storage._avrIsAlreadyUpToDate ?? "AVR is already up to date"}
692
+ set {_uniqueStorage()._avrIsAlreadyUpToDate = newValue}
693
+ }
694
+ /// Returns true if `avrIsAlreadyUpToDate` has been explicitly set.
695
+ public var hasAvrIsAlreadyUpToDate: Bool {return _storage._avrIsAlreadyUpToDate != nil}
696
+ /// Clears the value of `avrIsAlreadyUpToDate`. Subsequent reads from it will return its default value.
697
+ public mutating func clearAvrIsAlreadyUpToDate() {_uniqueStorage()._avrIsAlreadyUpToDate = nil}
698
+
645
699
  public var unknownFields = SwiftProtobuf.UnknownStorage()
646
700
 
647
701
  public init() {}
@@ -1781,14 +1835,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1781
1835
  42: .same(proto: "dfuFailedTitle"),
1782
1836
  43: .same(proto: "dfuCancellingTitle"),
1783
1837
  44: .same(proto: "dfuCompletedTitle"),
1784
- 45: .same(proto: "dfuGetAuthenticationTokenTaskLabel"),
1838
+ 45: .same(proto: "getAuthenticationTokenTaskLabel"),
1785
1839
  46: .same(proto: "dfuCheckLatestFWLabel"),
1786
1840
  47: .same(proto: "dfuDownloadLatestFWLabel"),
1787
1841
  48: .same(proto: "dfuPrepareUpdateLabel"),
1788
1842
  49: .same(proto: "dfuStartBootloaderLabel"),
1789
1843
  50: .same(proto: "dfuInitializationLabel"),
1790
1844
  51: .same(proto: "dfuUpdateFWLabel"),
1791
- 52: .same(proto: "dfuWaitForDeviceToRestartTaskLabel"),
1845
+ 52: .same(proto: "waitForDeviceToRestartTaskLabel"),
1792
1846
  53: .same(proto: "accessTypeDefaultTime"),
1793
1847
  54: .same(proto: "accessTypeExtendedTime"),
1794
1848
  55: .same(proto: "accessTypeToggle"),
@@ -1797,6 +1851,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1797
1851
  58: .same(proto: "openViaOssSoSelectAccessTypeTitle"),
1798
1852
  59: .same(proto: "openViaOssSoSelectAccessTypeMessage"),
1799
1853
  60: .same(proto: "provisioningDone"),
1854
+ 62: .same(proto: "checkCurrentAVR"),
1855
+ 63: .same(proto: "checkIfAVRUpdateNedded"),
1856
+ 64: .same(proto: "downloadAVR"),
1857
+ 65: .same(proto: "downloadingAVR"),
1858
+ 66: .same(proto: "updateAVR"),
1859
+ 67: .same(proto: "avrIsAlreadyUpToDate"),
1800
1860
  ]
1801
1861
 
1802
1862
  fileprivate class _StorageClass {
@@ -1850,14 +1910,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1850
1910
  var _dfuFailedTitle: String? = nil
1851
1911
  var _dfuCancellingTitle: String? = nil
1852
1912
  var _dfuCompletedTitle: String? = nil
1853
- var _dfuGetAuthenticationTokenTaskLabel: String? = nil
1913
+ var _getAuthenticationTokenTaskLabel: String? = nil
1854
1914
  var _dfuCheckLatestFwlabel: String? = nil
1855
1915
  var _dfuDownloadLatestFwlabel: String? = nil
1856
1916
  var _dfuPrepareUpdateLabel: String? = nil
1857
1917
  var _dfuStartBootloaderLabel: String? = nil
1858
1918
  var _dfuInitializationLabel: String? = nil
1859
1919
  var _dfuUpdateFwlabel: String? = nil
1860
- var _dfuWaitForDeviceToRestartTaskLabel: String? = nil
1920
+ var _waitForDeviceToRestartTaskLabel: String? = nil
1861
1921
  var _accessTypeDefaultTime: String? = nil
1862
1922
  var _accessTypeExtendedTime: String? = nil
1863
1923
  var _accessTypeToggle: String? = nil
@@ -1866,6 +1926,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1866
1926
  var _openViaOssSoSelectAccessTypeTitle: String? = nil
1867
1927
  var _openViaOssSoSelectAccessTypeMessage: String? = nil
1868
1928
  var _provisioningDone: String? = nil
1929
+ var _checkCurrentAvr: String? = nil
1930
+ var _checkIfAvrupdateNedded: String? = nil
1931
+ var _downloadAvr: String? = nil
1932
+ var _downloadingAvr: String? = nil
1933
+ var _updateAvr: String? = nil
1934
+ var _avrIsAlreadyUpToDate: String? = nil
1869
1935
 
1870
1936
  // This property is used as the initial default value for new instances of the type.
1871
1937
  // The type itself is protecting the reference to its storage via CoW semantics.
@@ -1926,14 +1992,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1926
1992
  _dfuFailedTitle = source._dfuFailedTitle
1927
1993
  _dfuCancellingTitle = source._dfuCancellingTitle
1928
1994
  _dfuCompletedTitle = source._dfuCompletedTitle
1929
- _dfuGetAuthenticationTokenTaskLabel = source._dfuGetAuthenticationTokenTaskLabel
1995
+ _getAuthenticationTokenTaskLabel = source._getAuthenticationTokenTaskLabel
1930
1996
  _dfuCheckLatestFwlabel = source._dfuCheckLatestFwlabel
1931
1997
  _dfuDownloadLatestFwlabel = source._dfuDownloadLatestFwlabel
1932
1998
  _dfuPrepareUpdateLabel = source._dfuPrepareUpdateLabel
1933
1999
  _dfuStartBootloaderLabel = source._dfuStartBootloaderLabel
1934
2000
  _dfuInitializationLabel = source._dfuInitializationLabel
1935
2001
  _dfuUpdateFwlabel = source._dfuUpdateFwlabel
1936
- _dfuWaitForDeviceToRestartTaskLabel = source._dfuWaitForDeviceToRestartTaskLabel
2002
+ _waitForDeviceToRestartTaskLabel = source._waitForDeviceToRestartTaskLabel
1937
2003
  _accessTypeDefaultTime = source._accessTypeDefaultTime
1938
2004
  _accessTypeExtendedTime = source._accessTypeExtendedTime
1939
2005
  _accessTypeToggle = source._accessTypeToggle
@@ -1942,6 +2008,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1942
2008
  _openViaOssSoSelectAccessTypeTitle = source._openViaOssSoSelectAccessTypeTitle
1943
2009
  _openViaOssSoSelectAccessTypeMessage = source._openViaOssSoSelectAccessTypeMessage
1944
2010
  _provisioningDone = source._provisioningDone
2011
+ _checkCurrentAvr = source._checkCurrentAvr
2012
+ _checkIfAvrupdateNedded = source._checkIfAvrupdateNedded
2013
+ _downloadAvr = source._downloadAvr
2014
+ _downloadingAvr = source._downloadingAvr
2015
+ _updateAvr = source._updateAvr
2016
+ _avrIsAlreadyUpToDate = source._avrIsAlreadyUpToDate
1945
2017
  }
1946
2018
  }
1947
2019
 
@@ -2004,14 +2076,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2004
2076
  if _storage._dfuFailedTitle == nil {return false}
2005
2077
  if _storage._dfuCancellingTitle == nil {return false}
2006
2078
  if _storage._dfuCompletedTitle == nil {return false}
2007
- if _storage._dfuGetAuthenticationTokenTaskLabel == nil {return false}
2079
+ if _storage._getAuthenticationTokenTaskLabel == nil {return false}
2008
2080
  if _storage._dfuCheckLatestFwlabel == nil {return false}
2009
2081
  if _storage._dfuDownloadLatestFwlabel == nil {return false}
2010
2082
  if _storage._dfuPrepareUpdateLabel == nil {return false}
2011
2083
  if _storage._dfuStartBootloaderLabel == nil {return false}
2012
2084
  if _storage._dfuInitializationLabel == nil {return false}
2013
2085
  if _storage._dfuUpdateFwlabel == nil {return false}
2014
- if _storage._dfuWaitForDeviceToRestartTaskLabel == nil {return false}
2086
+ if _storage._waitForDeviceToRestartTaskLabel == nil {return false}
2015
2087
  if _storage._accessTypeDefaultTime == nil {return false}
2016
2088
  if _storage._accessTypeExtendedTime == nil {return false}
2017
2089
  if _storage._accessTypeToggle == nil {return false}
@@ -2020,6 +2092,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2020
2092
  if _storage._openViaOssSoSelectAccessTypeTitle == nil {return false}
2021
2093
  if _storage._openViaOssSoSelectAccessTypeMessage == nil {return false}
2022
2094
  if _storage._provisioningDone == nil {return false}
2095
+ if _storage._checkCurrentAvr == nil {return false}
2096
+ if _storage._checkIfAvrupdateNedded == nil {return false}
2097
+ if _storage._downloadAvr == nil {return false}
2098
+ if _storage._downloadingAvr == nil {return false}
2099
+ if _storage._updateAvr == nil {return false}
2100
+ if _storage._avrIsAlreadyUpToDate == nil {return false}
2023
2101
  return true
2024
2102
  }
2025
2103
  }
@@ -2076,14 +2154,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2076
2154
  case 42: try { try decoder.decodeSingularStringField(value: &_storage._dfuFailedTitle) }()
2077
2155
  case 43: try { try decoder.decodeSingularStringField(value: &_storage._dfuCancellingTitle) }()
2078
2156
  case 44: try { try decoder.decodeSingularStringField(value: &_storage._dfuCompletedTitle) }()
2079
- case 45: try { try decoder.decodeSingularStringField(value: &_storage._dfuGetAuthenticationTokenTaskLabel) }()
2157
+ case 45: try { try decoder.decodeSingularStringField(value: &_storage._getAuthenticationTokenTaskLabel) }()
2080
2158
  case 46: try { try decoder.decodeSingularStringField(value: &_storage._dfuCheckLatestFwlabel) }()
2081
2159
  case 47: try { try decoder.decodeSingularStringField(value: &_storage._dfuDownloadLatestFwlabel) }()
2082
2160
  case 48: try { try decoder.decodeSingularStringField(value: &_storage._dfuPrepareUpdateLabel) }()
2083
2161
  case 49: try { try decoder.decodeSingularStringField(value: &_storage._dfuStartBootloaderLabel) }()
2084
2162
  case 50: try { try decoder.decodeSingularStringField(value: &_storage._dfuInitializationLabel) }()
2085
2163
  case 51: try { try decoder.decodeSingularStringField(value: &_storage._dfuUpdateFwlabel) }()
2086
- case 52: try { try decoder.decodeSingularStringField(value: &_storage._dfuWaitForDeviceToRestartTaskLabel) }()
2164
+ case 52: try { try decoder.decodeSingularStringField(value: &_storage._waitForDeviceToRestartTaskLabel) }()
2087
2165
  case 53: try { try decoder.decodeSingularStringField(value: &_storage._accessTypeDefaultTime) }()
2088
2166
  case 54: try { try decoder.decodeSingularStringField(value: &_storage._accessTypeExtendedTime) }()
2089
2167
  case 55: try { try decoder.decodeSingularStringField(value: &_storage._accessTypeToggle) }()
@@ -2092,6 +2170,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2092
2170
  case 58: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssSoSelectAccessTypeTitle) }()
2093
2171
  case 59: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssSoSelectAccessTypeMessage) }()
2094
2172
  case 60: try { try decoder.decodeSingularStringField(value: &_storage._provisioningDone) }()
2173
+ case 62: try { try decoder.decodeSingularStringField(value: &_storage._checkCurrentAvr) }()
2174
+ case 63: try { try decoder.decodeSingularStringField(value: &_storage._checkIfAvrupdateNedded) }()
2175
+ case 64: try { try decoder.decodeSingularStringField(value: &_storage._downloadAvr) }()
2176
+ case 65: try { try decoder.decodeSingularStringField(value: &_storage._downloadingAvr) }()
2177
+ case 66: try { try decoder.decodeSingularStringField(value: &_storage._updateAvr) }()
2178
+ case 67: try { try decoder.decodeSingularStringField(value: &_storage._avrIsAlreadyUpToDate) }()
2095
2179
  case 100: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderConnected) }()
2096
2180
  case 101: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderDisconnected) }()
2097
2181
  case 102: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderSuccessReadMessage) }()
@@ -2242,7 +2326,7 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2242
2326
  try { if let v = _storage._dfuCompletedTitle {
2243
2327
  try visitor.visitSingularStringField(value: v, fieldNumber: 44)
2244
2328
  } }()
2245
- try { if let v = _storage._dfuGetAuthenticationTokenTaskLabel {
2329
+ try { if let v = _storage._getAuthenticationTokenTaskLabel {
2246
2330
  try visitor.visitSingularStringField(value: v, fieldNumber: 45)
2247
2331
  } }()
2248
2332
  try { if let v = _storage._dfuCheckLatestFwlabel {
@@ -2263,7 +2347,7 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2263
2347
  try { if let v = _storage._dfuUpdateFwlabel {
2264
2348
  try visitor.visitSingularStringField(value: v, fieldNumber: 51)
2265
2349
  } }()
2266
- try { if let v = _storage._dfuWaitForDeviceToRestartTaskLabel {
2350
+ try { if let v = _storage._waitForDeviceToRestartTaskLabel {
2267
2351
  try visitor.visitSingularStringField(value: v, fieldNumber: 52)
2268
2352
  } }()
2269
2353
  try { if let v = _storage._accessTypeDefaultTime {
@@ -2290,6 +2374,24 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2290
2374
  try { if let v = _storage._provisioningDone {
2291
2375
  try visitor.visitSingularStringField(value: v, fieldNumber: 60)
2292
2376
  } }()
2377
+ try { if let v = _storage._checkCurrentAvr {
2378
+ try visitor.visitSingularStringField(value: v, fieldNumber: 62)
2379
+ } }()
2380
+ try { if let v = _storage._checkIfAvrupdateNedded {
2381
+ try visitor.visitSingularStringField(value: v, fieldNumber: 63)
2382
+ } }()
2383
+ try { if let v = _storage._downloadAvr {
2384
+ try visitor.visitSingularStringField(value: v, fieldNumber: 64)
2385
+ } }()
2386
+ try { if let v = _storage._downloadingAvr {
2387
+ try visitor.visitSingularStringField(value: v, fieldNumber: 65)
2388
+ } }()
2389
+ try { if let v = _storage._updateAvr {
2390
+ try visitor.visitSingularStringField(value: v, fieldNumber: 66)
2391
+ } }()
2392
+ try { if let v = _storage._avrIsAlreadyUpToDate {
2393
+ try visitor.visitSingularStringField(value: v, fieldNumber: 67)
2394
+ } }()
2293
2395
  try { if let v = _storage._nfcTransponderConnected {
2294
2396
  try visitor.visitSingularStringField(value: v, fieldNumber: 100)
2295
2397
  } }()
@@ -2367,14 +2469,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2367
2469
  if _storage._dfuFailedTitle != rhs_storage._dfuFailedTitle {return false}
2368
2470
  if _storage._dfuCancellingTitle != rhs_storage._dfuCancellingTitle {return false}
2369
2471
  if _storage._dfuCompletedTitle != rhs_storage._dfuCompletedTitle {return false}
2370
- if _storage._dfuGetAuthenticationTokenTaskLabel != rhs_storage._dfuGetAuthenticationTokenTaskLabel {return false}
2472
+ if _storage._getAuthenticationTokenTaskLabel != rhs_storage._getAuthenticationTokenTaskLabel {return false}
2371
2473
  if _storage._dfuCheckLatestFwlabel != rhs_storage._dfuCheckLatestFwlabel {return false}
2372
2474
  if _storage._dfuDownloadLatestFwlabel != rhs_storage._dfuDownloadLatestFwlabel {return false}
2373
2475
  if _storage._dfuPrepareUpdateLabel != rhs_storage._dfuPrepareUpdateLabel {return false}
2374
2476
  if _storage._dfuStartBootloaderLabel != rhs_storage._dfuStartBootloaderLabel {return false}
2375
2477
  if _storage._dfuInitializationLabel != rhs_storage._dfuInitializationLabel {return false}
2376
2478
  if _storage._dfuUpdateFwlabel != rhs_storage._dfuUpdateFwlabel {return false}
2377
- if _storage._dfuWaitForDeviceToRestartTaskLabel != rhs_storage._dfuWaitForDeviceToRestartTaskLabel {return false}
2479
+ if _storage._waitForDeviceToRestartTaskLabel != rhs_storage._waitForDeviceToRestartTaskLabel {return false}
2378
2480
  if _storage._accessTypeDefaultTime != rhs_storage._accessTypeDefaultTime {return false}
2379
2481
  if _storage._accessTypeExtendedTime != rhs_storage._accessTypeExtendedTime {return false}
2380
2482
  if _storage._accessTypeToggle != rhs_storage._accessTypeToggle {return false}
@@ -2383,6 +2485,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
2383
2485
  if _storage._openViaOssSoSelectAccessTypeTitle != rhs_storage._openViaOssSoSelectAccessTypeTitle {return false}
2384
2486
  if _storage._openViaOssSoSelectAccessTypeMessage != rhs_storage._openViaOssSoSelectAccessTypeMessage {return false}
2385
2487
  if _storage._provisioningDone != rhs_storage._provisioningDone {return false}
2488
+ if _storage._checkCurrentAvr != rhs_storage._checkCurrentAvr {return false}
2489
+ if _storage._checkIfAvrupdateNedded != rhs_storage._checkIfAvrupdateNedded {return false}
2490
+ if _storage._downloadAvr != rhs_storage._downloadAvr {return false}
2491
+ if _storage._downloadingAvr != rhs_storage._downloadingAvr {return false}
2492
+ if _storage._updateAvr != rhs_storage._updateAvr {return false}
2493
+ if _storage._avrIsAlreadyUpToDate != rhs_storage._avrIsAlreadyUpToDate {return false}
2386
2494
  return true
2387
2495
  }
2388
2496
  if !storagesAreEqual {return false}