@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
package/fesm5/mtgame-core.js
CHANGED
|
@@ -2603,19 +2603,32 @@ var GameUser = /** @class */ (function (_super) {
|
|
|
2603
2603
|
return GameUser;
|
|
2604
2604
|
}(BaseModel));
|
|
2605
2605
|
|
|
2606
|
-
var GameUserLimitationTypes = /** @class */ (function () {
|
|
2606
|
+
var GameUserLimitationTypes = /** @class */ (function (_super) {
|
|
2607
|
+
__extends(GameUserLimitationTypes, _super);
|
|
2607
2608
|
function GameUserLimitationTypes() {
|
|
2609
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2608
2610
|
}
|
|
2611
|
+
GameUserLimitationTypes.toFront = function (data) {
|
|
2612
|
+
};
|
|
2613
|
+
GameUserLimitationTypes.toBack = function (data) {
|
|
2614
|
+
};
|
|
2615
|
+
__decorate([
|
|
2616
|
+
ToFrontHook
|
|
2617
|
+
], GameUserLimitationTypes, "toFront", null);
|
|
2618
|
+
__decorate([
|
|
2619
|
+
ToBackHook
|
|
2620
|
+
], GameUserLimitationTypes, "toBack", null);
|
|
2609
2621
|
GameUserLimitationTypes = __decorate([
|
|
2610
2622
|
ModelInstance({
|
|
2611
2623
|
mappingFields: {
|
|
2612
2624
|
min_user_games_count: 'minUserGamesCount',
|
|
2613
|
-
min_user_time: 'minUserTime'
|
|
2625
|
+
min_user_time: 'minUserTime',
|
|
2626
|
+
manual: 'manual',
|
|
2614
2627
|
},
|
|
2615
2628
|
})
|
|
2616
2629
|
], GameUserLimitationTypes);
|
|
2617
2630
|
return GameUserLimitationTypes;
|
|
2618
|
-
}());
|
|
2631
|
+
}(BaseModel));
|
|
2619
2632
|
var GameUserLimitations = /** @class */ (function (_super) {
|
|
2620
2633
|
__extends(GameUserLimitations, _super);
|
|
2621
2634
|
function GameUserLimitations() {
|