@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 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
- targetHardwareId: string;
1399
- contractId: string;
1400
- userId: string;
1401
- token: string;
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
- targetHardwareId: string;
1399
- contractId: string;
1400
- userId: string;
1401
- token: string;
1405
+ emzTargetHardwareId: string;
1406
+ emzContractId: string;
1407
+ emzUserId: string;
1408
+ emzToken: string;
1402
1409
  };
1403
1410
  }
1404
1411
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.194",
3
+ "version": "1.2.195",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",