@mtgame/core 1.0.28 → 1.0.30
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 -7
- 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 +2 -1
- package/esm2015/mtgame-core.js +1 -2
- package/fesm2015/mtgame-core.js +43 -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 +1 -0
- package/mtgame-core.d.ts +0 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3920,7 +3920,7 @@
|
|
|
3920
3920
|
})
|
|
3921
3921
|
], exports.LeaguePlayer);
|
|
3922
3922
|
|
|
3923
|
-
exports
|
|
3923
|
+
exports.TournamentTeamUserFieldValue = /** @class */ (function (_super) {
|
|
3924
3924
|
__extends(TournamentTeamUserFieldValue, _super);
|
|
3925
3925
|
function TournamentTeamUserFieldValue() {
|
|
3926
3926
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -3933,11 +3933,11 @@
|
|
|
3933
3933
|
}(BaseModel));
|
|
3934
3934
|
__decorate([
|
|
3935
3935
|
ToFrontHook
|
|
3936
|
-
], exports
|
|
3936
|
+
], exports.TournamentTeamUserFieldValue, "toFront", null);
|
|
3937
3937
|
__decorate([
|
|
3938
3938
|
ToBackHook
|
|
3939
|
-
], exports
|
|
3940
|
-
exports
|
|
3939
|
+
], exports.TournamentTeamUserFieldValue, "toBack", null);
|
|
3940
|
+
exports.TournamentTeamUserFieldValue = __decorate([
|
|
3941
3941
|
ModelInstance({
|
|
3942
3942
|
mappingFields: {
|
|
3943
3943
|
id: 'id',
|
|
@@ -3946,10 +3946,10 @@
|
|
|
3946
3946
|
file: 'file',
|
|
3947
3947
|
},
|
|
3948
3948
|
relation: {
|
|
3949
|
-
file: File,
|
|
3949
|
+
file: exports.File,
|
|
3950
3950
|
}
|
|
3951
3951
|
})
|
|
3952
|
-
], exports
|
|
3952
|
+
], exports.TournamentTeamUserFieldValue);
|
|
3953
3953
|
|
|
3954
3954
|
exports.TournamentTeamUser = /** @class */ (function (_super) {
|
|
3955
3955
|
__extends(TournamentTeamUser, _super);
|
|
@@ -3987,7 +3987,7 @@
|
|
|
3987
3987
|
disqualification: exports.TournamentDisqualification,
|
|
3988
3988
|
conditionalDisqualification: exports.TournamentDisqualification,
|
|
3989
3989
|
leaguePlayer: exports.LeaguePlayer,
|
|
3990
|
-
fieldValues: listField(exports
|
|
3990
|
+
fieldValues: listField(exports.TournamentTeamUserFieldValue),
|
|
3991
3991
|
}
|
|
3992
3992
|
})
|
|
3993
3993
|
], exports.TournamentTeamUser);
|