data-cap
    Preparing search index...

    Interface GenerateFlowOptions

    Options for generateFlow.

    interface GenerateFlowOptions {
        additionalFindings?: readonly ReportFinding[];
        edges: readonly DependencyEdge[];
        evidencePath?: string;
        inventory: CapabilityInventory;
        location: string;
        root: string;
    }
    Index
    additionalFindings?: readonly ReportFinding[]

    Findings from other passes (C2's static rules, C6's usage scan) to fold into the Security Data-Flow Review -- optional, so --flow alone still produces a meaningful review of just its own findings.

    edges: readonly DependencyEdge[]

    Proven consumer edges from a usage scan, used to derive in-repo flow paths.

    evidencePath?: string

    This same run's own --evidence output path, when requested -- named in the generated banner's Evidence Model note.

    The inventory to build the flow graph from.

    location: string

    Directory the flow artifact set will be written under.

    root: string

    Discovery root every rendered path (consumer nodes, proven-edge labels) displays relative to.