@mtgame/core 0.1.50 → 0.1.52

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.
@@ -26,6 +26,7 @@ export interface TournamentGamesFilters {
26
26
  tournamentTour?: number;
27
27
  teamId?: number;
28
28
  playoffStage?: number;
29
+ playoffRound?: number;
29
30
  playoffId?: number;
30
31
  isPlayoff?: boolean;
31
32
  status?: GameStatuses;
@@ -49,6 +50,7 @@ export interface StatisticFilters {
49
50
  tournament_stage_id?: number;
50
51
  tournament_tour?: number;
51
52
  playoff_stage?: number;
53
+ playoff_round?: number;
52
54
  playoff_id?: number;
53
55
  is_playoff?: boolean;
54
56
  date_from?: string;
@@ -1647,7 +1647,8 @@
1647
1647
  substitute_count: 'substituteCount',
1648
1648
  score_in_set: 'scoreInSet',
1649
1649
  score_in_last_set: 'scoreInLastSet',
1650
- statistic_type: 'statisticType'
1650
+ statistic_type: 'statisticType',
1651
+ libero_user_ids: 'liberoUserIds',
1651
1652
  },
1652
1653
  relation: {
1653
1654
  gameType: enumField(exports.VolleyballGameTypes),
@@ -2289,6 +2290,7 @@
2289
2290
  rugby_game_config: 'rugbyGameConfig',
2290
2291
  score_by_period: 'scoreByPeriod',
2291
2292
  playoff_stage: 'playoffStage',
2293
+ playoff_round: 'playoffRound',
2292
2294
  tournament_stage_id: 'tournamentStageId',
2293
2295
  tournament_playoff_id: 'tournamentPlayoffId',
2294
2296
  tournament_playoff: 'tournamentPlayoff',
@@ -5061,6 +5063,7 @@
5061
5063
  stage_id: 'stageId',
5062
5064
  tours_count: 'toursCount',
5063
5065
  playoff_stages_count: 'playoffStagesCount',
5066
+ playoff_teams_count: 'playoffTeamsCount',
5064
5067
  }
5065
5068
  })
5066
5069
  ], GameTimelineStageItem);
@@ -5084,8 +5087,10 @@
5084
5087
  mappingFields: {
5085
5088
  tours_count: 'toursCount',
5086
5089
  playoff_stages_count: 'playoffStagesCount',
5090
+ playoff_teams_count: 'playoffTeamsCount',
5087
5091
  current_tour: 'currentTour',
5088
5092
  current_playoff_stage: 'currentPlayoffStage',
5093
+ current_playoff_round: 'currentPlayoffRound',
5089
5094
  stages: 'stages',
5090
5095
  tournament_stage_id: 'tournamentStageId',
5091
5096
  },
@@ -5952,6 +5957,9 @@
5952
5957
  if (filters.playoffStage) {
5953
5958
  params = params.set('playoff_stage', filters.playoffStage.toString());
5954
5959
  }
5960
+ if (filters.playoffRound) {
5961
+ params = params.set('playoff_round', filters.playoffRound.toString());
5962
+ }
5955
5963
  if (filters.teamId) {
5956
5964
  params = params.set('team_id', filters.teamId.toString());
5957
5965
  }
@@ -6504,6 +6512,9 @@
6504
6512
  if (filters.playoffStage) {
6505
6513
  params = params.set('playoff_stage', filters.playoffStage.toString());
6506
6514
  }
6515
+ if (filters.playoffRound) {
6516
+ params = params.set('playoff_round', filters.playoffRound.toString());
6517
+ }
6507
6518
  if (filters.status) {
6508
6519
  params = params.set('status', exports.GameStatuses[filters.status]);
6509
6520
  }