@blueid/access-react-native 0.105.0 → 0.107.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/frameworks/CBlueIDAccess.xcframework/Info.plist +8 -8
- package/frameworks/CBlueIDAccess.xcframework/ios-arm64/Headers/core/BlueCore.pb.h +7 -4
- package/frameworks/CBlueIDAccess.xcframework/ios-arm64/libCBlueIDAccess.a +0 -0
- package/frameworks/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/Headers/core/BlueCore.pb.h +7 -4
- package/frameworks/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/libCBlueIDAccess.a +0 -0
- package/frameworks/CBlueIDAccess.xcframework/macos-arm64_x86_64/Headers/core/BlueCore.pb.h +7 -4
- package/frameworks/CBlueIDAccess.xcframework/macos-arm64_x86_64/libCBlueIDAccess.a +0 -0
- package/ios/BlueIDAccessSDK/BlueAPIProtocol.swift +9 -2
- package/ios/BlueIDAccessSDK/BlueAccess.swift +1 -5
- package/ios/BlueIDAccessSDK/BlueCommands.swift +1 -1
- package/ios/BlueIDAccessSDK/BlueCore.pb.swift +17 -0
- package/ios/BlueIDAccessSDK/BlueDFU/BlueUpdateAccessDeviceFirmwareCommand.swift +33 -7
- package/ios/BlueIDAccessSDK/BlueModal/BlueStepProgressModalView.swift +32 -8
- package/ios/BlueIDAccessSDK/BlueSDK.pb.swift +65 -47
- package/ios/BlueIDAccessSDK/BlueSystem.pb.swift +51 -0
- package/ios/BlueIDAccessSDK/BlueSystem.swift +46 -27
- package/ios/BlueIDAccessSDK/BlueTaskRunner.swift +8 -2
- package/lib/commonjs/BlueCore_pb.js +5 -0
- package/lib/commonjs/BlueCore_pb.js.map +1 -1
- package/lib/commonjs/BlueSDK_pb.js +19 -13
- package/lib/commonjs/BlueSDK_pb.js.map +1 -1
- package/lib/commonjs/BlueSystem_pb.js +18 -0
- package/lib/commonjs/BlueSystem_pb.js.map +1 -1
- package/lib/module/BlueCore_pb.d.js.map +1 -1
- package/lib/module/BlueCore_pb.js +5 -0
- package/lib/module/BlueCore_pb.js.map +1 -1
- package/lib/module/BlueSDK_pb.d.js.map +1 -1
- package/lib/module/BlueSDK_pb.js +19 -13
- package/lib/module/BlueSDK_pb.js.map +1 -1
- package/lib/module/BlueSystem_pb.d.js.map +1 -1
- package/lib/module/BlueSystem_pb.js +18 -0
- package/lib/module/BlueSystem_pb.js.map +1 -1
- package/lib/typescript/src/BlueCore_pb.d.ts.map +1 -1
- package/lib/typescript/src/BlueSDK_pb.d.ts.map +1 -1
- package/lib/typescript/src/BlueSystem_pb.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/BlueCore_pb.d.ts +5 -0
- package/src/BlueCore_pb.js +1 -0
- package/src/BlueSDK_pb.d.ts +18 -13
- package/src/BlueSDK_pb.js +13 -12
- package/src/BlueSystem_pb.d.ts +15 -0
- package/src/BlueSystem_pb.js +3 -0
package/src/BlueSDK_pb.d.ts
CHANGED
|
@@ -222,62 +222,67 @@ export declare class BlueI18n extends Message<BlueI18n> {
|
|
|
222
222
|
syncDevicePushSystemStatusTaskLabel: string;
|
|
223
223
|
|
|
224
224
|
/**
|
|
225
|
-
* @generated from field: required string
|
|
225
|
+
* @generated from field: required string syncDeviceCheckLatestFWLabel = 35 [default = "Check latest firmware"];
|
|
226
|
+
*/
|
|
227
|
+
syncDeviceCheckLatestFWLabel: string;
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* @generated from field: required string dfuInProgressTitle = 36 [default = "Update in Progress"];
|
|
226
231
|
*/
|
|
227
232
|
dfuInProgressTitle: string;
|
|
228
233
|
|
|
229
234
|
/**
|
|
230
|
-
* @generated from field: required string dfuFailedTitle =
|
|
235
|
+
* @generated from field: required string dfuFailedTitle = 37 [default = "Update has failed"];
|
|
231
236
|
*/
|
|
232
237
|
dfuFailedTitle: string;
|
|
233
238
|
|
|
234
239
|
/**
|
|
235
|
-
* @generated from field: required string dfuCancellingTitle =
|
|
240
|
+
* @generated from field: required string dfuCancellingTitle = 38 [default = "Cancelling..."];
|
|
236
241
|
*/
|
|
237
242
|
dfuCancellingTitle: string;
|
|
238
243
|
|
|
239
244
|
/**
|
|
240
|
-
* @generated from field: required string dfuCompletedTitle =
|
|
245
|
+
* @generated from field: required string dfuCompletedTitle = 39 [default = "Update has been completed"];
|
|
241
246
|
*/
|
|
242
247
|
dfuCompletedTitle: string;
|
|
243
248
|
|
|
244
249
|
/**
|
|
245
|
-
* @generated from field: required string dfuGetAuthenticationTokenTaskLabel =
|
|
250
|
+
* @generated from field: required string dfuGetAuthenticationTokenTaskLabel = 40 [default = "Issue authentication token"];
|
|
246
251
|
*/
|
|
247
252
|
dfuGetAuthenticationTokenTaskLabel: string;
|
|
248
253
|
|
|
249
254
|
/**
|
|
250
|
-
* @generated from field: required string dfuCheckLatestFWLabel =
|
|
255
|
+
* @generated from field: required string dfuCheckLatestFWLabel = 41 [default = "Check latest firmware"];
|
|
251
256
|
*/
|
|
252
257
|
dfuCheckLatestFWLabel: string;
|
|
253
258
|
|
|
254
259
|
/**
|
|
255
|
-
* @generated from field: required string dfuDownloadLatestFWLabel =
|
|
260
|
+
* @generated from field: required string dfuDownloadLatestFWLabel = 42 [default = "Download latest firmware"];
|
|
256
261
|
*/
|
|
257
262
|
dfuDownloadLatestFWLabel: string;
|
|
258
263
|
|
|
259
264
|
/**
|
|
260
|
-
* @generated from field: required string dfuPrepareUpdateLabel =
|
|
265
|
+
* @generated from field: required string dfuPrepareUpdateLabel = 43 [default = "Prepare Update"];
|
|
261
266
|
*/
|
|
262
267
|
dfuPrepareUpdateLabel: string;
|
|
263
268
|
|
|
264
269
|
/**
|
|
265
|
-
* @generated from field: required string dfuStartBootloaderLabel =
|
|
270
|
+
* @generated from field: required string dfuStartBootloaderLabel = 44 [default = "Start Bootloader"];
|
|
266
271
|
*/
|
|
267
272
|
dfuStartBootloaderLabel: string;
|
|
268
273
|
|
|
269
274
|
/**
|
|
270
|
-
* @generated from field: required string
|
|
275
|
+
* @generated from field: required string dfuInitializationLabel = 45 [default = "DFU initialization"];
|
|
271
276
|
*/
|
|
272
|
-
|
|
277
|
+
dfuInitializationLabel: string;
|
|
273
278
|
|
|
274
279
|
/**
|
|
275
|
-
* @generated from field: required string dfuUpdateFWLabel =
|
|
280
|
+
* @generated from field: required string dfuUpdateFWLabel = 46 [default = "Update firmware"];
|
|
276
281
|
*/
|
|
277
282
|
dfuUpdateFWLabel: string;
|
|
278
283
|
|
|
279
284
|
/**
|
|
280
|
-
* @generated from field: required string dfuWaitForDeviceToRestartTaskLabel =
|
|
285
|
+
* @generated from field: required string dfuWaitForDeviceToRestartTaskLabel = 47 [default = "Wait for device to restart"];
|
|
281
286
|
*/
|
|
282
287
|
dfuWaitForDeviceToRestartTaskLabel: string;
|
|
283
288
|
|
package/src/BlueSDK_pb.js
CHANGED
|
@@ -70,18 +70,19 @@ export const BlueI18n = proto2.makeMessageType(
|
|
|
70
70
|
{ no: 32, name: "syncDeviceDeployBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Deploy blacklist entries" },
|
|
71
71
|
{ no: 33, name: "syncDeviceRetrieveSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve system status" },
|
|
72
72
|
{ no: 34, name: "syncDevicePushSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system status" },
|
|
73
|
-
{ no: 35, name: "
|
|
74
|
-
{ no: 36, name: "
|
|
75
|
-
{ no: 37, name: "
|
|
76
|
-
{ no: 38, name: "
|
|
77
|
-
{ no: 39, name: "
|
|
78
|
-
{ no: 40, name: "
|
|
79
|
-
{ no: 41, name: "
|
|
80
|
-
{ no: 42, name: "
|
|
81
|
-
{ no: 43, name: "
|
|
82
|
-
{ no: 44, name: "
|
|
83
|
-
{ no: 45, name: "
|
|
84
|
-
{ no: 46, name: "
|
|
73
|
+
{ no: 35, name: "syncDeviceCheckLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check latest firmware" },
|
|
74
|
+
{ no: 36, name: "dfuInProgressTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update in Progress" },
|
|
75
|
+
{ no: 37, name: "dfuFailedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update has failed" },
|
|
76
|
+
{ no: 38, name: "dfuCancellingTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancelling..." },
|
|
77
|
+
{ no: 39, name: "dfuCompletedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update has been completed" },
|
|
78
|
+
{ no: 40, name: "dfuGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
|
|
79
|
+
{ no: 41, name: "dfuCheckLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check latest firmware" },
|
|
80
|
+
{ no: 42, name: "dfuDownloadLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Download latest firmware" },
|
|
81
|
+
{ no: 43, name: "dfuPrepareUpdateLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Prepare Update" },
|
|
82
|
+
{ no: 44, name: "dfuStartBootloaderLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Start Bootloader" },
|
|
83
|
+
{ no: 45, name: "dfuInitializationLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "DFU initialization" },
|
|
84
|
+
{ no: 46, name: "dfuUpdateFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update firmware" },
|
|
85
|
+
{ no: 47, name: "dfuWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
|
|
85
86
|
],
|
|
86
87
|
);
|
|
87
88
|
|
package/src/BlueSystem_pb.d.ts
CHANGED
|
@@ -629,6 +629,21 @@ export declare class BlueSystemStatus extends Message<BlueSystemStatus> {
|
|
|
629
629
|
*/
|
|
630
630
|
lock?: BlueLockStatus;
|
|
631
631
|
|
|
632
|
+
/**
|
|
633
|
+
* @generated from field: optional uint32 applicationVersionTest = 10;
|
|
634
|
+
*/
|
|
635
|
+
applicationVersionTest?: number;
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* @generated from field: optional bool newFirmwareVersionAvailable = 11;
|
|
639
|
+
*/
|
|
640
|
+
newFirmwareVersionAvailable?: boolean;
|
|
641
|
+
|
|
642
|
+
/**
|
|
643
|
+
* @generated from field: optional bool newTestFirmwareVersionAvailable = 12;
|
|
644
|
+
*/
|
|
645
|
+
newTestFirmwareVersionAvailable?: boolean;
|
|
646
|
+
|
|
632
647
|
constructor(data?: PartialMessage<BlueSystemStatus>);
|
|
633
648
|
|
|
634
649
|
static readonly runtime: typeof proto2;
|
package/src/BlueSystem_pb.js
CHANGED
|
@@ -181,6 +181,9 @@ export const BlueSystemStatus = proto2.makeMessageType(
|
|
|
181
181
|
{ no: 7, name: "localTime", kind: "message", T: BlueLocalTimestamp },
|
|
182
182
|
{ no: 8, name: "settings", kind: "message", T: BlueSystemSettings },
|
|
183
183
|
{ no: 9, name: "lock", kind: "message", T: BlueLockStatus, opt: true },
|
|
184
|
+
{ no: 10, name: "applicationVersionTest", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
185
|
+
{ no: 11, name: "newFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
186
|
+
{ no: 12, name: "newTestFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
184
187
|
],
|
|
185
188
|
);
|
|
186
189
|
|