@eagleoutice/flowr - v2.13.14
    Preparing search index...
    interface GuessDepVersionsQueryResult {
        ".meta": BaseQueryMeta;
        assignments?: readonly VersionAssignmentView[];
        dateCutoff?: string;
        declaredCombinations?: number;
        dependencies: readonly GuessedDependency[];
        linkedGroups?: readonly (readonly string[])[];
        message?: string;
        possibleCombinations?: number;
        runnableCombinations?: number;
        rVersion?: string;
        rVersionOrigin?: RVersionOrigin;
        versionSelection?: VersionSelection;
    }

    Hierarchy (View Summary)

    Index
    ".meta": BaseQueryMeta
    assignments?: readonly VersionAssignmentView[]

    concrete version assignments, present when GuessDepVersionsQuery.explode was requested (most-preferred first)

    dateCutoff?: string

    the effective date cutoff that was applied (ISO YYYY-MM-DD), if any

    declaredCombinations?: number

    The tuples the declared constraints alone leave, i.e. what the project already pins down before code usage and interdependencies are taken into account. Set only when something is declared and the declared source is active, so runnableCombinations relative to it says how much the guess added.

    dependencies: readonly GuessedDependency[]
    linkedGroups?: readonly (readonly string[])[]

    groups of packages interlinked to one shared version (the base/R group plus any configured groups), so their versions are not independent

    message?: string

    a note, e.g. when the signature database is unavailable

    possibleCombinations?: number

    the whole version space those tuples are drawn from (product of each counted factor's total versions)

    runnableCombinations?: number

    version tuples that satisfy every interdependency (the base/R hub counted against each dependency)

    rVersion?: string

    the R version the guess assumed when bounding base-R packages, if known

    rVersionOrigin?: RVersionOrigin

    Where rVersion comes from. An engine version is the R installation running the analysis, which bounds the guess without saying anything about the analyzed code, unlike a config pin or project metadata.

    versionSelection?: VersionSelection

    the configured version-selection policy the sample illustrates (newest by default; see solver.sigdb.versionSelection)