MELCloud & MELCloud Home API for Node.js - v48.2.0
    Preparing search index...

    Interface RequestLifecycleContext

    Identifies a single logical request across its lifecycle events. Generated client-side via crypto.randomUUID() when each request starts, so consumers can correlate a onRequestStart with its eventual onRequestComplete or onRequestError — including across retry attempts, which share the same correlationId.

    interface RequestLifecycleContext {
        correlationId: string;
        method: string;
        url: string;
    }

    Hierarchy (View Summary)

    Index
    correlationId: string

    Unique request identifier (UUID v4).

    method: string

    HTTP method, uppercase.

    url: string

    Request URL (possibly relative to the client's baseURL).