@espressif/rainmaker-base-cdf
    Preparing search index...

    Interface ESPCDFNodeUpdateEvent

    Event shape consumed by subscription store node-update handlers. Single source of truth for the contract between subscription channels and nodeEventHandlers.

    event_type should use ESP_CDF_NODE_SUBSCRIPTION_EVENTS values (CDF MQTT-style topics).

    interface ESPCDFNodeUpdateEvent {
        event_type: string;
        node_id: string;
        payload: unknown;
        timestamp: number;
    }
    Index

    Properties

    event_type: string
    node_id: string
    payload: unknown
    timestamp: number