tournament-organizer
    Preparing search index...

    Interface SettableTournamentValues

    All properties that can be set with Tournament.set.

    See TournamentValues for detailed descriptions of properties.

    interface SettableTournamentValues {
        matches?: Match[];
        meta?: { [key: string]: any };
        name?: string;
        players?: Player[];
        round?: number;
        scoring?: {
            bestOf?: number;
            bye?: number;
            draw?: number;
            loss?: number;
            tiebreaks?: (
                | "median buchholz"
                | "solkoff"
                | "sonneborn berger"
                | "koya system"
                | "cumulative"
                | "earned match wins"
                | "earned match losses"
                | "earned game wins"
                | "earned game losses"
                | "game win differential"
                | "neighborhood record"
                | "versus"
                | "mutual versus"
                | "game win percentage"
                | "opponent game win percentage"
                | "opponent match win percentage"
                | "opponent opponent match win percentage"
            )[];
            win?: number;
        };
        seating?: boolean;
        sorting?: "none"
        | "ascending"
        | "descending";
        stageOne?: {
            consolation?: boolean;
            format?:
                | "single-elimination"
                | "double-elimination"
                | "stepladder"
                | "swiss"
                | "round-robin"
                | "double-round-robin";
            initialRound?: number;
            maxPlayers?: number;
            rounds?: number;
        };
        stageTwo?: {
            advance?: { method?: "points"
            | "rank"
            | "all"; value?: number };
            consolation?: boolean;
            format?: "single-elimination" | "double-elimination" | "stepladder";
        };
        status?: "setup"
        | "stage-one"
        | "stage-two"
        | "complete";
    }
    Index

    Properties

    matches?: Match[]
    meta?: { [key: string]: any }
    name?: string
    players?: Player[]
    round?: number
    scoring?: {
        bestOf?: number;
        bye?: number;
        draw?: number;
        loss?: number;
        tiebreaks?: (
            | "median buchholz"
            | "solkoff"
            | "sonneborn berger"
            | "koya system"
            | "cumulative"
            | "earned match wins"
            | "earned match losses"
            | "earned game wins"
            | "earned game losses"
            | "game win differential"
            | "neighborhood record"
            | "versus"
            | "mutual versus"
            | "game win percentage"
            | "opponent game win percentage"
            | "opponent match win percentage"
            | "opponent opponent match win percentage"
        )[];
        win?: number;
    }
    seating?: boolean
    sorting?: "none" | "ascending" | "descending"
    stageOne?: {
        consolation?: boolean;
        format?:
            | "single-elimination"
            | "double-elimination"
            | "stepladder"
            | "swiss"
            | "round-robin"
            | "double-round-robin";
        initialRound?: number;
        maxPlayers?: number;
        rounds?: number;
    }
    stageTwo?: {
        advance?: { method?: "points" | "rank" | "all"; value?: number };
        consolation?: boolean;
        format?: "single-elimination" | "double-elimination" | "stepladder";
    }
    status?: "setup" | "stage-one" | "stage-two" | "complete"