@mtgame/core 2.0.16 → 2.0.17
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/api/tournament-round-api.d.ts +2 -0
- package/esm2020/api/tournament-round-api.mjs +8 -2
- package/esm2020/models/tournament-round-team.mjs +2 -24
- package/fesm2015/mtgame-core.mjs +8 -19
- package/fesm2015/mtgame-core.mjs.map +1 -1
- package/fesm2020/mtgame-core.mjs +6 -22
- package/fesm2020/mtgame-core.mjs.map +1 -1
- package/models/tournament-round-team.d.ts +1 -7
- package/package.json +1 -1
|
@@ -2,12 +2,11 @@ import { BaseModel } from './util';
|
|
|
2
2
|
import { TournamentGroup } from './tournament-group';
|
|
3
3
|
import { TournamentDivision } from './tournament-division';
|
|
4
4
|
import { TournamentTeam } from './tournament-team';
|
|
5
|
-
import { Game } from './game';
|
|
6
5
|
export declare class TournamentRoundTeam extends BaseModel {
|
|
7
|
-
private _games;
|
|
8
6
|
id: number;
|
|
9
7
|
tournamentTeam: TournamentTeam;
|
|
10
8
|
group: TournamentGroup;
|
|
9
|
+
groupId: number;
|
|
11
10
|
division: TournamentDivision;
|
|
12
11
|
points: number;
|
|
13
12
|
handicap: number;
|
|
@@ -33,9 +32,4 @@ export declare class TournamentRoundTeam extends BaseModel {
|
|
|
33
32
|
gamesByScoreCount: {
|
|
34
33
|
[key: string]: number;
|
|
35
34
|
};
|
|
36
|
-
gamesMapping: {
|
|
37
|
-
[key: number]: Game[];
|
|
38
|
-
};
|
|
39
|
-
set games(value: Game[]);
|
|
40
|
-
get games(): Game[];
|
|
41
35
|
}
|