MELCloud & MELCloud Home API for Node.js - v23.3.3
    Preparing search index...

    Interface HomeAPIConfig

    Configuration options for the MELCloud Home API.

    interface HomeAPIConfig {
        autoSyncInterval?: number | null;
        baseURL?: string;
        logger?: Logger;
        onSync?: OnSyncFunction;
        password?: string;
        settingManager?: SettingManager;
        username?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    autoSyncInterval?: number | null

    Interval in minutes between automatic syncs. Set to null to disable.

    baseURL?: string

    Base URL of the MELCloud Home BFF server.

    logger?: Logger

    Custom logger. Defaults to console.

    Callback invoked after sync operations.

    password?: string
    settingManager?: SettingManager

    External setting manager for persisting credentials and session data.

    username?: string