@mtgame/core 0.1.117 → 0.1.118
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.
- package/bundles/mtgame-core.umd.js +26 -4
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/waterpolo-game-log-types.js +16 -5
- package/esm2015/models/waterpolo-game-log.js +3 -2
- package/esm2015/models/waterpolo-game-statistic.js +5 -1
- package/esm2015/models/waterpolo-statistic.js +3 -1
- package/fesm2015/mtgame-core.js +23 -5
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/waterpolo-game-log-types.d.ts +11 -0
- package/models/waterpolo-game-log.d.ts +2 -1
- package/models/waterpolo-game-statistic.d.ts +2 -0
- package/models/waterpolo-statistic.d.ts +2 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -15,6 +15,7 @@ export declare const WaterpoloGameLogTypeLocalization: {
|
|
|
15
15
|
13: string;
|
|
16
16
|
14: string;
|
|
17
17
|
15: string;
|
|
18
|
+
40: string;
|
|
18
19
|
18: string;
|
|
19
20
|
19: string;
|
|
20
21
|
20: string;
|
|
@@ -28,4 +29,14 @@ export declare const WaterpoloGameLogTypeLocalization: {
|
|
|
28
29
|
17: string;
|
|
29
30
|
29: string;
|
|
30
31
|
30: string;
|
|
32
|
+
32: string;
|
|
33
|
+
11: string;
|
|
34
|
+
31: string;
|
|
35
|
+
33: string;
|
|
36
|
+
34: string;
|
|
37
|
+
37: string;
|
|
38
|
+
35: string;
|
|
39
|
+
36: string;
|
|
40
|
+
38: string;
|
|
41
|
+
39: string;
|
|
31
42
|
};
|
|
@@ -36,6 +36,7 @@ export declare class WaterpoloGameStatistic extends BaseModel implements GameSta
|
|
|
36
36
|
gameTime: number;
|
|
37
37
|
plusMinus: number;
|
|
38
38
|
fouls: number;
|
|
39
|
+
personalFouls: number;
|
|
39
40
|
yellowCards: number;
|
|
40
41
|
redCards: number;
|
|
41
42
|
losses: number;
|
|
@@ -85,6 +86,7 @@ export declare class WaterpoloGameStatistic extends BaseModel implements GameSta
|
|
|
85
86
|
get totalSaves(): number;
|
|
86
87
|
get totalSavesPercent(): number;
|
|
87
88
|
get totalGoalsAgainst(): number;
|
|
89
|
+
get totalFouls(): number;
|
|
88
90
|
get gameMinutes(): number;
|
|
89
91
|
get goalsPercent(): number;
|
|
90
92
|
get faceOffPercent(): number;
|