zwave-js 15.3.1 → 15.4.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.
@@ -1,3 +1,3 @@
1
- export declare const PACKAGE_VERSION = "15.3.1";
1
+ export declare const PACKAGE_VERSION = "15.4.0";
2
2
  export declare const PACKAGE_NAME = "zwave-js";
3
3
  //# sourceMappingURL=_version.d.ts.map
@@ -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.1";
25
+ const PACKAGE_VERSION = "15.4.0";
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.1\";\nexport const PACKAGE_NAME = \"zwave-js\";\n"],
4
+ "sourcesContent": ["// This file is auto-generated by the codegen maintenance script\nexport const PACKAGE_VERSION = \"15.4.0\";\nexport const PACKAGE_NAME = \"zwave-js\";\n"],
5
5
  "mappings": ";;;;;;;;;;;;;;;;;;AAAA;;;;;;AACO,MAAM,kBAAkB;AACxB,MAAM,eAAe;",
6
6
  "names": []
7
7
  }
@@ -117,8 +117,8 @@ const defaultOptions = {
117
117
  softReset: !(0, import_shared.getenv)("ZWAVEJS_DISABLE_SOFT_RESET"),
118
118
  // By default enable the unresponsive controller recovery unless the env variable is set
119
119
  unresponsiveControllerRecovery: !(0, import_shared.getenv)("ZWAVEJS_DISABLE_UNRESPONSIVE_CONTROLLER_RECOVERY"),
120
- // By default enable the watchdog, unless the env variable is set
121
- watchdog: !(0, import_shared.getenv)("ZWAVEJS_DISABLE_WATCHDOG")
120
+ // By default disable the watchdog
121
+ watchdog: false
122
122
  },
123
123
  // By default, try to recover from bootloader mode
124
124
  bootloaderMode: "recover",
@@ -3069,9 +3069,6 @@ ${handlers.length} left`);
3069
3069
  if (msg.command instanceof import_cc.Security2CCNonceGet) {
3070
3070
  return this.handleSecurity2NonceGet(node);
3071
3071
  }
3072
- if (msg.command instanceof import_cc.Security2CCNonceReport) {
3073
- return this.handleSecurity2NonceReport(node, msg.command);
3074
- }
3075
3072
  if (msg.command instanceof import_cc.Security2CCCommandsSupportedGet) {
3076
3073
  return this.handleSecurity2CommandsSupportedGet(node, msg.command);
3077
3074
  }
@@ -3138,6 +3135,9 @@ ${handlers.length} left`);
3138
3135
  return;
3139
3136
  }
3140
3137
  }
3138
+ if (msg.command instanceof import_cc.Security2CCNonceReport) {
3139
+ return this.handleSecurity2NonceReport(node, msg.command);
3140
+ }
3141
3141
  if (msg.command instanceof import_cc.Security2CCMessageEncapsulation && msg.command.encapsulated == void 0) {
3142
3142
  await reply(import_core.SupervisionStatus.Success);
3143
3143
  return;