@iobroker/dm-utils 1.0.9 → 1.0.10

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
@@ -301,6 +301,11 @@ This method returns a promise that resolves to a `ProgressDialog` object.
301
301
  ### **WORK IN PROGRESS**
302
302
  -->
303
303
  ## Changelog
304
+ ### 1.0.10 (2025-05-05)
305
+
306
+ * (@GermanBluefox) Added timeout property to actions
307
+ * (@GermanBluefox) Updated packages
308
+
304
309
  ### 1.0.9 (2025-01-25)
305
310
 
306
311
  * (@GermanBluefox) Added copyToClipboard dialog button
@@ -45,6 +45,8 @@ export interface ActionBase<T extends ActionType> {
45
45
  /** Step value for the input (number or slider) */
46
46
  step?: number;
47
47
  };
48
+ /** Timeout in ms for waiting an answer from backend */
49
+ timeout?: number;
48
50
  }
49
51
  export interface ChannelInfo {
50
52
  name: ioBroker.StringOrTranslated;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/dm-utils",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "ioBroker Device Manager utilities for backend",
5
5
  "main": "build/index.js",
6
6
  "publishConfig": {
@@ -27,10 +27,10 @@
27
27
  "devDependencies": {
28
28
  "@alcalzone/release-script": "^3.8.0",
29
29
  "@alcalzone/release-script-plugin-license": "^3.7.0",
30
- "@iobroker/eslint-config": "^1.0.0",
31
- "@types/node": "^22.10.10",
32
- "axios": "^1.7.9",
33
- "typescript": "^5.7.3"
30
+ "@iobroker/eslint-config": "^2.0.1",
31
+ "@types/node": "^22.15.3",
32
+ "axios": "^1.9.0",
33
+ "typescript": "^5.8.3"
34
34
  },
35
35
  "files": [
36
36
  "LICENSE",