@mtgame/core 0.0.50 → 0.0.51
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 +30 -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/models/league-playlist.js +28 -0
- package/esm2015/models/public-api.js +2 -1
- package/esm5/models/league-playlist.js +33 -0
- package/esm5/models/public-api.js +2 -1
- package/fesm2015/mtgame-core.js +25 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +30 -1
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/league-playlist.d.ts +10 -0
- package/models/public-api.d.ts +1 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -6758,6 +6758,35 @@
|
|
|
6758
6758
|
_a$6[exports.VolleyballGameLogType.yellow_card] = 'Предупреждение',
|
|
6759
6759
|
_a$6);
|
|
6760
6760
|
|
|
6761
|
+
var LeaguePlaylist = /** @class */ (function (_super) {
|
|
6762
|
+
__extends(LeaguePlaylist, _super);
|
|
6763
|
+
function LeaguePlaylist() {
|
|
6764
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
6765
|
+
}
|
|
6766
|
+
LeaguePlaylist.toFront = function (data) { };
|
|
6767
|
+
LeaguePlaylist.toBack = function (data) { };
|
|
6768
|
+
__decorate([
|
|
6769
|
+
ToFrontHook
|
|
6770
|
+
], LeaguePlaylist, "toFront", null);
|
|
6771
|
+
__decorate([
|
|
6772
|
+
ToBackHook
|
|
6773
|
+
], LeaguePlaylist, "toBack", null);
|
|
6774
|
+
LeaguePlaylist = __decorate([
|
|
6775
|
+
ModelInstance({
|
|
6776
|
+
mappingFields: {
|
|
6777
|
+
id: 'id',
|
|
6778
|
+
name: 'name',
|
|
6779
|
+
files: 'files',
|
|
6780
|
+
key_code: 'keyCode',
|
|
6781
|
+
},
|
|
6782
|
+
relation: {
|
|
6783
|
+
files: listField(File)
|
|
6784
|
+
}
|
|
6785
|
+
})
|
|
6786
|
+
], LeaguePlaylist);
|
|
6787
|
+
return LeaguePlaylist;
|
|
6788
|
+
}(BaseModel));
|
|
6789
|
+
|
|
6761
6790
|
var CentrifugoService = /** @class */ (function () {
|
|
6762
6791
|
function CentrifugoService(httpClient, configService) {
|
|
6763
6792
|
this.httpClient = httpClient;
|
|
@@ -7218,6 +7247,7 @@
|
|
|
7218
7247
|
exports.LeagueNews = LeagueNews;
|
|
7219
7248
|
exports.LeagueNewsApi = LeagueNewsApi;
|
|
7220
7249
|
exports.LeaguePartner = LeaguePartner;
|
|
7250
|
+
exports.LeaguePlaylist = LeaguePlaylist;
|
|
7221
7251
|
exports.LocalStorageEngine = LocalStorageEngine;
|
|
7222
7252
|
exports.MediaApi = MediaApi;
|
|
7223
7253
|
exports.MediaItem = MediaItem;
|