data-cap
    Preparing search index...

    Interface GenerateManifestResult

    The rendered manifest plus everything needed to persist and diff it against a future run.

    interface GenerateManifestResult {
        changes: ManifestChangeReport;
        content: string;
        findings: readonly ReportFinding[];
        location: string;
        snapshot: ManifestSnapshot;
    }
    Index

    The diff against previousSnapshot, or an all-added report on a first run.

    content: string

    The rendered .ts source.

    findings: readonly ReportFinding[]

    Manifest-specific findings (e.g. MANIFEST_EXPORT_NAME_COLLISION).

    location: string

    Where this manifest is intended to be written.

    The current inventory's snapshot -- persist this to enable "changes since last report" on the next run.