@mtgame/core 0.2.119 → 0.2.121
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 +25 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/tournament.js +22 -1
- package/fesm2015/mtgame-core.js +22 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/tournament.d.ts +9 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/models/tournament.d.ts
CHANGED
|
@@ -61,7 +61,14 @@ export declare enum TimerTypes {
|
|
|
61
61
|
backward = 1,
|
|
62
62
|
forward = 2
|
|
63
63
|
}
|
|
64
|
+
export declare enum SubstituteManageTypes {
|
|
65
|
+
goalkeeper_only = 1,
|
|
66
|
+
additional_screen = 2,
|
|
67
|
+
one_screen = 3,
|
|
68
|
+
split_screen = 4
|
|
69
|
+
}
|
|
64
70
|
export declare class TournamentSettings extends BaseModel {
|
|
71
|
+
private _substituteManageMode;
|
|
65
72
|
id: number;
|
|
66
73
|
gender: TournamentGender;
|
|
67
74
|
birthYearFrom: number;
|
|
@@ -105,6 +112,8 @@ export declare class TournamentSettings extends BaseModel {
|
|
|
105
112
|
hideOnLeagueMainPage: boolean;
|
|
106
113
|
wrestlerScrumsCount: number;
|
|
107
114
|
wrestlersCount: number;
|
|
115
|
+
get substituteManageMode(): SubstituteManageTypes;
|
|
116
|
+
set substituteManageMode(value: SubstituteManageTypes);
|
|
108
117
|
get genderTitle(): string;
|
|
109
118
|
static toFront(data: any): any;
|
|
110
119
|
static toBack(data: any): any;
|