iobroker-ucl 1.0.45 → 1.0.46
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/homematicFunctions.js +0 -1
- package/homematicFunctions.ts +1 -2
- package/package.json +1 -1
package/homematicFunctions.js
CHANGED
@@ -34,7 +34,6 @@ function getHomematicDevices(adapter, filterCategory) {
|
|
34
34
|
var _this = this;
|
35
35
|
var homematicArray = [];
|
36
36
|
//var homematicArray : Array<InstanceType<typeof AbstractHomematic>> = [];
|
37
|
-
// @ts-ignore
|
38
37
|
adapter.$('state[id=0_userdata.0.devices.homematic.*.type]').each(function (datenpunktKey) {
|
39
38
|
var datenpunktPraefix = datenpunktKey.replaceAll(".type", "");
|
40
39
|
if (adapter.getState(datenpunktKey).val == filterCategory) {
|
package/homematicFunctions.ts
CHANGED
@@ -34,8 +34,7 @@ function createDatenpunktSingle(adapter:any, deviceRawId, attributeType, attribu
|
|
34
34
|
export function getHomematicDevices(adapter:any, filterCategory:string) {
|
35
35
|
var homematicArray = [];
|
36
36
|
//var homematicArray : Array<InstanceType<typeof AbstractHomematic>> = [];
|
37
|
-
|
38
|
-
// @ts-ignore
|
37
|
+
|
39
38
|
adapter.$('state[id=0_userdata.0.devices.homematic.*.type]').each(datenpunktKey => { // 0_userdata.0.devices.homematic.30.type
|
40
39
|
var datenpunktPraefix = datenpunktKey.replaceAll(".type", "");
|
41
40
|
if (adapter.getState(datenpunktKey).val == filterCategory) {
|