@iobroker/dm-utils 0.6.7 → 0.6.8
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 +4 -0
- package/build/types/base.d.ts +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -295,6 +295,10 @@ This method returns a promise that resolves to a `ProgressDialog` object.
|
|
|
295
295
|
### **WORK IN PROGRESS**
|
|
296
296
|
-->
|
|
297
297
|
## Changelog
|
|
298
|
+
### 0.6.8 (2024-11-22)
|
|
299
|
+
|
|
300
|
+
* (@GermanBluefox) Allow grouping of devices
|
|
301
|
+
|
|
298
302
|
### 0.6.7 (2024-11-20)
|
|
299
303
|
|
|
300
304
|
* (@GermanBluefox) Updated types
|
package/build/types/base.d.ts
CHANGED
|
@@ -101,5 +101,10 @@ export interface DeviceInfo<T extends ActionType = 'api'> {
|
|
|
101
101
|
actions?: DeviceAction<T>[];
|
|
102
102
|
controls?: DeviceControl<T>[];
|
|
103
103
|
hasDetails?: boolean;
|
|
104
|
+
group?: {
|
|
105
|
+
key: string;
|
|
106
|
+
name?: ioBroker.StringOrTranslated;
|
|
107
|
+
icon?: string;
|
|
108
|
+
};
|
|
104
109
|
}
|
|
105
110
|
export {};
|