@mtgame/core 0.1.15 → 0.1.17
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 +2 -1
- 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/media-api.js +2 -2
- package/esm2015/models/volleyball-game-log.js +2 -1
- package/esm5/api/media-api.js +2 -2
- package/esm5/models/volleyball-game-log.js +2 -1
- package/fesm2015/mtgame-core.js +2 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +2 -1
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/volleyball-game-log.d.ts +1 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -5893,7 +5893,7 @@
|
|
|
5893
5893
|
MediaApi.prototype.getGameMedia = function (gameId) {
|
|
5894
5894
|
return __awaiter(this, void 0, void 0, function () {
|
|
5895
5895
|
return __generator(this, function (_a) {
|
|
5896
|
-
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_game/" + gameId + "/media
|
|
5896
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_game/" + gameId + "/media/?size=1000").pipe(operators.map(function (result) { return MediaItem.toFront(result); })).toPromise()];
|
|
5897
5897
|
});
|
|
5898
5898
|
});
|
|
5899
5899
|
};
|
|
@@ -8229,6 +8229,7 @@
|
|
|
8229
8229
|
position: 'position',
|
|
8230
8230
|
team_id: 'teamId',
|
|
8231
8231
|
datetime: 'datetime',
|
|
8232
|
+
is_highlight: 'isHighlight',
|
|
8232
8233
|
},
|
|
8233
8234
|
relation: {
|
|
8234
8235
|
logType: enumField(exports.VolleyballGameLogType),
|