@mtgame/core 0.2.71 → 0.2.73

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.
@@ -10333,6 +10333,287 @@ WaterpoloGameApi.ctorParameters = () => [
10333
10333
  { type: ConfigService }
10334
10334
  ];
10335
10335
 
10336
+ let WrestballGameTeamStatistic = class WrestballGameTeamStatistic extends BaseModel {
10337
+ static toFront(data) { }
10338
+ static toBack(data) { }
10339
+ };
10340
+ __decorate([
10341
+ ToFrontHook
10342
+ ], WrestballGameTeamStatistic, "toFront", null);
10343
+ __decorate([
10344
+ ToBackHook
10345
+ ], WrestballGameTeamStatistic, "toBack", null);
10346
+ WrestballGameTeamStatistic = __decorate([
10347
+ ModelInstance({
10348
+ mappingFields: {
10349
+ team: 'team',
10350
+ competitor_team: 'competitorTeam'
10351
+ },
10352
+ relation: {
10353
+ team: WrestballStatistic,
10354
+ competitorTeam: WrestballStatistic
10355
+ }
10356
+ })
10357
+ ], WrestballGameTeamStatistic);
10358
+
10359
+ let WrestballGameStatistic = class WrestballGameStatistic extends BaseModel {
10360
+ get id() {
10361
+ return this.gameUserId;
10362
+ }
10363
+ static toFront(data) { }
10364
+ static toBack(data) { }
10365
+ get totalFouls() {
10366
+ return (this.personalFouls || 0) + (this.technicalFouls || 0) + (this.unsportsmanlikeFouls || 0) + (this.disqualificationFouls || 0);
10367
+ }
10368
+ set onePointPercent(v) { }
10369
+ get onePointPercent() {
10370
+ if (!this.onePointsMade || !this.onePointAttempts) {
10371
+ return 0;
10372
+ }
10373
+ return Math.round(1000 * this.onePointsMade / this.onePointAttempts) / 10;
10374
+ }
10375
+ set twoPointPercent(v) { }
10376
+ get twoPointPercent() {
10377
+ if (!this.twoPointsMade || !this.twoPointAttempts) {
10378
+ return 0;
10379
+ }
10380
+ return Math.round(1000 * this.twoPointsMade / this.twoPointAttempts) / 10;
10381
+ }
10382
+ set threePointPercent(v) { }
10383
+ get threePointPercent() {
10384
+ if (!this.threePointsMade || !this.threePointAttempts) {
10385
+ return 0;
10386
+ }
10387
+ return Math.round(1000 * this.threePointsMade / this.threePointAttempts) / 10;
10388
+ }
10389
+ set freeThrowPercent(v) { }
10390
+ get freeThrowPercent() {
10391
+ if (!this.freeThrowsMade || !this.freeThrowAttempts) {
10392
+ return 0;
10393
+ }
10394
+ return Math.round(1000 * this.freeThrowsMade / this.freeThrowAttempts) / 10;
10395
+ }
10396
+ get totalRebounds() {
10397
+ return Math.floor(10 * ((this.offensiveRebounds || 0) + (this.defensiveRebounds || 0))) / 10;
10398
+ }
10399
+ get wrestlerScrums() {
10400
+ return (this.wrestlerScrumsWon || 0) + (this.wrestlerScrumsLost || 0) + (this.wrestlerScrumsTie || 0);
10401
+ }
10402
+ get scrums() {
10403
+ return (this.scrumsWon || 0) + (this.scrumsLost || 0) + (this.scrumsTie || 0);
10404
+ }
10405
+ };
10406
+ __decorate([
10407
+ ToFrontHook
10408
+ ], WrestballGameStatistic, "toFront", null);
10409
+ __decorate([
10410
+ ToBackHook
10411
+ ], WrestballGameStatistic, "toBack", null);
10412
+ WrestballGameStatistic = __decorate([
10413
+ ModelInstance({
10414
+ mappingFields: {
10415
+ game_user_id: 'gameUserId',
10416
+ points: 'points',
10417
+ free_throws_made: 'freeThrowsMade',
10418
+ two_points_made: 'twoPointsMade',
10419
+ three_points_made: 'threePointsMade',
10420
+ one_points_made: 'onePointsMade',
10421
+ two_point_attempts: 'twoPointAttempts',
10422
+ three_point_attempts: 'threePointAttempts',
10423
+ free_throw_attempts: 'freeThrowAttempts',
10424
+ one_point_attempts: 'onePointAttempts',
10425
+ one_point_percent: 'onePointPercent',
10426
+ two_point_percent: 'twoPointPercent',
10427
+ three_point_percent: 'threePointPercent',
10428
+ free_throw_percent: 'freeThrowPercent',
10429
+ assists: 'assists',
10430
+ blocks: 'blocks',
10431
+ rebounds: 'rebounds',
10432
+ offensive_rebounds: 'offensiveRebounds',
10433
+ defensive_rebounds: 'defensiveRebounds',
10434
+ steals: 'steals',
10435
+ turnovers: 'turnovers',
10436
+ personal_fouls: 'personalFouls',
10437
+ drawn_fouls: 'drawnFouls',
10438
+ wrestler_scrums_won: 'wrestlerScrumsWon',
10439
+ wrestler_scrums_lost: 'wrestlerScrumsLost',
10440
+ wrestler_scrums_tie: 'wrestlerScrumsTie',
10441
+ wrestler_scrum_points: 'wrestlerScrumPoints',
10442
+ scrums_won: 'scrumsWon',
10443
+ scrums_lost: 'scrumsLost',
10444
+ scrums_tie: 'scrumsTie',
10445
+ scrum_points: 'scrumPoints',
10446
+ yellow_cards: 'yellowCards',
10447
+ red_cards: 'redCards',
10448
+ updated_at: 'updatedAt',
10449
+ },
10450
+ relation: {
10451
+ updatedAt: DateTimeField,
10452
+ }
10453
+ })
10454
+ ], WrestballGameStatistic);
10455
+
10456
+ var WrestballGameLogTypes;
10457
+ (function (WrestballGameLogTypes) {
10458
+ WrestballGameLogTypes[WrestballGameLogTypes["enter_game"] = 1] = "enter_game";
10459
+ WrestballGameLogTypes[WrestballGameLogTypes["exit_game"] = 2] = "exit_game";
10460
+ WrestballGameLogTypes[WrestballGameLogTypes["remove_game"] = 3] = "remove_game";
10461
+ WrestballGameLogTypes[WrestballGameLogTypes["one_point_made"] = 4] = "one_point_made";
10462
+ WrestballGameLogTypes[WrestballGameLogTypes["one_point_attempt"] = 5] = "one_point_attempt";
10463
+ WrestballGameLogTypes[WrestballGameLogTypes["two_point_made"] = 6] = "two_point_made";
10464
+ WrestballGameLogTypes[WrestballGameLogTypes["two_point_attempt"] = 7] = "two_point_attempt";
10465
+ WrestballGameLogTypes[WrestballGameLogTypes["three_point_made"] = 8] = "three_point_made";
10466
+ WrestballGameLogTypes[WrestballGameLogTypes["three_point_attempt"] = 9] = "three_point_attempt";
10467
+ WrestballGameLogTypes[WrestballGameLogTypes["free_throw_made"] = 10] = "free_throw_made";
10468
+ WrestballGameLogTypes[WrestballGameLogTypes["free_throw_attempt"] = 11] = "free_throw_attempt";
10469
+ WrestballGameLogTypes[WrestballGameLogTypes["assist"] = 12] = "assist";
10470
+ WrestballGameLogTypes[WrestballGameLogTypes["block"] = 13] = "block";
10471
+ WrestballGameLogTypes[WrestballGameLogTypes["rebound"] = 14] = "rebound";
10472
+ WrestballGameLogTypes[WrestballGameLogTypes["offensive_rebound"] = 15] = "offensive_rebound";
10473
+ WrestballGameLogTypes[WrestballGameLogTypes["defensive_rebound"] = 16] = "defensive_rebound";
10474
+ WrestballGameLogTypes[WrestballGameLogTypes["team_rebound"] = 17] = "team_rebound";
10475
+ WrestballGameLogTypes[WrestballGameLogTypes["steal"] = 18] = "steal";
10476
+ WrestballGameLogTypes[WrestballGameLogTypes["turnover"] = 19] = "turnover";
10477
+ WrestballGameLogTypes[WrestballGameLogTypes["personal_foul"] = 20] = "personal_foul";
10478
+ WrestballGameLogTypes[WrestballGameLogTypes["timeout"] = 21] = "timeout";
10479
+ WrestballGameLogTypes[WrestballGameLogTypes["wrestler_scrum"] = 22] = "wrestler_scrum";
10480
+ WrestballGameLogTypes[WrestballGameLogTypes["wrestler_scrum_won"] = 23] = "wrestler_scrum_won";
10481
+ WrestballGameLogTypes[WrestballGameLogTypes["wrestler_scrum_lost"] = 24] = "wrestler_scrum_lost";
10482
+ WrestballGameLogTypes[WrestballGameLogTypes["wrestler_scrum_tie"] = 25] = "wrestler_scrum_tie";
10483
+ WrestballGameLogTypes[WrestballGameLogTypes["scrum"] = 26] = "scrum";
10484
+ WrestballGameLogTypes[WrestballGameLogTypes["scrum_won"] = 27] = "scrum_won";
10485
+ WrestballGameLogTypes[WrestballGameLogTypes["scrum_lost"] = 28] = "scrum_lost";
10486
+ WrestballGameLogTypes[WrestballGameLogTypes["scrum_tie"] = 29] = "scrum_tie";
10487
+ WrestballGameLogTypes[WrestballGameLogTypes["yellow_card"] = 30] = "yellow_card";
10488
+ WrestballGameLogTypes[WrestballGameLogTypes["red_card"] = 31] = "red_card";
10489
+ })(WrestballGameLogTypes || (WrestballGameLogTypes = {}));
10490
+ let WrestballGameLog = class WrestballGameLog extends BaseModel {
10491
+ constructor() {
10492
+ super(...arguments);
10493
+ this.active = true;
10494
+ }
10495
+ isPointsType() {
10496
+ return [
10497
+ WrestballGameLogTypes.two_point_made,
10498
+ WrestballGameLogTypes.three_point_made,
10499
+ WrestballGameLogTypes.free_throw_made,
10500
+ WrestballGameLogTypes.one_point_made,
10501
+ WrestballGameLogTypes.scrum_won,
10502
+ WrestballGameLogTypes.wrestler_scrum_won,
10503
+ ].indexOf(this.logType) > -1;
10504
+ }
10505
+ isReboundType() {
10506
+ return [
10507
+ WrestballGameLogTypes.rebound,
10508
+ WrestballGameLogTypes.offensive_rebound,
10509
+ WrestballGameLogTypes.defensive_rebound,
10510
+ WrestballGameLogTypes.team_rebound,
10511
+ ].indexOf(this.logType) > -1;
10512
+ }
10513
+ isFoulType() {
10514
+ return [
10515
+ WrestballGameLogTypes.personal_foul,
10516
+ ].indexOf(this.logType) > -1;
10517
+ }
10518
+ getScore() {
10519
+ const scoreMapping = {
10520
+ [WrestballGameLogTypes.one_point_made]: 1,
10521
+ [WrestballGameLogTypes.free_throw_made]: 1,
10522
+ [WrestballGameLogTypes.two_point_made]: 2,
10523
+ [WrestballGameLogTypes.three_point_made]: 3,
10524
+ [WrestballGameLogTypes.scrum_won]: 2,
10525
+ [WrestballGameLogTypes.wrestler_scrum_won]: 2,
10526
+ };
10527
+ return scoreMapping[this.logType] || 0;
10528
+ }
10529
+ compare(model) {
10530
+ if (this.time === model.time && this.period === model.period) {
10531
+ if (this.datetime.getTime() === model.datetime.getTime()) {
10532
+ return this.id > model.id ? 1 : -1;
10533
+ }
10534
+ return this.datetime.getTime() < model.datetime.getTime() ? 1 : -1;
10535
+ }
10536
+ if (this.period === model.period) {
10537
+ return this.time < model.time ? 1 : -1;
10538
+ }
10539
+ return this.period < model.period ? 1 : -1;
10540
+ }
10541
+ get timeFormatted() {
10542
+ const minutes = Math.floor(this.time / 60);
10543
+ const seconds = this.time - minutes * 60;
10544
+ return `${minutes < 10 ? '0' : ''}${minutes}:${seconds < 10 ? '0' : ''}${seconds}`;
10545
+ }
10546
+ static toFront(value) { }
10547
+ static toBack(value) { }
10548
+ };
10549
+ __decorate([
10550
+ ToFrontHook
10551
+ ], WrestballGameLog, "toFront", null);
10552
+ __decorate([
10553
+ ToBackHook
10554
+ ], WrestballGameLog, "toBack", null);
10555
+ WrestballGameLog = __decorate([
10556
+ ModelInstance({
10557
+ mappingFields: {
10558
+ id: 'id',
10559
+ unique_id: 'uniqueId',
10560
+ game_id: 'gameId',
10561
+ game_user_id: 'gameUserId',
10562
+ team_id: 'teamId',
10563
+ log_type: 'logType',
10564
+ datetime: 'datetime',
10565
+ time: 'time',
10566
+ period: 'period',
10567
+ active: 'active',
10568
+ is_highlight: 'isHighlight',
10569
+ foul_on_game_user_id: 'foulOnGameUserId',
10570
+ is_coach: 'isCoach',
10571
+ is_bench: 'isBench',
10572
+ marked: 'marked',
10573
+ },
10574
+ relation: {
10575
+ datetime: DateTimeField,
10576
+ logType: enumField(WrestballGameLogTypes),
10577
+ }
10578
+ })
10579
+ ], WrestballGameLog);
10580
+
10581
+ class WrestballGameApi extends GameBaseApi {
10582
+ constructor(httpClient, configService) {
10583
+ super(httpClient, configService);
10584
+ this.httpClient = httpClient;
10585
+ this.configService = configService;
10586
+ }
10587
+ getById(gameId) {
10588
+ return __awaiter(this, void 0, void 0, function* () {
10589
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_wrestball_game/${gameId}/`).pipe(map(result => Game.toFront(result))).toPromise();
10590
+ });
10591
+ }
10592
+ getTeamStatistic(gameId) {
10593
+ return __awaiter(this, void 0, void 0, function* () {
10594
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_wrestball_game/${gameId}/team_statistic/`).pipe(map(result => WrestballGameTeamStatistic.toFront(result))).toPromise();
10595
+ });
10596
+ }
10597
+ getUserStatistic(gameId) {
10598
+ return __awaiter(this, void 0, void 0, function* () {
10599
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_wrestball_game/${gameId}/user_statistic/`).pipe(map(result => WrestballGameStatistic.toFront(result))).toPromise();
10600
+ });
10601
+ }
10602
+ getLogs(gameId) {
10603
+ return __awaiter(this, void 0, void 0, function* () {
10604
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_wrestball_game/${gameId}/logs/`).pipe(map(result => WrestballGameLog.toFront(result))).toPromise();
10605
+ });
10606
+ }
10607
+ }
10608
+ WrestballGameApi.ɵprov = i0.ɵɵdefineInjectable({ factory: function WrestballGameApi_Factory() { return new WrestballGameApi(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(ConfigService)); }, token: WrestballGameApi, providedIn: "root" });
10609
+ WrestballGameApi.decorators = [
10610
+ { type: Injectable, args: [{ providedIn: 'root' },] }
10611
+ ];
10612
+ WrestballGameApi.ctorParameters = () => [
10613
+ { type: HttpClient },
10614
+ { type: ConfigService }
10615
+ ];
10616
+
10336
10617
  class PublicTeamApi {
10337
10618
  constructor(httpClient, configService) {
10338
10619
  this.httpClient = httpClient;
@@ -11403,5 +11684,5 @@ HttpCookieInterceptor.ctorParameters = () => [
11403
11684
  * Generated bundle index. Do not edit.
11404
11685
  */
11405
11686
 
11406
- export { Achievement, AchievementTypes, BannerLocation, BaseModel, BaseService, BasketballCourtSides, BasketballCourtZones, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameSubLogTypesLocalization, BasketballGameTeamStatistic, BasketballPenaltyTypes, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, BasketballSubLogTypes, 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, GameBill, GameBillStatusLocalization, GameBillStatuses, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameRugbyPosition, GameRugbyPositionLocalization, GameStatuses, GameTeamAdditionalData, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserDisqualification, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, GameWaterpoloPosition, GameWaterpoloPositionLocalization, GameWaterpoloPositionShortRuLocalization, HandballGameApi, HandballGameConfig, HandballGameLog, HandballGameLogTypeLocalization, HandballGameLogTypes, HandballGameStatistic, HandballGameTeamStatistic, HandballProfile, HandballStatistic, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HockeyWorkHandLocalization, HttpCookieInterceptor, League, LeagueApi, LeagueBanner, LeagueCourt, LeagueDocument, LeagueFieldBase, LeagueFieldBaseValue, LeagueFieldTypes, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlayerField, LeaguePlayerFieldValue, LeaguePlaylist, LeagueTeamField, 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, OrganizationBill, OrganizationBillStatusLocalization, OrganizationBillStatuses, OrganizationStatistic, OrganizationStatuses, OrganizationStatusesLocalization, OrganizationTariff, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, PublicTeamApi, PublicUserApi, Qualification, QualificationLocalization, RUGBY_GAME_LOG_TYPE_POINTS, RUGBY_TEAM_LOG_TYPES, ReferenceApi, RoundTeamGame, RugbyFoulGameStage, RugbyFoulGameStageLocalization, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, RugbyStatisticTypes, SCORE_LOG_TYPES, Sport, SportTypes, StageTeamGame, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamAchievement, TeamAdditionalData, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, TeamsAndUsers, TimerTypes, ToBackHook, ToFrontHook, Tournament, TournamentApi, TournamentDisqualification, TournamentDivision, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoin1x1Data, TournamentJoin1x1Status, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentRound, TournamentRoundApi, TournamentRoundSettings, TournamentRoundTeam, TournamentRoundTypes, TournamentSeason, TournamentSeasonApi, TournamentSeasonStatuses, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamFieldValue, TournamentTeamShort, 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, WaterpoloAdvantageTypes, WaterpoloGameApi, WaterpoloGameConfig, WaterpoloGameLog, WaterpoloGameLogTypeLocalization, WaterpoloGameLogTypes, WaterpoloGameStatistic, WaterpoloGameTeamStatistic, WaterpoloProfile, WaterpoloStatistic, WaterpoloStatisticTypes, WaterpoloWorkHand, WaterpoloWorkHandLocalization, WorkHand, WorkHandLocalization, WrestballStatisticTypes, addItemInArray, addItemsInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, parseDate, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl, WrestballWorkHand as ɵa, WrestballProfile as ɵb, WrestballGameConfig as ɵc };
11687
+ export { Achievement, AchievementTypes, BannerLocation, BaseModel, BaseService, BasketballCourtSides, BasketballCourtZones, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameSubLogTypesLocalization, BasketballGameTeamStatistic, BasketballPenaltyTypes, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, BasketballSubLogTypes, 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, GameBill, GameBillStatusLocalization, GameBillStatuses, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameRugbyPosition, GameRugbyPositionLocalization, GameStatuses, GameTeamAdditionalData, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserDisqualification, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, GameWaterpoloPosition, GameWaterpoloPositionLocalization, GameWaterpoloPositionShortRuLocalization, HandballGameApi, HandballGameConfig, HandballGameLog, HandballGameLogTypeLocalization, HandballGameLogTypes, HandballGameStatistic, HandballGameTeamStatistic, HandballProfile, HandballStatistic, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HockeyWorkHandLocalization, HttpCookieInterceptor, League, LeagueApi, LeagueBanner, LeagueCourt, LeagueDocument, LeagueFieldBase, LeagueFieldBaseValue, LeagueFieldTypes, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlayerField, LeaguePlayerFieldValue, LeaguePlaylist, LeagueTeamField, 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, OrganizationBill, OrganizationBillStatusLocalization, OrganizationBillStatuses, OrganizationStatistic, OrganizationStatuses, OrganizationStatusesLocalization, OrganizationTariff, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, PublicTeamApi, PublicUserApi, Qualification, QualificationLocalization, RUGBY_GAME_LOG_TYPE_POINTS, RUGBY_TEAM_LOG_TYPES, ReferenceApi, RoundTeamGame, RugbyFoulGameStage, RugbyFoulGameStageLocalization, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, RugbyStatisticTypes, SCORE_LOG_TYPES, Sport, SportTypes, StageTeamGame, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamAchievement, TeamAdditionalData, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, TeamsAndUsers, TimerTypes, ToBackHook, ToFrontHook, Tournament, TournamentApi, TournamentDisqualification, TournamentDivision, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoin1x1Data, TournamentJoin1x1Status, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentRound, TournamentRoundApi, TournamentRoundSettings, TournamentRoundTeam, TournamentRoundTypes, TournamentSeason, TournamentSeasonApi, TournamentSeasonStatuses, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamFieldValue, TournamentTeamShort, 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, WaterpoloAdvantageTypes, WaterpoloGameApi, WaterpoloGameConfig, WaterpoloGameLog, WaterpoloGameLogTypeLocalization, WaterpoloGameLogTypes, WaterpoloGameStatistic, WaterpoloGameTeamStatistic, WaterpoloProfile, WaterpoloStatistic, WaterpoloStatisticTypes, WaterpoloWorkHand, WaterpoloWorkHandLocalization, WorkHand, WorkHandLocalization, WrestballGameApi, WrestballGameConfig, WrestballGameLog, WrestballGameLogTypes, WrestballGameStatistic, WrestballGameTeamStatistic, WrestballProfile, WrestballStatistic, WrestballStatisticTypes, WrestballWorkHand, addItemInArray, addItemsInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, parseDate, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
11407
11688
  //# sourceMappingURL=mtgame-core.js.map