@mtgame/core 0.1.71 → 0.1.73
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/bundles/mtgame-core.umd.js +42 -2
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/football-statistic.js +7 -1
- package/esm2015/models/tournament.js +25 -3
- package/fesm2015/mtgame-core.js +30 -2
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/football-statistic.d.ts +2 -0
- package/models/tournament.d.ts +3 -2
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -68,6 +68,8 @@ export declare class FootballStatistic extends BaseModel implements BaseStatisti
|
|
|
68
68
|
endGamePenaltyMisses: number;
|
|
69
69
|
endGamePenaltySaves: number;
|
|
70
70
|
get userMinutes(): string;
|
|
71
|
+
get penalties(): number;
|
|
72
|
+
get smallPenalties(): number;
|
|
71
73
|
get tournamentTeamPoints(): number;
|
|
72
74
|
get tournamentTeamGamesCount(): number;
|
|
73
75
|
get tournamentTeamWonGamesCount(): number;
|
package/models/tournament.d.ts
CHANGED
|
@@ -52,8 +52,8 @@ export declare enum OvertimeTypes {
|
|
|
52
52
|
export declare class TournamentSettings extends BaseModel {
|
|
53
53
|
id: number;
|
|
54
54
|
gender: TournamentGender;
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
birthYearFrom: number;
|
|
56
|
+
birthYearTo: number;
|
|
57
57
|
maxTeamPlayers: number;
|
|
58
58
|
maxGamePlayers: number;
|
|
59
59
|
type: TournamentTypes;
|
|
@@ -82,6 +82,7 @@ export declare class TournamentSettings extends BaseModel {
|
|
|
82
82
|
freeSubstituteEnabled: boolean;
|
|
83
83
|
bonusPointsEnabled: boolean;
|
|
84
84
|
substituteManageEnabled: boolean;
|
|
85
|
+
get genderTitle(): string;
|
|
85
86
|
static toFront(data: any): any;
|
|
86
87
|
static toBack(data: any): any;
|
|
87
88
|
}
|