@juhuu/sdk-ts 1.2.194 → 1.2.195
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/index.d.mts +11 -4
- package/dist/index.d.ts +11 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -432,6 +432,13 @@ type GraphNode = {
|
|
432
432
|
*/
|
433
433
|
type: "tapkey.unlock";
|
434
434
|
nodeIdArray: string[];
|
435
|
+
} | {
|
436
|
+
id: string;
|
437
|
+
/**
|
438
|
+
* uses the deviceId of the current device to unlock the EMZ lock via bluetooth
|
439
|
+
*/
|
440
|
+
type: "emz.unlock";
|
441
|
+
nodeIdArray: string[];
|
435
442
|
} | {
|
436
443
|
id: string;
|
437
444
|
type: "property.notify";
|
@@ -1395,10 +1402,10 @@ declare namespace JUHUU {
|
|
1395
1402
|
};
|
1396
1403
|
type Options = JUHUU.RequestOptions;
|
1397
1404
|
type Response = {
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
1405
|
+
emzTargetHardwareId: string;
|
1406
|
+
emzContractId: string;
|
1407
|
+
emzUserId: string;
|
1408
|
+
emzToken: string;
|
1402
1409
|
};
|
1403
1410
|
}
|
1404
1411
|
}
|
package/dist/index.d.ts
CHANGED
@@ -432,6 +432,13 @@ type GraphNode = {
|
|
432
432
|
*/
|
433
433
|
type: "tapkey.unlock";
|
434
434
|
nodeIdArray: string[];
|
435
|
+
} | {
|
436
|
+
id: string;
|
437
|
+
/**
|
438
|
+
* uses the deviceId of the current device to unlock the EMZ lock via bluetooth
|
439
|
+
*/
|
440
|
+
type: "emz.unlock";
|
441
|
+
nodeIdArray: string[];
|
435
442
|
} | {
|
436
443
|
id: string;
|
437
444
|
type: "property.notify";
|
@@ -1395,10 +1402,10 @@ declare namespace JUHUU {
|
|
1395
1402
|
};
|
1396
1403
|
type Options = JUHUU.RequestOptions;
|
1397
1404
|
type Response = {
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
1405
|
+
emzTargetHardwareId: string;
|
1406
|
+
emzContractId: string;
|
1407
|
+
emzUserId: string;
|
1408
|
+
emzToken: string;
|
1402
1409
|
};
|
1403
1410
|
}
|
1404
1411
|
}
|