@blueid/access-proto 9.22.0 → 10.0.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 +23 -3
- package/cjs/BlueSDK_pb.d.ts +34 -4
- package/cjs/BlueSDK_pb.js +9 -3
- package/es/BlueSDK_pb.d.ts +34 -4
- package/es/BlueSDK_pb.js +8 -2
- package/nanopb/BlueSDK.pb.c +2 -2
- package/nanopb/BlueSDK.pb.h +26 -8
- package/package.json +1 -1
- package/swift/BlueCore.pb.swift +0 -4
- package/swift/BlueSDK.pb.swift +136 -40
- package/swift/BlueSystem.pb.swift +0 -8
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
|
|
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
|
|
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
|
package/cjs/BlueSDK_pb.d.ts
CHANGED
|
@@ -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
|
|
306
|
+
* @generated from field: required string getAuthenticationTokenTaskLabel = 45 [default = "Issue authentication token"];
|
|
307
307
|
*/
|
|
308
|
-
|
|
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
|
|
341
|
+
* @generated from field: required string waitForDeviceToRestartTaskLabel = 52 [default = "Wait for device to restart"];
|
|
342
342
|
*/
|
|
343
|
-
|
|
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: "
|
|
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: "
|
|
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(
|
package/es/BlueSDK_pb.d.ts
CHANGED
|
@@ -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
|
|
306
|
+
* @generated from field: required string getAuthenticationTokenTaskLabel = 45 [default = "Issue authentication token"];
|
|
307
307
|
*/
|
|
308
|
-
|
|
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
|
|
341
|
+
* @generated from field: required string waitForDeviceToRestartTaskLabel = 52 [default = "Wait for device to restart"];
|
|
342
342
|
*/
|
|
343
|
-
|
|
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: "
|
|
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: "
|
|
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
|
|
package/nanopb/BlueSDK.pb.c
CHANGED
|
@@ -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 <
|
|
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
|
|
93
|
+
setting PB_MAX_REQUIRED_FIELDS to 72 or more.
|
|
94
94
|
#endif
|
|
95
95
|
|
package/nanopb/BlueSDK.pb.h
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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,
|
|
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,
|
|
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
package/swift/BlueCore.pb.swift
CHANGED
|
@@ -6213,15 +6213,11 @@ extension BlueOssSoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageI
|
|
|
6213
6213
|
var _blacklist: BlueOssSoFileBlacklist? = nil
|
|
6214
6214
|
var _customerExtensions: BlueOssSoFileCustomerExtensions? = nil
|
|
6215
6215
|
|
|
6216
|
-
#if swift(>=5.10)
|
|
6217
6216
|
// This property is used as the initial default value for new instances of the type.
|
|
6218
6217
|
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
6219
6218
|
// This will force a copy to be made of this reference when the first mutation occurs;
|
|
6220
6219
|
// hence, it is safe to mark this as `nonisolated(unsafe)`.
|
|
6221
6220
|
static nonisolated(unsafe) let defaultInstance = _StorageClass()
|
|
6222
|
-
#else
|
|
6223
|
-
static let defaultInstance = _StorageClass()
|
|
6224
|
-
#endif
|
|
6225
6221
|
|
|
6226
6222
|
private init() {}
|
|
6227
6223
|
|
package/swift/BlueSDK.pb.swift
CHANGED
|
@@ -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
|
|
502
|
-
get {return _storage.
|
|
503
|
-
set {_uniqueStorage().
|
|
501
|
+
public var getAuthenticationTokenTaskLabel: String {
|
|
502
|
+
get {return _storage._getAuthenticationTokenTaskLabel ?? "Issue authentication token"}
|
|
503
|
+
set {_uniqueStorage()._getAuthenticationTokenTaskLabel = newValue}
|
|
504
504
|
}
|
|
505
|
-
/// Returns true if `
|
|
506
|
-
public var
|
|
507
|
-
/// Clears the value of `
|
|
508
|
-
public mutating func
|
|
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
|
|
565
|
-
get {return _storage.
|
|
566
|
-
set {_uniqueStorage().
|
|
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 `
|
|
569
|
-
public var
|
|
570
|
-
/// Clears the value of `
|
|
571
|
-
public mutating func
|
|
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: "
|
|
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: "
|
|
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
|
|
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
|
|
1920
|
+
var _waitForDeviceToRestartTaskLabel: String? = nil
|
|
1861
1921
|
var _accessTypeDefaultTime: String? = nil
|
|
1862
1922
|
var _accessTypeExtendedTime: String? = nil
|
|
1863
1923
|
var _accessTypeToggle: String? = nil
|
|
@@ -1866,16 +1926,18 @@ 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
|
-
#if swift(>=5.10)
|
|
1871
1936
|
// This property is used as the initial default value for new instances of the type.
|
|
1872
1937
|
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
1873
1938
|
// This will force a copy to be made of this reference when the first mutation occurs;
|
|
1874
1939
|
// hence, it is safe to mark this as `nonisolated(unsafe)`.
|
|
1875
1940
|
static nonisolated(unsafe) let defaultInstance = _StorageClass()
|
|
1876
|
-
#else
|
|
1877
|
-
static let defaultInstance = _StorageClass()
|
|
1878
|
-
#endif
|
|
1879
1941
|
|
|
1880
1942
|
private init() {}
|
|
1881
1943
|
|
|
@@ -1930,14 +1992,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1930
1992
|
_dfuFailedTitle = source._dfuFailedTitle
|
|
1931
1993
|
_dfuCancellingTitle = source._dfuCancellingTitle
|
|
1932
1994
|
_dfuCompletedTitle = source._dfuCompletedTitle
|
|
1933
|
-
|
|
1995
|
+
_getAuthenticationTokenTaskLabel = source._getAuthenticationTokenTaskLabel
|
|
1934
1996
|
_dfuCheckLatestFwlabel = source._dfuCheckLatestFwlabel
|
|
1935
1997
|
_dfuDownloadLatestFwlabel = source._dfuDownloadLatestFwlabel
|
|
1936
1998
|
_dfuPrepareUpdateLabel = source._dfuPrepareUpdateLabel
|
|
1937
1999
|
_dfuStartBootloaderLabel = source._dfuStartBootloaderLabel
|
|
1938
2000
|
_dfuInitializationLabel = source._dfuInitializationLabel
|
|
1939
2001
|
_dfuUpdateFwlabel = source._dfuUpdateFwlabel
|
|
1940
|
-
|
|
2002
|
+
_waitForDeviceToRestartTaskLabel = source._waitForDeviceToRestartTaskLabel
|
|
1941
2003
|
_accessTypeDefaultTime = source._accessTypeDefaultTime
|
|
1942
2004
|
_accessTypeExtendedTime = source._accessTypeExtendedTime
|
|
1943
2005
|
_accessTypeToggle = source._accessTypeToggle
|
|
@@ -1946,6 +2008,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1946
2008
|
_openViaOssSoSelectAccessTypeTitle = source._openViaOssSoSelectAccessTypeTitle
|
|
1947
2009
|
_openViaOssSoSelectAccessTypeMessage = source._openViaOssSoSelectAccessTypeMessage
|
|
1948
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
|
|
1949
2017
|
}
|
|
1950
2018
|
}
|
|
1951
2019
|
|
|
@@ -2008,14 +2076,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2008
2076
|
if _storage._dfuFailedTitle == nil {return false}
|
|
2009
2077
|
if _storage._dfuCancellingTitle == nil {return false}
|
|
2010
2078
|
if _storage._dfuCompletedTitle == nil {return false}
|
|
2011
|
-
if _storage.
|
|
2079
|
+
if _storage._getAuthenticationTokenTaskLabel == nil {return false}
|
|
2012
2080
|
if _storage._dfuCheckLatestFwlabel == nil {return false}
|
|
2013
2081
|
if _storage._dfuDownloadLatestFwlabel == nil {return false}
|
|
2014
2082
|
if _storage._dfuPrepareUpdateLabel == nil {return false}
|
|
2015
2083
|
if _storage._dfuStartBootloaderLabel == nil {return false}
|
|
2016
2084
|
if _storage._dfuInitializationLabel == nil {return false}
|
|
2017
2085
|
if _storage._dfuUpdateFwlabel == nil {return false}
|
|
2018
|
-
if _storage.
|
|
2086
|
+
if _storage._waitForDeviceToRestartTaskLabel == nil {return false}
|
|
2019
2087
|
if _storage._accessTypeDefaultTime == nil {return false}
|
|
2020
2088
|
if _storage._accessTypeExtendedTime == nil {return false}
|
|
2021
2089
|
if _storage._accessTypeToggle == nil {return false}
|
|
@@ -2024,6 +2092,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2024
2092
|
if _storage._openViaOssSoSelectAccessTypeTitle == nil {return false}
|
|
2025
2093
|
if _storage._openViaOssSoSelectAccessTypeMessage == nil {return false}
|
|
2026
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}
|
|
2027
2101
|
return true
|
|
2028
2102
|
}
|
|
2029
2103
|
}
|
|
@@ -2080,14 +2154,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2080
2154
|
case 42: try { try decoder.decodeSingularStringField(value: &_storage._dfuFailedTitle) }()
|
|
2081
2155
|
case 43: try { try decoder.decodeSingularStringField(value: &_storage._dfuCancellingTitle) }()
|
|
2082
2156
|
case 44: try { try decoder.decodeSingularStringField(value: &_storage._dfuCompletedTitle) }()
|
|
2083
|
-
case 45: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
2157
|
+
case 45: try { try decoder.decodeSingularStringField(value: &_storage._getAuthenticationTokenTaskLabel) }()
|
|
2084
2158
|
case 46: try { try decoder.decodeSingularStringField(value: &_storage._dfuCheckLatestFwlabel) }()
|
|
2085
2159
|
case 47: try { try decoder.decodeSingularStringField(value: &_storage._dfuDownloadLatestFwlabel) }()
|
|
2086
2160
|
case 48: try { try decoder.decodeSingularStringField(value: &_storage._dfuPrepareUpdateLabel) }()
|
|
2087
2161
|
case 49: try { try decoder.decodeSingularStringField(value: &_storage._dfuStartBootloaderLabel) }()
|
|
2088
2162
|
case 50: try { try decoder.decodeSingularStringField(value: &_storage._dfuInitializationLabel) }()
|
|
2089
2163
|
case 51: try { try decoder.decodeSingularStringField(value: &_storage._dfuUpdateFwlabel) }()
|
|
2090
|
-
case 52: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
2164
|
+
case 52: try { try decoder.decodeSingularStringField(value: &_storage._waitForDeviceToRestartTaskLabel) }()
|
|
2091
2165
|
case 53: try { try decoder.decodeSingularStringField(value: &_storage._accessTypeDefaultTime) }()
|
|
2092
2166
|
case 54: try { try decoder.decodeSingularStringField(value: &_storage._accessTypeExtendedTime) }()
|
|
2093
2167
|
case 55: try { try decoder.decodeSingularStringField(value: &_storage._accessTypeToggle) }()
|
|
@@ -2096,6 +2170,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2096
2170
|
case 58: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssSoSelectAccessTypeTitle) }()
|
|
2097
2171
|
case 59: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssSoSelectAccessTypeMessage) }()
|
|
2098
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) }()
|
|
2099
2179
|
case 100: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderConnected) }()
|
|
2100
2180
|
case 101: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderDisconnected) }()
|
|
2101
2181
|
case 102: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderSuccessReadMessage) }()
|
|
@@ -2246,7 +2326,7 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2246
2326
|
try { if let v = _storage._dfuCompletedTitle {
|
|
2247
2327
|
try visitor.visitSingularStringField(value: v, fieldNumber: 44)
|
|
2248
2328
|
} }()
|
|
2249
|
-
try { if let v = _storage.
|
|
2329
|
+
try { if let v = _storage._getAuthenticationTokenTaskLabel {
|
|
2250
2330
|
try visitor.visitSingularStringField(value: v, fieldNumber: 45)
|
|
2251
2331
|
} }()
|
|
2252
2332
|
try { if let v = _storage._dfuCheckLatestFwlabel {
|
|
@@ -2267,7 +2347,7 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2267
2347
|
try { if let v = _storage._dfuUpdateFwlabel {
|
|
2268
2348
|
try visitor.visitSingularStringField(value: v, fieldNumber: 51)
|
|
2269
2349
|
} }()
|
|
2270
|
-
try { if let v = _storage.
|
|
2350
|
+
try { if let v = _storage._waitForDeviceToRestartTaskLabel {
|
|
2271
2351
|
try visitor.visitSingularStringField(value: v, fieldNumber: 52)
|
|
2272
2352
|
} }()
|
|
2273
2353
|
try { if let v = _storage._accessTypeDefaultTime {
|
|
@@ -2294,6 +2374,24 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2294
2374
|
try { if let v = _storage._provisioningDone {
|
|
2295
2375
|
try visitor.visitSingularStringField(value: v, fieldNumber: 60)
|
|
2296
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
|
+
} }()
|
|
2297
2395
|
try { if let v = _storage._nfcTransponderConnected {
|
|
2298
2396
|
try visitor.visitSingularStringField(value: v, fieldNumber: 100)
|
|
2299
2397
|
} }()
|
|
@@ -2371,14 +2469,14 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2371
2469
|
if _storage._dfuFailedTitle != rhs_storage._dfuFailedTitle {return false}
|
|
2372
2470
|
if _storage._dfuCancellingTitle != rhs_storage._dfuCancellingTitle {return false}
|
|
2373
2471
|
if _storage._dfuCompletedTitle != rhs_storage._dfuCompletedTitle {return false}
|
|
2374
|
-
if _storage.
|
|
2472
|
+
if _storage._getAuthenticationTokenTaskLabel != rhs_storage._getAuthenticationTokenTaskLabel {return false}
|
|
2375
2473
|
if _storage._dfuCheckLatestFwlabel != rhs_storage._dfuCheckLatestFwlabel {return false}
|
|
2376
2474
|
if _storage._dfuDownloadLatestFwlabel != rhs_storage._dfuDownloadLatestFwlabel {return false}
|
|
2377
2475
|
if _storage._dfuPrepareUpdateLabel != rhs_storage._dfuPrepareUpdateLabel {return false}
|
|
2378
2476
|
if _storage._dfuStartBootloaderLabel != rhs_storage._dfuStartBootloaderLabel {return false}
|
|
2379
2477
|
if _storage._dfuInitializationLabel != rhs_storage._dfuInitializationLabel {return false}
|
|
2380
2478
|
if _storage._dfuUpdateFwlabel != rhs_storage._dfuUpdateFwlabel {return false}
|
|
2381
|
-
if _storage.
|
|
2479
|
+
if _storage._waitForDeviceToRestartTaskLabel != rhs_storage._waitForDeviceToRestartTaskLabel {return false}
|
|
2382
2480
|
if _storage._accessTypeDefaultTime != rhs_storage._accessTypeDefaultTime {return false}
|
|
2383
2481
|
if _storage._accessTypeExtendedTime != rhs_storage._accessTypeExtendedTime {return false}
|
|
2384
2482
|
if _storage._accessTypeToggle != rhs_storage._accessTypeToggle {return false}
|
|
@@ -2387,6 +2485,12 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2387
2485
|
if _storage._openViaOssSoSelectAccessTypeTitle != rhs_storage._openViaOssSoSelectAccessTypeTitle {return false}
|
|
2388
2486
|
if _storage._openViaOssSoSelectAccessTypeMessage != rhs_storage._openViaOssSoSelectAccessTypeMessage {return false}
|
|
2389
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}
|
|
2390
2494
|
return true
|
|
2391
2495
|
}
|
|
2392
2496
|
if !storagesAreEqual {return false}
|
|
@@ -2628,15 +2732,11 @@ extension BlueIdentity: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
|
|
|
2628
2732
|
var _privateKey: Data? = nil
|
|
2629
2733
|
var _status: String? = nil
|
|
2630
2734
|
|
|
2631
|
-
#if swift(>=5.10)
|
|
2632
2735
|
// This property is used as the initial default value for new instances of the type.
|
|
2633
2736
|
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
2634
2737
|
// This will force a copy to be made of this reference when the first mutation occurs;
|
|
2635
2738
|
// hence, it is safe to mark this as `nonisolated(unsafe)`.
|
|
2636
2739
|
static nonisolated(unsafe) let defaultInstance = _StorageClass()
|
|
2637
|
-
#else
|
|
2638
|
-
static let defaultInstance = _StorageClass()
|
|
2639
|
-
#endif
|
|
2640
2740
|
|
|
2641
2741
|
private init() {}
|
|
2642
2742
|
|
|
@@ -3599,15 +3699,11 @@ extension BlueAccessCredential: SwiftProtobuf.Message, SwiftProtobuf._MessageImp
|
|
|
3599
3699
|
var _organisation: String? = nil
|
|
3600
3700
|
var _organisationName: String? = nil
|
|
3601
3701
|
|
|
3602
|
-
#if swift(>=5.10)
|
|
3603
3702
|
// This property is used as the initial default value for new instances of the type.
|
|
3604
3703
|
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
3605
3704
|
// This will force a copy to be made of this reference when the first mutation occurs;
|
|
3606
3705
|
// hence, it is safe to mark this as `nonisolated(unsafe)`.
|
|
3607
3706
|
static nonisolated(unsafe) let defaultInstance = _StorageClass()
|
|
3608
|
-
#else
|
|
3609
|
-
static let defaultInstance = _StorageClass()
|
|
3610
|
-
#endif
|
|
3611
3707
|
|
|
3612
3708
|
private init() {}
|
|
3613
3709
|
|
|
@@ -1568,15 +1568,11 @@ extension BlueSystemConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
|
|
|
1568
1568
|
var _oss: BlueOssConfig? = nil
|
|
1569
1569
|
var _lock: BlueLockConfig? = nil
|
|
1570
1570
|
|
|
1571
|
-
#if swift(>=5.10)
|
|
1572
1571
|
// This property is used as the initial default value for new instances of the type.
|
|
1573
1572
|
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
1574
1573
|
// This will force a copy to be made of this reference when the first mutation occurs;
|
|
1575
1574
|
// hence, it is safe to mark this as `nonisolated(unsafe)`.
|
|
1576
1575
|
static nonisolated(unsafe) let defaultInstance = _StorageClass()
|
|
1577
|
-
#else
|
|
1578
|
-
static let defaultInstance = _StorageClass()
|
|
1579
|
-
#endif
|
|
1580
1576
|
|
|
1581
1577
|
private init() {}
|
|
1582
1578
|
|
|
@@ -1992,15 +1988,11 @@ extension BlueSystemStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme
|
|
|
1992
1988
|
var _lock: BlueLockStatus? = nil
|
|
1993
1989
|
var _applicationVersionTest: UInt32? = nil
|
|
1994
1990
|
|
|
1995
|
-
#if swift(>=5.10)
|
|
1996
1991
|
// This property is used as the initial default value for new instances of the type.
|
|
1997
1992
|
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
1998
1993
|
// This will force a copy to be made of this reference when the first mutation occurs;
|
|
1999
1994
|
// hence, it is safe to mark this as `nonisolated(unsafe)`.
|
|
2000
1995
|
static nonisolated(unsafe) let defaultInstance = _StorageClass()
|
|
2001
|
-
#else
|
|
2002
|
-
static let defaultInstance = _StorageClass()
|
|
2003
|
-
#endif
|
|
2004
1996
|
|
|
2005
1997
|
private init() {}
|
|
2006
1998
|
|