@mtgame/core 0.1.5 → 0.1.7
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/api/game-base-api.d.ts +2 -0
- package/bundles/mtgame-core.umd.js +195 -118
- 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/api/game-base-api.js +7 -1
- package/esm2015/localization/game-user-limitation-types.js +6 -0
- package/esm2015/localization/public-api.js +2 -1
- package/esm2015/models/game-user-limitation.js +32 -0
- package/esm2015/models/game.js +4 -1
- package/esm2015/models/league.js +14 -4
- package/esm2015/models/playoff.js +3 -1
- package/esm2015/models/public-api.js +2 -1
- package/esm2015/models/util.js +3 -3
- package/esm5/api/game-base-api.js +9 -1
- package/esm5/localization/game-user-limitation-types.js +7 -0
- package/esm5/localization/public-api.js +2 -1
- package/esm5/models/game-user-limitation.js +37 -0
- package/esm5/models/game.js +4 -1
- package/esm5/models/league.js +28 -4
- package/esm5/models/playoff.js +3 -1
- package/esm5/models/public-api.js +2 -1
- package/esm5/models/util.js +3 -3
- package/fesm2015/mtgame-core.js +159 -106
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +194 -119
- package/fesm5/mtgame-core.js.map +1 -1
- package/localization/game-user-limitation-types.d.ts +5 -0
- package/localization/public-api.d.ts +1 -0
- package/models/game-user-limitation.d.ts +11 -0
- package/models/game.d.ts +2 -0
- package/models/league.d.ts +3 -0
- package/models/playoff.d.ts +2 -0
- package/models/public-api.d.ts +1 -0
- package/models/util.d.ts +2 -2
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -139,13 +139,13 @@ function listField(modelClass) {
|
|
|
139
139
|
if (!Array.isArray(value)) {
|
|
140
140
|
return [];
|
|
141
141
|
}
|
|
142
|
-
return modelClass.toFront(
|
|
142
|
+
return value.map(function (item) { return modelClass.toFront(item); });
|
|
143
143
|
},
|
|
144
144
|
toBack: function (value) {
|
|
145
145
|
if (!Array.isArray(value)) {
|
|
146
146
|
return [];
|
|
147
147
|
}
|
|
148
|
-
return modelClass.toBack(
|
|
148
|
+
return value.map(function (item) { return modelClass.toBack(item); });
|
|
149
149
|
}
|
|
150
150
|
};
|
|
151
151
|
}
|
|
@@ -963,21 +963,45 @@ var League = /** @class */ (function (_super) {
|
|
|
963
963
|
League.toBack = function (data) { };
|
|
964
964
|
Object.defineProperty(League.prototype, "vkLink", {
|
|
965
965
|
get: function () {
|
|
966
|
-
return this.socialLinks.find(function (link) { return link.
|
|
966
|
+
return this.socialLinks.find(function (link) { return link.indexOf('vk.com/') > -1; });
|
|
967
967
|
},
|
|
968
968
|
enumerable: true,
|
|
969
969
|
configurable: true
|
|
970
970
|
});
|
|
971
971
|
Object.defineProperty(League.prototype, "fbLink", {
|
|
972
972
|
get: function () {
|
|
973
|
-
return this.socialLinks.find(function (link) { return link.
|
|
973
|
+
return this.socialLinks.find(function (link) { return link.indexOf('facebook.com/') > -1; });
|
|
974
974
|
},
|
|
975
975
|
enumerable: true,
|
|
976
976
|
configurable: true
|
|
977
977
|
});
|
|
978
978
|
Object.defineProperty(League.prototype, "instaLink", {
|
|
979
979
|
get: function () {
|
|
980
|
-
return this.socialLinks.find(function (link) { return link.
|
|
980
|
+
return this.socialLinks.find(function (link) { return link.indexOf('instagram.com/') > -1; });
|
|
981
|
+
},
|
|
982
|
+
enumerable: true,
|
|
983
|
+
configurable: true
|
|
984
|
+
});
|
|
985
|
+
Object.defineProperty(League.prototype, "youtubeLink", {
|
|
986
|
+
get: function () {
|
|
987
|
+
return this.socialLinks.find(function (link) { return link.indexOf('youtube.com/') > -1; });
|
|
988
|
+
},
|
|
989
|
+
enumerable: true,
|
|
990
|
+
configurable: true
|
|
991
|
+
});
|
|
992
|
+
Object.defineProperty(League.prototype, "telegramLink", {
|
|
993
|
+
get: function () {
|
|
994
|
+
return this.socialLinks.find(function (link) {
|
|
995
|
+
return link.substr(0, 13) === 'https://t.me/' ||
|
|
996
|
+
link.substr(0, 17) === 'https://www.t.me/';
|
|
997
|
+
});
|
|
998
|
+
},
|
|
999
|
+
enumerable: true,
|
|
1000
|
+
configurable: true
|
|
1001
|
+
});
|
|
1002
|
+
Object.defineProperty(League.prototype, "tiktokLink", {
|
|
1003
|
+
get: function () {
|
|
1004
|
+
return this.socialLinks.find(function (link) { return link.indexOf('tiktok.com/') > -1; });
|
|
981
1005
|
},
|
|
982
1006
|
enumerable: true,
|
|
983
1007
|
configurable: true
|
|
@@ -1540,6 +1564,121 @@ var HandballGameConfig = /** @class */ (function (_super) {
|
|
|
1540
1564
|
return HandballGameConfig;
|
|
1541
1565
|
}(BaseModel));
|
|
1542
1566
|
|
|
1567
|
+
function generateArray(length) {
|
|
1568
|
+
if (length <= 0) {
|
|
1569
|
+
return [];
|
|
1570
|
+
}
|
|
1571
|
+
return Array.apply(null, Array(length)).map(function (_, i) { return i + 1; });
|
|
1572
|
+
}
|
|
1573
|
+
function getArrayChunks(array, length) {
|
|
1574
|
+
var chunks = [];
|
|
1575
|
+
var chunkLength = Math.ceil(array.length / length);
|
|
1576
|
+
if (chunkLength === 0) {
|
|
1577
|
+
return [array];
|
|
1578
|
+
}
|
|
1579
|
+
for (var i = 0; i < chunkLength; i++) {
|
|
1580
|
+
chunks.push(array.slice(i * length, (i + 1) * length));
|
|
1581
|
+
}
|
|
1582
|
+
return chunks;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
var PlayoffTypes;
|
|
1586
|
+
(function (PlayoffTypes) {
|
|
1587
|
+
PlayoffTypes["double_elimination"] = "double_elimination";
|
|
1588
|
+
PlayoffTypes["elimination"] = "elimination";
|
|
1589
|
+
})(PlayoffTypes || (PlayoffTypes = {}));
|
|
1590
|
+
var PlayoffSettings = /** @class */ (function (_super) {
|
|
1591
|
+
__extends(PlayoffSettings, _super);
|
|
1592
|
+
function PlayoffSettings() {
|
|
1593
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
1594
|
+
}
|
|
1595
|
+
PlayoffSettings.toFront = function (data) { };
|
|
1596
|
+
PlayoffSettings.toBack = function (data) { };
|
|
1597
|
+
__decorate([
|
|
1598
|
+
ToFrontHook
|
|
1599
|
+
], PlayoffSettings, "toFront", null);
|
|
1600
|
+
__decorate([
|
|
1601
|
+
ToBackHook
|
|
1602
|
+
], PlayoffSettings, "toBack", null);
|
|
1603
|
+
PlayoffSettings = __decorate([
|
|
1604
|
+
ModelInstance({
|
|
1605
|
+
mappingFields: {
|
|
1606
|
+
rounds: 'rounds',
|
|
1607
|
+
final_rounds: 'finalRounds',
|
|
1608
|
+
third_place_rounds: 'thirdPlaceRounds',
|
|
1609
|
+
teams_count: 'teamsCount',
|
|
1610
|
+
type: 'type',
|
|
1611
|
+
min_player_games_count: 'minPlayerGamesCount',
|
|
1612
|
+
min_player_time: 'minPlayerTime',
|
|
1613
|
+
},
|
|
1614
|
+
relation: {
|
|
1615
|
+
type: enumField(PlayoffTypes)
|
|
1616
|
+
}
|
|
1617
|
+
})
|
|
1618
|
+
], PlayoffSettings);
|
|
1619
|
+
return PlayoffSettings;
|
|
1620
|
+
}(BaseModel));
|
|
1621
|
+
var Playoff = /** @class */ (function (_super) {
|
|
1622
|
+
__extends(Playoff, _super);
|
|
1623
|
+
function Playoff() {
|
|
1624
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1625
|
+
_this.stages = [];
|
|
1626
|
+
return _this;
|
|
1627
|
+
}
|
|
1628
|
+
Playoff.toFront = function (data) { };
|
|
1629
|
+
Playoff.toBack = function (data) { };
|
|
1630
|
+
Object.defineProperty(Playoff.prototype, "stagesCount", {
|
|
1631
|
+
get: function () {
|
|
1632
|
+
return Math.log(this.settings.teamsCount) / Math.log(2);
|
|
1633
|
+
},
|
|
1634
|
+
enumerable: true,
|
|
1635
|
+
configurable: true
|
|
1636
|
+
});
|
|
1637
|
+
Playoff.prototype.getPlayoffStages = function () {
|
|
1638
|
+
var _this = this;
|
|
1639
|
+
if (this.stages.length === 0 && this.settings.teamsCount) {
|
|
1640
|
+
var stagesCount = Math.log(this.settings.teamsCount) / Math.log(2);
|
|
1641
|
+
this.stages = generateArray(stagesCount).map(function (stage) {
|
|
1642
|
+
var playoffStage = _this.settings.teamsCount / Math.pow(2, stage);
|
|
1643
|
+
var title = '';
|
|
1644
|
+
if (playoffStage === 1) {
|
|
1645
|
+
title = 'Финал';
|
|
1646
|
+
}
|
|
1647
|
+
else {
|
|
1648
|
+
title = "1 / " + playoffStage;
|
|
1649
|
+
}
|
|
1650
|
+
return {
|
|
1651
|
+
value: stage,
|
|
1652
|
+
title: title
|
|
1653
|
+
};
|
|
1654
|
+
});
|
|
1655
|
+
}
|
|
1656
|
+
return this.stages;
|
|
1657
|
+
};
|
|
1658
|
+
__decorate([
|
|
1659
|
+
ToFrontHook
|
|
1660
|
+
], Playoff, "toFront", null);
|
|
1661
|
+
__decorate([
|
|
1662
|
+
ToBackHook
|
|
1663
|
+
], Playoff, "toBack", null);
|
|
1664
|
+
Playoff = __decorate([
|
|
1665
|
+
ModelInstance({
|
|
1666
|
+
mappingFields: {
|
|
1667
|
+
id: 'id',
|
|
1668
|
+
name: 'name',
|
|
1669
|
+
settings: 'settings',
|
|
1670
|
+
tournament_id: 'tournamentId',
|
|
1671
|
+
tournament_stage_id: 'tournamentStageId',
|
|
1672
|
+
is_official: 'isOfficial'
|
|
1673
|
+
},
|
|
1674
|
+
relation: {
|
|
1675
|
+
settings: PlayoffSettings
|
|
1676
|
+
}
|
|
1677
|
+
})
|
|
1678
|
+
], Playoff);
|
|
1679
|
+
return Playoff;
|
|
1680
|
+
}(BaseModel));
|
|
1681
|
+
|
|
1543
1682
|
var GameStatuses;
|
|
1544
1683
|
(function (GameStatuses) {
|
|
1545
1684
|
GameStatuses[GameStatuses["open"] = 1] = "open";
|
|
@@ -1651,6 +1790,7 @@ var Game = /** @class */ (function (_super) {
|
|
|
1651
1790
|
playoff_stage: 'playoffStage',
|
|
1652
1791
|
tournament_stage_id: 'tournamentStageId',
|
|
1653
1792
|
tournament_playoff_id: 'tournamentPlayoffId',
|
|
1793
|
+
tournament_playoff: 'tournamentPlayoff',
|
|
1654
1794
|
tournament_court: 'tournamentCourt',
|
|
1655
1795
|
media_count: 'mediaCount',
|
|
1656
1796
|
media_live_count: 'mediaLiveCount',
|
|
@@ -1668,6 +1808,7 @@ var Game = /** @class */ (function (_super) {
|
|
|
1668
1808
|
hockeyGameConfig: HockeyGameConfig,
|
|
1669
1809
|
footballGameConfig: FootballGameConfig,
|
|
1670
1810
|
handballGameConfig: HandballGameConfig,
|
|
1811
|
+
tournamentPlayoff: Playoff,
|
|
1671
1812
|
tournamentCourt: LeagueCourt,
|
|
1672
1813
|
media: listField(MediaItem),
|
|
1673
1814
|
tournament: Tournament,
|
|
@@ -2462,6 +2603,40 @@ var GameUser = /** @class */ (function (_super) {
|
|
|
2462
2603
|
return GameUser;
|
|
2463
2604
|
}(BaseModel));
|
|
2464
2605
|
|
|
2606
|
+
var GameUserLimitationTypes;
|
|
2607
|
+
(function (GameUserLimitationTypes) {
|
|
2608
|
+
GameUserLimitationTypes["min_user_games_count"] = "min_user_games_count";
|
|
2609
|
+
GameUserLimitationTypes["min_user_time"] = "min_user_time";
|
|
2610
|
+
})(GameUserLimitationTypes || (GameUserLimitationTypes = {}));
|
|
2611
|
+
var GameUserLimitations = /** @class */ (function (_super) {
|
|
2612
|
+
__extends(GameUserLimitations, _super);
|
|
2613
|
+
function GameUserLimitations() {
|
|
2614
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2615
|
+
}
|
|
2616
|
+
GameUserLimitations.toFront = function (data) {
|
|
2617
|
+
};
|
|
2618
|
+
GameUserLimitations.toBack = function (data) {
|
|
2619
|
+
};
|
|
2620
|
+
__decorate([
|
|
2621
|
+
ToFrontHook
|
|
2622
|
+
], GameUserLimitations, "toFront", null);
|
|
2623
|
+
__decorate([
|
|
2624
|
+
ToBackHook
|
|
2625
|
+
], GameUserLimitations, "toBack", null);
|
|
2626
|
+
GameUserLimitations = __decorate([
|
|
2627
|
+
ModelInstance({
|
|
2628
|
+
mappingFields: {
|
|
2629
|
+
tournament_team_user_id: 'tournamentTeamUserId',
|
|
2630
|
+
limitations: 'limitations'
|
|
2631
|
+
},
|
|
2632
|
+
relation: {
|
|
2633
|
+
limitations: listField(enumField(GameUserLimitationTypes))
|
|
2634
|
+
}
|
|
2635
|
+
})
|
|
2636
|
+
], GameUserLimitations);
|
|
2637
|
+
return GameUserLimitations;
|
|
2638
|
+
}(BaseModel));
|
|
2639
|
+
|
|
2465
2640
|
var GameBaseApi = /** @class */ (function () {
|
|
2466
2641
|
function GameBaseApi(httpClient, configService) {
|
|
2467
2642
|
this.httpClient = httpClient;
|
|
@@ -2481,6 +2656,13 @@ var GameBaseApi = /** @class */ (function () {
|
|
|
2481
2656
|
});
|
|
2482
2657
|
});
|
|
2483
2658
|
};
|
|
2659
|
+
GameBaseApi.prototype.getUsersLimitation = function (gameId) {
|
|
2660
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2661
|
+
return __generator(this, function (_a) {
|
|
2662
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_game/" + gameId + "/users_limitation/").pipe(map(function (result) { return GameUserLimitations.toFront(result); })).toPromise()];
|
|
2663
|
+
});
|
|
2664
|
+
});
|
|
2665
|
+
};
|
|
2484
2666
|
GameBaseApi.ctorParameters = function () { return [
|
|
2485
2667
|
{ type: HttpClient },
|
|
2486
2668
|
{ type: ConfigService }
|
|
@@ -4231,119 +4413,6 @@ var TournamentStage = /** @class */ (function (_super) {
|
|
|
4231
4413
|
return TournamentStage;
|
|
4232
4414
|
}(BaseModel));
|
|
4233
4415
|
|
|
4234
|
-
function generateArray(length) {
|
|
4235
|
-
if (length <= 0) {
|
|
4236
|
-
return [];
|
|
4237
|
-
}
|
|
4238
|
-
return Array.apply(null, Array(length)).map(function (_, i) { return i + 1; });
|
|
4239
|
-
}
|
|
4240
|
-
function getArrayChunks(array, length) {
|
|
4241
|
-
var chunks = [];
|
|
4242
|
-
var chunkLength = Math.ceil(array.length / length);
|
|
4243
|
-
if (chunkLength === 0) {
|
|
4244
|
-
return [array];
|
|
4245
|
-
}
|
|
4246
|
-
for (var i = 0; i < chunkLength; i++) {
|
|
4247
|
-
chunks.push(array.slice(i * length, (i + 1) * length));
|
|
4248
|
-
}
|
|
4249
|
-
return chunks;
|
|
4250
|
-
}
|
|
4251
|
-
|
|
4252
|
-
var PlayoffTypes;
|
|
4253
|
-
(function (PlayoffTypes) {
|
|
4254
|
-
PlayoffTypes["double_elimination"] = "double_elimination";
|
|
4255
|
-
PlayoffTypes["elimination"] = "elimination";
|
|
4256
|
-
})(PlayoffTypes || (PlayoffTypes = {}));
|
|
4257
|
-
var PlayoffSettings = /** @class */ (function (_super) {
|
|
4258
|
-
__extends(PlayoffSettings, _super);
|
|
4259
|
-
function PlayoffSettings() {
|
|
4260
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
4261
|
-
}
|
|
4262
|
-
PlayoffSettings.toFront = function (data) { };
|
|
4263
|
-
PlayoffSettings.toBack = function (data) { };
|
|
4264
|
-
__decorate([
|
|
4265
|
-
ToFrontHook
|
|
4266
|
-
], PlayoffSettings, "toFront", null);
|
|
4267
|
-
__decorate([
|
|
4268
|
-
ToBackHook
|
|
4269
|
-
], PlayoffSettings, "toBack", null);
|
|
4270
|
-
PlayoffSettings = __decorate([
|
|
4271
|
-
ModelInstance({
|
|
4272
|
-
mappingFields: {
|
|
4273
|
-
rounds: 'rounds',
|
|
4274
|
-
final_rounds: 'finalRounds',
|
|
4275
|
-
third_place_rounds: 'thirdPlaceRounds',
|
|
4276
|
-
teams_count: 'teamsCount',
|
|
4277
|
-
type: 'type',
|
|
4278
|
-
},
|
|
4279
|
-
relation: {
|
|
4280
|
-
type: enumField(PlayoffTypes)
|
|
4281
|
-
}
|
|
4282
|
-
})
|
|
4283
|
-
], PlayoffSettings);
|
|
4284
|
-
return PlayoffSettings;
|
|
4285
|
-
}(BaseModel));
|
|
4286
|
-
var Playoff = /** @class */ (function (_super) {
|
|
4287
|
-
__extends(Playoff, _super);
|
|
4288
|
-
function Playoff() {
|
|
4289
|
-
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
4290
|
-
_this.stages = [];
|
|
4291
|
-
return _this;
|
|
4292
|
-
}
|
|
4293
|
-
Playoff.toFront = function (data) { };
|
|
4294
|
-
Playoff.toBack = function (data) { };
|
|
4295
|
-
Object.defineProperty(Playoff.prototype, "stagesCount", {
|
|
4296
|
-
get: function () {
|
|
4297
|
-
return Math.log(this.settings.teamsCount) / Math.log(2);
|
|
4298
|
-
},
|
|
4299
|
-
enumerable: true,
|
|
4300
|
-
configurable: true
|
|
4301
|
-
});
|
|
4302
|
-
Playoff.prototype.getPlayoffStages = function () {
|
|
4303
|
-
var _this = this;
|
|
4304
|
-
if (this.stages.length === 0 && this.settings.teamsCount) {
|
|
4305
|
-
var stagesCount = Math.log(this.settings.teamsCount) / Math.log(2);
|
|
4306
|
-
this.stages = generateArray(stagesCount).map(function (stage) {
|
|
4307
|
-
var playoffStage = _this.settings.teamsCount / Math.pow(2, stage);
|
|
4308
|
-
var title = '';
|
|
4309
|
-
if (playoffStage === 1) {
|
|
4310
|
-
title = 'Финал';
|
|
4311
|
-
}
|
|
4312
|
-
else {
|
|
4313
|
-
title = "1 / " + playoffStage;
|
|
4314
|
-
}
|
|
4315
|
-
return {
|
|
4316
|
-
value: stage,
|
|
4317
|
-
title: title
|
|
4318
|
-
};
|
|
4319
|
-
});
|
|
4320
|
-
}
|
|
4321
|
-
return this.stages;
|
|
4322
|
-
};
|
|
4323
|
-
__decorate([
|
|
4324
|
-
ToFrontHook
|
|
4325
|
-
], Playoff, "toFront", null);
|
|
4326
|
-
__decorate([
|
|
4327
|
-
ToBackHook
|
|
4328
|
-
], Playoff, "toBack", null);
|
|
4329
|
-
Playoff = __decorate([
|
|
4330
|
-
ModelInstance({
|
|
4331
|
-
mappingFields: {
|
|
4332
|
-
id: 'id',
|
|
4333
|
-
name: 'name',
|
|
4334
|
-
settings: 'settings',
|
|
4335
|
-
tournament_id: 'tournamentId',
|
|
4336
|
-
tournament_stage_id: 'tournamentStageId',
|
|
4337
|
-
is_official: 'isOfficial'
|
|
4338
|
-
},
|
|
4339
|
-
relation: {
|
|
4340
|
-
settings: PlayoffSettings
|
|
4341
|
-
}
|
|
4342
|
-
})
|
|
4343
|
-
], Playoff);
|
|
4344
|
-
return Playoff;
|
|
4345
|
-
}(BaseModel));
|
|
4346
|
-
|
|
4347
4416
|
var VolleyballStatistic = /** @class */ (function (_super) {
|
|
4348
4417
|
__extends(VolleyballStatistic, _super);
|
|
4349
4418
|
function VolleyballStatistic() {
|
|
@@ -8260,6 +8329,12 @@ var VolleyballGameLogTypeLocalization = (_a$8 = {},
|
|
|
8260
8329
|
_a$8[VolleyballGameLogType.yellow_card] = 'Предупреждение',
|
|
8261
8330
|
_a$8);
|
|
8262
8331
|
|
|
8332
|
+
var _a$9;
|
|
8333
|
+
var GameUserLimitationTypeLocalization = (_a$9 = {},
|
|
8334
|
+
_a$9[GameUserLimitationTypes.min_user_games_count] = 'Минимальное количество матчей для допуска до плей-офф',
|
|
8335
|
+
_a$9[GameUserLimitationTypes.min_user_time] = 'Минимальное количество минут для допуска до плей-офф',
|
|
8336
|
+
_a$9);
|
|
8337
|
+
|
|
8263
8338
|
var LeaguePlaylist = /** @class */ (function (_super) {
|
|
8264
8339
|
__extends(LeaguePlaylist, _super);
|
|
8265
8340
|
function LeaguePlaylist() {
|
|
@@ -8709,5 +8784,5 @@ var HttpCookieInterceptor = /** @class */ (function () {
|
|
|
8709
8784
|
* Generated bundle index. Do not edit.
|
|
8710
8785
|
*/
|
|
8711
8786
|
|
|
8712
|
-
export { BannerLocation, BaseModel, BaseService, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameTeamStatistic, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DateField, DateTimeField, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, FootballGameApi, FootballGameConfig, FootballGameLog, FootballGameLogTypeLocalization, FootballGameLogTypes, FootballGameStatistic, FootballGameTeamStatistic, FootballProfile, FootballStatistic, FootballWorkFoot, FootballWorkFootLocalization, Game, GameBaseApi, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, HandballGameApi, HandballGameConfig, HandballGameLog, HandballGameLogTypeLocalization, HandballGameLogTypes, HandballGameStatistic, HandballGameTeamStatistic, HandballProfile, HandballStatistic, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HttpCookieInterceptor, League, LeagueApi, LeagueBanner, LeagueCourt, LeagueDocument, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlaylist, LocalStorageEngine, MODEL_MAPPING_FIELDS_KEY, MODEL_RELATION_KEY, MODEL_TO_BACK_KEY, MODEL_TO_FRONT_KEY, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OrgNotificationApi, Organization, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, PublicTeamApi, PublicUserApi, ReferenceApi, SCORE_LOG_TYPES, Sport, SportTypes, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, ToBackHook, ToFrontHook, Tournament, TournamentApi, TournamentDisqualification, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentSeason, TournamentSeasonApi, TournamentSeasonStatuses, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamUser, TournamentTeamUserInvite, TournamentTeamWinner, TournamentTypes, UntilDestroy, User, UserAccess, UserApi, UserGender, UserPermission, UserPermissionTypes, UserProfile, VolleyballGameApi, VolleyballGameConfig, VolleyballGameLog, VolleyballGameLogType, VolleyballGameLogTypeLocalization, VolleyballGameStatistic, VolleyballGameTeamStatistic, VolleyballGameTypes, VolleyballProfile, VolleyballStatistic, VolleyballStatisticTypes, VolleyballWorkHand, VolleyballWorkHandLocalization, WorkHand, WorkHandLocalization, addItemInArray, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
|
|
8787
|
+
export { BannerLocation, BaseModel, BaseService, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameTeamStatistic, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DateField, DateTimeField, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, FootballGameApi, FootballGameConfig, FootballGameLog, FootballGameLogTypeLocalization, FootballGameLogTypes, FootballGameStatistic, FootballGameTeamStatistic, FootballProfile, FootballStatistic, FootballWorkFoot, FootballWorkFootLocalization, Game, GameBaseApi, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserLimitationTypeLocalization, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, HandballGameApi, HandballGameConfig, HandballGameLog, HandballGameLogTypeLocalization, HandballGameLogTypes, HandballGameStatistic, HandballGameTeamStatistic, HandballProfile, HandballStatistic, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HttpCookieInterceptor, League, LeagueApi, LeagueBanner, LeagueCourt, LeagueDocument, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlaylist, LocalStorageEngine, MODEL_MAPPING_FIELDS_KEY, MODEL_RELATION_KEY, MODEL_TO_BACK_KEY, MODEL_TO_FRONT_KEY, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OrgNotificationApi, Organization, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, PublicTeamApi, PublicUserApi, ReferenceApi, SCORE_LOG_TYPES, Sport, SportTypes, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, ToBackHook, ToFrontHook, Tournament, TournamentApi, TournamentDisqualification, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentSeason, TournamentSeasonApi, TournamentSeasonStatuses, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamUser, TournamentTeamUserInvite, TournamentTeamWinner, TournamentTypes, UntilDestroy, User, UserAccess, UserApi, UserGender, UserPermission, UserPermissionTypes, UserProfile, VolleyballGameApi, VolleyballGameConfig, VolleyballGameLog, VolleyballGameLogType, VolleyballGameLogTypeLocalization, VolleyballGameStatistic, VolleyballGameTeamStatistic, VolleyballGameTypes, VolleyballProfile, VolleyballStatistic, VolleyballStatisticTypes, VolleyballWorkHand, VolleyballWorkHandLocalization, WorkHand, WorkHandLocalization, addItemInArray, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
|
|
8713
8788
|
//# sourceMappingURL=mtgame-core.js.map
|