@mtgame/core 0.1.148 → 0.1.149

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.
@@ -2927,6 +2927,19 @@
2927
2927
  })
2928
2928
  ], exports.TournamentDivision);
2929
2929
 
2930
+ exports.TeamAdditionalData = /** @class */ (function () {
2931
+ function TeamAdditionalData() {
2932
+ }
2933
+ return TeamAdditionalData;
2934
+ }());
2935
+ exports.TeamAdditionalData = __decorate([
2936
+ ModelInstance({
2937
+ mappingFields: {
2938
+ nickname: 'nickname',
2939
+ color: 'color',
2940
+ }
2941
+ })
2942
+ ], exports.TeamAdditionalData);
2930
2943
  exports.TournamentTeam = /** @class */ (function (_super) {
2931
2944
  __extends(TournamentTeam, _super);
2932
2945
  function TournamentTeam() {
@@ -2991,6 +3004,7 @@
2991
3004
  tries_missed: 'triesMissed',
2992
3005
  attack_bonuses: 'attackBonuses',
2993
3006
  defense_bonuses: 'defenseBonuses',
3007
+ team_additional_data: 'teamAdditionalData',
2994
3008
  },
2995
3009
  relation: {
2996
3010
  logo: exports.File,
@@ -3002,6 +3016,7 @@
3002
3016
  games: exports.Game,
3003
3017
  lastFiveGames: exports.Game,
3004
3018
  division: exports.TournamentDivision,
3019
+ teamAdditionalData: exports.TeamAdditionalData,
3005
3020
  }
3006
3021
  })
3007
3022
  ], exports.TournamentTeam);