@blueid/access-capacitor 1.29.0 → 1.32.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/dist/esm/BlueCore_pb.d.ts +13 -0
- package/dist/esm/BlueCore_pb.js +2 -0
- package/dist/esm/BlueCore_pb.js.map +1 -1
- package/dist/esm/BlueSDK_pb.d.ts +54 -34
- package/dist/esm/BlueSDK_pb.js +39 -34
- package/dist/esm/BlueSDK_pb.js.map +1 -1
- package/dist/plugin.cjs.js +41 -34
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +41 -34
- package/dist/plugin.js.map +1 -1
- package/package.json +1 -1
- package/ios/Plugin/BlueIDAccessSDK.swift +0 -1
|
@@ -1103,6 +1103,13 @@ export declare class BlueBleManufacturerInfo extends Message<BlueBleManufacturer
|
|
|
1103
1103
|
* @generated from field: required bool isFactory = 5;
|
|
1104
1104
|
*/
|
|
1105
1105
|
isFactory?: boolean;
|
|
1106
|
+
/**
|
|
1107
|
+
* Additional hardware state depends on device.
|
|
1108
|
+
* For locks for example this would contain the BlueLockState.
|
|
1109
|
+
*
|
|
1110
|
+
* @generated from field: required uint32 hardwareState = 6 [default = 0];
|
|
1111
|
+
*/
|
|
1112
|
+
hardwareState?: number;
|
|
1106
1113
|
constructor(data?: PartialMessage<BlueBleManufacturerInfo>);
|
|
1107
1114
|
static readonly runtime: typeof proto2;
|
|
1108
1115
|
static readonly typeName = "BlueBleManufacturerInfo";
|
|
@@ -1359,6 +1366,12 @@ export declare class BlueOssAccessResult extends Message<BlueOssAccessResult> {
|
|
|
1359
1366
|
* @generated from field: required bool scheduleMissmatch = 5;
|
|
1360
1367
|
*/
|
|
1361
1368
|
scheduleMissmatch?: boolean;
|
|
1369
|
+
/**
|
|
1370
|
+
* Additional info about how long the device will remain open (in seconds) if access was granted
|
|
1371
|
+
*
|
|
1372
|
+
* @generated from field: required uint32 accessOpenTime = 6 [default = 0];
|
|
1373
|
+
*/
|
|
1374
|
+
accessOpenTime?: number;
|
|
1362
1375
|
constructor(data?: PartialMessage<BlueOssAccessResult>);
|
|
1363
1376
|
static readonly runtime: typeof proto2;
|
|
1364
1377
|
static readonly typeName = "BlueOssAccessResult";
|
package/dist/esm/BlueCore_pb.js
CHANGED
|
@@ -1366,6 +1366,7 @@ BlueBleManufacturerInfo.fields = proto2.util.newFieldList(() => [
|
|
|
1366
1366
|
{ no: 3, name: "applicationVersion", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
1367
1367
|
{ no: 4, name: "localMidnightTimeEpoch", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
1368
1368
|
{ no: 5, name: "isFactory", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1369
|
+
{ no: 6, name: "hardwareState", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
1369
1370
|
]);
|
|
1370
1371
|
/**
|
|
1371
1372
|
* @generated from message BlueBleAdvertisementInfo
|
|
@@ -1598,6 +1599,7 @@ BlueOssAccessResult.fields = proto2.util.newFieldList(() => [
|
|
|
1598
1599
|
{ no: 3, name: "accessInfo", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
1599
1600
|
{ no: 4, name: "scheduleEndTime", kind: "message", T: BlueLocalTimestamp },
|
|
1600
1601
|
{ no: 5, name: "scheduleMissmatch", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1602
|
+
{ no: 6, name: "accessOpenTime", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
1601
1603
|
]);
|
|
1602
1604
|
/**
|
|
1603
1605
|
* @generated from message BlueOssAccessEventsResult
|