@mtgame/core 0.0.38 → 0.0.40

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.
Files changed (37) hide show
  1. package/api/league-api.d.ts +1 -0
  2. package/api/league-news-api.d.ts +2 -1
  3. package/api/media-api.d.ts +2 -1
  4. package/api/tournament-api.d.ts +4 -1
  5. package/api/tournament-season-api.d.ts +3 -1
  6. package/bundles/mtgame-core.umd.js +81 -10
  7. package/bundles/mtgame-core.umd.js.map +1 -1
  8. package/bundles/mtgame-core.umd.min.js +1 -1
  9. package/bundles/mtgame-core.umd.min.js.map +1 -1
  10. package/esm2015/api/league-api.js +16 -1
  11. package/esm2015/api/league-news-api.js +13 -4
  12. package/esm2015/api/media-api.js +4 -1
  13. package/esm2015/api/tournament-api.js +10 -3
  14. package/esm2015/api/tournament-season-api.js +18 -3
  15. package/esm2015/models/league-news.js +3 -1
  16. package/esm2015/models/tournament-season.js +11 -3
  17. package/esm2015/models/tournament-team.js +2 -1
  18. package/esm2015/models/tournament.js +5 -1
  19. package/esm5/api/league-api.js +20 -2
  20. package/esm5/api/league-news-api.js +16 -4
  21. package/esm5/api/media-api.js +4 -1
  22. package/esm5/api/tournament-api.js +11 -4
  23. package/esm5/api/tournament-season-api.js +21 -4
  24. package/esm5/models/league-news.js +3 -1
  25. package/esm5/models/tournament-season.js +11 -3
  26. package/esm5/models/tournament-team.js +2 -1
  27. package/esm5/models/tournament.js +5 -1
  28. package/fesm2015/mtgame-core.js +71 -8
  29. package/fesm2015/mtgame-core.js.map +1 -1
  30. package/fesm5/mtgame-core.js +82 -11
  31. package/fesm5/mtgame-core.js.map +1 -1
  32. package/models/league-news.d.ts +1 -0
  33. package/models/tournament-season.d.ts +6 -0
  34. package/models/tournament-team.d.ts +1 -0
  35. package/models/tournament.d.ts +4 -0
  36. package/mtgame-core.metadata.json +1 -1
  37. package/package.json +1 -1
@@ -879,6 +879,12 @@ var League = /** @class */ (function (_super) {
879
879
  return League;
880
880
  }(BaseModel));
881
881
 
882
+ var TournamentSeasonStatuses;
883
+ (function (TournamentSeasonStatuses) {
884
+ TournamentSeasonStatuses[TournamentSeasonStatuses["open"] = 0] = "open";
885
+ TournamentSeasonStatuses[TournamentSeasonStatuses["in_progress"] = 1] = "in_progress";
886
+ TournamentSeasonStatuses[TournamentSeasonStatuses["closed"] = 2] = "closed";
887
+ })(TournamentSeasonStatuses || (TournamentSeasonStatuses = {}));
882
888
  var TournamentSeason = /** @class */ (function (_super) {
883
889
  __extends(TournamentSeason, _super);
884
890
  function TournamentSeason() {
@@ -901,11 +907,13 @@ var TournamentSeason = /** @class */ (function (_super) {
901
907
  logo: 'logo',
902
908
  cover: 'cover',
903
909
  preview_image: 'previewImage',
910
+ status: 'status',
904
911
  },
905
912
  relation: {
906
913
  logo: File,
907
914
  cover: File,
908
- previewImage: File
915
+ previewImage: File,
916
+ status: enumField(TournamentSeasonStatuses),
909
917
  }
910
918
  })
911
919
  ], TournamentSeason);
@@ -1090,6 +1098,8 @@ var Tournament = /** @class */ (function (_super) {
1090
1098
  closest_game_datetime: 'closestGameDatetime',
1091
1099
  status: 'status',
1092
1100
  team_winner: 'teamWinner',
1101
+ team_second: 'teamSecond',
1102
+ team_third: 'teamThird',
1093
1103
  season: 'season',
1094
1104
  },
1095
1105
  relation: {
@@ -1104,6 +1114,8 @@ var Tournament = /** @class */ (function (_super) {
1104
1114
  league: League,
1105
1115
  status: enumField(TournamentStatuses),
1106
1116
  teamWinner: TournamentTeamWinner,
1117
+ teamSecond: TournamentTeamWinner,
1118
+ teamThird: TournamentTeamWinner,
1107
1119
  season: TournamentSeason,
1108
1120
  }
1109
1121
  })
@@ -1533,6 +1545,7 @@ var TournamentTeam = /** @class */ (function (_super) {
1533
1545
  tournament: 'tournament',
1534
1546
  team: 'team',
1535
1547
  group: 'group',
1548
+ final_standing: 'finalStanding',
1536
1549
  games_count: 'gamesCount',
1537
1550
  won_games_count: 'wonGamesCount',
1538
1551
  draw_games_count: 'drawGamesCount',
@@ -2856,6 +2869,7 @@ var LeagueNews = /** @class */ (function (_super) {
2856
2869
  detail_text: 'detailText',
2857
2870
  picture: 'picture',
2858
2871
  cover: 'cover',
2872
+ mobile_picture: 'mobilePicture',
2859
2873
  is_main: 'isMain',
2860
2874
  tournaments: 'tournaments',
2861
2875
  },
@@ -2863,6 +2877,7 @@ var LeagueNews = /** @class */ (function (_super) {
2863
2877
  datetime: DateTimeField,
2864
2878
  picture: File,
2865
2879
  cover: File,
2880
+ mobilePicture: File,
2866
2881
  tournaments: listField(Tournament)
2867
2882
  }
2868
2883
  })
@@ -2952,6 +2967,9 @@ var LeagueApi = /** @class */ (function () {
2952
2967
  if (filters.search) {
2953
2968
  params = params.set('search', filters.search);
2954
2969
  }
2970
+ if (filters.tournamentTour) {
2971
+ params = params.set('tournament_tour', filters.tournamentTour.toString());
2972
+ }
2955
2973
  }
2956
2974
  return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/events/", { params: params, observe: 'response' }).pipe(map(function (result) { return ({
2957
2975
  total: +result.headers.get('X-Page-Count'),
@@ -2969,7 +2987,7 @@ var LeagueApi = /** @class */ (function () {
2969
2987
  };
2970
2988
  LeagueApi.prototype.getGames = function (leagueId, page, size, filters) {
2971
2989
  return __awaiter(this, void 0, void 0, function () {
2972
- var params;
2990
+ var params, statuses;
2973
2991
  return __generator(this, function (_a) {
2974
2992
  params = new HttpParams().set('page', page.toString());
2975
2993
  if (size) {
@@ -2990,6 +3008,10 @@ var LeagueApi = /** @class */ (function () {
2990
3008
  if (filters.status) {
2991
3009
  params = params.set('status', GameStatuses[filters.status]);
2992
3010
  }
3011
+ if (filters.statuses) {
3012
+ statuses = filters.statuses.map(function (i) { return GameStatuses[i]; });
3013
+ params = params.set('statuses', statuses.join(','));
3014
+ }
2993
3015
  return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/games/", { params: params, observe: 'response' }).pipe(map(function (result) { return ({
2994
3016
  total: +result.headers.get('X-Page-Count'),
2995
3017
  data: Game.toFront(result.body)
@@ -2997,6 +3019,17 @@ var LeagueApi = /** @class */ (function () {
2997
3019
  });
2998
3020
  });
2999
3021
  };
3022
+ LeagueApi.prototype.getSeasons = function (leagueId, notClosed) {
3023
+ return __awaiter(this, void 0, void 0, function () {
3024
+ var params;
3025
+ return __generator(this, function (_a) {
3026
+ params = new HttpParams().set('not_closed', notClosed ? '1' : '');
3027
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/tournament_seasons/", { params: params })
3028
+ .pipe(map(function (result) { return TournamentSeason.toFront(result); }))
3029
+ .toPromise()];
3030
+ });
3031
+ });
3032
+ };
3000
3033
  LeagueApi.ctorParameters = function () { return [
3001
3034
  { type: HttpClient },
3002
3035
  { type: ConfigService }
@@ -3013,10 +3046,13 @@ var LeagueNewsApi = /** @class */ (function () {
3013
3046
  this.httpClient = httpClient;
3014
3047
  this.configService = configService;
3015
3048
  }
3016
- LeagueNewsApi.prototype.getLeagueNewsList = function (leagueId) {
3049
+ LeagueNewsApi.prototype.getLeagueNewsList = function (leagueId, page, size) {
3017
3050
  return __awaiter(this, void 0, void 0, function () {
3051
+ var params;
3018
3052
  return __generator(this, function (_a) {
3019
- return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/news/", { observe: 'response' })
3053
+ params = new HttpParams().set('page', page.toString())
3054
+ .set('size', size.toString());
3055
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/news/", { params: params, observe: 'response' })
3020
3056
  .pipe(map(function (response) { return ({
3021
3057
  total: +response.headers.get('X-Page-Count'),
3022
3058
  data: LeagueNews.toFront(response.body)
@@ -3034,6 +3070,15 @@ var LeagueNewsApi = /** @class */ (function () {
3034
3070
  });
3035
3071
  });
3036
3072
  };
3073
+ LeagueNewsApi.prototype.getMainLeagueNewsList = function (leagueId) {
3074
+ return __awaiter(this, void 0, void 0, function () {
3075
+ return __generator(this, function (_a) {
3076
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/news/?is_main=true")
3077
+ .pipe(map(function (response) { return LeagueNews.toFront(response); }))
3078
+ .toPromise()];
3079
+ });
3080
+ });
3081
+ };
3037
3082
  LeagueNewsApi.prototype.getNewsById = function (newsId) {
3038
3083
  return __awaiter(this, void 0, void 0, function () {
3039
3084
  return __generator(this, function (_a) {
@@ -3155,6 +3200,9 @@ var MediaApi = /** @class */ (function () {
3155
3200
  if (filters.mediaType) {
3156
3201
  params = params.set('media_type', filters.mediaType);
3157
3202
  }
3203
+ if (filters.sort) {
3204
+ params = params.set('sort', filters.sort);
3205
+ }
3158
3206
  return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/media/", { params: params, observe: 'response' })
3159
3207
  .pipe(map(function (response) { return ({
3160
3208
  total: +response.headers.get('X-Page-Count'),
@@ -4994,10 +5042,10 @@ var TournamentApi = /** @class */ (function () {
4994
5042
  this.httpClient = httpClient;
4995
5043
  this.configService = configService;
4996
5044
  }
4997
- TournamentApi.prototype.getByAlias = function (alias) {
5045
+ TournamentApi.prototype.getByAlias = function (leagueId, alias) {
4998
5046
  return __awaiter(this, void 0, void 0, function () {
4999
5047
  return __generator(this, function (_a) {
5000
- return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament/" + alias + "/")
5048
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/tournaments/" + alias + "/")
5001
5049
  .pipe(map(function (result) { return Tournament.toFront(result); }))
5002
5050
  .toPromise()];
5003
5051
  });
@@ -5025,6 +5073,9 @@ var TournamentApi = /** @class */ (function () {
5025
5073
  if (filters.search) {
5026
5074
  params = params.set('search', filters.search);
5027
5075
  }
5076
+ if (filters.tournamentTour) {
5077
+ params = params.set('tournament_tour', filters.tournamentTour.toString());
5078
+ }
5028
5079
  }
5029
5080
  return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament/" + tournamentId + "/events/", { params: params, observe: 'response' })
5030
5081
  .pipe(map(function (result) { return ({
@@ -5068,7 +5119,7 @@ var TournamentApi = /** @class */ (function () {
5068
5119
  TournamentApi.prototype.getGames = function (tournamentId, page, size, filters) {
5069
5120
  if (filters === void 0) { filters = {}; }
5070
5121
  return __awaiter(this, void 0, void 0, function () {
5071
- var params;
5122
+ var params, statuses;
5072
5123
  return __generator(this, function (_a) {
5073
5124
  params = new HttpParams().set('page', page.toString());
5074
5125
  if (size) {
@@ -5089,6 +5140,10 @@ var TournamentApi = /** @class */ (function () {
5089
5140
  if (filters.status) {
5090
5141
  params = params.set('status', GameStatuses[filters.status]);
5091
5142
  }
5143
+ if (filters.statuses) {
5144
+ statuses = filters.statuses.map(function (i) { return GameStatuses[i]; });
5145
+ params = params.set('statuses', statuses.join(','));
5146
+ }
5092
5147
  return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament/" + tournamentId + "/games/", { params: params, observe: 'response' })
5093
5148
  .pipe(map(function (result) { return ({
5094
5149
  total: +result.headers.get('X-Page-Count'),
@@ -5376,10 +5431,10 @@ var TournamentSeasonApi = /** @class */ (function () {
5376
5431
  this.httpClient = httpClient;
5377
5432
  this.configService = configService;
5378
5433
  }
5379
- TournamentSeasonApi.prototype.getByAlias = function (alias) {
5434
+ TournamentSeasonApi.prototype.getByAlias = function (leagueId, alias) {
5380
5435
  return __awaiter(this, void 0, void 0, function () {
5381
5436
  return __generator(this, function (_a) {
5382
- return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + alias + "/").pipe(map(function (result) { return TournamentSeason.toFront(result); })).toPromise()];
5437
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/tournament_seasons/" + alias + "/").pipe(map(function (result) { return TournamentSeason.toFront(result); })).toPromise()];
5383
5438
  });
5384
5439
  });
5385
5440
  };
@@ -5392,7 +5447,7 @@ var TournamentSeasonApi = /** @class */ (function () {
5392
5447
  };
5393
5448
  TournamentSeasonApi.prototype.getGames = function (seasonId, page, size, filters) {
5394
5449
  return __awaiter(this, void 0, void 0, function () {
5395
- var params;
5450
+ var params, statuses;
5396
5451
  return __generator(this, function (_a) {
5397
5452
  params = new HttpParams().set('page', page.toString());
5398
5453
  if (size) {
@@ -5413,6 +5468,10 @@ var TournamentSeasonApi = /** @class */ (function () {
5413
5468
  if (filters.status) {
5414
5469
  params = params.set('status', GameStatuses[filters.status]);
5415
5470
  }
5471
+ if (filters.statuses) {
5472
+ statuses = filters.statuses.map(function (i) { return GameStatuses[i]; });
5473
+ params = params.set('statuses', statuses.join(','));
5474
+ }
5416
5475
  return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + seasonId + "/games/", { params: params, observe: 'response' }).pipe(map(function (result) { return ({
5417
5476
  total: +result.headers.get('X-Page-Count'),
5418
5477
  data: Game.toFront(result.body)
@@ -5433,6 +5492,9 @@ var TournamentSeasonApi = /** @class */ (function () {
5433
5492
  if (filters.search) {
5434
5493
  params = params.set('search', filters.search);
5435
5494
  }
5495
+ if (filters.tournamentTour) {
5496
+ params = params.set('tournament_tour', filters.tournamentTour.toString());
5497
+ }
5436
5498
  }
5437
5499
  return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + seasonId + "/events/", { params: params, observe: 'response' })
5438
5500
  .pipe(map(function (result) { return ({
@@ -5485,6 +5547,15 @@ var TournamentSeasonApi = /** @class */ (function () {
5485
5547
  });
5486
5548
  });
5487
5549
  };
5550
+ TournamentSeasonApi.prototype.getGamesStages = function (seasonId) {
5551
+ return __awaiter(this, void 0, void 0, function () {
5552
+ return __generator(this, function (_a) {
5553
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + seasonId + "/games_stages/")
5554
+ .pipe(map(function (data) { return GameTimelineStages.toFront(data); }))
5555
+ .toPromise()];
5556
+ });
5557
+ });
5558
+ };
5488
5559
  TournamentSeasonApi.ctorParameters = function () { return [
5489
5560
  { type: HttpClient },
5490
5561
  { type: ConfigService }
@@ -6779,5 +6850,5 @@ var HttpCookieInterceptor = /** @class */ (function () {
6779
6850
  * Generated bundle index. Do not edit.
6780
6851
  */
6781
6852
 
6782
- export { 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, Game, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HttpCookieInterceptor, League, LeagueApi, LeagueCourt, LeagueNews, LeagueNewsApi, LocalStorageEngine, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OrgNotificationApi, Organization, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, 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, 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 };
6853
+ export { 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, Game, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HttpCookieInterceptor, League, LeagueApi, LeagueCourt, LeagueNews, LeagueNewsApi, LocalStorageEngine, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OrgNotificationApi, Organization, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, 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 };
6783
6854
  //# sourceMappingURL=mtgame-core.js.map