@iobroker/js-controller-adapter 7.1.3-alpha.0-20260607-0a6edee6f → 7.2.0

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.
@@ -1,7 +1,7 @@
1
1
  import { EventEmitter } from 'node:events';
2
2
  import type { CommandResult } from '@alcalzone/pak';
3
3
  import { Log } from '../../lib/adapter/log.js';
4
- import { STATE_QUALITY, type SupportedFeature } from '../../lib/adapter/constants.js';
4
+ import { STATE_QUALITY } from '../../lib/adapter/constants.js';
5
5
  import type { AdapterOptions, CalculatePermissionsCallback, CheckGroupCallback, CheckPasswordCallback, CommandsPermissions, GetCertificatesCallback, GetCertificatesPromiseReturnType, GetEncryptedConfigCallback, GetUserGroupsOptions, InstallNodeModuleOptions, MaybePromise, NotificationOptions, Pattern, SendToOptions, SendToUserInterfaceClientOptions, StopParameters, TimeoutCallback } from '../../lib/_Types.js';
6
6
  /**
7
7
  * Here we define dynamically created methods
@@ -445,7 +445,7 @@ export declare class AdapterClass extends EventEmitter {
445
445
  getPort(port: number, host?: string, callback?: (port: number) => void): void;
446
446
  getPort(port: number, callback?: (port: number) => void): void;
447
447
  private _getPort;
448
- supportsFeature(featureName: SupportedFeature): boolean;
448
+ supportsFeature(featureName: ioBroker.SupportedFeature): boolean;
449
449
  checkPassword(user: string, pw: string, options: Record<string, any>, callback: CheckPasswordCallback): Promise<void>;
450
450
  checkPassword(user: string, pw: string, callback: CheckPasswordCallback): Promise<void>;
451
451
  private _checkPassword;