zwave-js 15.3.0 → 15.3.2
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/build/cjs/lib/_version.d.ts +1 -1
- package/build/cjs/lib/_version.js +1 -1
- package/build/cjs/lib/_version.js.map +1 -1
- package/build/cjs/lib/driver/Driver.js +4 -3
- package/build/cjs/lib/driver/Driver.js.map +2 -2
- package/build/cjs/lib/zniffer/Zniffer.js +1 -0
- package/build/cjs/lib/zniffer/Zniffer.js.map +2 -2
- package/build/esm/lib/_version.d.ts +1 -1
- package/build/esm/lib/_version.js +1 -1
- package/build/esm/lib/driver/Driver.d.ts.map +1 -1
- package/build/esm/lib/driver/Driver.js +8 -4
- package/build/esm/lib/driver/Driver.js.map +1 -1
- package/build/esm/lib/zniffer/Zniffer.d.ts.map +1 -1
- package/build/esm/lib/zniffer/Zniffer.js +3 -1
- package/build/esm/lib/zniffer/Zniffer.js.map +1 -1
- package/package.json +6 -6
|
@@ -22,7 +22,7 @@ __export(version_exports, {
|
|
|
22
22
|
PACKAGE_VERSION: () => PACKAGE_VERSION
|
|
23
23
|
});
|
|
24
24
|
module.exports = __toCommonJS(version_exports);
|
|
25
|
-
const PACKAGE_VERSION = "15.3.
|
|
25
|
+
const PACKAGE_VERSION = "15.3.2";
|
|
26
26
|
const PACKAGE_NAME = "zwave-js";
|
|
27
27
|
// Annotate the CommonJS export names for ESM import in node:
|
|
28
28
|
0 && (module.exports = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/lib/_version.ts"],
|
|
4
|
-
"sourcesContent": ["// This file is auto-generated by the codegen maintenance script\nexport const PACKAGE_VERSION = \"15.3.
|
|
4
|
+
"sourcesContent": ["// This file is auto-generated by the codegen maintenance script\nexport const PACKAGE_VERSION = \"15.3.2\";\nexport const PACKAGE_NAME = \"zwave-js\";\n"],
|
|
5
5
|
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;;;;;;AACO,MAAM,kBAAkB;AACxB,MAAM,eAAe;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -70,6 +70,7 @@ var import_UpdateConfig = require("./UpdateConfig.js");
|
|
|
70
70
|
var import_UserAgent = require("./UserAgent.js");
|
|
71
71
|
var import_Types2 = require("./_Types.js");
|
|
72
72
|
var import_mDNSDiscovery = require("./mDNSDiscovery.js");
|
|
73
|
+
(0, import_cc.registerCCs)();
|
|
73
74
|
const libVersion = import_version.PACKAGE_VERSION;
|
|
74
75
|
const libName = import_version.PACKAGE_NAME;
|
|
75
76
|
const libNameString = `
|
|
@@ -3068,9 +3069,6 @@ ${handlers.length} left`);
|
|
|
3068
3069
|
if (msg.command instanceof import_cc.Security2CCNonceGet) {
|
|
3069
3070
|
return this.handleSecurity2NonceGet(node);
|
|
3070
3071
|
}
|
|
3071
|
-
if (msg.command instanceof import_cc.Security2CCNonceReport) {
|
|
3072
|
-
return this.handleSecurity2NonceReport(node, msg.command);
|
|
3073
|
-
}
|
|
3074
3072
|
if (msg.command instanceof import_cc.Security2CCCommandsSupportedGet) {
|
|
3075
3073
|
return this.handleSecurity2CommandsSupportedGet(node, msg.command);
|
|
3076
3074
|
}
|
|
@@ -3137,6 +3135,9 @@ ${handlers.length} left`);
|
|
|
3137
3135
|
return;
|
|
3138
3136
|
}
|
|
3139
3137
|
}
|
|
3138
|
+
if (msg.command instanceof import_cc.Security2CCNonceReport) {
|
|
3139
|
+
return this.handleSecurity2NonceReport(node, msg.command);
|
|
3140
|
+
}
|
|
3140
3141
|
if (msg.command instanceof import_cc.Security2CCMessageEncapsulation && msg.command.encapsulated == void 0) {
|
|
3141
3142
|
await reply(import_core.SupervisionStatus.Success);
|
|
3142
3143
|
return;
|