@mtgame/core 1.0.51 → 1.0.53

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.
@@ -2158,6 +2158,7 @@
2158
2158
  score_in_last_set: 'scoreInLastSet',
2159
2159
  statistic_type: 'statisticType',
2160
2160
  libero_user_ids: 'liberoUserIds',
2161
+ max_game_players: 'maxGamePlayers',
2161
2162
  },
2162
2163
  relation: {
2163
2164
  gameType: enumField(exports.VolleyballGameTypes),
@@ -13465,6 +13466,15 @@
13465
13466
  enumerable: false,
13466
13467
  configurable: true
13467
13468
  });
13469
+ Object.defineProperty(WaterpoloGameStatistic.prototype, "totalEvShotsOnGoal", {
13470
+ get: function () {
13471
+ return (this.evShotsOnGoal || 0) + (this.evFreeKickOnGoals || 0) + (this.evCornerOnGoals || 0) +
13472
+ (this.evCounterAttackOnGoals || 0) + (this.evManeuverOnGoals || 0) + (this.evCenterForwardOnGoals || 0) +
13473
+ (this.evPerimetrShotOnGoals || 0) + (this.evPostShotOnGoals || 0) + (this.evFastShotOnGoals || 0);
13474
+ },
13475
+ enumerable: false,
13476
+ configurable: true
13477
+ });
13468
13478
  Object.defineProperty(WaterpoloGameStatistic.prototype, "inGameShotsOnGoals", {
13469
13479
  get: function () {
13470
13480
  return (this.ppShotsOnGoal || 0) + (this.evShotsOnGoal || 0) + (this.shShotsOnGoal || 0) +