@mtgame/core 0.0.77 → 0.1.1

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.
@@ -892,6 +892,7 @@ TournamentSeason = __decorate([
892
892
  status: 'status',
893
893
  start_date: 'startDate',
894
894
  closed_date: 'closedDate',
895
+ tournaments: 'tournaments',
895
896
  },
896
897
  relation: {
897
898
  logo: File,
@@ -1678,12 +1679,14 @@ TournamentTeam = __decorate([
1678
1679
  lose_normal_time_games_count: 'loseNormalTimeGamesCount',
1679
1680
  win_overtime_games_count: 'winOvertimeGamesCount',
1680
1681
  lose_overtime_games_count: 'loseOvertimeGamesCount',
1682
+ last_five_games: 'lastFiveGames'
1681
1683
  },
1682
1684
  relation: {
1683
1685
  tournament: Tournament,
1684
1686
  team: Team,
1685
1687
  group: TournamentGroup,
1686
1688
  games: Game,
1689
+ lastFiveGames: Game,
1687
1690
  }
1688
1691
  })
1689
1692
  ], TournamentTeam);
@@ -3901,6 +3904,66 @@ let TournamentApi = class TournamentApi {
3901
3904
  .toPromise();
3902
3905
  });
3903
3906
  }
3907
+ getBasketballStatisticLeaders(filters) {
3908
+ return __awaiter(this, void 0, void 0, function* () {
3909
+ let params = new HttpParams();
3910
+ params = applyStatisticLeadersFilters(filters, params);
3911
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/basketball_statistic_leaders/`, { params }).pipe(map((result) => {
3912
+ for (const key of Object.keys(result)) {
3913
+ result[key] = BasketballStatistic.toFront(result[key]);
3914
+ }
3915
+ return result;
3916
+ })).toPromise();
3917
+ });
3918
+ }
3919
+ getVolleyballStatisticLeaders(filters) {
3920
+ return __awaiter(this, void 0, void 0, function* () {
3921
+ let params = new HttpParams();
3922
+ params = applyStatisticLeadersFilters(filters, params);
3923
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/volleyball_statistic_leaders/`, { params }).pipe(map((result) => {
3924
+ for (const key of Object.keys(result)) {
3925
+ result[key] = VolleyballStatistic.toFront(result[key]);
3926
+ }
3927
+ return result;
3928
+ })).toPromise();
3929
+ });
3930
+ }
3931
+ getHockeyStatisticLeaders(filters) {
3932
+ return __awaiter(this, void 0, void 0, function* () {
3933
+ let params = new HttpParams();
3934
+ params = applyStatisticLeadersFilters(filters, params);
3935
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/hockey_statistic_leaders/`, { params }).pipe(map((result) => {
3936
+ for (const key of Object.keys(result)) {
3937
+ result[key] = HockeyStatistic.toFront(result[key]);
3938
+ }
3939
+ return result;
3940
+ })).toPromise();
3941
+ });
3942
+ }
3943
+ getFootballStatisticLeaders(filters) {
3944
+ return __awaiter(this, void 0, void 0, function* () {
3945
+ let params = new HttpParams();
3946
+ params = applyStatisticLeadersFilters(filters, params);
3947
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/football_statistic_leaders/`, { params }).pipe(map((result) => {
3948
+ for (const key of Object.keys(result)) {
3949
+ result[key] = FootballStatistic.toFront(result[key]);
3950
+ }
3951
+ return result;
3952
+ })).toPromise();
3953
+ });
3954
+ }
3955
+ getHandballStatisticLeaders(filters) {
3956
+ return __awaiter(this, void 0, void 0, function* () {
3957
+ let params = new HttpParams();
3958
+ params = applyStatisticLeadersFilters(filters, params);
3959
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/handball_statistic_leaders/`, { params }).pipe(map((result) => {
3960
+ for (const key of Object.keys(result)) {
3961
+ result[key] = HandballStatistic.toFront(result[key]);
3962
+ }
3963
+ return result;
3964
+ })).toPromise();
3965
+ });
3966
+ }
3904
3967
  getBasketballStatistic(filters) {
3905
3968
  return __awaiter(this, void 0, void 0, function* () {
3906
3969
  let params = new HttpParams();
@@ -3917,7 +3980,10 @@ let TournamentApi = class TournamentApi {
3917
3980
  params = params.set('tournament_ids', filters.tournament_ids.join(','));
3918
3981
  }
3919
3982
  }
3920
- return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/basketball_statistic/`, { params }).pipe(map(result => BasketballStatistic.toFront(result))).toPromise();
3983
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/basketball_statistic/`, { params, observe: 'response' }).pipe(map(result => ({
3984
+ total: +result.headers.get('X-Page-Count'),
3985
+ data: BasketballStatistic.toFront(result.body)
3986
+ }))).toPromise();
3921
3987
  });
3922
3988
  }
3923
3989
  getVolleyballStatistic(filters) {
@@ -3936,7 +4002,10 @@ let TournamentApi = class TournamentApi {
3936
4002
  params = params.set('tournament_ids', filters.tournament_ids.join(','));
3937
4003
  }
3938
4004
  }
3939
- return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/volleyball_statistic/`, { params }).pipe(map(result => VolleyballStatistic.toFront(result))).toPromise();
4005
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/volleyball_statistic/`, { params, observe: 'response' }).pipe(map(result => ({
4006
+ total: +result.headers.get('X-Page-Count'),
4007
+ data: VolleyballStatistic.toFront(result.body)
4008
+ }))).toPromise();
3940
4009
  });
3941
4010
  }
3942
4011
  getHockeyStatistic(filters) {
@@ -3955,7 +4024,10 @@ let TournamentApi = class TournamentApi {
3955
4024
  params = params.set('tournament_ids', filters.tournament_ids.join(','));
3956
4025
  }
3957
4026
  }
3958
- return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/hockey_statistic/`, { params }).pipe(map(result => HockeyStatistic.toFront(result))).toPromise();
4027
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/hockey_statistic/`, { params, observe: 'response' }).pipe(map(result => ({
4028
+ total: +result.headers.get('X-Page-Count'),
4029
+ data: HockeyStatistic.toFront(result.body)
4030
+ }))).toPromise();
3959
4031
  });
3960
4032
  }
3961
4033
  getFootballStatistic(filters) {
@@ -3974,7 +4046,10 @@ let TournamentApi = class TournamentApi {
3974
4046
  params = params.set('tournament_ids', filters.tournament_ids.join(','));
3975
4047
  }
3976
4048
  }
3977
- return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/football_statistic/`, { params }).pipe(map(result => FootballStatistic.toFront(result))).toPromise();
4049
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/football_statistic/`, { params, observe: 'response' }).pipe(map(result => ({
4050
+ total: +result.headers.get('X-Page-Count'),
4051
+ data: FootballStatistic.toFront(result.body)
4052
+ }))).toPromise();
3978
4053
  });
3979
4054
  }
3980
4055
  getHandballStatistic(filters) {
@@ -3993,7 +4068,10 @@ let TournamentApi = class TournamentApi {
3993
4068
  params = params.set('tournament_ids', filters.tournament_ids.join(','));
3994
4069
  }
3995
4070
  }
3996
- return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/handball_statistic/`, { params }).pipe(map(result => HandballStatistic.toFront(result))).toPromise();
4071
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/handball_statistic/`, { params, observe: 'response' }).pipe(map(result => ({
4072
+ total: +result.headers.get('X-Page-Count'),
4073
+ data: HandballStatistic.toFront(result.body)
4074
+ }))).toPromise();
3997
4075
  });
3998
4076
  }
3999
4077
  getTournamentTeamUsers(tournamentTeamId) {
@@ -4054,6 +4132,40 @@ function applyGamesFilters(filters, params) {
4054
4132
  if (filters.userId) {
4055
4133
  params = params.set('user_id', filters.userId.toString());
4056
4134
  }
4135
+ if (filters.query) {
4136
+ params = params.set('query', filters.query);
4137
+ }
4138
+ return params;
4139
+ }
4140
+ function applyStatisticFilters(filters, params) {
4141
+ for (const key of Object.keys(filters)) {
4142
+ if (filters[key]) {
4143
+ params = params.set(key, filters[key]);
4144
+ }
4145
+ }
4146
+ if (filters.per_game !== undefined) {
4147
+ params = params.set('per_game', filters.per_game ? '1' : '0');
4148
+ }
4149
+ if (filters.tournament_ids) {
4150
+ params = params.set('tournament_ids', filters.tournament_ids.join(','));
4151
+ }
4152
+ return params;
4153
+ }
4154
+ function applyStatisticLeadersFilters(filters, params) {
4155
+ for (const key of Object.keys(filters)) {
4156
+ if (filters[key]) {
4157
+ params = params.set(key, filters[key]);
4158
+ }
4159
+ }
4160
+ if (filters.per_game !== undefined) {
4161
+ params = params.set('per_game', filters.per_game ? '1' : '0');
4162
+ }
4163
+ if (filters.tournament_ids) {
4164
+ params = params.set('tournament_ids', filters.tournament_ids.join(','));
4165
+ }
4166
+ if (filters.fields) {
4167
+ params = params.set('fields', filters.fields.join(','));
4168
+ }
4057
4169
  return params;
4058
4170
  }
4059
4171
 
@@ -4132,9 +4244,15 @@ let LeagueApi = class LeagueApi {
4132
4244
  return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/by_domain/${domain}/`).pipe(map(result => League.toFront(result))).toPromise();
4133
4245
  });
4134
4246
  }
4135
- getTournaments(leagueId) {
4247
+ getTournaments(leagueId, filters) {
4136
4248
  return __awaiter(this, void 0, void 0, function* () {
4137
- return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/tournaments/`).pipe(map(result => Tournament.toFront(result))).toPromise();
4249
+ let params = new HttpParams();
4250
+ if (filters) {
4251
+ if (filters.statuses) {
4252
+ params = params.set('statuses', filters.statuses.map(s => TournamentStatuses[s]).join(','));
4253
+ }
4254
+ }
4255
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/tournaments/`, { params }).pipe(map(result => Tournament.toFront(result))).toPromise();
4138
4256
  });
4139
4257
  }
4140
4258
  getEvents(leagueId, page, size, filters) {
@@ -4176,11 +4294,18 @@ let LeagueApi = class LeagueApi {
4176
4294
  }))).toPromise();
4177
4295
  });
4178
4296
  }
4179
- getSeasons(leagueId, notClosed) {
4297
+ getSeasons(leagueId, page = 1, size = 20, notClosed, include) {
4180
4298
  return __awaiter(this, void 0, void 0, function* () {
4181
- const params = new HttpParams().set('not_closed', notClosed ? '1' : '');
4182
- return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/tournament_seasons/`, { params })
4183
- .pipe(map(result => TournamentSeason.toFront(result)))
4299
+ const params = new HttpParams()
4300
+ .set('page', page.toString())
4301
+ .set('size', size.toString())
4302
+ .set('not_closed', notClosed ? '1' : '')
4303
+ .set('include', include ? include.join(',') : '');
4304
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/tournament_seasons/`, { params, observe: 'response' })
4305
+ .pipe(map(result => ({
4306
+ total: +result.headers.get('X-Page-Count'),
4307
+ data: TournamentSeason.toFront(result.body)
4308
+ })))
4184
4309
  .toPromise();
4185
4310
  });
4186
4311
  }
@@ -4200,6 +4325,12 @@ let LeagueApi = class LeagueApi {
4200
4325
  return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/courts/`).pipe(map(result => LeagueCourt.toFront(result))).toPromise();
4201
4326
  });
4202
4327
  }
4328
+ getGraphicSettings(leagueId) {
4329
+ return __awaiter(this, void 0, void 0, function* () {
4330
+ return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/graphic_settings/`)
4331
+ .toPromise();
4332
+ });
4333
+ }
4203
4334
  };
4204
4335
  LeagueApi.ctorParameters = () => [
4205
4336
  { type: HttpClient },
@@ -4282,26 +4413,7 @@ let MediaApi = class MediaApi {
4282
4413
  getTournamentGameMedia(tournamentId, page, size, filters) {
4283
4414
  return __awaiter(this, void 0, void 0, function* () {
4284
4415
  let params = new HttpParams().set('page', page.toString()).set('size', size.toString());
4285
- if (filters) {
4286
- if (filters.tournamentTour) {
4287
- params = params.set('tournament_tour', filters.tournamentTour.toString());
4288
- }
4289
- if (filters.teamId) {
4290
- params = params.set('team_id', filters.teamId.toString());
4291
- }
4292
- if (filters.tournamentStageId) {
4293
- params = params.set('tournament_stage_id', filters.tournamentStageId.toString());
4294
- }
4295
- if (filters.playoffId) {
4296
- params = params.set('playoff_id', filters.playoffId.toString());
4297
- }
4298
- if (filters.playoffStage) {
4299
- params = params.set('playoff_stage', filters.playoffStage.toString());
4300
- }
4301
- if (filters.status) {
4302
- params = params.set('status', GameStatuses[filters.status]);
4303
- }
4304
- }
4416
+ params = applyGameMediaFilters(filters, params);
4305
4417
  return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament/${tournamentId}/game_media/`, { observe: 'response', params }).pipe(map(response => {
4306
4418
  return {
4307
4419
  total: +response.headers.get('X-Page-Count'),
@@ -4313,26 +4425,7 @@ let MediaApi = class MediaApi {
4313
4425
  getLeagueGameMedia(leagueId, page, size, filters) {
4314
4426
  return __awaiter(this, void 0, void 0, function* () {
4315
4427
  let params = new HttpParams().set('page', page.toString()).set('size', size.toString());
4316
- if (filters) {
4317
- if (filters.tournamentTour) {
4318
- params = params.set('tournament_tour', filters.tournamentTour.toString());
4319
- }
4320
- if (filters.teamId) {
4321
- params = params.set('team_id', filters.teamId.toString());
4322
- }
4323
- if (filters.tournamentStageId) {
4324
- params = params.set('tournament_stage_id', filters.tournamentStageId.toString());
4325
- }
4326
- if (filters.playoffId) {
4327
- params = params.set('playoff_id', filters.playoffId.toString());
4328
- }
4329
- if (filters.playoffStage) {
4330
- params = params.set('playoff_stage', filters.playoffStage.toString());
4331
- }
4332
- if (filters.status) {
4333
- params = params.set('status', GameStatuses[filters.status]);
4334
- }
4335
- }
4428
+ params = applyGameMediaFilters(filters, params);
4336
4429
  return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/game_media/`, { observe: 'response', params }).pipe(map(response => {
4337
4430
  return {
4338
4431
  total: +response.headers.get('X-Page-Count'),
@@ -4392,6 +4485,33 @@ MediaApi.ɵprov = ɵɵdefineInjectable({ factory: function MediaApi_Factory() {
4392
4485
  MediaApi = __decorate([
4393
4486
  Injectable({ providedIn: 'root' })
4394
4487
  ], MediaApi);
4488
+ function applyGameMediaFilters(filters, params) {
4489
+ if (filters) {
4490
+ params = applyGamesFilters(filters, params);
4491
+ if (filters.tournamentTour) {
4492
+ params = params.set('tournament_tour', filters.tournamentTour.toString());
4493
+ }
4494
+ if (filters.teamId) {
4495
+ params = params.set('team_id', filters.teamId.toString());
4496
+ }
4497
+ if (filters.tournamentStageId) {
4498
+ params = params.set('tournament_stage_id', filters.tournamentStageId.toString());
4499
+ }
4500
+ if (filters.playoffId) {
4501
+ params = params.set('playoff_id', filters.playoffId.toString());
4502
+ }
4503
+ if (filters.playoffStage) {
4504
+ params = params.set('playoff_stage', filters.playoffStage.toString());
4505
+ }
4506
+ if (filters.status) {
4507
+ params = params.set('status', GameStatuses[filters.status]);
4508
+ }
4509
+ if (filters.mediaCount) {
4510
+ params = params.set('media_count', filters.mediaCount.toString());
4511
+ }
4512
+ }
4513
+ return params;
4514
+ }
4395
4515
 
4396
4516
  var PollStatuses;
4397
4517
  (function (PollStatuses) {
@@ -5678,26 +5798,7 @@ let TournamentSeasonApi = class TournamentSeasonApi {
5678
5798
  getGameMedia(seasonId, page, size, filters) {
5679
5799
  return __awaiter(this, void 0, void 0, function* () {
5680
5800
  let params = new HttpParams().set('page', page.toString()).set('size', size.toString());
5681
- if (filters) {
5682
- if (filters.tournamentTour) {
5683
- params = params.set('tournament_tour', filters.tournamentTour.toString());
5684
- }
5685
- if (filters.teamId) {
5686
- params = params.set('team_id', filters.teamId.toString());
5687
- }
5688
- if (filters.tournamentStageId) {
5689
- params = params.set('tournament_stage_id', filters.tournamentStageId.toString());
5690
- }
5691
- if (filters.playoffId) {
5692
- params = params.set('playoff_id', filters.playoffId.toString());
5693
- }
5694
- if (filters.playoffStage) {
5695
- params = params.set('playoff_stage', filters.playoffStage.toString());
5696
- }
5697
- if (filters.status) {
5698
- params = params.set('status', GameStatuses[filters.status]);
5699
- }
5700
- }
5801
+ params = applyGameMediaFilters(filters, params);
5701
5802
  return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_season/${seasonId}/game_media/`, { observe: 'response', params })
5702
5803
  .pipe(map(response => {
5703
5804
  return {
@@ -7001,5 +7102,5 @@ HttpCookieInterceptor = __decorate([
7001
7102
  * Generated bundle index. Do not edit.
7002
7103
  */
7003
7104
 
7004
- export { BannerLocation, BaseModel, BaseService, BaseStatistic, 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, 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, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlaylist, LocalStorageEngine, 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, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl, penaltyTypeField as ɵa, GameBaseApi as ɵb };
7105
+ export { BannerLocation, BaseModel, BaseService, BaseStatistic, 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, 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, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, 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, GameBaseApi as ɵa };
7005
7106
  //# sourceMappingURL=mtgame-core.js.map