@iobroker/dm-utils 3.0.2 → 3.0.3
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 +1 -4
- package/build/types/api.d.ts +1 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -394,10 +394,7 @@ In version 3.x, the refresh response of device actions has changed.
|
|
|
394
394
|
Placeholder for the next version (at the beginning of the line):
|
|
395
395
|
### **WORK IN PROGRESS**
|
|
396
396
|
-->
|
|
397
|
-
### 3.0.
|
|
398
|
-
- (@GermanBluefox) Added types to call URL directly on the action button
|
|
399
|
-
|
|
400
|
-
### 3.0.0 (2026-03-01)
|
|
397
|
+
### 3.0.3 (2026-03-26)
|
|
401
398
|
|
|
402
399
|
- (@UncleSamSwiss) Enabled incremental loading of devices
|
|
403
400
|
- (@UncleSamSwiss) Removed direct access to `DeviceManagement.handleXxx()` methods (use `handler` and similar properties instead)
|
package/build/types/api.d.ts
CHANGED
|
@@ -39,13 +39,6 @@ export type DmActionConfirmResponse = DmResponseBase & {
|
|
|
39
39
|
type: 'confirm';
|
|
40
40
|
confirm: ioBroker.StringOrTranslated;
|
|
41
41
|
};
|
|
42
|
-
export type DmActionUrlResponse = DmResponseBase & {
|
|
43
|
-
type: 'url';
|
|
44
|
-
data: {
|
|
45
|
-
url: string;
|
|
46
|
-
target: string;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
42
|
export interface CommunicationForm {
|
|
50
43
|
title?: ioBroker.StringOrTranslated | null | undefined;
|
|
51
44
|
label?: ioBroker.StringOrTranslated | null | undefined;
|
|
@@ -69,4 +62,4 @@ export type DmActionProgressResponse = DmResponseBase & {
|
|
|
69
62
|
open?: boolean;
|
|
70
63
|
};
|
|
71
64
|
};
|
|
72
|
-
export type DmActionResponse = DmActionResultResponse | DmActionMessageResponse | DmActionConfirmResponse |
|
|
65
|
+
export type DmActionResponse = DmActionResultResponse | DmActionMessageResponse | DmActionConfirmResponse | DmActionFormResponse | DmActionProgressResponse;
|