@mtgame/core 0.2.119 → 0.2.120

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.
@@ -1697,6 +1697,13 @@
1697
1697
  TimerTypes[TimerTypes["backward"] = 1] = "backward";
1698
1698
  TimerTypes[TimerTypes["forward"] = 2] = "forward";
1699
1699
  })(exports.TimerTypes || (exports.TimerTypes = {}));
1700
+ exports.SubstituteManageTypes = void 0;
1701
+ (function (SubstituteManageTypes) {
1702
+ SubstituteManageTypes[SubstituteManageTypes["goalkeeper_only"] = 1] = "goalkeeper_only";
1703
+ SubstituteManageTypes[SubstituteManageTypes["additional_screen"] = 2] = "additional_screen";
1704
+ SubstituteManageTypes[SubstituteManageTypes["one_screen"] = 3] = "one_screen";
1705
+ SubstituteManageTypes[SubstituteManageTypes["split_screen"] = 4] = "split_screen";
1706
+ })(exports.SubstituteManageTypes || (exports.SubstituteManageTypes = {}));
1700
1707
  exports.TournamentSettings = /** @class */ (function (_super) {
1701
1708
  __extends(TournamentSettings, _super);
1702
1709
  function TournamentSettings() {
@@ -1774,6 +1781,7 @@
1774
1781
  with_result_table: 'withResultTable',
1775
1782
  free_substitute_enabled: 'freeSubstituteEnabled',
1776
1783
  substitute_manage_enabled: 'substituteManageEnabled',
1784
+ substitute_manage_mode: 'substituteManageMode',
1777
1785
  bonus_points_enabled: 'bonusPointsEnabled',
1778
1786
  minor_penalty_time: 'minorPenaltyTime',
1779
1787
  major_penalty_time: 'majorPenaltyTime',
@@ -1796,6 +1804,7 @@
1796
1804
  gameTimeType: enumField(exports.GameTimeTypes),
1797
1805
  overtimeType: enumField(exports.OvertimeTypes),
1798
1806
  timerType: enumField(exports.TimerTypes),
1807
+ substituteManageMode: enumField(exports.SubstituteManageTypes),
1799
1808
  }
1800
1809
  })
1801
1810
  ], exports.TournamentSettings);