@mtgame/core 0.2.46 → 0.2.47
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 +5 -1
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/rugby-game-log-types.js +2 -1
- package/esm2015/models/rugby-game-log.js +3 -2
- package/esm2015/models/rugby-game-statistic.js +2 -1
- package/esm2015/models/rugby-statistic.js +2 -1
- package/fesm2015/mtgame-core.js +5 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/rugby-game-log-types.d.ts +1 -0
- package/models/rugby-game-log.d.ts +2 -1
- package/models/rugby-game-statistic.d.ts +1 -0
- package/models/rugby-statistic.d.ts +1 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -6761,6 +6761,7 @@
|
|
|
6761
6761
|
opponent_mauls_lost: 'opponentMaulsLost',
|
|
6762
6762
|
fouls: 'fouls',
|
|
6763
6763
|
team_fouls: 'teamFouls',
|
|
6764
|
+
outs: 'outs',
|
|
6764
6765
|
},
|
|
6765
6766
|
relation: {
|
|
6766
6767
|
leaguePlayer: exports.LeaguePlayer,
|
|
@@ -9310,6 +9311,7 @@
|
|
|
9310
9311
|
foot_kicks_50_22: 'footKicks5022',
|
|
9311
9312
|
fouls: 'fouls',
|
|
9312
9313
|
team_fouls: 'teamFouls',
|
|
9314
|
+
outs: 'outs',
|
|
9313
9315
|
game_time: 'gameTime',
|
|
9314
9316
|
plus_minus: 'plusMinus'
|
|
9315
9317
|
},
|
|
@@ -9420,6 +9422,7 @@
|
|
|
9420
9422
|
RugbyGameLogTypes[RugbyGameLogTypes["start_kick"] = 40] = "start_kick";
|
|
9421
9423
|
RugbyGameLogTypes[RugbyGameLogTypes["twenty_two_meters_kick"] = 41] = "twenty_two_meters_kick";
|
|
9422
9424
|
RugbyGameLogTypes[RugbyGameLogTypes["goal_kick"] = 42] = "goal_kick";
|
|
9425
|
+
RugbyGameLogTypes[RugbyGameLogTypes["out"] = 43] = "out";
|
|
9423
9426
|
})(exports.RugbyGameLogTypes || (exports.RugbyGameLogTypes = {}));
|
|
9424
9427
|
var RUGBY_GAME_LOG_TYPE_POINTS = (_a$g = {},
|
|
9425
9428
|
_a$g[exports.RugbyGameLogTypes.penalty_try] = 7,
|
|
@@ -9436,7 +9439,7 @@
|
|
|
9436
9439
|
exports.RugbyGameLogTypes.maul_won, exports.RugbyGameLogTypes.maul_lost, exports.RugbyGameLogTypes.team_foul,
|
|
9437
9440
|
exports.RugbyGameLogTypes.penalty_kick_to_touch, exports.RugbyGameLogTypes.tap_penalty,
|
|
9438
9441
|
exports.RugbyGameLogTypes.start_kick, exports.RugbyGameLogTypes.twenty_two_meters_kick, exports.RugbyGameLogTypes.goal_kick,
|
|
9439
|
-
exports.RugbyGameLogTypes.penalty_try
|
|
9442
|
+
exports.RugbyGameLogTypes.penalty_try, exports.RugbyGameLogTypes.out
|
|
9440
9443
|
];
|
|
9441
9444
|
exports.RugbyGameLog = /** @class */ (function (_super) {
|
|
9442
9445
|
__extends(RugbyGameLog, _super);
|
|
@@ -13259,6 +13262,7 @@
|
|
|
13259
13262
|
_a$6[exports.RugbyGameLogTypes.start_kick] = 'Начальный удар',
|
|
13260
13263
|
_a$6[exports.RugbyGameLogTypes.twenty_two_meters_kick] = 'Удар с 22 метров',
|
|
13261
13264
|
_a$6[exports.RugbyGameLogTypes.goal_kick] = 'Удар от ворот',
|
|
13265
|
+
_a$6[exports.RugbyGameLogTypes.out] = 'Аут',
|
|
13262
13266
|
_a$6);
|
|
13263
13267
|
|
|
13264
13268
|
var _a$5;
|