@squidcloud/client
    Preparing search index...

    Interface SourceRepository

    Describes a source repository that can be prepared for analysis.

    interface SourceRepository {
        cloneUrl: string;
        defaultBranch: string;
        fullName: string;
        provider: "bitbucket" | "github";
        providerRepositoryId: string;
        webUrl: string;
    }
    Index
    cloneUrl: string

    Stores the credential-free clone URL.

    defaultBranch: string

    Stores the repository's default branch.

    fullName: string

    Stores the owner/repository name.

    provider: "bitbucket" | "github"

    Identifies the source-control provider.

    providerRepositoryId: string

    Stores the provider's immutable repository identifier.

    webUrl: string

    Stores the repository web URL.