@iobroker/dm-utils 1.0.2 → 1.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 CHANGED
@@ -301,7 +301,7 @@ This method returns a promise that resolves to a `ProgressDialog` object.
301
301
  ### **WORK IN PROGRESS**
302
302
  -->
303
303
  ## Changelog
304
- ### 1.0.2 (2025-01-09)
304
+ ### 1.0.3 (2025-01-09)
305
305
 
306
306
  * (@GermanBluefox) Added description for `disabled` control and `status` action.
307
307
 
@@ -1,4 +1,4 @@
1
1
  export type * from './adapter';
2
2
  export type * from './common';
3
3
  export * from './errorCodes';
4
- export type { ChannelInfo, Color, ControlState, ControlBase } from './base';
4
+ export { type ChannelInfo, type Color, type ControlState, type ControlBase, ACTIONS } from './base';
@@ -14,4 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.ACTIONS = void 0;
17
18
  __exportStar(require("./errorCodes"), exports);
19
+ var base_1 = require("./base");
20
+ Object.defineProperty(exports, "ACTIONS", { enumerable: true, get: function () { return base_1.ACTIONS; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/dm-utils",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "ioBroker Device Manager utilities for backend",
5
5
  "main": "build/index.js",
6
6
  "publishConfig": {