SongGuess
    Preparing search index...

    Information about a repository.

    interface ArtifactsRepoInfo {
        createdAt: string;
        defaultBranch: string;
        description: string | null;
        id: string;
        lastPushAt: string | null;
        name: string;
        readOnly: boolean;
        remote: string;
        source: string | null;
        updatedAt: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdAt: string

    ISO 8601 creation timestamp.

    defaultBranch: string

    Default branch name (e.g. "main").

    description: string | null

    Repository description, or null if not set.

    id: string

    Unique repository ID.

    lastPushAt: string | null

    ISO 8601 timestamp of the last push, or null if never pushed.

    name: string

    Repository name.

    readOnly: boolean

    Whether the repository is read-only.

    remote: string

    HTTPS git remote URL.

    source: string | null

    Fork source (e.g. "github:owner/repo", "artifacts:namespace/repo"), or null if not a fork.

    updatedAt: string

    ISO 8601 last-updated timestamp.