@squidcloud/client
    Preparing search index...

    Interface SourceCodeRepositoryEvidence

    Records repository evidence supporting a source-code answer.

    interface SourceCodeRepositoryEvidence {
        commitSha: string;
        fetchedAt: string;
        paths: SourceCodePathEvidence[];
        ref: SourceCodeRef;
        repository: string;
        stale: boolean;
    }
    Index
    commitSha: string

    Stores the immutable commit SHA.

    fetchedAt: string

    Stores the snapshot fetch time.

    Lists paths supporting the finding.

    Identifies the inspected captured reference.

    repository: string

    Stores the owner/repository name.

    stale: boolean

    Marks evidence from a stale snapshot.