volleyballsimtypes 0.0.41 → 0.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/src/data/models/tournament-match.d.ts +2 -1
- package/dist/cjs/src/data/models/tournament.d.ts +26 -1
- package/dist/cjs/src/data/transformers/tournament-match.d.ts +1 -1
- package/dist/cjs/src/data/transformers/tournament-match.js +5 -4
- package/dist/cjs/src/data/transformers/tournament.js +2 -0
- package/dist/cjs/src/service/tournament/tournament.d.ts +3 -1
- package/dist/cjs/src/service/tournament/tournament.js +2 -1
- package/dist/esm/src/data/models/tournament-match.d.ts +2 -1
- package/dist/esm/src/data/models/tournament.d.ts +26 -1
- package/dist/esm/src/data/transformers/tournament-match.d.ts +1 -1
- package/dist/esm/src/data/transformers/tournament-match.js +6 -5
- package/dist/esm/src/data/transformers/tournament.js +3 -1
- package/dist/esm/src/service/tournament/tournament.d.ts +3 -1
- package/dist/esm/src/service/tournament/tournament.js +2 -1
- package/package.json +1 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as Sequelize from 'sequelize';
|
|
2
2
|
import { Model } from 'sequelize';
|
|
3
|
-
import type { MatchId, MatchModel, TournamentId, TournamentModel } from '.';
|
|
3
|
+
import type { MatchAttributes, MatchId, MatchModel, TournamentId, TournamentModel } from '.';
|
|
4
4
|
export interface TournamentMatchAttributes {
|
|
5
5
|
tournament_id: string;
|
|
6
6
|
match_id: string;
|
|
7
7
|
index: number;
|
|
8
8
|
stage: TournamentStage;
|
|
9
|
+
match?: MatchAttributes;
|
|
9
10
|
}
|
|
10
11
|
export type TournamentStage = 'ROUND_OF_8' | 'QUARTERFINALS' | 'SEMIFINALS' | 'FINAL';
|
|
11
12
|
export type TournamentMatchPk = 'match_id';
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import * as Sequelize from 'sequelize';
|
|
2
2
|
import { Model, Optional } from 'sequelize';
|
|
3
|
-
import type { TeamId, TeamModel, TournamentMatchAttributes, TournamentMatchId, TournamentMatchModel } from '.';
|
|
3
|
+
import type { TeamId, TeamModel, TournamentMatchAttributes, TournamentMatchId, TournamentMatchModel, TournamentTeamsId } from '.';
|
|
4
|
+
import { TeamAttributes, TournamentTeamsModel } from '.';
|
|
4
5
|
export interface TournamentAttributes {
|
|
5
6
|
tournament_id: string;
|
|
6
7
|
iteration: number;
|
|
7
8
|
champion?: string;
|
|
8
9
|
tournamentMatches?: TournamentMatchAttributes[];
|
|
10
|
+
tournamentTeams?: TeamAttributes[];
|
|
9
11
|
}
|
|
10
12
|
export type TournamentPk = 'tournament_id';
|
|
11
13
|
export type TournamentId = TournamentModel[TournamentPk];
|
|
@@ -15,11 +17,13 @@ export declare class TournamentModel extends Model<TournamentAttributes, Tournam
|
|
|
15
17
|
tournament_id: string;
|
|
16
18
|
iteration: number;
|
|
17
19
|
champion?: string;
|
|
20
|
+
tournamentTeams: TeamModel[];
|
|
18
21
|
champion_Team: TeamModel;
|
|
19
22
|
getChampion_Team: Sequelize.BelongsToGetAssociationMixin<TeamModel>;
|
|
20
23
|
setChampion_Team: Sequelize.BelongsToSetAssociationMixin<TeamModel, TeamId>;
|
|
21
24
|
createChampion_Team: Sequelize.BelongsToCreateAssociationMixin<TeamModel>;
|
|
22
25
|
TournamentMatches: TournamentMatchModel[];
|
|
26
|
+
tournamentMatches: TournamentMatchModel[];
|
|
23
27
|
getTournamentMatches: Sequelize.HasManyGetAssociationsMixin<TournamentMatchModel>;
|
|
24
28
|
setTournamentMatches: Sequelize.HasManySetAssociationsMixin<TournamentMatchModel, TournamentMatchId>;
|
|
25
29
|
addTournamentMatch: Sequelize.HasManyAddAssociationMixin<TournamentMatchModel, TournamentMatchId>;
|
|
@@ -30,5 +34,26 @@ export declare class TournamentModel extends Model<TournamentAttributes, Tournam
|
|
|
30
34
|
hasTournamentMatch: Sequelize.HasManyHasAssociationMixin<TournamentMatchModel, TournamentMatchId>;
|
|
31
35
|
hasTournamentMatches: Sequelize.HasManyHasAssociationsMixin<TournamentMatchModel, TournamentMatchId>;
|
|
32
36
|
countTournamentMatches: Sequelize.HasManyCountAssociationsMixin;
|
|
37
|
+
TournamentTeams: TournamentTeamsModel[];
|
|
38
|
+
getTournamentTeams: Sequelize.HasManyGetAssociationsMixin<TournamentTeamsModel>;
|
|
39
|
+
setTournamentTeams: Sequelize.HasManySetAssociationsMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
40
|
+
addTournamentTeam: Sequelize.HasManyAddAssociationMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
41
|
+
addTournamentTeams: Sequelize.HasManyAddAssociationsMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
42
|
+
createTournamentTeam: Sequelize.HasManyCreateAssociationMixin<TournamentTeamsModel>;
|
|
43
|
+
removeTournamentTeam: Sequelize.HasManyRemoveAssociationMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
44
|
+
removeTournamentTeams: Sequelize.HasManyRemoveAssociationsMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
45
|
+
hasTournamentTeam: Sequelize.HasManyHasAssociationMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
46
|
+
hasTournamentTeams: Sequelize.HasManyHasAssociationsMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
47
|
+
countTournamentTeams: Sequelize.HasManyCountAssociationsMixin;
|
|
48
|
+
gettournamentTeams: Sequelize.BelongsToManyGetAssociationsMixin<TeamModel>;
|
|
49
|
+
settournamentTeams: Sequelize.BelongsToManySetAssociationsMixin<TeamModel, TeamId>;
|
|
50
|
+
addTeam_id_Team: Sequelize.BelongsToManyAddAssociationMixin<TeamModel, TeamId>;
|
|
51
|
+
addtournamentTeams: Sequelize.BelongsToManyAddAssociationsMixin<TeamModel, TeamId>;
|
|
52
|
+
createTeam_id_Team: Sequelize.BelongsToManyCreateAssociationMixin<TeamModel>;
|
|
53
|
+
removeTeam_id_Team: Sequelize.BelongsToManyRemoveAssociationMixin<TeamModel, TeamId>;
|
|
54
|
+
removetournamentTeams: Sequelize.BelongsToManyRemoveAssociationsMixin<TeamModel, TeamId>;
|
|
55
|
+
hasTeam_id_Team: Sequelize.BelongsToManyHasAssociationMixin<TeamModel, TeamId>;
|
|
56
|
+
hastournamentTeams: Sequelize.BelongsToManyHasAssociationsMixin<TeamModel, TeamId>;
|
|
57
|
+
counttournamentTeams: Sequelize.BelongsToManyCountAssociationsMixin;
|
|
33
58
|
static initModel(sequelize: Sequelize.Sequelize): typeof TournamentModel;
|
|
34
59
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TournamentMatch } from '../../service';
|
|
2
2
|
import { APITournamentMatch } from '../../routing';
|
|
3
3
|
import { TournamentMatchAttributes, TournamentMatchModel } from '../models';
|
|
4
|
-
declare function transformToAttributes(
|
|
4
|
+
declare function transformToAttributes(tournamentMatch: TournamentMatch, tournamentId: string): TournamentMatchAttributes;
|
|
5
5
|
declare function transformToObject(model: TournamentMatchModel): TournamentMatch;
|
|
6
6
|
declare function transformToAPIObject(model: TournamentMatchModel): APITournamentMatch;
|
|
7
7
|
export { transformToObject as transformToTournamentMatch, transformToAPIObject as transformToAPITournamentMatch, transformToAttributes as transformFromTournamentMatch };
|
|
@@ -3,12 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.transformFromTournamentMatch = exports.transformToAPITournamentMatch = exports.transformToTournamentMatch = void 0;
|
|
4
4
|
const service_1 = require("../../service");
|
|
5
5
|
const _1 = require(".");
|
|
6
|
-
function transformToAttributes(
|
|
6
|
+
function transformToAttributes(tournamentMatch, tournamentId) {
|
|
7
7
|
return {
|
|
8
8
|
tournament_id: tournamentId,
|
|
9
|
-
match_id:
|
|
10
|
-
index:
|
|
11
|
-
stage: (0, _1.transformFromStage)(
|
|
9
|
+
match_id: tournamentMatch.match.id,
|
|
10
|
+
index: tournamentMatch.index,
|
|
11
|
+
stage: (0, _1.transformFromStage)(tournamentMatch.stage),
|
|
12
|
+
match: tournamentMatch.match != null ? (0, _1.transformFromMatch)(tournamentMatch.match) : undefined
|
|
12
13
|
};
|
|
13
14
|
}
|
|
14
15
|
exports.transformFromTournamentMatch = transformToAttributes;
|
|
@@ -10,6 +10,7 @@ function transformToAttributes(tournament) {
|
|
|
10
10
|
tournament_id: tournament.id,
|
|
11
11
|
iteration: tournament.iteration,
|
|
12
12
|
champion: tournament.champion != null ? tournament.champion.id : undefined,
|
|
13
|
+
tournamentTeams: tournament.teams != null ? tournament.teams.map(_1.transformFromTeam) : [],
|
|
13
14
|
tournamentMatches
|
|
14
15
|
};
|
|
15
16
|
}
|
|
@@ -19,6 +20,7 @@ function transformToObject(model) {
|
|
|
19
20
|
id: model.tournament_id,
|
|
20
21
|
iteration: model.iteration,
|
|
21
22
|
matches: model.TournamentMatches.map(_1.transformToTournamentMatch),
|
|
23
|
+
teams: model.tournamentTeams != null ? model.tournamentTeams.map(_1.transformToTeam) : [],
|
|
22
24
|
champion: model.champion_Team != null ? (0, _1.transformToTeam)(model.champion_Team) : undefined
|
|
23
25
|
});
|
|
24
26
|
}
|
|
@@ -4,13 +4,15 @@ export interface TournamentOpts {
|
|
|
4
4
|
readonly id: string;
|
|
5
5
|
readonly iteration: number;
|
|
6
6
|
readonly matches: TournamentMatch[];
|
|
7
|
+
readonly teams: Team[];
|
|
7
8
|
readonly champion?: Team;
|
|
8
9
|
}
|
|
9
10
|
export declare class Tournament {
|
|
10
11
|
readonly id: string;
|
|
11
12
|
readonly iteration: number;
|
|
12
13
|
readonly matches: TournamentMatch[];
|
|
14
|
+
readonly teams: Team[];
|
|
13
15
|
champion?: Team;
|
|
14
|
-
constructor({ id, iteration, matches, champion }: TournamentOpts);
|
|
16
|
+
constructor({ id, iteration, matches, teams, champion }: TournamentOpts);
|
|
15
17
|
static sortMatchesFn(m1: TournamentMatch, m2: TournamentMatch): number;
|
|
16
18
|
}
|
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Tournament = void 0;
|
|
4
4
|
class Tournament {
|
|
5
|
-
constructor({ id, iteration, matches, champion }) {
|
|
5
|
+
constructor({ id, iteration, matches, teams, champion }) {
|
|
6
6
|
this.id = id;
|
|
7
7
|
this.iteration = iteration;
|
|
8
8
|
this.matches = matches;
|
|
9
|
+
this.teams = teams;
|
|
9
10
|
this.champion = champion;
|
|
10
11
|
this.matches.sort(Tournament.sortMatchesFn);
|
|
11
12
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as Sequelize from 'sequelize';
|
|
2
2
|
import { Model } from 'sequelize';
|
|
3
|
-
import type { MatchId, MatchModel, TournamentId, TournamentModel } from '.';
|
|
3
|
+
import type { MatchAttributes, MatchId, MatchModel, TournamentId, TournamentModel } from '.';
|
|
4
4
|
export interface TournamentMatchAttributes {
|
|
5
5
|
tournament_id: string;
|
|
6
6
|
match_id: string;
|
|
7
7
|
index: number;
|
|
8
8
|
stage: TournamentStage;
|
|
9
|
+
match?: MatchAttributes;
|
|
9
10
|
}
|
|
10
11
|
export type TournamentStage = 'ROUND_OF_8' | 'QUARTERFINALS' | 'SEMIFINALS' | 'FINAL';
|
|
11
12
|
export type TournamentMatchPk = 'match_id';
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import * as Sequelize from 'sequelize';
|
|
2
2
|
import { Model, Optional } from 'sequelize';
|
|
3
|
-
import type { TeamId, TeamModel, TournamentMatchAttributes, TournamentMatchId, TournamentMatchModel } from '.';
|
|
3
|
+
import type { TeamId, TeamModel, TournamentMatchAttributes, TournamentMatchId, TournamentMatchModel, TournamentTeamsId } from '.';
|
|
4
|
+
import { TeamAttributes, TournamentTeamsModel } from '.';
|
|
4
5
|
export interface TournamentAttributes {
|
|
5
6
|
tournament_id: string;
|
|
6
7
|
iteration: number;
|
|
7
8
|
champion?: string;
|
|
8
9
|
tournamentMatches?: TournamentMatchAttributes[];
|
|
10
|
+
tournamentTeams?: TeamAttributes[];
|
|
9
11
|
}
|
|
10
12
|
export type TournamentPk = 'tournament_id';
|
|
11
13
|
export type TournamentId = TournamentModel[TournamentPk];
|
|
@@ -15,11 +17,13 @@ export declare class TournamentModel extends Model<TournamentAttributes, Tournam
|
|
|
15
17
|
tournament_id: string;
|
|
16
18
|
iteration: number;
|
|
17
19
|
champion?: string;
|
|
20
|
+
tournamentTeams: TeamModel[];
|
|
18
21
|
champion_Team: TeamModel;
|
|
19
22
|
getChampion_Team: Sequelize.BelongsToGetAssociationMixin<TeamModel>;
|
|
20
23
|
setChampion_Team: Sequelize.BelongsToSetAssociationMixin<TeamModel, TeamId>;
|
|
21
24
|
createChampion_Team: Sequelize.BelongsToCreateAssociationMixin<TeamModel>;
|
|
22
25
|
TournamentMatches: TournamentMatchModel[];
|
|
26
|
+
tournamentMatches: TournamentMatchModel[];
|
|
23
27
|
getTournamentMatches: Sequelize.HasManyGetAssociationsMixin<TournamentMatchModel>;
|
|
24
28
|
setTournamentMatches: Sequelize.HasManySetAssociationsMixin<TournamentMatchModel, TournamentMatchId>;
|
|
25
29
|
addTournamentMatch: Sequelize.HasManyAddAssociationMixin<TournamentMatchModel, TournamentMatchId>;
|
|
@@ -30,5 +34,26 @@ export declare class TournamentModel extends Model<TournamentAttributes, Tournam
|
|
|
30
34
|
hasTournamentMatch: Sequelize.HasManyHasAssociationMixin<TournamentMatchModel, TournamentMatchId>;
|
|
31
35
|
hasTournamentMatches: Sequelize.HasManyHasAssociationsMixin<TournamentMatchModel, TournamentMatchId>;
|
|
32
36
|
countTournamentMatches: Sequelize.HasManyCountAssociationsMixin;
|
|
37
|
+
TournamentTeams: TournamentTeamsModel[];
|
|
38
|
+
getTournamentTeams: Sequelize.HasManyGetAssociationsMixin<TournamentTeamsModel>;
|
|
39
|
+
setTournamentTeams: Sequelize.HasManySetAssociationsMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
40
|
+
addTournamentTeam: Sequelize.HasManyAddAssociationMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
41
|
+
addTournamentTeams: Sequelize.HasManyAddAssociationsMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
42
|
+
createTournamentTeam: Sequelize.HasManyCreateAssociationMixin<TournamentTeamsModel>;
|
|
43
|
+
removeTournamentTeam: Sequelize.HasManyRemoveAssociationMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
44
|
+
removeTournamentTeams: Sequelize.HasManyRemoveAssociationsMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
45
|
+
hasTournamentTeam: Sequelize.HasManyHasAssociationMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
46
|
+
hasTournamentTeams: Sequelize.HasManyHasAssociationsMixin<TournamentTeamsModel, TournamentTeamsId>;
|
|
47
|
+
countTournamentTeams: Sequelize.HasManyCountAssociationsMixin;
|
|
48
|
+
gettournamentTeams: Sequelize.BelongsToManyGetAssociationsMixin<TeamModel>;
|
|
49
|
+
settournamentTeams: Sequelize.BelongsToManySetAssociationsMixin<TeamModel, TeamId>;
|
|
50
|
+
addTeam_id_Team: Sequelize.BelongsToManyAddAssociationMixin<TeamModel, TeamId>;
|
|
51
|
+
addtournamentTeams: Sequelize.BelongsToManyAddAssociationsMixin<TeamModel, TeamId>;
|
|
52
|
+
createTeam_id_Team: Sequelize.BelongsToManyCreateAssociationMixin<TeamModel>;
|
|
53
|
+
removeTeam_id_Team: Sequelize.BelongsToManyRemoveAssociationMixin<TeamModel, TeamId>;
|
|
54
|
+
removetournamentTeams: Sequelize.BelongsToManyRemoveAssociationsMixin<TeamModel, TeamId>;
|
|
55
|
+
hasTeam_id_Team: Sequelize.BelongsToManyHasAssociationMixin<TeamModel, TeamId>;
|
|
56
|
+
hastournamentTeams: Sequelize.BelongsToManyHasAssociationsMixin<TeamModel, TeamId>;
|
|
57
|
+
counttournamentTeams: Sequelize.BelongsToManyCountAssociationsMixin;
|
|
33
58
|
static initModel(sequelize: Sequelize.Sequelize): typeof TournamentModel;
|
|
34
59
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TournamentMatch } from '../../service';
|
|
2
2
|
import { APITournamentMatch } from '../../routing';
|
|
3
3
|
import { TournamentMatchAttributes, TournamentMatchModel } from '../models';
|
|
4
|
-
declare function transformToAttributes(
|
|
4
|
+
declare function transformToAttributes(tournamentMatch: TournamentMatch, tournamentId: string): TournamentMatchAttributes;
|
|
5
5
|
declare function transformToObject(model: TournamentMatchModel): TournamentMatch;
|
|
6
6
|
declare function transformToAPIObject(model: TournamentMatchModel): APITournamentMatch;
|
|
7
7
|
export { transformToObject as transformToTournamentMatch, transformToAPIObject as transformToAPITournamentMatch, transformToAttributes as transformFromTournamentMatch };
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { TournamentMatch } from '../../service';
|
|
2
|
-
import { transformFromStage, transformToMatch, transformToStage } from '.';
|
|
3
|
-
function transformToAttributes(
|
|
2
|
+
import { transformFromMatch, transformFromStage, transformToMatch, transformToStage } from '.';
|
|
3
|
+
function transformToAttributes(tournamentMatch, tournamentId) {
|
|
4
4
|
return {
|
|
5
5
|
tournament_id: tournamentId,
|
|
6
|
-
match_id:
|
|
7
|
-
index:
|
|
8
|
-
stage: transformFromStage(
|
|
6
|
+
match_id: tournamentMatch.match.id,
|
|
7
|
+
index: tournamentMatch.index,
|
|
8
|
+
stage: transformFromStage(tournamentMatch.stage),
|
|
9
|
+
match: tournamentMatch.match != null ? transformFromMatch(tournamentMatch.match) : undefined
|
|
9
10
|
};
|
|
10
11
|
}
|
|
11
12
|
function transformToObject(model) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { transformFromTournamentMatch, transformToTeam, transformToTournamentMatch } from '.';
|
|
1
|
+
import { transformFromTeam, transformFromTournamentMatch, transformToTeam, transformToTournamentMatch } from '.';
|
|
2
2
|
import { Tournament } from '../../service';
|
|
3
3
|
function transformToAttributes(tournament) {
|
|
4
4
|
const tournamentMatches = tournament.matches != null ?
|
|
@@ -7,6 +7,7 @@ function transformToAttributes(tournament) {
|
|
|
7
7
|
tournament_id: tournament.id,
|
|
8
8
|
iteration: tournament.iteration,
|
|
9
9
|
champion: tournament.champion != null ? tournament.champion.id : undefined,
|
|
10
|
+
tournamentTeams: tournament.teams != null ? tournament.teams.map(transformFromTeam) : [],
|
|
10
11
|
tournamentMatches
|
|
11
12
|
};
|
|
12
13
|
}
|
|
@@ -15,6 +16,7 @@ function transformToObject(model) {
|
|
|
15
16
|
id: model.tournament_id,
|
|
16
17
|
iteration: model.iteration,
|
|
17
18
|
matches: model.TournamentMatches.map(transformToTournamentMatch),
|
|
19
|
+
teams: model.tournamentTeams != null ? model.tournamentTeams.map(transformToTeam) : [],
|
|
18
20
|
champion: model.champion_Team != null ? transformToTeam(model.champion_Team) : undefined
|
|
19
21
|
});
|
|
20
22
|
}
|
|
@@ -4,13 +4,15 @@ export interface TournamentOpts {
|
|
|
4
4
|
readonly id: string;
|
|
5
5
|
readonly iteration: number;
|
|
6
6
|
readonly matches: TournamentMatch[];
|
|
7
|
+
readonly teams: Team[];
|
|
7
8
|
readonly champion?: Team;
|
|
8
9
|
}
|
|
9
10
|
export declare class Tournament {
|
|
10
11
|
readonly id: string;
|
|
11
12
|
readonly iteration: number;
|
|
12
13
|
readonly matches: TournamentMatch[];
|
|
14
|
+
readonly teams: Team[];
|
|
13
15
|
champion?: Team;
|
|
14
|
-
constructor({ id, iteration, matches, champion }: TournamentOpts);
|
|
16
|
+
constructor({ id, iteration, matches, teams, champion }: TournamentOpts);
|
|
15
17
|
static sortMatchesFn(m1: TournamentMatch, m2: TournamentMatch): number;
|
|
16
18
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export class Tournament {
|
|
2
|
-
constructor({ id, iteration, matches, champion }) {
|
|
2
|
+
constructor({ id, iteration, matches, teams, champion }) {
|
|
3
3
|
this.id = id;
|
|
4
4
|
this.iteration = iteration;
|
|
5
5
|
this.matches = matches;
|
|
6
|
+
this.teams = teams;
|
|
6
7
|
this.champion = champion;
|
|
7
8
|
this.matches.sort(Tournament.sortMatchesFn);
|
|
8
9
|
}
|