@mtgame/core 0.1.31 → 0.1.32

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.
@@ -8,6 +8,8 @@ export declare const HockeyGameLogTypeLocalization: {
8
8
  6: string;
9
9
  7: string;
10
10
  8: string;
11
+ 23: string;
12
+ 24: string;
11
13
  9: string;
12
14
  10: string;
13
15
  11: string;
@@ -23,7 +23,9 @@ export declare enum HockeyGameLogTypes {
23
23
  save = 19,
24
24
  timeout = 20,
25
25
  penalty_start = 21,
26
- penalty_end = 22
26
+ penalty_end = 22,
27
+ after_game_shootout_attempt = 23,
28
+ after_game_shootout_goal = 24
27
29
  }
28
30
  export declare enum HockeyAdvantageTypes {
29
31
  power_play = 1,
@@ -20,6 +20,8 @@ export declare class HockeyGameStatistic extends BaseModel implements GameStatis
20
20
  shAssists: number;
21
21
  shootoutAttempts: number;
22
22
  shootoutGoals: number;
23
+ afterGameShootoutAttempts: number;
24
+ afterGameShootoutGoals: number;
23
25
  blockShots: number;
24
26
  faceOffLosses: number;
25
27
  faceOffWins: number;
@@ -48,6 +48,8 @@ export declare class HockeyStatistic extends BaseModel implements BaseStatistic
48
48
  shAssists: number;
49
49
  shootoutAttempts: number;
50
50
  shootoutGoals: number;
51
+ afterGameShootoutAttempts: number;
52
+ afterGameShootoutGoals: number;
51
53
  blockShots: number;
52
54
  faceOffLosses: number;
53
55
  faceOffWins: number;