@mtgame/core 0.0.41 → 0.0.43
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/api/league-api.d.ts +2 -0
- package/bundles/mtgame-core.umd.js +40 -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/api/league-api.js +7 -1
- package/esm2015/models/feedback.js +3 -1
- package/esm2015/models/league-partner.js +29 -0
- package/esm2015/models/public-api.js +2 -1
- package/esm5/api/league-api.js +9 -1
- package/esm5/models/feedback.js +3 -1
- package/esm5/models/league-partner.js +34 -0
- package/esm5/models/public-api.js +2 -1
- package/fesm2015/mtgame-core.js +33 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +40 -1
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/feedback.d.ts +2 -0
- package/models/league-partner.d.ts +11 -0
- package/models/public-api.d.ts +1 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/api/league-api.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { PaginatedResponse } from './paginated-response.interface';
|
|
|
7
7
|
import { TournamentEvent } from '../models/tournament-event';
|
|
8
8
|
import { TournamentSeason } from '../models/tournament-season';
|
|
9
9
|
import { Game } from '../models/game';
|
|
10
|
+
import { LeaguePartner } from '../models/league-partner';
|
|
10
11
|
export declare class LeagueApi {
|
|
11
12
|
private httpClient;
|
|
12
13
|
private configService;
|
|
@@ -18,4 +19,5 @@ export declare class LeagueApi {
|
|
|
18
19
|
getTournamentSeasons(leagueId: number): Promise<TournamentSeason[]>;
|
|
19
20
|
getGames(leagueId: number, page: number, size: number, filters: TournamentGamesFilters): Promise<PaginatedResponse<Game[]>>;
|
|
20
21
|
getSeasons(leagueId: number, notClosed?: boolean): Promise<TournamentSeason[]>;
|
|
22
|
+
getPartners(leagueId: number): Promise<LeaguePartner[]>;
|
|
21
23
|
}
|
|
@@ -2488,6 +2488,8 @@
|
|
|
2488
2488
|
theme: 'theme',
|
|
2489
2489
|
message: 'message',
|
|
2490
2490
|
files: 'files',
|
|
2491
|
+
email: 'email',
|
|
2492
|
+
captcha: 'captcha',
|
|
2491
2493
|
},
|
|
2492
2494
|
relation: {
|
|
2493
2495
|
files: File
|
|
@@ -3150,6 +3152,36 @@
|
|
|
3150
3152
|
return TournamentEvent;
|
|
3151
3153
|
}(BaseModel));
|
|
3152
3154
|
|
|
3155
|
+
var LeaguePartner = /** @class */ (function (_super) {
|
|
3156
|
+
__extends(LeaguePartner, _super);
|
|
3157
|
+
function LeaguePartner() {
|
|
3158
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3159
|
+
}
|
|
3160
|
+
LeaguePartner.toFront = function (data) { };
|
|
3161
|
+
LeaguePartner.toBack = function (data) { };
|
|
3162
|
+
__decorate([
|
|
3163
|
+
ToFrontHook
|
|
3164
|
+
], LeaguePartner, "toFront", null);
|
|
3165
|
+
__decorate([
|
|
3166
|
+
ToBackHook
|
|
3167
|
+
], LeaguePartner, "toBack", null);
|
|
3168
|
+
LeaguePartner = __decorate([
|
|
3169
|
+
ModelInstance({
|
|
3170
|
+
mappingFields: {
|
|
3171
|
+
id: 'id',
|
|
3172
|
+
title: 'title',
|
|
3173
|
+
picture: 'picture',
|
|
3174
|
+
link: 'link',
|
|
3175
|
+
sort: 'sort',
|
|
3176
|
+
},
|
|
3177
|
+
relation: {
|
|
3178
|
+
picture: File
|
|
3179
|
+
}
|
|
3180
|
+
})
|
|
3181
|
+
], LeaguePartner);
|
|
3182
|
+
return LeaguePartner;
|
|
3183
|
+
}(BaseModel));
|
|
3184
|
+
|
|
3153
3185
|
var LeagueApi = /** @class */ (function () {
|
|
3154
3186
|
function LeagueApi(httpClient, configService) {
|
|
3155
3187
|
this.httpClient = httpClient;
|
|
@@ -3252,6 +3284,13 @@
|
|
|
3252
3284
|
});
|
|
3253
3285
|
});
|
|
3254
3286
|
};
|
|
3287
|
+
LeagueApi.prototype.getPartners = function (leagueId) {
|
|
3288
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
3289
|
+
return __generator(this, function (_a) {
|
|
3290
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/partners/").pipe(operators.map(function (result) { return LeaguePartner.toFront(result); })).toPromise()];
|
|
3291
|
+
});
|
|
3292
|
+
});
|
|
3293
|
+
};
|
|
3255
3294
|
LeagueApi.ctorParameters = function () { return [
|
|
3256
3295
|
{ type: http.HttpClient },
|
|
3257
3296
|
{ type: ConfigService }
|
|
@@ -7116,6 +7155,7 @@
|
|
|
7116
7155
|
exports.LeagueCourt = LeagueCourt;
|
|
7117
7156
|
exports.LeagueNews = LeagueNews;
|
|
7118
7157
|
exports.LeagueNewsApi = LeagueNewsApi;
|
|
7158
|
+
exports.LeaguePartner = LeaguePartner;
|
|
7119
7159
|
exports.LocalStorageEngine = LocalStorageEngine;
|
|
7120
7160
|
exports.MediaApi = MediaApi;
|
|
7121
7161
|
exports.MediaItem = MediaItem;
|