@mtgame/core 0.0.11 → 0.0.12

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.
@@ -1,5 +1,6 @@
1
1
  import { GameBasketballPosition, WorkHand } from '../models/basketball-profile';
2
2
  import { GameVolleyballPosition, VolleyballWorkHand } from '../models/volleyball-profile';
3
+ import { GameHockeyPosition } from '../models/hockey-profile';
3
4
  export declare const GameBasketballPositionLocalization: {
4
5
  1: string;
5
6
  2: string;
@@ -43,3 +44,8 @@ export declare const VolleyballWorkHandLocalization: {
43
44
  1: string;
44
45
  2: string;
45
46
  };
47
+ export declare const GameHockeyPositionLocalization: {
48
+ 3: string;
49
+ 1: string;
50
+ 2: string;
51
+ };
@@ -3,30 +3,18 @@ import { GameStatisticBase } from './game-statistic-base';
3
3
  export declare class HockeyGameStatistic extends BaseModel implements GameStatisticBase {
4
4
  gameUserId: number;
5
5
  points: number;
6
- ppShots: number;
7
6
  ppShotMisses: number;
8
7
  ppShotsOnGoal: number;
9
8
  ppShotsBlocked: number;
10
- evShots: number;
11
9
  evShotMisses: number;
12
10
  evShotsOnGoal: number;
13
11
  evShotsBlocked: number;
14
- shShots: number;
15
12
  shShotMisses: number;
16
13
  shShotsOnGoal: number;
17
14
  shShotsBlocked: number;
18
- ppGoalsPercent: number;
19
15
  ppGoals: number;
20
- evGoalsPercent: number;
21
16
  evGoals: number;
22
- shGoalsPercent: number;
23
17
  shGoals: number;
24
- goals: number;
25
- shotMisses: number;
26
- shotsOnGoal: number;
27
- shotsBlocked: number;
28
- shots: number;
29
- goalsPercent: number;
30
18
  ppAssists: number;
31
19
  evAssists: number;
32
20
  shAssists: number;
@@ -35,9 +23,7 @@ export declare class HockeyGameStatistic extends BaseModel implements GameStatis
35
23
  blockShots: number;
36
24
  faceOffLosses: number;
37
25
  faceOffWins: number;
38
- savesPercent: number;
39
26
  saves: number;
40
- shotsAgainst: number;
41
27
  goalsAgainst: number;
42
28
  safetyRate: number;
43
29
  penaltyMinutes: number;
@@ -15,18 +15,30 @@ export declare class HockeyStatistic extends BaseStatistic {
15
15
  gamesCount: number;
16
16
  wonGamesCount: number;
17
17
  points: number;
18
+ ppShots: number;
18
19
  ppShotMisses: number;
19
20
  ppShotsOnGoal: number;
20
21
  ppShotsBlocked: number;
22
+ evShots: number;
21
23
  evShotMisses: number;
22
24
  evShotsOnGoal: number;
23
25
  evShotsBlocked: number;
26
+ shShots: number;
24
27
  shShotMisses: number;
25
28
  shShotsOnGoal: number;
26
29
  shShotsBlocked: number;
30
+ ppGoalsPercent: number;
27
31
  ppGoals: number;
32
+ evGoalsPercent: number;
28
33
  evGoals: number;
34
+ shGoalsPercent: number;
29
35
  shGoals: number;
36
+ goals: number;
37
+ shotMisses: number;
38
+ shotsOnGoal: number;
39
+ shotsBlocked: number;
40
+ shots: number;
41
+ goalsPercent: number;
30
42
  ppAssists: number;
31
43
  evAssists: number;
32
44
  shAssists: number;
@@ -35,7 +47,9 @@ export declare class HockeyStatistic extends BaseStatistic {
35
47
  blockShots: number;
36
48
  faceOffLosses: number;
37
49
  faceOffWins: number;
50
+ savesPercent: number;
38
51
  saves: number;
52
+ shotsAgainst: number;
39
53
  goalsAgainst: number;
40
54
  safetyRate: number;
41
55
  penaltyMinutes: number;