@mtgame/core 0.1.8 → 0.1.9
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 +15 -13
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/localization/public-api.js +1 -2
- package/esm2015/models/game-user-limitation.js +14 -8
- package/esm5/localization/public-api.js +1 -2
- package/esm5/models/game-user-limitation.js +17 -8
- package/fesm2015/mtgame-core.js +12 -12
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +15 -13
- package/fesm5/mtgame-core.js.map +1 -1
- package/localization/public-api.d.ts +0 -1
- package/models/game-user-limitation.d.ts +9 -4
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
- package/esm2015/localization/game-user-limitation-types.js +0 -6
- package/esm5/localization/game-user-limitation-types.js +0 -7
- package/localization/game-user-limitation-types.d.ts +0 -5
|
@@ -2816,11 +2816,19 @@
|
|
|
2816
2816
|
return GameUser;
|
|
2817
2817
|
}(BaseModel));
|
|
2818
2818
|
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
GameUserLimitationTypes
|
|
2823
|
-
|
|
2819
|
+
var GameUserLimitationTypes = /** @class */ (function () {
|
|
2820
|
+
function GameUserLimitationTypes() {
|
|
2821
|
+
}
|
|
2822
|
+
GameUserLimitationTypes = __decorate([
|
|
2823
|
+
ModelInstance({
|
|
2824
|
+
mappingFields: {
|
|
2825
|
+
min_user_games_count: 'minUserGamesCount',
|
|
2826
|
+
min_user_time: 'minUserTime'
|
|
2827
|
+
},
|
|
2828
|
+
})
|
|
2829
|
+
], GameUserLimitationTypes);
|
|
2830
|
+
return GameUserLimitationTypes;
|
|
2831
|
+
}());
|
|
2824
2832
|
var GameUserLimitations = /** @class */ (function (_super) {
|
|
2825
2833
|
__extends(GameUserLimitations, _super);
|
|
2826
2834
|
function GameUserLimitations() {
|
|
@@ -2843,7 +2851,7 @@
|
|
|
2843
2851
|
limitations: 'limitations'
|
|
2844
2852
|
},
|
|
2845
2853
|
relation: {
|
|
2846
|
-
limitations:
|
|
2854
|
+
limitations: GameUserLimitationTypes
|
|
2847
2855
|
}
|
|
2848
2856
|
})
|
|
2849
2857
|
], GameUserLimitations);
|
|
@@ -8542,12 +8550,6 @@
|
|
|
8542
8550
|
_a$8[exports.VolleyballGameLogType.yellow_card] = 'Предупреждение',
|
|
8543
8551
|
_a$8);
|
|
8544
8552
|
|
|
8545
|
-
var _a$9;
|
|
8546
|
-
var GameUserLimitationTypeLocalization = (_a$9 = {},
|
|
8547
|
-
_a$9[exports.GameUserLimitationTypes.min_user_games_count] = 'Минимальное количество матчей для допуска до плей-офф',
|
|
8548
|
-
_a$9[exports.GameUserLimitationTypes.min_user_time] = 'Минимальное количество минут для допуска до плей-офф',
|
|
8549
|
-
_a$9);
|
|
8550
|
-
|
|
8551
8553
|
var LeaguePlaylist = /** @class */ (function (_super) {
|
|
8552
8554
|
__extends(LeaguePlaylist, _super);
|
|
8553
8555
|
function LeaguePlaylist() {
|
|
@@ -9034,7 +9036,7 @@
|
|
|
9034
9036
|
exports.GameTimelineStageItem = GameTimelineStageItem;
|
|
9035
9037
|
exports.GameTimelineStages = GameTimelineStages;
|
|
9036
9038
|
exports.GameUser = GameUser;
|
|
9037
|
-
exports.
|
|
9039
|
+
exports.GameUserLimitationTypes = GameUserLimitationTypes;
|
|
9038
9040
|
exports.GameUserLimitations = GameUserLimitations;
|
|
9039
9041
|
exports.GameVolleyballPositionLocalization = GameVolleyballPositionLocalization;
|
|
9040
9042
|
exports.GameVolleyballPositionShortLocalization = GameVolleyballPositionShortLocalization;
|