Member Junction
    Preparing search index...

    A node in the flow graph

    interface FlowNode {
        Badges?: FlowNodeBadge[];
        Collapsed?: boolean;
        Data?: Record<string, unknown>;
        Icon?: string;
        IconColor?: string;
        ID: string;
        IsStartNode?: boolean;
        Label: string;
        Locked?: boolean;
        Ports: FlowNodePort[];
        Position: FlowPosition;
        Selected?: boolean;
        Size?: FlowSize;
        Status: FlowNodeStatus;
        StatusMessage?: string;
        Subtitle?: string;
        Type: string;
    }
    Index

    Properties

    Badges?: FlowNodeBadge[]
    Collapsed?: boolean
    Data?: Record<string, unknown>

    Opaque data payload — consumers store domain-specific data here

    Icon?: string
    IconColor?: string
    ID: string
    IsStartNode?: boolean
    Label: string
    Locked?: boolean
    Ports: FlowNodePort[]
    Position: FlowPosition
    Selected?: boolean
    Size?: FlowSize
    StatusMessage?: string
    Subtitle?: string
    Type: string