@mtgame/core 0.1.40 → 0.1.42

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 (43) hide show
  1. package/api/game-base-api.d.ts +1 -0
  2. package/api/rugby-game-api.d.ts +3 -0
  3. package/bundles/mtgame-core.umd.js +257 -134
  4. package/bundles/mtgame-core.umd.js.map +1 -1
  5. package/bundles/mtgame-core.umd.min.js +1 -1
  6. package/bundles/mtgame-core.umd.min.js.map +1 -1
  7. package/esm2015/api/game-base-api.js +10 -2
  8. package/esm2015/api/rugby-game-api.js +16 -2
  9. package/esm2015/localization/public-api.js +2 -1
  10. package/esm2015/localization/rugby-foul-sanction.js +10 -0
  11. package/esm2015/localization/rugby-game-log-types.js +4 -1
  12. package/esm2015/models/game.js +15 -1
  13. package/esm2015/models/public-api.js +2 -1
  14. package/esm2015/models/rugby-foul-type.js +35 -0
  15. package/esm2015/models/rugby-game-log.js +32 -24
  16. package/esm2015/models/rugby-game-statistic.js +7 -1
  17. package/esm2015/models/rugby-statistic.js +15 -1
  18. package/esm5/api/game-base-api.js +12 -2
  19. package/esm5/api/rugby-game-api.js +20 -2
  20. package/esm5/localization/public-api.js +2 -1
  21. package/esm5/localization/rugby-foul-sanction.js +11 -0
  22. package/esm5/localization/rugby-game-log-types.js +4 -1
  23. package/esm5/models/game.js +19 -1
  24. package/esm5/models/public-api.js +2 -1
  25. package/esm5/models/rugby-foul-type.js +40 -0
  26. package/esm5/models/rugby-game-log.js +32 -24
  27. package/esm5/models/rugby-game-statistic.js +7 -1
  28. package/esm5/models/rugby-statistic.js +15 -1
  29. package/fesm2015/mtgame-core.js +160 -55
  30. package/fesm2015/mtgame-core.js.map +1 -1
  31. package/fesm5/mtgame-core.js +257 -136
  32. package/fesm5/mtgame-core.js.map +1 -1
  33. package/localization/public-api.d.ts +1 -0
  34. package/localization/rugby-foul-sanction.d.ts +9 -0
  35. package/localization/rugby-game-log-types.d.ts +3 -0
  36. package/models/game.d.ts +4 -0
  37. package/models/public-api.d.ts +1 -0
  38. package/models/rugby-foul-type.d.ts +16 -0
  39. package/models/rugby-game-log.d.ts +27 -21
  40. package/models/rugby-game-statistic.d.ts +6 -0
  41. package/models/rugby-statistic.d.ts +14 -0
  42. package/mtgame-core.metadata.json +1 -1
  43. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import { __values, __extends, __decorate, __spread, __assign, __param, __awaiter, __generator } from 'tslib';
2
2
  import { ɵɵdefineInjectable, Injectable, Optional, Inject, ɵɵinject, Injector, PLATFORM_ID } from '@angular/core';
3
- import { HttpClient, HttpParams } from '@angular/common/http';
3
+ import { HttpParams, HttpClient } from '@angular/common/http';
4
4
  import { filter, map, delay, switchMap } from 'rxjs/operators';
5
5
  import { BehaviorSubject, Observable, of } from 'rxjs';
6
6
  import { Subject } from 'rxjs/internal/Subject';
@@ -1784,6 +1784,41 @@ var TournamentGroup = /** @class */ (function (_super) {
1784
1784
  return TournamentGroup;
1785
1785
  }(BaseModel));
1786
1786
 
1787
+ var RugbyGameConfig = /** @class */ (function (_super) {
1788
+ __extends(RugbyGameConfig, _super);
1789
+ function RugbyGameConfig() {
1790
+ return _super !== null && _super.apply(this, arguments) || this;
1791
+ }
1792
+ RugbyGameConfig.toFront = function (data) { };
1793
+ RugbyGameConfig.toBack = function (data) { };
1794
+ __decorate([
1795
+ ToFrontHook
1796
+ ], RugbyGameConfig, "toFront", null);
1797
+ __decorate([
1798
+ ToBackHook
1799
+ ], RugbyGameConfig, "toBack", null);
1800
+ RugbyGameConfig = __decorate([
1801
+ ModelInstance({
1802
+ mappingFields: {
1803
+ periods_count: 'periodsCount',
1804
+ period_time: 'periodTime',
1805
+ overtime_type: 'overtimeType',
1806
+ overtime_time: 'overtimeTime',
1807
+ overtime_periods: 'overtimePeriods',
1808
+ max_game_players: 'maxGamePlayers',
1809
+ game_time_type: 'gameTimeType',
1810
+ substitute_count: 'substituteCount',
1811
+ free_substitute_enabled: 'freeSubstituteEnabled',
1812
+ },
1813
+ relation: {
1814
+ overtimeType: enumField(OvertimeTypes),
1815
+ gameTimeType: enumField(GameTimeTypes),
1816
+ }
1817
+ })
1818
+ ], RugbyGameConfig);
1819
+ return RugbyGameConfig;
1820
+ }(BaseModel));
1821
+
1787
1822
  var GameStatuses;
1788
1823
  (function (GameStatuses) {
1789
1824
  GameStatuses[GameStatuses["open"] = 1] = "open";
@@ -1911,6 +1946,22 @@ var Game = /** @class */ (function (_super) {
1911
1946
  enumerable: true,
1912
1947
  configurable: true
1913
1948
  });
1949
+ Object.defineProperty(Game.prototype, "rugbyGameConfig", {
1950
+ get: function () {
1951
+ if (this._rugbyGameConfig && this._rugbyGameConfig.periodsCount) {
1952
+ return this._rugbyGameConfig;
1953
+ }
1954
+ if (this.gameConfig) {
1955
+ this._rugbyGameConfig = RugbyGameConfig.toFront(this.gameConfig);
1956
+ }
1957
+ return this._rugbyGameConfig;
1958
+ },
1959
+ set: function (value) {
1960
+ this._rugbyGameConfig = value;
1961
+ },
1962
+ enumerable: true,
1963
+ configurable: true
1964
+ });
1914
1965
  Object.defineProperty(Game.prototype, "scoreByPeriodList", {
1915
1966
  get: function () {
1916
1967
  var _this = this;
@@ -2001,6 +2052,7 @@ var Game = /** @class */ (function (_super) {
2001
2052
  hockey_game_config: 'hockeyGameConfig',
2002
2053
  football_game_config: 'footballGameConfig',
2003
2054
  handball_game_config: 'handballGameConfig',
2055
+ rugby_game_config: 'rugbyGameConfig',
2004
2056
  score_by_period: 'scoreByPeriod',
2005
2057
  playoff_stage: 'playoffStage',
2006
2058
  tournament_stage_id: 'tournamentStageId',
@@ -2905,6 +2957,16 @@ var GameBaseApi = /** @class */ (function () {
2905
2957
  });
2906
2958
  });
2907
2959
  };
2960
+ GameBaseApi.prototype.downloadApplication = function (gameId, format, type) {
2961
+ return __awaiter(this, void 0, void 0, function () {
2962
+ return __generator(this, function (_a) {
2963
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_game/" + gameId + "/game_application/", {
2964
+ params: new HttpParams().set('file_type', format).set('application_type', type),
2965
+ responseType: 'blob'
2966
+ }).toPromise()];
2967
+ });
2968
+ });
2969
+ };
2908
2970
  GameBaseApi.ctorParameters = function () { return [
2909
2971
  { type: HttpClient },
2910
2972
  { type: ConfigService }
@@ -5144,13 +5206,19 @@ var RugbyStatistic = /** @class */ (function (_super) {
5144
5206
  points: 'points',
5145
5207
  tries: 'tries',
5146
5208
  penalty_tries: 'penaltyTries',
5209
+ conversion_shots: 'conversionShots',
5147
5210
  conversion_goals: 'conversionGoals',
5148
5211
  conversion_misses: 'conversionMisses',
5212
+ conversion_goals_percent: 'conversionGoalsPercent',
5149
5213
  drawing_ball: 'drawingBall',
5214
+ penalty_shots: 'penaltyShots',
5150
5215
  penalty_misses: 'penaltyMisses',
5151
5216
  penalty_goals: 'penaltyGoals',
5217
+ penalty_goals_percent: 'penaltyGoalsPercent',
5218
+ drop_goal_shots: 'dropGoalShots',
5152
5219
  drop_goals: 'dropGoals',
5153
5220
  drop_goal_misses: 'dropGoalMisses',
5221
+ drop_goal_percent: 'dropGoalPercent',
5154
5222
  free_kicks: 'freeKicks',
5155
5223
  yellow_cards: 'yellowCards',
5156
5224
  red_cards: 'redCards',
@@ -5162,16 +5230,24 @@ var RugbyStatistic = /** @class */ (function (_super) {
5162
5230
  plus_minus: 'plusMinus',
5163
5231
  game_time: 'gameTime',
5164
5232
  // Team statistic
5233
+ scrums: 'scrums',
5165
5234
  scrums_won: 'scrumsWon',
5166
5235
  scrum_losses: 'scrumLosses',
5236
+ scrums_won_percent: 'scrumsWonPercent',
5167
5237
  scrums_won_free: 'scrumsWonFree',
5238
+ lineouts: 'lineouts',
5168
5239
  lineouts_success: 'lineoutsSuccess',
5240
+ lineout_loses: 'lineoutLoses',
5169
5241
  lineouts_steal: 'lineoutsSteal',
5170
5242
  quick_throws: 'quickThrows',
5243
+ rucks: 'rucks',
5171
5244
  rucks_won: 'rucksWon',
5172
5245
  ruck_losses: 'ruckLosses',
5246
+ rucks_won_percent: 'rucksWonPercent',
5247
+ mauls: 'mauls',
5173
5248
  mauls_won: 'maulsWon',
5174
5249
  maul_losses: 'maulLosses',
5250
+ mauls_won_percent: 'maulWonPercent',
5175
5251
  fouls: 'fouls'
5176
5252
  },
5177
5253
  relation: {
@@ -6962,11 +7038,17 @@ var RugbyGameStatistic = /** @class */ (function (_super) {
6962
7038
  penalty_tries: 'penaltyTries',
6963
7039
  conversion_goals: 'conversionGoals',
6964
7040
  conversion_misses: 'conversionMisses',
7041
+ conversion_shots: 'conversionShots',
7042
+ conversion_goals_percent: 'conversionGoalsPercent',
6965
7043
  drawing_ball: 'drawingBall',
6966
7044
  penalty_misses: 'penaltyMisses',
6967
7045
  penalty_goals: 'penaltyGoals',
7046
+ penalty_shots: 'penaltyShots',
7047
+ penalty_goals_percent: 'penaltyGoalsPercent',
6968
7048
  drop_goals: 'dropGoals',
6969
7049
  drop_goal_misses: 'dropGoalMisses',
7050
+ drop_goal_shots: 'dropGoalShots',
7051
+ drop_goals_percent: 'dropGoalsPercent',
6970
7052
  free_kicks: 'freeKicks',
6971
7053
  yellow_cards: 'yellowCards',
6972
7054
  red_cards: 'redCards',
@@ -6986,6 +7068,43 @@ var RugbyGameStatistic = /** @class */ (function (_super) {
6986
7068
  return RugbyGameStatistic;
6987
7069
  }(BaseModel));
6988
7070
 
7071
+ var RugbyFoulSanctions;
7072
+ (function (RugbyFoulSanctions) {
7073
+ RugbyFoulSanctions[RugbyFoulSanctions["scrum"] = 1] = "scrum";
7074
+ RugbyFoulSanctions[RugbyFoulSanctions["lineout"] = 2] = "lineout";
7075
+ RugbyFoulSanctions[RugbyFoulSanctions["free_kick"] = 3] = "free_kick";
7076
+ RugbyFoulSanctions[RugbyFoulSanctions["penalty_shot"] = 4] = "penalty_shot";
7077
+ RugbyFoulSanctions[RugbyFoulSanctions["yellow_card"] = 5] = "yellow_card";
7078
+ RugbyFoulSanctions[RugbyFoulSanctions["red_card"] = 6] = "red_card";
7079
+ })(RugbyFoulSanctions || (RugbyFoulSanctions = {}));
7080
+ var RugbyFoulType = /** @class */ (function (_super) {
7081
+ __extends(RugbyFoulType, _super);
7082
+ function RugbyFoulType() {
7083
+ return _super !== null && _super.apply(this, arguments) || this;
7084
+ }
7085
+ RugbyFoulType.toFront = function (data) { };
7086
+ RugbyFoulType.toBack = function (data) { };
7087
+ __decorate([
7088
+ ToFrontHook
7089
+ ], RugbyFoulType, "toFront", null);
7090
+ __decorate([
7091
+ ToBackHook
7092
+ ], RugbyFoulType, "toBack", null);
7093
+ RugbyFoulType = __decorate([
7094
+ ModelInstance({
7095
+ mappingFields: {
7096
+ id: 'id',
7097
+ name: 'name',
7098
+ sanction: 'sanction',
7099
+ },
7100
+ relation: {
7101
+ sanction: listField(enumField(RugbyFoulSanctions))
7102
+ }
7103
+ })
7104
+ ], RugbyFoulType);
7105
+ return RugbyFoulType;
7106
+ }(BaseModel));
7107
+
6989
7108
  var _a$1;
6990
7109
  var RugbyGameLogTypes;
6991
7110
  (function (RugbyGameLogTypes) {
@@ -7001,27 +7120,30 @@ var RugbyGameLogTypes;
7001
7120
  RugbyGameLogTypes[RugbyGameLogTypes["drop_goal"] = 10] = "drop_goal";
7002
7121
  RugbyGameLogTypes[RugbyGameLogTypes["drop_goal_miss"] = 11] = "drop_goal_miss";
7003
7122
  RugbyGameLogTypes[RugbyGameLogTypes["free_kick"] = 12] = "free_kick";
7004
- RugbyGameLogTypes[RugbyGameLogTypes["yellow_card"] = 13] = "yellow_card";
7005
- RugbyGameLogTypes[RugbyGameLogTypes["red_card"] = 14] = "red_card";
7006
- RugbyGameLogTypes[RugbyGameLogTypes["offload"] = 15] = "offload";
7007
- RugbyGameLogTypes[RugbyGameLogTypes["tackle"] = 16] = "tackle";
7008
- RugbyGameLogTypes[RugbyGameLogTypes["out"] = 17] = "out";
7009
- RugbyGameLogTypes[RugbyGameLogTypes["handling_error"] = 18] = "handling_error";
7010
- RugbyGameLogTypes[RugbyGameLogTypes["carries_other_gainline"] = 19] = "carries_other_gainline";
7123
+ RugbyGameLogTypes[RugbyGameLogTypes["foul"] = 13] = "foul";
7124
+ RugbyGameLogTypes[RugbyGameLogTypes["yellow_card"] = 14] = "yellow_card";
7125
+ RugbyGameLogTypes[RugbyGameLogTypes["red_card"] = 15] = "red_card";
7126
+ RugbyGameLogTypes[RugbyGameLogTypes["offload"] = 16] = "offload";
7127
+ RugbyGameLogTypes[RugbyGameLogTypes["tackle"] = 17] = "tackle";
7128
+ RugbyGameLogTypes[RugbyGameLogTypes["out"] = 18] = "out";
7129
+ RugbyGameLogTypes[RugbyGameLogTypes["handling_error"] = 19] = "handling_error";
7130
+ RugbyGameLogTypes[RugbyGameLogTypes["carries_other_gainline"] = 20] = "carries_other_gainline";
7131
+ RugbyGameLogTypes[RugbyGameLogTypes["bleeding_injury"] = 21] = "bleeding_injury";
7132
+ RugbyGameLogTypes[RugbyGameLogTypes["head_injury"] = 22] = "head_injury";
7011
7133
  // team actions
7012
- RugbyGameLogTypes[RugbyGameLogTypes["timeout"] = 20] = "timeout";
7013
- RugbyGameLogTypes[RugbyGameLogTypes["scrum_won"] = 21] = "scrum_won";
7014
- RugbyGameLogTypes[RugbyGameLogTypes["scrum_lose"] = 22] = "scrum_lose";
7015
- RugbyGameLogTypes[RugbyGameLogTypes["scrum_won_free"] = 23] = "scrum_won_free";
7016
- RugbyGameLogTypes[RugbyGameLogTypes["lineout_success"] = 24] = "lineout_success";
7017
- RugbyGameLogTypes[RugbyGameLogTypes["lineout_loss"] = 25] = "lineout_loss";
7018
- RugbyGameLogTypes[RugbyGameLogTypes["lineout_steal"] = 26] = "lineout_steal";
7019
- RugbyGameLogTypes[RugbyGameLogTypes["quick_throw"] = 27] = "quick_throw";
7020
- RugbyGameLogTypes[RugbyGameLogTypes["ruck_won"] = 28] = "ruck_won";
7021
- RugbyGameLogTypes[RugbyGameLogTypes["ruck_lose"] = 29] = "ruck_lose";
7022
- RugbyGameLogTypes[RugbyGameLogTypes["maul_won"] = 30] = "maul_won";
7023
- RugbyGameLogTypes[RugbyGameLogTypes["maul_lose"] = 31] = "maul_lose";
7024
- RugbyGameLogTypes[RugbyGameLogTypes["team_foul"] = 32] = "team_foul";
7134
+ RugbyGameLogTypes[RugbyGameLogTypes["timeout"] = 23] = "timeout";
7135
+ RugbyGameLogTypes[RugbyGameLogTypes["scrum_won"] = 24] = "scrum_won";
7136
+ RugbyGameLogTypes[RugbyGameLogTypes["scrum_lose"] = 25] = "scrum_lose";
7137
+ RugbyGameLogTypes[RugbyGameLogTypes["scrum_won_free"] = 26] = "scrum_won_free";
7138
+ RugbyGameLogTypes[RugbyGameLogTypes["lineout_success"] = 27] = "lineout_success";
7139
+ RugbyGameLogTypes[RugbyGameLogTypes["lineout_loss"] = 28] = "lineout_loss";
7140
+ RugbyGameLogTypes[RugbyGameLogTypes["lineout_steal"] = 29] = "lineout_steal";
7141
+ RugbyGameLogTypes[RugbyGameLogTypes["quick_throw"] = 30] = "quick_throw";
7142
+ RugbyGameLogTypes[RugbyGameLogTypes["ruck_won"] = 31] = "ruck_won";
7143
+ RugbyGameLogTypes[RugbyGameLogTypes["ruck_lose"] = 32] = "ruck_lose";
7144
+ RugbyGameLogTypes[RugbyGameLogTypes["maul_won"] = 33] = "maul_won";
7145
+ RugbyGameLogTypes[RugbyGameLogTypes["maul_lose"] = 34] = "maul_lose";
7146
+ RugbyGameLogTypes[RugbyGameLogTypes["team_foul"] = 35] = "team_foul";
7025
7147
  })(RugbyGameLogTypes || (RugbyGameLogTypes = {}));
7026
7148
  var RUGBY_GAME_LOG_TYPE_POINTS = (_a$1 = {},
7027
7149
  _a$1[RugbyGameLogTypes.penalty_try] = 7,
@@ -7077,7 +7199,7 @@ var RugbyGameLog = /** @class */ (function (_super) {
7077
7199
  return this.period > log.period;
7078
7200
  };
7079
7201
  RugbyGameLog.prototype.isFoulType = function () {
7080
- return [RugbyGameLogTypes.team_foul, RugbyGameLogTypes.yellow_card, RugbyGameLogTypes.red_card].indexOf(this.logType) > -1;
7202
+ return [RugbyGameLogTypes.team_foul, RugbyGameLogTypes.foul].indexOf(this.logType) > -1;
7081
7203
  };
7082
7204
  RugbyGameLog.prototype.isTeamType = function () {
7083
7205
  return RUGBY_TEAM_LOG_TYPES.includes(this.logType);
@@ -7095,6 +7217,7 @@ var RugbyGameLog = /** @class */ (function (_super) {
7095
7217
  mappingFields: {
7096
7218
  id: 'id',
7097
7219
  unique_id: 'uniqueId',
7220
+ group: 'group',
7098
7221
  game_id: 'gameId',
7099
7222
  game_user_id: 'gameUserId',
7100
7223
  team_id: 'teamId',
@@ -7104,11 +7227,14 @@ var RugbyGameLog = /** @class */ (function (_super) {
7104
7227
  period: 'period',
7105
7228
  active: 'active',
7106
7229
  is_highlight: 'isHighlight',
7107
- penalty_type: 'penaltyType',
7230
+ foul_type: 'foulType',
7231
+ foul_sanction: 'foulSanction',
7108
7232
  },
7109
7233
  relation: {
7110
7234
  datetime: DateTimeField,
7111
- logType: enumField(RugbyGameLogTypes)
7235
+ logType: enumField(RugbyGameLogTypes),
7236
+ foulType: RugbyFoulType,
7237
+ foulSanction: enumField(RugbyFoulSanctions),
7112
7238
  }
7113
7239
  })
7114
7240
  ], RugbyGameLog);
@@ -7151,6 +7277,23 @@ var RugbyGameApi = /** @class */ (function (_super) {
7151
7277
  });
7152
7278
  });
7153
7279
  };
7280
+ RugbyGameApi.prototype.getFoulTypes = function () {
7281
+ return __awaiter(this, void 0, void 0, function () {
7282
+ return __generator(this, function (_a) {
7283
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_rugby_game/foul_types/").pipe(map(function (result) { return RugbyFoulType.toFront(result); })).toPromise()];
7284
+ });
7285
+ });
7286
+ };
7287
+ RugbyGameApi.prototype.downloadProtocol = function (gameId) {
7288
+ return __awaiter(this, void 0, void 0, function () {
7289
+ return __generator(this, function (_a) {
7290
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_rugby_game/" + gameId + "/game_protocol/", {
7291
+ params: new HttpParams().set('file_type', 'pdf'),
7292
+ responseType: 'blob'
7293
+ }).toPromise()];
7294
+ });
7295
+ });
7296
+ };
7154
7297
  RugbyGameApi.ctorParameters = function () { return [
7155
7298
  { type: HttpClient },
7156
7299
  { type: ConfigService }
@@ -8982,63 +9125,76 @@ var OvertimeTypeLocalization = (_a$6 = {},
8982
9125
  _a$6);
8983
9126
 
8984
9127
  var _a$7;
8985
- var RugbyGameLogTypeLocalization = (_a$7 = {},
8986
- _a$7[RugbyGameLogTypes.enter_game] = 'Выход на площадку',
8987
- _a$7[RugbyGameLogTypes.exit_game] = 'Ушел с площадки',
8988
- _a$7[RugbyGameLogTypes.try] = 'Попытка',
8989
- _a$7[RugbyGameLogTypes.penalty_try] = 'Штрафная попытка',
8990
- _a$7[RugbyGameLogTypes.conversion_goal] = 'Реализация',
8991
- _a$7[RugbyGameLogTypes.conversion_miss] = 'Реализация промах',
8992
- _a$7[RugbyGameLogTypes.drawing_ball] = 'Розыгрыш мяча',
8993
- _a$7[RugbyGameLogTypes.penalty_miss] = 'Штрафной промах',
8994
- _a$7[RugbyGameLogTypes.penalty_goal] = 'Штрафной гол',
8995
- _a$7[RugbyGameLogTypes.drop_goal] = 'Дроп-гол',
8996
- _a$7[RugbyGameLogTypes.drop_goal_miss] = 'Дроп-гол промах',
8997
- _a$7[RugbyGameLogTypes.free_kick] = 'Свободный удар',
8998
- _a$7[RugbyGameLogTypes.yellow_card] = 'Желтая карточка',
8999
- _a$7[RugbyGameLogTypes.red_card] = 'Красная карточка',
9000
- _a$7[RugbyGameLogTypes.offload] = 'Скидка при завхвате',
9001
- _a$7[RugbyGameLogTypes.tackle] = 'Успешный захват',
9002
- _a$7[RugbyGameLogTypes.out] = 'Аут',
9003
- _a$7[RugbyGameLogTypes.handling_error] = 'Ошибка приема',
9004
- _a$7[RugbyGameLogTypes.carries_other_gainline] = 'Прорыв линии',
9005
- _a$7[RugbyGameLogTypes.timeout] = 'Таймаут',
9006
- _a$7[RugbyGameLogTypes.scrum_won] = 'Свахтка выиграна',
9007
- _a$7[RugbyGameLogTypes.scrum_lose] = 'Схватка проиграна',
9008
- _a$7[RugbyGameLogTypes.scrum_won_free] = 'Схватка выиграна без сопротивления',
9009
- _a$7[RugbyGameLogTypes.lineout_success] = 'Корридор выиграно',
9010
- _a$7[RugbyGameLogTypes.lineout_loss] = 'Корридор потеря',
9011
- _a$7[RugbyGameLogTypes.lineout_steal] = 'Корридор перехват',
9012
- _a$7[RugbyGameLogTypes.quick_throw] = 'Быстрый вброс',
9013
- _a$7[RugbyGameLogTypes.ruck_won] = 'Рак выиграно',
9014
- _a$7[RugbyGameLogTypes.ruck_lose] = 'Рак проиграно',
9015
- _a$7[RugbyGameLogTypes.maul_won] = 'Мол выиграно',
9016
- _a$7[RugbyGameLogTypes.maul_lose] = 'Мол проиграно',
9017
- _a$7[RugbyGameLogTypes.team_foul] = 'Фол',
9128
+ var RugbyFoulSanctionLocalization = (_a$7 = {},
9129
+ _a$7[RugbyFoulSanctions.scrum] = 'Схватка',
9130
+ _a$7[RugbyFoulSanctions.lineout] = 'Корридор',
9131
+ _a$7[RugbyFoulSanctions.free_kick] = 'Свободный удар',
9132
+ _a$7[RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
9133
+ _a$7[RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
9134
+ _a$7[RugbyFoulSanctions.red_card] = 'Красная карточка',
9018
9135
  _a$7);
9019
9136
 
9020
9137
  var _a$8;
9021
- var TeamUserRoleLocalization = (_a$8 = {},
9022
- _a$8[TeamUserRole.member] = 'Пользователь',
9023
- _a$8[TeamUserRole.moderator] = 'Модератор',
9024
- _a$8[TeamUserRole.admin] = 'Владелец',
9025
- _a$8[TeamUserRole.coach] = 'Тренер',
9026
- _a$8[TeamUserRole.head_coach] = 'Главный тренер',
9027
- _a$8[TeamUserRole.playing_coach] = 'Играющий тренер',
9028
- _a$8[TeamUserRole.manager] = 'Менеджер',
9029
- _a$8[TeamUserRole.head_manager] = 'Генеральный менеджер',
9030
- _a$8[TeamUserRole.captain] = 'Капитан',
9031
- _a$8[TeamUserRole.assistant] = 'Ассистент',
9138
+ var RugbyGameLogTypeLocalization = (_a$8 = {},
9139
+ _a$8[RugbyGameLogTypes.enter_game] = 'Выход на площадку',
9140
+ _a$8[RugbyGameLogTypes.exit_game] = 'Ушел с площадки',
9141
+ _a$8[RugbyGameLogTypes.try] = 'Попытка',
9142
+ _a$8[RugbyGameLogTypes.penalty_try] = 'Штрафная попытка',
9143
+ _a$8[RugbyGameLogTypes.conversion_goal] = 'Реализация',
9144
+ _a$8[RugbyGameLogTypes.conversion_miss] = 'Реализация промах',
9145
+ _a$8[RugbyGameLogTypes.drawing_ball] = 'Розыгрыш мяча',
9146
+ _a$8[RugbyGameLogTypes.penalty_miss] = 'Штрафной промах',
9147
+ _a$8[RugbyGameLogTypes.penalty_goal] = 'Штрафной гол',
9148
+ _a$8[RugbyGameLogTypes.drop_goal] = 'Дроп-гол',
9149
+ _a$8[RugbyGameLogTypes.drop_goal_miss] = 'Дроп-гол промах',
9150
+ _a$8[RugbyGameLogTypes.free_kick] = 'Свободный удар',
9151
+ _a$8[RugbyGameLogTypes.foul] = 'Фол',
9152
+ _a$8[RugbyGameLogTypes.yellow_card] = 'Желтая карточка',
9153
+ _a$8[RugbyGameLogTypes.red_card] = 'Красная карточка',
9154
+ _a$8[RugbyGameLogTypes.offload] = 'Скидка при завхвате',
9155
+ _a$8[RugbyGameLogTypes.tackle] = 'Успешный захват',
9156
+ _a$8[RugbyGameLogTypes.out] = 'Аут',
9157
+ _a$8[RugbyGameLogTypes.handling_error] = 'Ошибка приема',
9158
+ _a$8[RugbyGameLogTypes.carries_other_gainline] = 'Прорыв линии',
9159
+ _a$8[RugbyGameLogTypes.bleeding_injury] = 'Кровоточащая травма',
9160
+ _a$8[RugbyGameLogTypes.head_injury] = 'Травма головы',
9161
+ _a$8[RugbyGameLogTypes.timeout] = 'Таймаут',
9162
+ _a$8[RugbyGameLogTypes.scrum_won] = 'Свахтка выиграна',
9163
+ _a$8[RugbyGameLogTypes.scrum_lose] = 'Схватка проиграна',
9164
+ _a$8[RugbyGameLogTypes.scrum_won_free] = 'Схватка выиграна без сопротивления',
9165
+ _a$8[RugbyGameLogTypes.lineout_success] = 'Корридор выиграно',
9166
+ _a$8[RugbyGameLogTypes.lineout_loss] = 'Корридор потеря',
9167
+ _a$8[RugbyGameLogTypes.lineout_steal] = 'Корридор перехват',
9168
+ _a$8[RugbyGameLogTypes.quick_throw] = 'Быстрый вброс',
9169
+ _a$8[RugbyGameLogTypes.ruck_won] = 'Рак выиграно',
9170
+ _a$8[RugbyGameLogTypes.ruck_lose] = 'Рак проиграно',
9171
+ _a$8[RugbyGameLogTypes.maul_won] = 'Мол выиграно',
9172
+ _a$8[RugbyGameLogTypes.maul_lose] = 'Мол проиграно',
9173
+ _a$8[RugbyGameLogTypes.team_foul] = 'Фол',
9032
9174
  _a$8);
9033
9175
 
9034
- var _a$9, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
9035
- var GameBasketballPositionLocalization = (_a$9 = {},
9036
- _a$9[GameBasketballPosition.point_guard] = 'Разыгрывающий защитник',
9037
- _a$9[GameBasketballPosition.shooting_guard] = 'Атакующий защитник',
9038
- _a$9[GameBasketballPosition.small_forward] = 'Легкий форвард',
9039
- _a$9[GameBasketballPosition.power_forward] = 'Мощный форвард',
9040
- _a$9[GameBasketballPosition.center] = 'Центровой',
9176
+ var _a$9;
9177
+ var TeamUserRoleLocalization = (_a$9 = {},
9178
+ _a$9[TeamUserRole.member] = 'Пользователь',
9179
+ _a$9[TeamUserRole.moderator] = 'Модератор',
9180
+ _a$9[TeamUserRole.admin] = 'Владелец',
9181
+ _a$9[TeamUserRole.coach] = 'Тренер',
9182
+ _a$9[TeamUserRole.head_coach] = 'Главный тренер',
9183
+ _a$9[TeamUserRole.playing_coach] = 'Играющий тренер',
9184
+ _a$9[TeamUserRole.manager] = 'Менеджер',
9185
+ _a$9[TeamUserRole.head_manager] = 'Генеральный менеджер',
9186
+ _a$9[TeamUserRole.captain] = 'Капитан',
9187
+ _a$9[TeamUserRole.assistant] = 'Ассистент',
9041
9188
  _a$9);
9189
+
9190
+ var _a$a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
9191
+ var GameBasketballPositionLocalization = (_a$a = {},
9192
+ _a$a[GameBasketballPosition.point_guard] = 'Разыгрывающий защитник',
9193
+ _a$a[GameBasketballPosition.shooting_guard] = 'Атакующий защитник',
9194
+ _a$a[GameBasketballPosition.small_forward] = 'Легкий форвард',
9195
+ _a$a[GameBasketballPosition.power_forward] = 'Мощный форвард',
9196
+ _a$a[GameBasketballPosition.center] = 'Центровой',
9197
+ _a$a);
9042
9198
  var GameBasketballPositionShortLocalization = (_b = {},
9043
9199
  _b[GameBasketballPosition.point_guard] = 'PG',
9044
9200
  _b[GameBasketballPosition.shooting_guard] = 'SG',
@@ -9107,31 +9263,31 @@ var GameRugbyPositionLocalization = (_m = {},
9107
9263
  _m[GameRugbyPosition.fullback] = 'Замыкающий',
9108
9264
  _m);
9109
9265
 
9110
- var _a$a;
9111
- var VolleyballGameLogTypeLocalization = (_a$a = {},
9112
- _a$a[VolleyballGameLogType.enter_game] = 'Выход на площадку',
9113
- _a$a[VolleyballGameLogType.exit_game] = 'Уход с площадки',
9114
- _a$a[VolleyballGameLogType.remove_game] = 'Удаление с площадки',
9115
- _a$a[VolleyballGameLogType.serve_ace] = 'Эйс',
9116
- _a$a[VolleyballGameLogType.serve_hit] = 'Подача',
9117
- _a$a[VolleyballGameLogType.serve_fault] = 'Ошибка на подаче',
9118
- _a$a[VolleyballGameLogType.attack_spike] = 'Результативная атака',
9119
- _a$a[VolleyballGameLogType.attack_shot] = 'Атака',
9120
- _a$a[VolleyballGameLogType.attack_fault] = 'Ошибка атаки',
9121
- _a$a[VolleyballGameLogType.stuff_block] = 'Результативный блок',
9122
- _a$a[VolleyballGameLogType.block_rebound] = 'Блок',
9123
- _a$a[VolleyballGameLogType.block_fault] = 'Ошибка на блоке',
9124
- _a$a[VolleyballGameLogType.excellent_receive] = 'Отличный прием',
9125
- _a$a[VolleyballGameLogType.receive] = 'Прием',
9126
- _a$a[VolleyballGameLogType.receive_fault] = 'Ошибка на приеме',
9127
- _a$a[VolleyballGameLogType.serve_receive] = 'Прием подачи',
9128
- _a$a[VolleyballGameLogType.excellent_serve_receive] = 'Отличный прием подачи',
9129
- _a$a[VolleyballGameLogType.serve_receive_fault] = 'Ошибка приема подачи',
9130
- _a$a[VolleyballGameLogType.point] = 'Очко',
9131
- _a$a[VolleyballGameLogType.fault] = 'Ошибка',
9132
- _a$a[VolleyballGameLogType.timeout] = 'Таймаут',
9133
- _a$a[VolleyballGameLogType.yellow_card] = 'Предупреждение',
9134
- _a$a);
9266
+ var _a$b;
9267
+ var VolleyballGameLogTypeLocalization = (_a$b = {},
9268
+ _a$b[VolleyballGameLogType.enter_game] = 'Выход на площадку',
9269
+ _a$b[VolleyballGameLogType.exit_game] = 'Уход с площадки',
9270
+ _a$b[VolleyballGameLogType.remove_game] = 'Удаление с площадки',
9271
+ _a$b[VolleyballGameLogType.serve_ace] = 'Эйс',
9272
+ _a$b[VolleyballGameLogType.serve_hit] = 'Подача',
9273
+ _a$b[VolleyballGameLogType.serve_fault] = 'Ошибка на подаче',
9274
+ _a$b[VolleyballGameLogType.attack_spike] = 'Результативная атака',
9275
+ _a$b[VolleyballGameLogType.attack_shot] = 'Атака',
9276
+ _a$b[VolleyballGameLogType.attack_fault] = 'Ошибка атаки',
9277
+ _a$b[VolleyballGameLogType.stuff_block] = 'Результативный блок',
9278
+ _a$b[VolleyballGameLogType.block_rebound] = 'Блок',
9279
+ _a$b[VolleyballGameLogType.block_fault] = 'Ошибка на блоке',
9280
+ _a$b[VolleyballGameLogType.excellent_receive] = 'Отличный прием',
9281
+ _a$b[VolleyballGameLogType.receive] = 'Прием',
9282
+ _a$b[VolleyballGameLogType.receive_fault] = 'Ошибка на приеме',
9283
+ _a$b[VolleyballGameLogType.serve_receive] = 'Прием подачи',
9284
+ _a$b[VolleyballGameLogType.excellent_serve_receive] = 'Отличный прием подачи',
9285
+ _a$b[VolleyballGameLogType.serve_receive_fault] = 'Ошибка приема подачи',
9286
+ _a$b[VolleyballGameLogType.point] = 'Очко',
9287
+ _a$b[VolleyballGameLogType.fault] = 'Ошибка',
9288
+ _a$b[VolleyballGameLogType.timeout] = 'Таймаут',
9289
+ _a$b[VolleyballGameLogType.yellow_card] = 'Предупреждение',
9290
+ _a$b);
9135
9291
 
9136
9292
  var LeaguePlaylist = /** @class */ (function (_super) {
9137
9293
  __extends(LeaguePlaylist, _super);
@@ -9162,41 +9318,6 @@ var LeaguePlaylist = /** @class */ (function (_super) {
9162
9318
  return LeaguePlaylist;
9163
9319
  }(BaseModel));
9164
9320
 
9165
- var RugbyGameConfig = /** @class */ (function (_super) {
9166
- __extends(RugbyGameConfig, _super);
9167
- function RugbyGameConfig() {
9168
- return _super !== null && _super.apply(this, arguments) || this;
9169
- }
9170
- RugbyGameConfig.toFront = function (data) { };
9171
- RugbyGameConfig.toBack = function (data) { };
9172
- __decorate([
9173
- ToFrontHook
9174
- ], RugbyGameConfig, "toFront", null);
9175
- __decorate([
9176
- ToBackHook
9177
- ], RugbyGameConfig, "toBack", null);
9178
- RugbyGameConfig = __decorate([
9179
- ModelInstance({
9180
- mappingFields: {
9181
- periods_count: 'periodsCount',
9182
- period_time: 'periodTime',
9183
- overtime_type: 'overtimeType',
9184
- overtime_time: 'overtimeTime',
9185
- overtime_periods: 'overtimePeriods',
9186
- max_game_players: 'maxGamePlayers',
9187
- game_time_type: 'gameTimeType',
9188
- substitute_count: 'substituteCount',
9189
- free_substitute_enabled: 'freeSubstituteEnabled',
9190
- },
9191
- relation: {
9192
- overtimeType: enumField(OvertimeTypes),
9193
- gameTimeType: enumField(GameTimeTypes),
9194
- }
9195
- })
9196
- ], RugbyGameConfig);
9197
- return RugbyGameConfig;
9198
- }(BaseModel));
9199
-
9200
9321
  var CentrifugoService = /** @class */ (function () {
9201
9322
  function CentrifugoService(httpClient, configService) {
9202
9323
  this.httpClient = httpClient;
@@ -9617,5 +9738,5 @@ var HttpCookieInterceptor = /** @class */ (function () {
9617
9738
  * Generated bundle index. Do not edit.
9618
9739
  */
9619
9740
 
9620
- 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, GameRugbyPosition, GameRugbyPositionLocalization, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, 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, LeaguePlayerApi, 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, RUGBY_GAME_LOG_TYPE_POINTS, RUGBY_TEAM_LOG_TYPES, ReferenceApi, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, 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, 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, WorkHand, WorkHandLocalization, addItemInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
9741
+ 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, GameRugbyPosition, GameRugbyPositionLocalization, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, 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, LeaguePlayerApi, 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, RUGBY_GAME_LOG_TYPE_POINTS, RUGBY_TEAM_LOG_TYPES, ReferenceApi, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, 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, 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, WorkHand, WorkHandLocalization, addItemInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
9621
9742
  //# sourceMappingURL=mtgame-core.js.map