@mtgame/core 1.0.27 → 1.0.29
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 +33 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/public-api.js +2 -1
- package/esm2015/models/tournament-team-user-field-value.js +29 -0
- package/esm2015/models/tournament-team-user.js +5 -2
- package/fesm2015/mtgame-core.js +71 -43
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/public-api.d.ts +1 -0
- package/models/tournament-team-user-field-value.d.ts +9 -0
- package/models/tournament-team-user.d.ts +2 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3920,6 +3920,37 @@
|
|
|
3920
3920
|
})
|
|
3921
3921
|
], exports.LeaguePlayer);
|
|
3922
3922
|
|
|
3923
|
+
exports.TournamentTeamUserFieldValue = /** @class */ (function (_super) {
|
|
3924
|
+
__extends(TournamentTeamUserFieldValue, _super);
|
|
3925
|
+
function TournamentTeamUserFieldValue() {
|
|
3926
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3927
|
+
}
|
|
3928
|
+
TournamentTeamUserFieldValue.toFront = function (data) {
|
|
3929
|
+
};
|
|
3930
|
+
TournamentTeamUserFieldValue.toBack = function (data) {
|
|
3931
|
+
};
|
|
3932
|
+
return TournamentTeamUserFieldValue;
|
|
3933
|
+
}(BaseModel));
|
|
3934
|
+
__decorate([
|
|
3935
|
+
ToFrontHook
|
|
3936
|
+
], exports.TournamentTeamUserFieldValue, "toFront", null);
|
|
3937
|
+
__decorate([
|
|
3938
|
+
ToBackHook
|
|
3939
|
+
], exports.TournamentTeamUserFieldValue, "toBack", null);
|
|
3940
|
+
exports.TournamentTeamUserFieldValue = __decorate([
|
|
3941
|
+
ModelInstance({
|
|
3942
|
+
mappingFields: {
|
|
3943
|
+
id: 'id',
|
|
3944
|
+
league_player_field_id: 'leaguePlayerFieldId',
|
|
3945
|
+
value: 'value',
|
|
3946
|
+
file: 'file',
|
|
3947
|
+
},
|
|
3948
|
+
relation: {
|
|
3949
|
+
file: File,
|
|
3950
|
+
}
|
|
3951
|
+
})
|
|
3952
|
+
], exports.TournamentTeamUserFieldValue);
|
|
3953
|
+
|
|
3923
3954
|
exports.TournamentTeamUser = /** @class */ (function (_super) {
|
|
3924
3955
|
__extends(TournamentTeamUser, _super);
|
|
3925
3956
|
function TournamentTeamUser() {
|
|
@@ -3948,6 +3979,7 @@
|
|
|
3948
3979
|
league_player: 'leaguePlayer',
|
|
3949
3980
|
games_count: 'gamesCount',
|
|
3950
3981
|
mvp_count: 'mvpCount',
|
|
3982
|
+
field_values: 'fieldValues',
|
|
3951
3983
|
},
|
|
3952
3984
|
relation: {
|
|
3953
3985
|
tournamentTeam: exports.TournamentTeam,
|
|
@@ -3955,6 +3987,7 @@
|
|
|
3955
3987
|
disqualification: exports.TournamentDisqualification,
|
|
3956
3988
|
conditionalDisqualification: exports.TournamentDisqualification,
|
|
3957
3989
|
leaguePlayer: exports.LeaguePlayer,
|
|
3990
|
+
fieldValues: listField(exports.TournamentTeamUserFieldValue),
|
|
3958
3991
|
}
|
|
3959
3992
|
})
|
|
3960
3993
|
], exports.TournamentTeamUser);
|