iobroker.iot 6.0.3 → 6.1.1
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/README.md +10 -10
- package/admin/assets/index-jqJ64yku.js +770 -0
- package/admin/index_m.html +1 -1
- package/admin/jsonCustom.json +450 -0
- package/admin/rules/@mf-types.zip +0 -0
- package/admin/rules/assets/{ActionVisu__loadShare__react__loadShare__.js-B4USkKO5.js → ActionVisu__loadShare__react__loadShare__.js-aa1tDx2C.js} +1 -1
- package/admin/rules/assets/{ActionVisu__loadShare__react__loadShare__.js_commonjs-proxy-CEUqE4IA.js → ActionVisu__loadShare__react__loadShare__.js_commonjs-proxy-DX6cx281.js} +1 -1
- package/admin/rules/assets/{ActionVisu__loadShare__react_mf_2_dom__loadShare__.js_commonjs-proxy-MphP5XTI.js → ActionVisu__loadShare__react_mf_2_dom__loadShare__.js_commonjs-proxy-27bLZRGy.js} +1 -1
- package/admin/rules/assets/{bootstrap-BKoQjf4I.js → bootstrap-QjsDSZNA.js} +1 -1
- package/admin/rules/assets/{index-Dk5YUp3j.js → index-B_I0oO9g.js} +76 -76
- package/admin/rules/assets/{index-pMP6L5OL.js → index-C1ZEp-2N.js} +2 -2
- package/admin/rules/assets/{index-BlSAfGU-.js → index-DiSsXjpZ.js} +4 -4
- package/admin/rules/assets/{jsx-runtime-D-zp5RaI.js → jsx-runtime-CnsYFZsa.js} +1 -1
- package/admin/rules/assets/{localSharedImportMap-BsAeuDnA.js → localSharedImportMap-B_FoNVrB.js} +1 -1
- package/admin/rules/customRuleBlocks.js +4 -4
- package/build/i18n/de.json +4 -0
- package/build/i18n/en.json +4 -0
- package/build/i18n/es.json +4 -0
- package/build/i18n/fr.json +4 -0
- package/build/i18n/it.json +4 -0
- package/build/i18n/nl.json +4 -0
- package/build/i18n/pl.json +4 -0
- package/build/i18n/pt.json +4 -0
- package/build/i18n/ru.json +4 -0
- package/build/i18n/uk.json +4 -0
- package/build/i18n/zh-cn.json +4 -0
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js +4 -0
- package/build/lib/AlexaSmartHomeV3/DeviceManager.js.map +1 -1
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js +62 -56
- package/build/lib/AlexaSmartHomeV3/Helpers/Utils.js.map +1 -1
- package/build/lib/alexaSmartHomeV3.js +34 -11
- package/build/lib/alexaSmartHomeV3.js.map +1 -1
- package/build/lib/alisa.js +1086 -1561
- package/build/lib/alisa.js.map +1 -0
- package/build/lib/appNotifications.js +288 -0
- package/build/lib/appNotifications.js.map +1 -0
- package/build/lib/googleHome.js +1262 -1913
- package/build/lib/googleHome.js.map +1 -0
- package/build/main.js +111 -37
- package/build/main.js.map +1 -1
- package/io-package.json +34 -29
- package/package.json +10 -10
- package/admin/assets/index-BdqghSg7.js +0 -705
- /package/admin/rules/assets/{index-BPY9gF0q.js → index-Ccpql4vu.js} +0 -0
package/README.md
CHANGED
|
@@ -145,7 +145,7 @@ The adapter automatically creates virtual smart home devices by combining inform
|
|
|
145
145
|
|
|
146
146
|
### Understanding Enumerations
|
|
147
147
|
|
|
148
|
-
Enumerations are ioBroker's built-in way to organize devices:
|
|
148
|
+
Enumerations are ioBroker's a built-in way to organize devices:
|
|
149
149
|
- **Rooms enumeration**: Contains locations (living room, bathroom, bedroom, kitchen, etc.)
|
|
150
150
|
- **Functions enumeration**: Contains device types (light, blind, heating, etc.)
|
|
151
151
|
|
|
@@ -263,7 +263,7 @@ sendTo('iot.0', 'getServiceEndpoint', { serviceName: 'custom_myService' }, resul
|
|
|
263
263
|
|
|
264
264
|
### `text2command`
|
|
265
265
|
|
|
266
|
-
You may write `text2command` in white list, you can send POST request to `https://service.iobroker.in/v1/iotService?service=text2command&key=<user-app-key>&user=<USER_EMAIL>` to write data into
|
|
266
|
+
You may write `text2command` in white list, you can send POST request to `https://service.iobroker.in/v1/iotService?service=text2command&key=<user-app-key>&user=<USER_EMAIL>` to write data into `text2command.X.text` variable.
|
|
267
267
|
|
|
268
268
|
You can use GET method too `https://service.iobroker.in/v1/iotService?service=text2command&key=<user-app-key>&user=<USER_EMAIL>&data=<MY COMMAND>`
|
|
269
269
|
|
|
@@ -416,6 +416,14 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
416
416
|
### **WORK IN PROGRESS**
|
|
417
417
|
-->
|
|
418
418
|
## Changelog
|
|
419
|
+
### 6.1.1 (2026-06-11)
|
|
420
|
+
- (@GermanBluefox) Added support of credentials manager
|
|
421
|
+
|
|
422
|
+
### 6.1.0 (2026-06-02)
|
|
423
|
+
- (@GermanBluefox) Implemented new feature to select devices from the list and not by enumeration
|
|
424
|
+
- (@GermanBluefox) Possibility to send messages to the app directly from the state
|
|
425
|
+
- (@GermanBluefox) Migrated google and alisa to TypeScript
|
|
426
|
+
|
|
419
427
|
### 6.0.3 (2026-04-23)
|
|
420
428
|
- (@GermanBluefox) Allowed to read temperature information via Alexa
|
|
421
429
|
|
|
@@ -429,14 +437,6 @@ setState('iot.0.app.message', JSON.stringify({
|
|
|
429
437
|
- (@GermanBluefox) Corrected the handling of the multiple group names
|
|
430
438
|
- (@GermanBluefox) Fixing the license validation
|
|
431
439
|
|
|
432
|
-
### 5.0.12 (2025-12-21)
|
|
433
|
-
- (@GermanBluefox) Added copy of credentials from cloud instance
|
|
434
|
-
- (@GermanBluefox) Added QR code to fast connect the ioBroker visu app
|
|
435
|
-
|
|
436
|
-
### 5.0.11 (2025-12-16)
|
|
437
|
-
- (@GermanBluefox) Added percentual control
|
|
438
|
-
- (@GermanBluefox) Correcting creation for complex groups
|
|
439
|
-
|
|
440
440
|
## License
|
|
441
441
|
|
|
442
442
|
The MIT License (MIT)
|