@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.
@@ -1434,7 +1434,8 @@ var VolleyballGameConfig = /** @class */ (function (_super) {
1434
1434
  substitute_count: 'substituteCount',
1435
1435
  score_in_set: 'scoreInSet',
1436
1436
  score_in_last_set: 'scoreInLastSet',
1437
- statistic_type: 'statisticType'
1437
+ statistic_type: 'statisticType',
1438
+ libero_user_ids: 'liberoUserIds',
1438
1439
  },
1439
1440
  relation: {
1440
1441
  gameType: enumField(VolleyballGameTypes),
@@ -2076,6 +2077,7 @@ var Game = /** @class */ (function (_super) {
2076
2077
  rugby_game_config: 'rugbyGameConfig',
2077
2078
  score_by_period: 'scoreByPeriod',
2078
2079
  playoff_stage: 'playoffStage',
2080
+ playoff_round: 'playoffRound',
2079
2081
  tournament_stage_id: 'tournamentStageId',
2080
2082
  tournament_playoff_id: 'tournamentPlayoffId',
2081
2083
  tournament_playoff: 'tournamentPlayoff',
@@ -4848,6 +4850,7 @@ var GameTimelineStageItem = /** @class */ (function () {
4848
4850
  stage_id: 'stageId',
4849
4851
  tours_count: 'toursCount',
4850
4852
  playoff_stages_count: 'playoffStagesCount',
4853
+ playoff_teams_count: 'playoffTeamsCount',
4851
4854
  }
4852
4855
  })
4853
4856
  ], GameTimelineStageItem);
@@ -4871,8 +4874,10 @@ var GameTimelineStages = /** @class */ (function (_super) {
4871
4874
  mappingFields: {
4872
4875
  tours_count: 'toursCount',
4873
4876
  playoff_stages_count: 'playoffStagesCount',
4877
+ playoff_teams_count: 'playoffTeamsCount',
4874
4878
  current_tour: 'currentTour',
4875
4879
  current_playoff_stage: 'currentPlayoffStage',
4880
+ current_playoff_round: 'currentPlayoffRound',
4876
4881
  stages: 'stages',
4877
4882
  tournament_stage_id: 'tournamentStageId',
4878
4883
  },
@@ -5739,6 +5744,9 @@ function applyGamesFilters(filters, params) {
5739
5744
  if (filters.playoffStage) {
5740
5745
  params = params.set('playoff_stage', filters.playoffStage.toString());
5741
5746
  }
5747
+ if (filters.playoffRound) {
5748
+ params = params.set('playoff_round', filters.playoffRound.toString());
5749
+ }
5742
5750
  if (filters.teamId) {
5743
5751
  params = params.set('team_id', filters.teamId.toString());
5744
5752
  }
@@ -6291,6 +6299,9 @@ function applyGameMediaFilters(filters, params) {
6291
6299
  if (filters.playoffStage) {
6292
6300
  params = params.set('playoff_stage', filters.playoffStage.toString());
6293
6301
  }
6302
+ if (filters.playoffRound) {
6303
+ params = params.set('playoff_round', filters.playoffRound.toString());
6304
+ }
6294
6305
  if (filters.status) {
6295
6306
  params = params.set('status', GameStatuses[filters.status]);
6296
6307
  }