@mtgame/core 0.1.9 → 0.1.11
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 +16 -3
- 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/models/game-user-limitation.js +14 -3
- package/esm5/models/game-user-limitation.js +17 -4
- package/fesm2015/mtgame-core.js +13 -2
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +16 -3
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/game-user-limitation.d.ts +4 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2816,19 +2816,32 @@
|
|
|
2816
2816
|
return GameUser;
|
|
2817
2817
|
}(BaseModel));
|
|
2818
2818
|
|
|
2819
|
-
var GameUserLimitationTypes = /** @class */ (function () {
|
|
2819
|
+
var GameUserLimitationTypes = /** @class */ (function (_super) {
|
|
2820
|
+
__extends(GameUserLimitationTypes, _super);
|
|
2820
2821
|
function GameUserLimitationTypes() {
|
|
2822
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2821
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);
|
|
2822
2834
|
GameUserLimitationTypes = __decorate([
|
|
2823
2835
|
ModelInstance({
|
|
2824
2836
|
mappingFields: {
|
|
2825
2837
|
min_user_games_count: 'minUserGamesCount',
|
|
2826
|
-
min_user_time: 'minUserTime'
|
|
2838
|
+
min_user_time: 'minUserTime',
|
|
2839
|
+
manual: 'manual',
|
|
2827
2840
|
},
|
|
2828
2841
|
})
|
|
2829
2842
|
], GameUserLimitationTypes);
|
|
2830
2843
|
return GameUserLimitationTypes;
|
|
2831
|
-
}());
|
|
2844
|
+
}(BaseModel));
|
|
2832
2845
|
var GameUserLimitations = /** @class */ (function (_super) {
|
|
2833
2846
|
__extends(GameUserLimitations, _super);
|
|
2834
2847
|
function GameUserLimitations() {
|