@mtgame/core 0.1.8 → 0.1.10
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 +27 -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 +24 -8
- package/esm5/localization/public-api.js +1 -2
- package/esm5/models/game-user-limitation.js +29 -8
- package/fesm2015/mtgame-core.js +22 -12
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +27 -13
- package/fesm5/mtgame-core.js.map +1 -1
- package/localization/public-api.d.ts +0 -1
- package/models/game-user-limitation.d.ts +11 -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,31 @@
|
|
|
2816
2816
|
return GameUser;
|
|
2817
2817
|
}(BaseModel));
|
|
2818
2818
|
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
GameUserLimitationTypes
|
|
2822
|
-
|
|
2823
|
-
|
|
2819
|
+
var GameUserLimitationTypes = /** @class */ (function (_super) {
|
|
2820
|
+
__extends(GameUserLimitationTypes, _super);
|
|
2821
|
+
function GameUserLimitationTypes() {
|
|
2822
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2823
|
+
}
|
|
2824
|
+
GameUserLimitationTypes.toFront = function (data) {
|
|
2825
|
+
};
|
|
2826
|
+
GameUserLimitationTypes.toBack = function (data) {
|
|
2827
|
+
};
|
|
2828
|
+
__decorate([
|
|
2829
|
+
ToFrontHook
|
|
2830
|
+
], GameUserLimitationTypes, "toFront", null);
|
|
2831
|
+
__decorate([
|
|
2832
|
+
ToBackHook
|
|
2833
|
+
], GameUserLimitationTypes, "toBack", null);
|
|
2834
|
+
GameUserLimitationTypes = __decorate([
|
|
2835
|
+
ModelInstance({
|
|
2836
|
+
mappingFields: {
|
|
2837
|
+
min_user_games_count: 'minUserGamesCount',
|
|
2838
|
+
min_user_time: 'minUserTime'
|
|
2839
|
+
},
|
|
2840
|
+
})
|
|
2841
|
+
], GameUserLimitationTypes);
|
|
2842
|
+
return GameUserLimitationTypes;
|
|
2843
|
+
}(BaseModel));
|
|
2824
2844
|
var GameUserLimitations = /** @class */ (function (_super) {
|
|
2825
2845
|
__extends(GameUserLimitations, _super);
|
|
2826
2846
|
function GameUserLimitations() {
|
|
@@ -2843,7 +2863,7 @@
|
|
|
2843
2863
|
limitations: 'limitations'
|
|
2844
2864
|
},
|
|
2845
2865
|
relation: {
|
|
2846
|
-
limitations:
|
|
2866
|
+
limitations: GameUserLimitationTypes
|
|
2847
2867
|
}
|
|
2848
2868
|
})
|
|
2849
2869
|
], GameUserLimitations);
|
|
@@ -8542,12 +8562,6 @@
|
|
|
8542
8562
|
_a$8[exports.VolleyballGameLogType.yellow_card] = 'Предупреждение',
|
|
8543
8563
|
_a$8);
|
|
8544
8564
|
|
|
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
8565
|
var LeaguePlaylist = /** @class */ (function (_super) {
|
|
8552
8566
|
__extends(LeaguePlaylist, _super);
|
|
8553
8567
|
function LeaguePlaylist() {
|
|
@@ -9034,7 +9048,7 @@
|
|
|
9034
9048
|
exports.GameTimelineStageItem = GameTimelineStageItem;
|
|
9035
9049
|
exports.GameTimelineStages = GameTimelineStages;
|
|
9036
9050
|
exports.GameUser = GameUser;
|
|
9037
|
-
exports.
|
|
9051
|
+
exports.GameUserLimitationTypes = GameUserLimitationTypes;
|
|
9038
9052
|
exports.GameUserLimitations = GameUserLimitations;
|
|
9039
9053
|
exports.GameVolleyballPositionLocalization = GameVolleyballPositionLocalization;
|
|
9040
9054
|
exports.GameVolleyballPositionShortLocalization = GameVolleyballPositionShortLocalization;
|