@mtgame/core 0.1.102 → 0.1.103
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 +13 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/league-player.js +13 -2
- package/fesm2015/mtgame-core.js +12 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/league-player.d.ts +9 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2871,6 +2871,16 @@
|
|
|
2871
2871
|
})
|
|
2872
2872
|
], exports.TournamentDisqualification);
|
|
2873
2873
|
|
|
2874
|
+
var _a$g;
|
|
2875
|
+
exports.Qualification = void 0;
|
|
2876
|
+
(function (Qualification) {
|
|
2877
|
+
Qualification[Qualification["practician"] = 1] = "practician";
|
|
2878
|
+
Qualification[Qualification["amateur"] = 2] = "amateur";
|
|
2879
|
+
})(exports.Qualification || (exports.Qualification = {}));
|
|
2880
|
+
var QualificationLocalization = (_a$g = {},
|
|
2881
|
+
_a$g[exports.Qualification.practician] = 'Практик',
|
|
2882
|
+
_a$g[exports.Qualification.amateur] = 'Любитель',
|
|
2883
|
+
_a$g);
|
|
2874
2884
|
exports.LeaguePlayer = /** @class */ (function (_super) {
|
|
2875
2885
|
__extends(LeaguePlayer, _super);
|
|
2876
2886
|
function LeaguePlayer() {
|
|
@@ -2934,11 +2944,13 @@
|
|
|
2934
2944
|
user: 'user',
|
|
2935
2945
|
has_changes: 'hasChanges',
|
|
2936
2946
|
rating: 'rating',
|
|
2947
|
+
qualification: 'qualification',
|
|
2937
2948
|
},
|
|
2938
2949
|
relation: {
|
|
2939
2950
|
birthDate: DateField,
|
|
2940
2951
|
photo: exports.File,
|
|
2941
2952
|
user: exports.User,
|
|
2953
|
+
qualification: enumField(exports.Qualification)
|
|
2942
2954
|
}
|
|
2943
2955
|
})
|
|
2944
2956
|
], exports.LeaguePlayer);
|
|
@@ -10911,6 +10923,7 @@
|
|
|
10911
10923
|
exports.OvertimeTypeLocalization = OvertimeTypeLocalization;
|
|
10912
10924
|
exports.PublicTeamApi = PublicTeamApi;
|
|
10913
10925
|
exports.PublicUserApi = PublicUserApi;
|
|
10926
|
+
exports.QualificationLocalization = QualificationLocalization;
|
|
10914
10927
|
exports.RUGBY_GAME_LOG_TYPE_POINTS = RUGBY_GAME_LOG_TYPE_POINTS;
|
|
10915
10928
|
exports.RUGBY_TEAM_LOG_TYPES = RUGBY_TEAM_LOG_TYPES;
|
|
10916
10929
|
exports.ReferenceApi = ReferenceApi;
|