@mtgame/core 0.0.56 → 0.0.58

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 (41) hide show
  1. package/api/basketball-game-api.d.ts +2 -2
  2. package/api/football-game-api.d.ts +2 -2
  3. package/api/hockey-game-api.d.ts +2 -2
  4. package/api/public-api.d.ts +2 -0
  5. package/api/public-team-api.d.ts +11 -0
  6. package/api/public-user-api.d.ts +13 -0
  7. package/api/tournament-api.d.ts +8 -1
  8. package/api/volleyball-game-api.d.ts +1 -0
  9. package/bundles/mtgame-core.umd.js +1175 -1118
  10. package/bundles/mtgame-core.umd.js.map +1 -1
  11. package/bundles/mtgame-core.umd.min.js +1 -1
  12. package/bundles/mtgame-core.umd.min.js.map +1 -1
  13. package/esm2015/api/basketball-game-api.js +1 -1
  14. package/esm2015/api/football-game-api.js +1 -1
  15. package/esm2015/api/hockey-game-api.js +1 -1
  16. package/esm2015/api/league-api.js +4 -24
  17. package/esm2015/api/public-api.js +3 -1
  18. package/esm2015/api/public-team-api.js +33 -0
  19. package/esm2015/api/public-user-api.js +38 -0
  20. package/esm2015/api/tournament-api.js +55 -23
  21. package/esm2015/api/tournament-season-api.js +3 -23
  22. package/esm2015/api/volleyball-game-api.js +10 -2
  23. package/esm2015/models/tournament.js +2 -1
  24. package/esm5/api/basketball-game-api.js +1 -1
  25. package/esm5/api/football-game-api.js +1 -1
  26. package/esm5/api/hockey-game-api.js +1 -1
  27. package/esm5/api/league-api.js +5 -25
  28. package/esm5/api/public-api.js +3 -1
  29. package/esm5/api/public-team-api.js +34 -0
  30. package/esm5/api/public-user-api.js +39 -0
  31. package/esm5/api/tournament-api.js +60 -24
  32. package/esm5/api/tournament-season-api.js +4 -24
  33. package/esm5/api/volleyball-game-api.js +12 -2
  34. package/esm5/models/tournament.js +2 -1
  35. package/fesm2015/mtgame-core.js +1648 -1601
  36. package/fesm2015/mtgame-core.js.map +1 -1
  37. package/fesm5/mtgame-core.js +1199 -1144
  38. package/fesm5/mtgame-core.js.map +1 -1
  39. package/models/tournament.d.ts +1 -0
  40. package/mtgame-core.metadata.json +1 -1
  41. package/package.json +1 -1
@@ -109,6 +109,7 @@ export declare class Tournament extends BaseModel {
109
109
  teamSecond: TournamentTeamWinner;
110
110
  teamThird: TournamentTeamWinner;
111
111
  season: TournamentSeason;
112
+ seasonId: number;
112
113
  getEmptyLogoClass(): string;
113
114
  static toFront(data: any): any;
114
115
  static toBack(data: any): any;