@mtgame/core 0.1.1 → 0.1.2
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 +45 -12
- 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/league-player.js +44 -0
- package/esm2015/models/tournament-team-user.js +4 -16
- package/esm2015/mtgame-core.js +2 -1
- package/esm5/models/league-player.js +61 -0
- package/esm5/models/tournament-team-user.js +4 -28
- package/esm5/mtgame-core.js +2 -1
- package/fesm2015/mtgame-core.js +35 -8
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +45 -13
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/league-player.d.ts +18 -0
- package/models/tournament-team-user.d.ts +2 -10
- package/mtgame-core.d.ts +1 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2272,32 +2272,68 @@
|
|
|
2272
2272
|
return TournamentDisqualification;
|
|
2273
2273
|
}(BaseModel));
|
|
2274
2274
|
|
|
2275
|
-
var
|
|
2276
|
-
__extends(
|
|
2277
|
-
function
|
|
2275
|
+
var LeaguePlayer = /** @class */ (function (_super) {
|
|
2276
|
+
__extends(LeaguePlayer, _super);
|
|
2277
|
+
function LeaguePlayer() {
|
|
2278
2278
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
2279
2279
|
}
|
|
2280
|
-
Object.defineProperty(
|
|
2280
|
+
Object.defineProperty(LeaguePlayer.prototype, "fullName", {
|
|
2281
2281
|
get: function () {
|
|
2282
2282
|
return [this.lastName, this.firstName, this.middleName].filter(function (s) { return s; }).join(' ');
|
|
2283
2283
|
},
|
|
2284
2284
|
enumerable: true,
|
|
2285
2285
|
configurable: true
|
|
2286
2286
|
});
|
|
2287
|
-
Object.defineProperty(
|
|
2287
|
+
Object.defineProperty(LeaguePlayer.prototype, "shortName", {
|
|
2288
2288
|
get: function () {
|
|
2289
2289
|
return [this.lastName, this.firstName].filter(function (s) { return s; }).join(' ');
|
|
2290
2290
|
},
|
|
2291
2291
|
enumerable: true,
|
|
2292
2292
|
configurable: true
|
|
2293
2293
|
});
|
|
2294
|
-
Object.defineProperty(
|
|
2294
|
+
Object.defineProperty(LeaguePlayer.prototype, "initials", {
|
|
2295
2295
|
get: function () {
|
|
2296
2296
|
return [this.lastName, this.firstName].filter(function (s) { return s; }).map(function (s) { return s.substr(0, 1); }).join('');
|
|
2297
2297
|
},
|
|
2298
2298
|
enumerable: true,
|
|
2299
2299
|
configurable: true
|
|
2300
2300
|
});
|
|
2301
|
+
LeaguePlayer.toFront = function (data) {
|
|
2302
|
+
};
|
|
2303
|
+
LeaguePlayer.toBack = function (data) {
|
|
2304
|
+
};
|
|
2305
|
+
__decorate([
|
|
2306
|
+
ToFrontHook
|
|
2307
|
+
], LeaguePlayer, "toFront", null);
|
|
2308
|
+
__decorate([
|
|
2309
|
+
ToBackHook
|
|
2310
|
+
], LeaguePlayer, "toBack", null);
|
|
2311
|
+
LeaguePlayer = __decorate([
|
|
2312
|
+
ModelInstance({
|
|
2313
|
+
mappingFields: {
|
|
2314
|
+
id: 'id',
|
|
2315
|
+
user_id: 'userId',
|
|
2316
|
+
league_id: 'leagueId',
|
|
2317
|
+
first_name: 'firstName',
|
|
2318
|
+
last_name: 'lastName',
|
|
2319
|
+
middle_name: 'middleName',
|
|
2320
|
+
photo: 'photo',
|
|
2321
|
+
has_changes: 'hasChanges',
|
|
2322
|
+
rating: 'rating'
|
|
2323
|
+
},
|
|
2324
|
+
relation: {
|
|
2325
|
+
photo: File,
|
|
2326
|
+
}
|
|
2327
|
+
})
|
|
2328
|
+
], LeaguePlayer);
|
|
2329
|
+
return LeaguePlayer;
|
|
2330
|
+
}(BaseModel));
|
|
2331
|
+
|
|
2332
|
+
var TournamentTeamUser = /** @class */ (function (_super) {
|
|
2333
|
+
__extends(TournamentTeamUser, _super);
|
|
2334
|
+
function TournamentTeamUser() {
|
|
2335
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2336
|
+
}
|
|
2301
2337
|
TournamentTeamUser.toFront = function (data) { };
|
|
2302
2338
|
TournamentTeamUser.toBack = function (data) { };
|
|
2303
2339
|
__decorate([
|
|
@@ -2313,19 +2349,15 @@
|
|
|
2313
2349
|
tournament_team: 'tournamentTeam',
|
|
2314
2350
|
team_user: 'teamUser',
|
|
2315
2351
|
disqualified: 'disqualified',
|
|
2316
|
-
first_name: 'firstName',
|
|
2317
|
-
last_name: 'lastName',
|
|
2318
|
-
middle_name: 'middleName',
|
|
2319
|
-
photo: 'photo',
|
|
2320
2352
|
disqualification: 'disqualification',
|
|
2321
|
-
|
|
2322
|
-
rating: 'rating'
|
|
2353
|
+
league_player: 'leaguePlayer',
|
|
2323
2354
|
},
|
|
2324
2355
|
relation: {
|
|
2325
2356
|
tournamentTeam: TournamentTeam,
|
|
2326
2357
|
teamUser: TeamUser,
|
|
2327
2358
|
photo: File,
|
|
2328
2359
|
disqualification: TournamentDisqualification,
|
|
2360
|
+
leaguePlayer: LeaguePlayer,
|
|
2329
2361
|
}
|
|
2330
2362
|
})
|
|
2331
2363
|
], TournamentTeamUser);
|
|
@@ -9030,6 +9062,7 @@
|
|
|
9030
9062
|
exports.validatePhone = validatePhone;
|
|
9031
9063
|
exports.validateUrl = validateUrl;
|
|
9032
9064
|
exports.ɵa = GameBaseApi;
|
|
9065
|
+
exports.ɵb = LeaguePlayer;
|
|
9033
9066
|
|
|
9034
9067
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
9035
9068
|
|