@mtgame/core 0.1.29 → 0.1.30

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.
@@ -2427,6 +2427,13 @@ var BasketballStatistic = /** @class */ (function (_super) {
2427
2427
  enumerable: true,
2428
2428
  configurable: true
2429
2429
  });
2430
+ Object.defineProperty(BasketballStatistic.prototype, "tournamentTeamPoints", {
2431
+ get: function () {
2432
+ return this.tournamentTeam && this.tournamentTeam.points;
2433
+ },
2434
+ enumerable: true,
2435
+ configurable: true
2436
+ });
2430
2437
  BasketballStatistic.toFront = function (data) { };
2431
2438
  BasketballStatistic.toBack = function (data) { };
2432
2439
  __decorate([
@@ -3329,6 +3336,13 @@ var HockeyStatistic = /** @class */ (function (_super) {
3329
3336
  enumerable: true,
3330
3337
  configurable: true
3331
3338
  });
3339
+ Object.defineProperty(HockeyStatistic.prototype, "tournamentTeamPoints", {
3340
+ get: function () {
3341
+ return this.tournamentTeam && this.tournamentTeam.points;
3342
+ },
3343
+ enumerable: true,
3344
+ configurable: true
3345
+ });
3332
3346
  HockeyStatistic.toFront = function (data) { };
3333
3347
  HockeyStatistic.toBack = function (data) { };
3334
3348
  __decorate([
@@ -3834,6 +3848,13 @@ var FootballStatistic = /** @class */ (function (_super) {
3834
3848
  enumerable: true,
3835
3849
  configurable: true
3836
3850
  });
3851
+ Object.defineProperty(FootballStatistic.prototype, "tournamentTeamPoints", {
3852
+ get: function () {
3853
+ return this.tournamentTeam && this.tournamentTeam.points;
3854
+ },
3855
+ enumerable: true,
3856
+ configurable: true
3857
+ });
3837
3858
  FootballStatistic.toFront = function (data) { };
3838
3859
  FootballStatistic.toBack = function (data) { };
3839
3860
  __decorate([
@@ -4284,6 +4305,13 @@ var HandballStatistic = /** @class */ (function (_super) {
4284
4305
  enumerable: true,
4285
4306
  configurable: true
4286
4307
  });
4308
+ Object.defineProperty(HandballStatistic.prototype, "tournamentTeamPoints", {
4309
+ get: function () {
4310
+ return this.tournamentTeam && this.tournamentTeam.points;
4311
+ },
4312
+ enumerable: true,
4313
+ configurable: true
4314
+ });
4287
4315
  HandballStatistic.toFront = function (data) { };
4288
4316
  HandballStatistic.toBack = function (data) { };
4289
4317
  __decorate([
@@ -4579,6 +4607,13 @@ var VolleyballStatistic = /** @class */ (function (_super) {
4579
4607
  function VolleyballStatistic() {
4580
4608
  return _super !== null && _super.apply(this, arguments) || this;
4581
4609
  }
4610
+ Object.defineProperty(VolleyballStatistic.prototype, "tournamentTeamPoints", {
4611
+ get: function () {
4612
+ return this.tournamentTeam && this.tournamentTeam.points;
4613
+ },
4614
+ enumerable: true,
4615
+ configurable: true
4616
+ });
4582
4617
  VolleyballStatistic.toFront = function (data) { };
4583
4618
  VolleyballStatistic.toBack = function (data) { };
4584
4619
  __decorate([