@mtgame/core 0.1.53 → 0.1.55
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 +7 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/rugby-game-config.js +4 -2
- package/esm2015/models/tournament.js +6 -1
- package/esm5/models/rugby-game-config.js +4 -2
- package/esm5/models/tournament.js +6 -1
- package/fesm2015/mtgame-core.js +8 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +8 -1
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/rugby-game-config.d.ts +2 -1
- package/models/tournament.d.ts +4 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1386,6 +1386,11 @@
|
|
|
1386
1386
|
VolleyballStatisticTypes[VolleyballStatisticTypes["advanced"] = 3] = "advanced";
|
|
1387
1387
|
})(exports.VolleyballStatisticTypes || (exports.VolleyballStatisticTypes = {}));
|
|
1388
1388
|
|
|
1389
|
+
(function (RugbyStatisticTypes) {
|
|
1390
|
+
RugbyStatisticTypes[RugbyStatisticTypes["light"] = 1] = "light";
|
|
1391
|
+
RugbyStatisticTypes[RugbyStatisticTypes["standard"] = 2] = "standard";
|
|
1392
|
+
})(exports.RugbyStatisticTypes || (exports.RugbyStatisticTypes = {}));
|
|
1393
|
+
|
|
1389
1394
|
(function (GameTimeTypes) {
|
|
1390
1395
|
GameTimeTypes[GameTimeTypes["clean"] = 1] = "clean";
|
|
1391
1396
|
GameTimeTypes[GameTimeTypes["dirty"] = 2] = "dirty";
|
|
@@ -2046,10 +2051,12 @@
|
|
|
2046
2051
|
game_time_type: 'gameTimeType',
|
|
2047
2052
|
substitute_count: 'substituteCount',
|
|
2048
2053
|
free_substitute_enabled: 'freeSubstituteEnabled',
|
|
2054
|
+
statistic_type: 'statisticType',
|
|
2049
2055
|
},
|
|
2050
2056
|
relation: {
|
|
2051
2057
|
overtimeType: enumField(exports.OvertimeTypes),
|
|
2052
2058
|
gameTimeType: enumField(exports.GameTimeTypes),
|
|
2059
|
+
statisticType: enumField(exports.RugbyStatisticTypes),
|
|
2053
2060
|
}
|
|
2054
2061
|
})
|
|
2055
2062
|
], RugbyGameConfig);
|