iobroker.mywebui 1.37.23 → 1.37.24

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/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "mywebui",
4
- "version": "1.37.23",
4
+ "version": "1.37.24",
5
5
  "titleLang": {
6
6
  "en": "mywebui",
7
7
  "de": "mywebui",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.mywebui",
3
- "version": "1.37.23",
3
+ "version": "1.37.24",
4
4
  "description": "ioBroker mywebui - Custom edited mywebui by gokturk413",
5
5
  "type": "module",
6
6
  "main": "dist/backend/main.js",
@@ -412,6 +412,12 @@ export class IobrokerHandler {
412
412
  else
413
413
  this.connection.unsubscribeState(id, cb);
414
414
  }
415
+ subscribeObject(id, cb) {
416
+ return this.connection.subscribeObject(id, cb);
417
+ }
418
+ unsubscribeObject(id, cb) {
419
+ return this.connection.unsubscribeObject(id, cb);
420
+ }
415
421
  getObjectList(type, id) {
416
422
  return iobrokerHandler.connection.getObjectView(id, null, type);
417
423
  }