SongGuess
    Preparing search index...

    Interface ArtifactsCreateRepoResult

    Result of creating a repository — includes the initial access token.

    interface ArtifactsCreateRepoResult {
        defaultBranch: string;
        description: string | null;
        id: string;
        name: string;
        remote: string;
        token: string;
        tokenExpiresAt: string;
    }
    Index

    Properties

    defaultBranch: string

    Default branch name.

    description: string | null

    Repository description, or null if not set.

    id: string

    Unique repository ID.

    name: string

    Repository name.

    remote: string

    HTTPS git remote URL.

    token: string

    Plaintext access token (only returned at creation time).

    tokenExpiresAt: string

    ISO 8601 token expiry timestamp.