@mtgame/core 0.0.36 → 0.0.38
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/basketball-game-api.d.ts +1 -0
- package/api/league-api.d.ts +5 -1
- package/api/media-api.d.ts +4 -0
- package/api/public-api.d.ts +1 -0
- package/api/tournament-season-api.d.ts +21 -0
- package/bundles/mtgame-core.umd.js +229 -2
- 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/basketball-game-api.js +7 -1
- package/esm2015/api/league-api.js +35 -1
- package/esm2015/api/media-api.js +14 -1
- package/esm2015/api/public-api.js +2 -1
- package/esm2015/api/tournament-season-api.js +123 -0
- package/esm2015/models/game.js +4 -1
- package/esm2015/models/hockey-game-log.js +2 -1
- package/esm2015/models/public-api.js +2 -1
- package/esm2015/models/tournament-season.js +32 -0
- package/esm2015/models/tournament.js +6 -3
- package/esm5/api/basketball-game-api.js +9 -1
- package/esm5/api/league-api.js +40 -1
- package/esm5/api/media-api.js +18 -1
- package/esm5/api/public-api.js +2 -1
- package/esm5/api/tournament-season-api.js +139 -0
- package/esm5/models/game.js +4 -1
- package/esm5/models/hockey-game-log.js +2 -1
- package/esm5/models/public-api.js +2 -1
- package/esm5/models/tournament-season.js +37 -0
- package/esm5/models/tournament.js +6 -3
- package/fesm2015/mtgame-core.js +196 -3
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +228 -3
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/game.d.ts +2 -0
- package/models/hockey-game-log.d.ts +1 -0
- package/models/public-api.d.ts +1 -0
- package/models/tournament-season.d.ts +12 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -879,6 +879,39 @@ var League = /** @class */ (function (_super) {
|
|
|
879
879
|
return League;
|
|
880
880
|
}(BaseModel));
|
|
881
881
|
|
|
882
|
+
var TournamentSeason = /** @class */ (function (_super) {
|
|
883
|
+
__extends(TournamentSeason, _super);
|
|
884
|
+
function TournamentSeason() {
|
|
885
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
886
|
+
}
|
|
887
|
+
TournamentSeason.toFront = function (data) { };
|
|
888
|
+
TournamentSeason.toBack = function (data) { };
|
|
889
|
+
__decorate([
|
|
890
|
+
ToFrontHook
|
|
891
|
+
], TournamentSeason, "toFront", null);
|
|
892
|
+
__decorate([
|
|
893
|
+
ToBackHook
|
|
894
|
+
], TournamentSeason, "toBack", null);
|
|
895
|
+
TournamentSeason = __decorate([
|
|
896
|
+
ModelInstance({
|
|
897
|
+
mappingFields: {
|
|
898
|
+
id: 'id',
|
|
899
|
+
name: 'name',
|
|
900
|
+
alias: 'alias',
|
|
901
|
+
logo: 'logo',
|
|
902
|
+
cover: 'cover',
|
|
903
|
+
preview_image: 'previewImage',
|
|
904
|
+
},
|
|
905
|
+
relation: {
|
|
906
|
+
logo: File,
|
|
907
|
+
cover: File,
|
|
908
|
+
previewImage: File
|
|
909
|
+
}
|
|
910
|
+
})
|
|
911
|
+
], TournamentSeason);
|
|
912
|
+
return TournamentSeason;
|
|
913
|
+
}(BaseModel));
|
|
914
|
+
|
|
882
915
|
var TournamentTypes;
|
|
883
916
|
(function (TournamentTypes) {
|
|
884
917
|
TournamentTypes["group"] = "group";
|
|
@@ -1056,7 +1089,8 @@ var Tournament = /** @class */ (function (_super) {
|
|
|
1056
1089
|
teams_count: 'teamsCount',
|
|
1057
1090
|
closest_game_datetime: 'closestGameDatetime',
|
|
1058
1091
|
status: 'status',
|
|
1059
|
-
team_winner: 'teamWinner'
|
|
1092
|
+
team_winner: 'teamWinner',
|
|
1093
|
+
season: 'season',
|
|
1060
1094
|
},
|
|
1061
1095
|
relation: {
|
|
1062
1096
|
logo: File,
|
|
@@ -1069,7 +1103,8 @@ var Tournament = /** @class */ (function (_super) {
|
|
|
1069
1103
|
date: DateTimeField,
|
|
1070
1104
|
league: League,
|
|
1071
1105
|
status: enumField(TournamentStatuses),
|
|
1072
|
-
teamWinner: TournamentTeamWinner
|
|
1106
|
+
teamWinner: TournamentTeamWinner,
|
|
1107
|
+
season: TournamentSeason,
|
|
1073
1108
|
}
|
|
1074
1109
|
})
|
|
1075
1110
|
], Tournament);
|
|
@@ -1382,6 +1417,7 @@ var Game = /** @class */ (function (_super) {
|
|
|
1382
1417
|
tournament_court: 'tournamentCourt',
|
|
1383
1418
|
media_count: 'mediaCount',
|
|
1384
1419
|
media: 'media',
|
|
1420
|
+
tournament: 'tournament',
|
|
1385
1421
|
},
|
|
1386
1422
|
relation: {
|
|
1387
1423
|
status: enumField(GameStatuses),
|
|
@@ -1394,6 +1430,7 @@ var Game = /** @class */ (function (_super) {
|
|
|
1394
1430
|
hockeyGameConfig: HockeyGameConfig,
|
|
1395
1431
|
tournamentCourt: LeagueCourt,
|
|
1396
1432
|
media: listField(MediaItem),
|
|
1433
|
+
tournament: Tournament,
|
|
1397
1434
|
}
|
|
1398
1435
|
})
|
|
1399
1436
|
], Game);
|
|
@@ -2184,6 +2221,14 @@ var BasketballGameApi = /** @class */ (function () {
|
|
|
2184
2221
|
});
|
|
2185
2222
|
});
|
|
2186
2223
|
};
|
|
2224
|
+
BasketballGameApi.prototype.downloadFibaProtocol = function (gameId, fileType) {
|
|
2225
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2226
|
+
return __generator(this, function (_a) {
|
|
2227
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_basketball_game/" + gameId + "/game_protocol_fiba/?file_type=" + fileType, { responseType: 'blob' })
|
|
2228
|
+
.toPromise()];
|
|
2229
|
+
});
|
|
2230
|
+
});
|
|
2231
|
+
};
|
|
2187
2232
|
BasketballGameApi.ctorParameters = function () { return [
|
|
2188
2233
|
{ type: HttpClient },
|
|
2189
2234
|
{ type: ConfigService }
|
|
@@ -2420,6 +2465,7 @@ var HockeyGameLog = /** @class */ (function (_super) {
|
|
|
2420
2465
|
is_goalie: 'isGoalie',
|
|
2421
2466
|
penalty_type: 'penaltyType',
|
|
2422
2467
|
penalized_game_user_id: 'penalizedGameUserId',
|
|
2468
|
+
mutual_penalty: 'mutualPenalty',
|
|
2423
2469
|
},
|
|
2424
2470
|
relation: {
|
|
2425
2471
|
datetime: DateTimeField,
|
|
@@ -2914,6 +2960,43 @@ var LeagueApi = /** @class */ (function () {
|
|
|
2914
2960
|
});
|
|
2915
2961
|
});
|
|
2916
2962
|
};
|
|
2963
|
+
LeagueApi.prototype.getTournamentSeasons = function (leagueId) {
|
|
2964
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2965
|
+
return __generator(this, function (_a) {
|
|
2966
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/tournament_seasons/").pipe(map(function (result) { return TournamentSeason.toFront(result); })).toPromise()];
|
|
2967
|
+
});
|
|
2968
|
+
});
|
|
2969
|
+
};
|
|
2970
|
+
LeagueApi.prototype.getGames = function (leagueId, page, size, filters) {
|
|
2971
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2972
|
+
var params;
|
|
2973
|
+
return __generator(this, function (_a) {
|
|
2974
|
+
params = new HttpParams().set('page', page.toString());
|
|
2975
|
+
if (size) {
|
|
2976
|
+
params = params.set('size', size.toString());
|
|
2977
|
+
}
|
|
2978
|
+
if (filters.tournamentStageId) {
|
|
2979
|
+
params = params.set('tournament_stage_id', filters.tournamentStageId.toString());
|
|
2980
|
+
}
|
|
2981
|
+
if (filters.tournamentTour) {
|
|
2982
|
+
params = params.set('tournament_tour', filters.tournamentTour.toString());
|
|
2983
|
+
}
|
|
2984
|
+
if (filters.playoffStage) {
|
|
2985
|
+
params = params.set('playoff_stage', filters.playoffStage.toString());
|
|
2986
|
+
}
|
|
2987
|
+
if (filters.teamId) {
|
|
2988
|
+
params = params.set('team_id', filters.teamId.toString());
|
|
2989
|
+
}
|
|
2990
|
+
if (filters.status) {
|
|
2991
|
+
params = params.set('status', GameStatuses[filters.status]);
|
|
2992
|
+
}
|
|
2993
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/games/", { params: params, observe: 'response' }).pipe(map(function (result) { return ({
|
|
2994
|
+
total: +result.headers.get('X-Page-Count'),
|
|
2995
|
+
data: Game.toFront(result.body)
|
|
2996
|
+
}); })).toPromise()];
|
|
2997
|
+
});
|
|
2998
|
+
});
|
|
2999
|
+
};
|
|
2917
3000
|
LeagueApi.ctorParameters = function () { return [
|
|
2918
3001
|
{ type: HttpClient },
|
|
2919
3002
|
{ type: ConfigService }
|
|
@@ -3063,6 +3146,23 @@ var MediaApi = /** @class */ (function () {
|
|
|
3063
3146
|
});
|
|
3064
3147
|
});
|
|
3065
3148
|
};
|
|
3149
|
+
MediaApi.prototype.getLeagueMedia = function (leagueId, page, size, filters) {
|
|
3150
|
+
if (filters === void 0) { filters = {}; }
|
|
3151
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
3152
|
+
var params;
|
|
3153
|
+
return __generator(this, function (_a) {
|
|
3154
|
+
params = new HttpParams().set('page', page.toString()).set('size', size.toString());
|
|
3155
|
+
if (filters.mediaType) {
|
|
3156
|
+
params = params.set('media_type', filters.mediaType);
|
|
3157
|
+
}
|
|
3158
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/league/" + leagueId + "/media/", { params: params, observe: 'response' })
|
|
3159
|
+
.pipe(map(function (response) { return ({
|
|
3160
|
+
total: +response.headers.get('X-Page-Count'),
|
|
3161
|
+
data: MediaItem.toFront(response.body)
|
|
3162
|
+
}); })).toPromise()];
|
|
3163
|
+
});
|
|
3164
|
+
});
|
|
3165
|
+
};
|
|
3066
3166
|
MediaApi.prototype.getGameMediaById = function (gameId) {
|
|
3067
3167
|
return __awaiter(this, void 0, void 0, function () {
|
|
3068
3168
|
return __generator(this, function (_a) {
|
|
@@ -5271,6 +5371,131 @@ var TournamentJoinApi = /** @class */ (function () {
|
|
|
5271
5371
|
return TournamentJoinApi;
|
|
5272
5372
|
}());
|
|
5273
5373
|
|
|
5374
|
+
var TournamentSeasonApi = /** @class */ (function () {
|
|
5375
|
+
function TournamentSeasonApi(httpClient, configService) {
|
|
5376
|
+
this.httpClient = httpClient;
|
|
5377
|
+
this.configService = configService;
|
|
5378
|
+
}
|
|
5379
|
+
TournamentSeasonApi.prototype.getByAlias = function (alias) {
|
|
5380
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5381
|
+
return __generator(this, function (_a) {
|
|
5382
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + alias + "/").pipe(map(function (result) { return TournamentSeason.toFront(result); })).toPromise()];
|
|
5383
|
+
});
|
|
5384
|
+
});
|
|
5385
|
+
};
|
|
5386
|
+
TournamentSeasonApi.prototype.getTournaments = function (seasonId) {
|
|
5387
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5388
|
+
return __generator(this, function (_a) {
|
|
5389
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + seasonId + "/tournaments/").pipe(map(function (result) { return Tournament.toFront(result); })).toPromise()];
|
|
5390
|
+
});
|
|
5391
|
+
});
|
|
5392
|
+
};
|
|
5393
|
+
TournamentSeasonApi.prototype.getGames = function (seasonId, page, size, filters) {
|
|
5394
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5395
|
+
var params;
|
|
5396
|
+
return __generator(this, function (_a) {
|
|
5397
|
+
params = new HttpParams().set('page', page.toString());
|
|
5398
|
+
if (size) {
|
|
5399
|
+
params = params.set('size', size.toString());
|
|
5400
|
+
}
|
|
5401
|
+
if (filters.tournamentStageId) {
|
|
5402
|
+
params = params.set('tournament_stage_id', filters.tournamentStageId.toString());
|
|
5403
|
+
}
|
|
5404
|
+
if (filters.tournamentTour) {
|
|
5405
|
+
params = params.set('tournament_tour', filters.tournamentTour.toString());
|
|
5406
|
+
}
|
|
5407
|
+
if (filters.playoffStage) {
|
|
5408
|
+
params = params.set('playoff_stage', filters.playoffStage.toString());
|
|
5409
|
+
}
|
|
5410
|
+
if (filters.teamId) {
|
|
5411
|
+
params = params.set('team_id', filters.teamId.toString());
|
|
5412
|
+
}
|
|
5413
|
+
if (filters.status) {
|
|
5414
|
+
params = params.set('status', GameStatuses[filters.status]);
|
|
5415
|
+
}
|
|
5416
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + seasonId + "/games/", { params: params, observe: 'response' }).pipe(map(function (result) { return ({
|
|
5417
|
+
total: +result.headers.get('X-Page-Count'),
|
|
5418
|
+
data: Game.toFront(result.body)
|
|
5419
|
+
}); })).toPromise()];
|
|
5420
|
+
});
|
|
5421
|
+
});
|
|
5422
|
+
};
|
|
5423
|
+
TournamentSeasonApi.prototype.getEvents = function (seasonId, page, size, filters) {
|
|
5424
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5425
|
+
var params;
|
|
5426
|
+
return __generator(this, function (_a) {
|
|
5427
|
+
params = new HttpParams().set('page', page.toString())
|
|
5428
|
+
.set('size', size.toString());
|
|
5429
|
+
if (filters) {
|
|
5430
|
+
if (filters.event) {
|
|
5431
|
+
params = params.set('event', TournamentEventTypes[filters.event]);
|
|
5432
|
+
}
|
|
5433
|
+
if (filters.search) {
|
|
5434
|
+
params = params.set('search', filters.search);
|
|
5435
|
+
}
|
|
5436
|
+
}
|
|
5437
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + seasonId + "/events/", { params: params, observe: 'response' })
|
|
5438
|
+
.pipe(map(function (result) { return ({
|
|
5439
|
+
total: +result.headers.get('X-Page-Count'),
|
|
5440
|
+
data: TournamentEvent.toFront(result.body)
|
|
5441
|
+
}); }))
|
|
5442
|
+
.toPromise()];
|
|
5443
|
+
});
|
|
5444
|
+
});
|
|
5445
|
+
};
|
|
5446
|
+
TournamentSeasonApi.prototype.getGameMedia = function (seasonId, page, size, filters) {
|
|
5447
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5448
|
+
var params;
|
|
5449
|
+
return __generator(this, function (_a) {
|
|
5450
|
+
params = new HttpParams().set('page', page.toString()).set('size', size.toString());
|
|
5451
|
+
if (filters) {
|
|
5452
|
+
if (filters.tournamentTour) {
|
|
5453
|
+
params = params.set('tournament_tour', filters.tournamentTour.toString());
|
|
5454
|
+
}
|
|
5455
|
+
if (filters.teamId) {
|
|
5456
|
+
params = params.set('team_id', filters.teamId.toString());
|
|
5457
|
+
}
|
|
5458
|
+
if (filters.tournamentStageId) {
|
|
5459
|
+
params = params.set('tournament_stage_id', filters.tournamentStageId.toString());
|
|
5460
|
+
}
|
|
5461
|
+
if (filters.playoffId) {
|
|
5462
|
+
params = params.set('playoff_id', filters.playoffId.toString());
|
|
5463
|
+
}
|
|
5464
|
+
if (filters.playoffStage) {
|
|
5465
|
+
params = params.set('playoff_stage', filters.playoffStage.toString());
|
|
5466
|
+
}
|
|
5467
|
+
if (filters.status) {
|
|
5468
|
+
params = params.set('status', GameStatuses[filters.status]);
|
|
5469
|
+
}
|
|
5470
|
+
}
|
|
5471
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + seasonId + "/game_media/", { observe: 'response', params: params })
|
|
5472
|
+
.pipe(map(function (response) {
|
|
5473
|
+
return {
|
|
5474
|
+
total: +response.headers.get('X-Page-Count'),
|
|
5475
|
+
data: Game.toFront(response.body)
|
|
5476
|
+
};
|
|
5477
|
+
})).toPromise()];
|
|
5478
|
+
});
|
|
5479
|
+
});
|
|
5480
|
+
};
|
|
5481
|
+
TournamentSeasonApi.prototype.getTeams = function (seasonId) {
|
|
5482
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5483
|
+
return __generator(this, function (_a) {
|
|
5484
|
+
return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_season/" + seasonId + "/teams/").pipe(map(function (result) { return TournamentTeam.toFront(result); })).toPromise()];
|
|
5485
|
+
});
|
|
5486
|
+
});
|
|
5487
|
+
};
|
|
5488
|
+
TournamentSeasonApi.ctorParameters = function () { return [
|
|
5489
|
+
{ type: HttpClient },
|
|
5490
|
+
{ type: ConfigService }
|
|
5491
|
+
]; };
|
|
5492
|
+
TournamentSeasonApi.ɵprov = ɵɵdefineInjectable({ factory: function TournamentSeasonApi_Factory() { return new TournamentSeasonApi(ɵɵinject(HttpClient), ɵɵinject(ConfigService)); }, token: TournamentSeasonApi, providedIn: "root" });
|
|
5493
|
+
TournamentSeasonApi = __decorate([
|
|
5494
|
+
Injectable({ providedIn: 'root' })
|
|
5495
|
+
], TournamentSeasonApi);
|
|
5496
|
+
return TournamentSeasonApi;
|
|
5497
|
+
}());
|
|
5498
|
+
|
|
5274
5499
|
var TournamentStageApi = /** @class */ (function () {
|
|
5275
5500
|
function TournamentStageApi(httpClient, configService) {
|
|
5276
5501
|
this.httpClient = httpClient;
|
|
@@ -6554,5 +6779,5 @@ var HttpCookieInterceptor = /** @class */ (function () {
|
|
|
6554
6779
|
* Generated bundle index. Do not edit.
|
|
6555
6780
|
*/
|
|
6556
6781
|
|
|
6557
|
-
export { BaseModel, BaseService, BaseStatistic, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameTeamStatistic, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DateField, DateTimeField, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, Game, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HttpCookieInterceptor, League, LeagueApi, LeagueCourt, LeagueNews, LeagueNewsApi, LocalStorageEngine, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OrgNotificationApi, Organization, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, ReferenceApi, SCORE_LOG_TYPES, Sport, SportTypes, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, ToBackHook, ToFrontHook, Tournament, TournamentApi, TournamentDisqualification, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamUser, TournamentTeamUserInvite, TournamentTeamWinner, TournamentTypes, UntilDestroy, User, UserAccess, UserApi, UserGender, UserPermission, UserPermissionTypes, UserProfile, VolleyballGameApi, VolleyballGameConfig, VolleyballGameLog, VolleyballGameLogType, VolleyballGameLogTypeLocalization, VolleyballGameStatistic, VolleyballGameTeamStatistic, VolleyballGameTypes, VolleyballProfile, VolleyballStatistic, VolleyballStatisticTypes, VolleyballWorkHand, VolleyballWorkHandLocalization, WorkHand, WorkHandLocalization, addItemInArray, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, patchItemInArray, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl, penaltyTypeField as ɵa };
|
|
6782
|
+
export { BaseModel, BaseService, BaseStatistic, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameTeamStatistic, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DateField, DateTimeField, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, Game, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HttpCookieInterceptor, League, LeagueApi, LeagueCourt, LeagueNews, LeagueNewsApi, LocalStorageEngine, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OrgNotificationApi, Organization, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, ReferenceApi, SCORE_LOG_TYPES, Sport, SportTypes, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, ToBackHook, ToFrontHook, Tournament, TournamentApi, TournamentDisqualification, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentSeason, TournamentSeasonApi, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamUser, TournamentTeamUserInvite, TournamentTeamWinner, TournamentTypes, UntilDestroy, User, UserAccess, UserApi, UserGender, UserPermission, UserPermissionTypes, UserProfile, VolleyballGameApi, VolleyballGameConfig, VolleyballGameLog, VolleyballGameLogType, VolleyballGameLogTypeLocalization, VolleyballGameStatistic, VolleyballGameTeamStatistic, VolleyballGameTypes, VolleyballProfile, VolleyballStatistic, VolleyballStatisticTypes, VolleyballWorkHand, VolleyballWorkHandLocalization, WorkHand, WorkHandLocalization, addItemInArray, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, patchItemInArray, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl, penaltyTypeField as ɵa };
|
|
6558
6783
|
//# sourceMappingURL=mtgame-core.js.map
|