@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 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
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/dm-utils",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "description": "ioBroker Device Manager utilities for backend",
5
5
  "main": "build/index.js",
6
6
  "publishConfig": {