@mtgame/core 0.2.53 → 0.2.55

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.
@@ -34,6 +34,10 @@ export declare enum RugbyStatisticTypes {
34
34
  light = 1,
35
35
  standard = 2
36
36
  }
37
+ export declare enum WaterpoloStatisticTypes {
38
+ standard = 1,
39
+ light = 2
40
+ }
37
41
  export declare enum GameTimeTypes {
38
42
  clean = 1,
39
43
  dirty = 2
@@ -80,6 +84,7 @@ export declare class TournamentSettings extends BaseModel {
80
84
  basketballStatisticType: BasketballStatisticTypes;
81
85
  volleyballStatisticType: VolleyballStatisticTypes;
82
86
  rugbyStatisticType: RugbyStatisticTypes;
87
+ waterpoloStatisticType: WaterpoloStatisticTypes;
83
88
  shotClockEnabled: boolean;
84
89
  gameTimeType: GameTimeTypes;
85
90
  withResultTable: boolean;
@@ -1,5 +1,5 @@
1
1
  import { BaseModel } from './util';
2
- import { GameTimeTypes, OvertimeTypes } from './tournament';
2
+ import { GameTimeTypes, OvertimeTypes, WaterpoloStatisticTypes } from './tournament';
3
3
  export declare class WaterpoloGameConfig extends BaseModel {
4
4
  periodsCount: number;
5
5
  periodTime: number;
@@ -12,6 +12,7 @@ export declare class WaterpoloGameConfig extends BaseModel {
12
12
  gameTimeType: GameTimeTypes;
13
13
  substituteManageEnabled: boolean;
14
14
  shotClockEnabled: boolean;
15
+ statisticType: WaterpoloStatisticTypes;
15
16
  static toFront(data: any): any;
16
17
  static toBack(data: any): any;
17
18
  get overtimePeriod(): number;