zwave-js 15.0.4 → 15.0.5

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.0.4";
1
+ export declare const PACKAGE_VERSION = "15.0.5";
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.0.4";
25
+ const PACKAGE_VERSION = "15.0.5";
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.0.4\";\nexport const PACKAGE_NAME = \"zwave-js\";\n"],
4
+ "sourcesContent": ["// This file is auto-generated by the codegen maintenance script\nexport const PACKAGE_VERSION = \"15.0.5\";\nexport const PACKAGE_NAME = \"zwave-js\";\n"],
5
5
  "mappings": ";;;;;;;;;;;;;;;;;;AAAA;;;;;;AACO,MAAM,kBAAkB;AACxB,MAAM,eAAe;",
6
6
  "names": []
7
7
  }
@@ -715,9 +715,10 @@ class Driver extends import_shared.TypedEventTarget {
715
715
  "preferences",
716
716
  "vendor"
717
717
  ]);
718
- const { logConfig, ...rest } = this._options;
718
+ const { logConfig, host, ...rest } = this._options;
719
719
  const newOptions = (0, import_shared.mergeDeep)((0, import_shared.cloneDeep)(rest), safeOptions, true);
720
720
  newOptions.logConfig = logConfig;
721
+ newOptions.host = host;
721
722
  checkOptions(newOptions);
722
723
  if (options.userAgent && !(0, import_typeguards.isObject)(options.userAgent)) {
723
724
  throw new import_core.ZWaveError(`The userAgent property must be an object!`, import_core.ZWaveErrorCodes.Driver_InvalidOptions);