@smartico/public-api 0.0.105 → 0.0.106

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.
@@ -820,6 +820,9 @@ const tournamentInfoItemTransform = t => {
820
820
  })),
821
821
  players: t.tournamentInfo.players.map(p => TournamentUtils.getPlayerTransformed(p))
822
822
  });
823
+ if (t.prizeStructure) {
824
+ response.prizes = t.prizeStructure.prizes.map(p => TournamentUtils.getPrizeTransformed(p));
825
+ }
823
826
  if (t.userPosition) {
824
827
  response.me = TournamentUtils.getPlayerTransformed(t.userPosition, true);
825
828
  }