iobroker.device-watcher 2.6.1 → 2.7.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.
@@ -51,6 +51,13 @@
51
51
  "lg": 3,
52
52
  "label": "Deconz"
53
53
  },
54
+ "ecovacsdeebotDevices": {
55
+ "type": "checkbox",
56
+ "sm": 6,
57
+ "md": 6,
58
+ "lg": 3,
59
+ "label": "Ecovacs-Deebot"
60
+ },
54
61
  "enoceanDevices": {
55
62
  "type": "checkbox",
56
63
  "sm": 6,
@@ -93,6 +100,13 @@
93
100
  "lg": 3,
94
101
  "label": "fullyBrowser"
95
102
  },
103
+ "fullyMQTTDevices": {
104
+ "type": "checkbox",
105
+ "sm": 6,
106
+ "md": 6,
107
+ "lg": 3,
108
+ "label": "Fully-MQTT"
109
+ },
96
110
  "hamDevices": {
97
111
  "type": "checkbox",
98
112
  "sm": 6,
@@ -655,7 +669,7 @@
655
669
  }
656
670
  }
657
671
  },
658
- "trenner": {
672
+ "_trenner": {
659
673
  "newLine": true,
660
674
  "type": "divider"
661
675
  },
@@ -676,7 +690,7 @@
676
690
  "label": "Overview of low battery devices",
677
691
  "help": "Get a regular message with an overview all low battery devices"
678
692
  },
679
- "chooseDay": {
693
+ "_chooseDay": {
680
694
  "newLine": true,
681
695
  "sm": 12,
682
696
  "md": 12,
@@ -745,7 +759,7 @@
745
759
  }
746
760
  }
747
761
  },
748
- "trennerZwei": {
762
+ "_trennerZwei": {
749
763
  "newLine": true,
750
764
  "type": "divider"
751
765
  },
@@ -863,7 +877,7 @@
863
877
  "text": "Notification Service",
864
878
  "size": 2
865
879
  },
866
- "msgServiceText": {
880
+ "_msgServiceText": {
867
881
  "type": "staticText",
868
882
  "text": "Here you can choose your notification service, you can use more than one service, but you can also leave all blank, then only the datapoint lastNotification will be filled.",
869
883
  "style": {
@@ -877,146 +891,211 @@
877
891
  "help": "Choose your notification services",
878
892
  "options": [
879
893
  { "label": "Please choose", "value": "none" },
880
- { "label": "Pushover", "value": "pushover" },
881
- { "label": "Telegram", "value": "telegram" },
882
- { "label": "Whatsapp", "value": "whatsapp" },
883
- { "label": "Signal", "value": "signal" },
884
894
  { "label": "E-Mail", "value": "email" },
885
895
  { "label": "Jarvis", "value": "jarvis" },
886
896
  { "label": "Lovelace", "value": "lovelace" },
887
- { "label": "Synochat", "value": "synochat" }
897
+ { "label": "Matrix", "value": "matrix" },
898
+ { "label": "Pushover", "value": "pushover" },
899
+ { "label": "Signal", "value": "signal" },
900
+ { "label": "Synochat", "value": "synochat" },
901
+ { "label": "Telegram", "value": "telegram" },
902
+ { "label": "Whatsapp", "value": "whatsapp" }
888
903
  ],
889
904
  "default": "none"
890
905
  },
891
- "_headerPushover": {
906
+ "_headerEmail": {
892
907
  "newLine": true,
893
908
  "type": "header",
894
- "text": "Pushover",
909
+ "text": "Email",
895
910
  "size": 2,
896
- "hidden": "data.msgService !== 'pushover'",
911
+ "hidden": "data.msgService !== 'email' && !data.instanceEmail",
897
912
  "hideOnlyControl": false
898
913
  },
899
- "instancePushover": {
914
+ "instanceEmail": {
900
915
  "newLine": true,
901
916
  "type": "instance",
902
- "adapter": "pushover",
917
+ "adapter": "email",
903
918
  "all": false,
904
919
  "allowDeactivate": true,
905
920
  "sm": 12,
906
921
  "md": 4,
907
922
  "lg": 4,
908
- "label": "Pushover Instance",
909
- "help": "Please choose the pushover instance",
910
- "hidden": "data.msgService !== 'pushover'",
923
+ "label": "Email Instance",
924
+ "help": "Please choose the email instance",
925
+ "hidden": "data.msgService !== 'email' && !data.instanceEmail",
911
926
  "hideOnlyControl": false
912
927
  },
913
- "devicePushover": {
928
+ "sendToEmail": {
914
929
  "type": "text",
915
930
  "sm": 12,
916
931
  "md": 4,
917
932
  "lg": 4,
918
- "label": "Device-ID (optional)",
919
- "help": "Choose your device",
920
- "hidden": "data.msgService !== 'pushover'",
933
+ "label": "Send to (optional)",
934
+ "help": "Choose your email address",
935
+ "hidden": "data.msgService !== 'email' && !data.instanceEmail",
921
936
  "hideOnlyControl": false
922
937
  },
923
- "prioPushover": {
924
- "type": "select",
938
+ "subjectEmail": {
939
+ "type": "text",
925
940
  "sm": 12,
926
941
  "md": 4,
927
942
  "lg": 4,
928
- "help": "Choose the priority",
929
- "options": [
930
- { "label": "Normal", "value": "" },
931
- { "label": "High Priority", "value": 1 },
932
- { "label": "Silent", "value": -1 },
933
- { "label": "With confirmation", "value": 2 }
934
- ],
935
- "hidden": "data.msgService !== 'pushover'",
943
+ "label": "Subject (optional)",
944
+ "help": "Choose your subject for the Email",
945
+ "hidden": "data.msgService !== 'email' && !data.instanceEmail",
936
946
  "hideOnlyControl": false
937
947
  },
938
- "titlePushover": {
948
+ "headerJarvis": {
949
+ "newLine": "true",
950
+ "type": "header",
951
+ "text": "Jarvis Notification",
952
+ "size": 2,
953
+ "hidden": "data.msgService !== 'jarvis' && !data.instanceJarvis",
954
+ "hideOnlyControl": false
955
+ },
956
+ "instanceJarvis": {
957
+ "newLine": true,
958
+ "type": "instance",
959
+ "adapter": "jarvis",
960
+ "allowDeactivate": true,
961
+ "all": false,
962
+ "sm": 12,
963
+ "md": 4,
964
+ "lg": 4,
965
+ "label": "Jarvis Instance",
966
+ "help": "Please choose the jarvis instance",
967
+ "hidden": "data.msgService !== 'jarvis' && !data.instanceJarvis",
968
+ "hideOnlyControl": false
969
+ },
970
+ "titleJarvis": {
939
971
  "type": "text",
940
972
  "sm": 12,
941
973
  "md": 4,
942
974
  "lg": 4,
943
975
  "label": "Title (optional)",
944
976
  "help": "Choose your title for Pushmessage",
945
- "hidden": "data.msgService !== 'pushover'",
977
+ "hidden": "data.msgService !== 'jarvis' && !data.instanceJarvis",
946
978
  "hideOnlyControl": false
947
979
  },
948
- "headerTelegram": {
980
+ "headerLovelace": {
949
981
  "newLine": "true",
950
982
  "type": "header",
951
- "text": "Telegram",
983
+ "text": "Lovelace Notification",
952
984
  "size": 2,
953
- "hidden": "data.msgService !== 'telegram'",
985
+ "hidden": "data.msgService !== 'lovelace' && !data.instanceLovelace",
954
986
  "hideOnlyControl": false
955
987
  },
956
- "instanceTelegram": {
988
+ "instanceLovelace": {
957
989
  "newLine": true,
958
990
  "type": "instance",
959
- "adapter": "telegram",
960
- "all": false,
991
+ "adapter": "lovelace",
961
992
  "allowDeactivate": true,
993
+ "all": false,
962
994
  "sm": 12,
963
995
  "md": 4,
964
996
  "lg": 4,
965
- "label": "Telegram Instance",
966
- "help": "Please choose the telegram instance",
967
- "hidden": "data.msgService !== 'telegram'",
997
+ "label": "Lovelace Instance",
998
+ "help": "Please choose the lovelace instance",
999
+ "hidden": "data.msgService !== 'lovelace' && !data.instanceLovelace",
968
1000
  "hideOnlyControl": false
969
1001
  },
970
- "deviceTelegram": {
1002
+ "titleLovelace": {
971
1003
  "type": "text",
972
1004
  "sm": 12,
973
1005
  "md": 4,
974
1006
  "lg": 4,
975
- "label": "Device-ID (optional)",
976
- "help": "Choose your device",
977
- "hidden": "data.msgService !== 'telegram'",
1007
+ "label": "Title (optional)",
1008
+ "help": "Choose your title for Pushmessage",
1009
+ "hidden": "data.msgService !== 'lovelace' && !data.instanceLovelace",
978
1010
  "hideOnlyControl": false
979
1011
  },
980
- "chatIdTelegram": {
1012
+ "headerMatrix": {
1013
+ "newLine": "true",
1014
+ "type": "header",
1015
+ "text": "Matrix",
1016
+ "size": 2,
1017
+ "hidden": "data.msgService !== 'matrix' && !data.instanceMatrix",
1018
+ "hideOnlyControl": false
1019
+ },
1020
+ "instanceMatrix": {
1021
+ "newLine": true,
1022
+ "type": "instance",
1023
+ "adapter": "matrix-org",
1024
+ "allowDeactivate": true,
1025
+ "all": false,
1026
+ "sm": 12,
1027
+ "md": 4,
1028
+ "lg": 4,
1029
+ "label": "Matrix Instance",
1030
+ "help": "Please choose the matrix instance",
1031
+ "hidden": "data.msgService !== 'matrix' && !data.instanceMatrix",
1032
+ "hideOnlyControl": false
1033
+ },
1034
+ "titleMatrix": {
981
1035
  "type": "text",
982
1036
  "sm": 12,
983
1037
  "md": 4,
984
1038
  "lg": 4,
985
- "label": "Chat-ID (optional)",
986
- "help": "Choose your Chat-ID",
987
- "hidden": "data.msgService !== 'telegram'",
1039
+ "label": "Title (optional)",
1040
+ "help": "Choose your title for message",
1041
+ "hidden": "data.msgService !== 'matrix' && !data.instanceMatrix",
988
1042
  "hideOnlyControl": false
989
1043
  },
990
- "headerWhatsapp": {
991
- "newLine": "true",
1044
+ "_headerPushover": {
1045
+ "newLine": true,
992
1046
  "type": "header",
993
- "text": "Whatsapp",
1047
+ "text": "Pushover",
994
1048
  "size": 2,
995
- "hidden": "data.msgService !== 'whatsapp'",
1049
+ "hidden": "data.msgService !== 'pushover' && !data.instancePushover",
996
1050
  "hideOnlyControl": false
997
1051
  },
998
- "instanceWhatsapp": {
1052
+ "instancePushover": {
999
1053
  "newLine": true,
1000
1054
  "type": "instance",
1001
- "adapter": "whatsapp-cmb",
1055
+ "adapter": "pushover",
1002
1056
  "all": false,
1003
1057
  "allowDeactivate": true,
1004
1058
  "sm": 12,
1005
1059
  "md": 4,
1006
1060
  "lg": 4,
1007
- "label": "Whatsapp Instance",
1008
- "help": "Please choose the Whatsapp instance",
1009
- "hidden": "data.msgService !== 'whatsapp'",
1061
+ "label": "Pushover Instance",
1062
+ "help": "Please choose the pushover instance",
1063
+ "hidden": "data.msgService !== 'pushover' && !data.instancePushover",
1010
1064
  "hideOnlyControl": false
1011
1065
  },
1012
- "phoneWhatapp": {
1066
+ "devicePushover": {
1013
1067
  "type": "text",
1014
1068
  "sm": 12,
1015
1069
  "md": 4,
1016
1070
  "lg": 4,
1017
- "label": "Recipient (optional)",
1018
- "help": "Choose your recipient",
1019
- "hidden": "data.msgService !== 'whatsapp'",
1071
+ "label": "Device-ID (optional)",
1072
+ "help": "Choose your device",
1073
+ "hidden": "data.msgService !== 'pushover' && !data.instancePushover",
1074
+ "hideOnlyControl": false
1075
+ },
1076
+ "prioPushover": {
1077
+ "type": "select",
1078
+ "sm": 12,
1079
+ "md": 4,
1080
+ "lg": 4,
1081
+ "help": "Choose the priority",
1082
+ "options": [
1083
+ { "label": "Normal", "value": "" },
1084
+ { "label": "High Priority", "value": 1 },
1085
+ { "label": "Silent", "value": -1 },
1086
+ { "label": "With confirmation", "value": 2 }
1087
+ ],
1088
+ "hidden": "data.msgService !== 'pushover' && !data.instancePushover",
1089
+ "hideOnlyControl": false
1090
+ },
1091
+ "titlePushover": {
1092
+ "type": "text",
1093
+ "sm": 12,
1094
+ "md": 4,
1095
+ "lg": 4,
1096
+ "label": "Title (optional)",
1097
+ "help": "Choose your title for Pushmessage",
1098
+ "hidden": "data.msgService !== 'pushover' && !data.instancePushover",
1020
1099
  "hideOnlyControl": false
1021
1100
  },
1022
1101
  "headerSignal": {
@@ -1024,7 +1103,7 @@
1024
1103
  "type": "header",
1025
1104
  "text": "Signal",
1026
1105
  "size": 2,
1027
- "hidden": "data.msgService !== 'signal'",
1106
+ "hidden": "data.msgService !== 'signal' && !data.instanceSignal",
1028
1107
  "hideOnlyControl": false
1029
1108
  },
1030
1109
  "instanceSignal": {
@@ -1038,7 +1117,7 @@
1038
1117
  "lg": 4,
1039
1118
  "label": "Signal Instance",
1040
1119
  "help": "Please choose the Signal instance",
1041
- "hidden": "data.msgService !== 'signal'",
1120
+ "hidden": "data.msgService !== 'signal' && !data.instanceSignal",
1042
1121
  "hideOnlyControl": false
1043
1122
  },
1044
1123
  "phonSignal": {
@@ -1048,137 +1127,113 @@
1048
1127
  "lg": 4,
1049
1128
  "label": "Recipient (optional)",
1050
1129
  "help": "Choose your recipient",
1051
- "hidden": "data.msgService !== 'signal'",
1130
+ "hidden": "data.msgService !== 'signal' && !data.instanceSignal",
1052
1131
  "hideOnlyControl": false
1053
1132
  },
1054
- "_headerEmail": {
1055
- "newLine": true,
1133
+ "headerSynochat": {
1134
+ "newLine": "true",
1056
1135
  "type": "header",
1057
- "text": "Email",
1136
+ "text": "Synochat",
1058
1137
  "size": 2,
1059
- "hidden": "data.msgService !== 'email'",
1138
+ "hidden": "data.msgService !== 'synochat' && !data.instanceSynochat",
1060
1139
  "hideOnlyControl": false
1061
1140
  },
1062
- "instanceEmail": {
1141
+ "instanceSynochat": {
1063
1142
  "newLine": true,
1064
1143
  "type": "instance",
1065
- "adapter": "email",
1066
- "all": false,
1144
+ "adapter": "synochat",
1067
1145
  "allowDeactivate": true,
1146
+ "all": false,
1068
1147
  "sm": 12,
1069
1148
  "md": 4,
1070
1149
  "lg": 4,
1071
- "label": "Email Instance",
1072
- "help": "Please choose the email instance",
1073
- "hidden": "data.msgService !== 'email'",
1074
- "hideOnlyControl": false
1075
- },
1076
- "sendToEmail": {
1077
- "type": "text",
1078
- "sm": 12,
1079
- "md": 4,
1080
- "lg": 4,
1081
- "label": "Send to (optional)",
1082
- "help": "Choose your email address",
1083
- "hidden": "data.msgService !== 'email'",
1150
+ "label": "Synochat Instance",
1151
+ "help": "Please choose the Synochat instance",
1152
+ "hidden": "data.msgService !== 'synochat' && !data.instanceSynochat",
1084
1153
  "hideOnlyControl": false
1085
1154
  },
1086
- "subjectEmail": {
1155
+ "channelSynochat": {
1087
1156
  "type": "text",
1088
1157
  "sm": 12,
1089
1158
  "md": 4,
1090
1159
  "lg": 4,
1091
- "label": "Subject (optional)",
1092
- "help": "Choose your subject for the Email",
1093
- "hidden": "data.msgService !== 'email'",
1160
+ "label": "Channel",
1161
+ "help": "Enter the channelname for Synochat",
1162
+ "hidden": "data.msgService !== 'synochat' && !data.instanceSynochat",
1094
1163
  "hideOnlyControl": false
1095
1164
  },
1096
- "headerJarvis": {
1165
+ "headerTelegram": {
1097
1166
  "newLine": "true",
1098
1167
  "type": "header",
1099
- "text": "Jarvis Notification",
1168
+ "text": "Telegram",
1100
1169
  "size": 2,
1101
- "hidden": "data.msgService !== 'jarvis'",
1170
+ "hidden": "data.msgService !== 'telegram' && !data.instanceTelegram",
1102
1171
  "hideOnlyControl": false
1103
1172
  },
1104
- "instanceJarvis": {
1173
+ "instanceTelegram": {
1105
1174
  "newLine": true,
1106
1175
  "type": "instance",
1107
- "adapter": "jarvis",
1108
- "allowDeactivate": true,
1176
+ "adapter": "telegram",
1109
1177
  "all": false,
1178
+ "allowDeactivate": true,
1110
1179
  "sm": 12,
1111
1180
  "md": 4,
1112
1181
  "lg": 4,
1113
- "label": "Jarvis Instance",
1114
- "help": "Please choose the jarvis instance",
1115
- "hidden": "data.msgService !== 'jarvis'",
1182
+ "label": "Telegram Instance",
1183
+ "help": "Please choose the telegram instance",
1184
+ "hidden": "data.msgService !== 'telegram' && !data.instanceTelegram",
1116
1185
  "hideOnlyControl": false
1117
1186
  },
1118
- "titleJarvis": {
1187
+ "deviceTelegram": {
1119
1188
  "type": "text",
1120
1189
  "sm": 12,
1121
1190
  "md": 4,
1122
1191
  "lg": 4,
1123
- "label": "Title (optional)",
1124
- "help": "Choose your title for Pushmessage",
1125
- "hidden": "data.msgService !== 'jarvis'",
1126
- "hideOnlyControl": false
1127
- },
1128
- "headerLovelace": {
1129
- "newLine": "true",
1130
- "type": "header",
1131
- "text": "Lovelace Notification",
1132
- "size": 2,
1133
- "hidden": "data.msgService !== 'lovelace'",
1192
+ "label": "Device-ID (optional)",
1193
+ "help": "Choose your device",
1194
+ "hidden": "data.msgService !== 'telegram' && !data.instanceTelegram",
1134
1195
  "hideOnlyControl": false
1135
1196
  },
1136
- "instanceLovelace": {
1137
- "newLine": true,
1138
- "type": "instance",
1139
- "adapter": "lovelace",
1140
- "allowDeactivate": true,
1141
- "all": false,
1197
+ "chatIdTelegram": {
1198
+ "type": "text",
1142
1199
  "sm": 12,
1143
1200
  "md": 4,
1144
1201
  "lg": 4,
1145
- "label": "Lovelace Instance",
1146
- "help": "Please choose the lovelace instance",
1147
- "hidden": "data.msgService !== 'lovelace'",
1202
+ "label": "Chat-ID (optional)",
1203
+ "help": "Choose your Chat-ID",
1204
+ "hidden": "data.msgService !== 'telegram' && !data.instanceTelegram",
1148
1205
  "hideOnlyControl": false
1149
1206
  },
1150
- "titleLovelace": {
1151
- "type": "text",
1152
- "sm": 12,
1153
- "md": 4,
1154
- "lg": 4,
1155
- "label": "Title (optional)",
1156
- "help": "Choose your title for Pushmessage",
1157
- "hidden": "data.msgService !== 'lovelace'",
1207
+ "headerWhatsapp": {
1208
+ "newLine": "true",
1209
+ "type": "header",
1210
+ "text": "Whatsapp",
1211
+ "size": 2,
1212
+ "hidden": "data.msgService !== 'whatsapp' && !data.instanceWhatsapp",
1158
1213
  "hideOnlyControl": false
1159
1214
  },
1160
- "instanceSynochat": {
1215
+ "instanceWhatsapp": {
1161
1216
  "newLine": true,
1162
1217
  "type": "instance",
1163
- "adapter": "synochat",
1164
- "allowDeactivate": true,
1218
+ "adapter": "whatsapp-cmb",
1165
1219
  "all": false,
1220
+ "allowDeactivate": true,
1166
1221
  "sm": 12,
1167
1222
  "md": 4,
1168
1223
  "lg": 4,
1169
- "label": "Synochat Instance",
1170
- "help": "Please choose the Synochat instance",
1171
- "hidden": "data.msgService !== 'synochat'",
1224
+ "label": "Whatsapp Instance",
1225
+ "help": "Please choose the Whatsapp instance",
1226
+ "hidden": "data.msgService !== 'whatsapp' && !data.instanceWhatsapp",
1172
1227
  "hideOnlyControl": false
1173
1228
  },
1174
- "channelSynochat": {
1229
+ "phoneWhatapp": {
1175
1230
  "type": "text",
1176
1231
  "sm": 12,
1177
1232
  "md": 4,
1178
1233
  "lg": 4,
1179
- "label": "Channel",
1180
- "help": "Enter the channelname for Synochat",
1181
- "hidden": "data.msgService !== 'synochat'",
1234
+ "label": "Recipient (optional)",
1235
+ "help": "Choose your recipient",
1236
+ "hidden": "data.msgService !== 'whatsapp' && !data.instanceWhatsapp",
1182
1237
  "hideOnlyControl": false
1183
1238
  }
1184
1239
  }
@@ -1187,7 +1242,7 @@
1187
1242
  "type": "panel",
1188
1243
  "label": "Blacklist",
1189
1244
  "items": {
1190
- "headerBlacklistInstances": {
1245
+ "_headerBlacklistInstances": {
1191
1246
  "newLine": "true",
1192
1247
  "type": "header",
1193
1248
  "text": "Instances Blacklist",
@@ -1219,19 +1274,17 @@
1219
1274
  "type": "checkbox",
1220
1275
  "title": "Ignor in notifications",
1221
1276
  "attr": "checkIgnorNotify",
1222
- "width": "15%",
1223
- "alsoDependsOn": ["devices"]
1277
+ "width": "15%"
1224
1278
  },
1225
1279
  {
1226
1280
  "type": "checkbox",
1227
1281
  "title": "Ignore in lists",
1228
1282
  "attr": "checkIgnorLists",
1229
- "width": "10%",
1230
- "alsoDependsOn": ["devices"]
1283
+ "width": "10%"
1231
1284
  }
1232
1285
  ]
1233
1286
  },
1234
- "headerDevices": {
1287
+ "_headerDevices": {
1235
1288
  "newLine": "true",
1236
1289
  "type": "header",
1237
1290
  "text": "Devices/Services Blacklist",
@@ -1259,30 +1312,27 @@
1259
1312
  "type": "checkbox",
1260
1313
  "title": "Ignor in notifications",
1261
1314
  "attr": "checkIgnorNotify",
1262
- "width": "15%",
1263
- "alsoDependsOn": ["devices"]
1315
+ "width": "15%"
1264
1316
  },
1265
1317
  {
1266
1318
  "type": "checkbox",
1267
1319
  "title": "Ignore in main lists",
1268
1320
  "attr": "checkIgnorLists",
1269
- "width": "10%",
1270
- "alsoDependsOn": ["devices"]
1321
+ "width": "10%"
1271
1322
  },
1272
1323
  {
1273
1324
  "type": "checkbox",
1274
1325
  "title": "Ignore in lists per adapter",
1275
1326
  "attr": "checkIgnorAdapterLists",
1276
- "width": "10%",
1277
- "alsoDependsOn": ["devices"]
1327
+ "width": "10%"
1278
1328
  }
1279
1329
  ]
1280
1330
  }
1281
1331
  }
1282
1332
  },
1283
- "_expertSettings": {
1333
+ "_otherSettings": {
1284
1334
  "type": "panel",
1285
- "label": "Expert Settings",
1335
+ "label": "Other Settings",
1286
1336
  "items": {
1287
1337
  "_headerOtherSettings": {
1288
1338
  "type": "header",
@@ -1337,7 +1387,7 @@
1337
1387
  "text": "Update-Interval",
1338
1388
  "size": 2
1339
1389
  },
1340
- "textUpdateInterval": {
1390
+ "_textUpdateInterval": {
1341
1391
  "type": "staticText",
1342
1392
  "text": "Here you can define the update interval of the datapoints/lists. For performance reasons, it is not recommended to select a poll value that is too low. Lower than two seconds is not selectable.",
1343
1393
  "sm": 12,
@@ -1358,13 +1408,70 @@
1358
1408
  "label": "Update-Interval",
1359
1409
  "help": "in seconds",
1360
1410
  "hideOnlyControl": false
1411
+ }
1412
+ }
1413
+ },
1414
+ "_expertSettings": {
1415
+ "type": "panel",
1416
+ "label": "Expert Settings",
1417
+ "items": {
1418
+ "_headerTimeInstances": {
1419
+ "type": "header",
1420
+ "text": "Error Time for Instances",
1421
+ "size": 2,
1422
+ "hidden": "!data.checkAdapterInstances",
1423
+ "hideOnlyControl": false
1424
+ },
1425
+ "_textTimeInstances": {
1426
+ "type": "staticText",
1427
+ "text": "Here you can define the error time of each instance. The standard value is 20 seconds.",
1428
+ "sm": 12,
1429
+ "md": 12,
1430
+ "lg": 12,
1431
+ "hidden": "!data.checkAdapterInstances",
1432
+ "hideOnlyControl": false,
1433
+ "style": {
1434
+ "fontSize": 16,
1435
+ "marginBottom": 10
1436
+ }
1437
+ },
1438
+ "tableTimeInstance": {
1439
+ "type": "table",
1440
+ "nodelete": true,
1441
+ "sm": 12,
1442
+ "md": 12,
1443
+ "lg": 12,
1444
+ "hidden": "!data.checkAdapterInstances",
1445
+ "hideOnlyControl": false,
1446
+ "items": [
1447
+ {
1448
+ "type": "selectSendTo",
1449
+ "title": "Choose which instances should have a longer downtime",
1450
+ "attr": "instancesTime",
1451
+ "filter": false,
1452
+ "allowAddByFilter": false,
1453
+ "sort": false,
1454
+ "jsonData": "{\"instanceName\":\"${globalData.instanceName}\",\"adapter\":\"${globalData.adapter}\",\"path\":\"${globalData.path}\"}",
1455
+ "command": "instancesListTime",
1456
+ "width": "60%"
1457
+ },
1458
+ {
1459
+ "type": "number",
1460
+ "min": 20,
1461
+ "max": 1000000,
1462
+ "default": 20,
1463
+ "title": "Time in seconds",
1464
+ "attr": "errorTime",
1465
+ "width": "15%"
1466
+ }
1467
+ ]
1361
1468
  },
1362
1469
  "_headerOfflineTime": {
1363
1470
  "type": "header",
1364
1471
  "text": "Offline Time for devices/services",
1365
1472
  "size": 2
1366
1473
  },
1367
- "textOfflineTime": {
1474
+ "_textOfflineTime": {
1368
1475
  "type": "staticText",
1369
1476
  "text": "Here you can define the offline times of each adapter. If you want to use the data points of the devices/services (online, available, reachable etc.) directly to determine the status, enter ' 0 '.",
1370
1477
  "sm": 12,
@@ -1423,6 +1530,18 @@
1423
1530
  "hidden": "!data.deconzDevices",
1424
1531
  "hideOnlyControl": false
1425
1532
  },
1533
+ "ecovacsdeebotMaxMinutes": {
1534
+ "type": "number",
1535
+ "min": -1,
1536
+ "max": 100000,
1537
+ "sm": 6,
1538
+ "md": 6,
1539
+ "lg": 3,
1540
+ "label": "Ecovacs-Deebot",
1541
+ "help": "in minutes",
1542
+ "hidden": "!data.ecovacsdeebotDevices",
1543
+ "hideOnlyControl": false
1544
+ },
1426
1545
  "enoceanMaxMinutes": {
1427
1546
  "type": "number",
1428
1547
  "min": 1,
@@ -1495,6 +1614,18 @@
1495
1614
  "hidden": "!data.fullybrowserDevices",
1496
1615
  "hideOnlyControl": false
1497
1616
  },
1617
+ "fullyMQTTMaxMinutes": {
1618
+ "type": "number",
1619
+ "min": -1,
1620
+ "max": 100000,
1621
+ "sm": 6,
1622
+ "md": 6,
1623
+ "lg": 3,
1624
+ "label": "Fully-MQTT",
1625
+ "help": "in minutes",
1626
+ "hidden": "!data.fullyMQTTDevices",
1627
+ "hideOnlyControl": false
1628
+ },
1498
1629
  "hamMaxMinutes": {
1499
1630
  "type": "number",
1500
1631
  "min": 1,