@mtgame/core 0.2.87 → 0.2.88

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.
@@ -25,9 +25,15 @@ export declare class HockeyGameStatistic extends BaseModel implements GameStatis
25
25
  blockShots: number;
26
26
  faceOffLosses: number;
27
27
  faceOffWins: number;
28
+ ppSaves: number;
29
+ evSaves: number;
30
+ shSaves: number;
28
31
  saves: number;
29
32
  shootoutSaves: number;
30
33
  afterGameShootoutSaves: number;
34
+ ppGoalsAgainst: number;
35
+ shGoalsAgainst: number;
36
+ evGoalsAgainst: number;
31
37
  goalsAgainst: number;
32
38
  shootoutGoalsAgainst: number;
33
39
  afterGameShootoutGoalsAgainst: number;
@@ -50,6 +56,7 @@ export declare class HockeyGameStatistic extends BaseModel implements GameStatis
50
56
  drawnFouls: number;
51
57
  efficiency: number;
52
58
  gamesQualifiedForPlayoff: number;
59
+ shutout: number;
53
60
  updatedAt: Date;
54
61
  get id(): number;
55
62
  get shotsOnGoal(): number;
@@ -63,12 +63,18 @@ export declare class HockeyStatistic extends BaseModel implements BaseStatistic
63
63
  faceOffPercent: number;
64
64
  savesPercent: number;
65
65
  totalSavesPercent: number;
66
+ ppSaves: number;
67
+ evSaves: number;
68
+ shSaves: number;
66
69
  saves: number;
67
70
  shootoutSaves: number;
68
71
  totalSaves: number;
69
72
  shotsAgainst: number;
70
73
  shootoutShotsAgainst: number;
71
74
  totalShotsAgainst: number;
75
+ ppGoalsAgainst: number;
76
+ shGoalsAgainst: number;
77
+ evGoalsAgainst: number;
72
78
  goalsAgainst: number;
73
79
  shootoutGoalsAgainst: number;
74
80
  totalGoalsAgainst: number;