@mtgame/core 2.0.7 → 2.0.9
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/media-api.d.ts +2 -1
- package/api/public-team-api.d.ts +2 -0
- package/api/tournament-api.d.ts +2 -0
- package/api/volleyball-game-api.d.ts +1 -0
- package/esm2020/api/media-api.mjs +5 -1
- package/esm2020/api/public-team-api.mjs +8 -1
- package/esm2020/api/tournament-api.mjs +1 -1
- package/esm2020/api/volleyball-game-api.mjs +7 -1
- package/esm2020/localization/waterpolo-game-log-types.mjs +3 -3
- package/esm2020/models/basketball-game-log.mjs +1 -1
- package/esm2020/models/device-info.mjs +18 -0
- package/esm2020/models/game.mjs +1 -1
- package/esm2020/models/hockey-game-statistic.mjs +1 -1
- package/esm2020/models/hockey-statistic.mjs +1 -1
- package/esm2020/models/league-player.mjs +3 -2
- package/esm2020/models/league.mjs +5 -1
- package/esm2020/models/public-api.mjs +2 -1
- package/esm2020/models/rugby-game-statistic.mjs +28 -1
- package/esm2020/models/tournament-team-user.mjs +1 -1
- package/esm2020/models/tournament.mjs +1 -1
- package/esm2020/models/user.mjs +1 -1
- package/esm2020/models/waterpolo-game-statistic.mjs +3 -4
- package/esm2020/services/centrifugo.service.mjs +24 -6
- package/esm2020/services/device-info.service.mjs +44 -0
- package/esm2020/services/public-api.mjs +2 -1
- package/fesm2015/mtgame-core.mjs +132 -11
- package/fesm2015/mtgame-core.mjs.map +1 -1
- package/fesm2020/mtgame-core.mjs +130 -11
- package/fesm2020/mtgame-core.mjs.map +1 -1
- package/models/basketball-game-log.d.ts +1 -0
- package/models/device-info.d.ts +15 -0
- package/models/game.d.ts +1 -1
- package/models/hockey-game-statistic.d.ts +9 -0
- package/models/hockey-statistic.d.ts +9 -0
- package/models/league-player.d.ts +2 -1
- package/models/league.d.ts +2 -0
- package/models/public-api.d.ts +1 -0
- package/models/rugby-game-statistic.d.ts +6 -6
- package/models/tournament-team-user.d.ts +3 -0
- package/models/tournament.d.ts +1 -0
- package/models/user.d.ts +2 -0
- package/package.json +7 -5
- package/services/centrifugo.service.d.ts +2 -1
- package/services/device-info.service.d.ts +9 -0
- package/services/public-api.d.ts +1 -0
package/fesm2015/mtgame-core.mjs
CHANGED
|
@@ -4,11 +4,13 @@ import { Injectable, Optional, Inject, PLATFORM_ID } from '@angular/core';
|
|
|
4
4
|
import { map, filter, take, takeUntil, distinctUntilChanged, delay, switchMap } from 'rxjs/operators';
|
|
5
5
|
import * as i1 from '@angular/common/http';
|
|
6
6
|
import { HttpParams } from '@angular/common/http';
|
|
7
|
-
import { BehaviorSubject, Subject, ReplaySubject, of } from 'rxjs';
|
|
7
|
+
import { BehaviorSubject, Observable, Subject, ReplaySubject, of } from 'rxjs';
|
|
8
8
|
import { Centrifuge } from 'centrifuge';
|
|
9
|
+
import { isPlatformBrowser } from '@angular/common';
|
|
10
|
+
import { UAParser } from 'ua-parser-js';
|
|
11
|
+
import * as FingerPrint from '@fingerprintjs/fingerprintjs';
|
|
9
12
|
import { captureException } from '@sentry/angular';
|
|
10
13
|
import { FormGroup } from '@angular/forms';
|
|
11
|
-
import { isPlatformBrowser } from '@angular/common';
|
|
12
14
|
|
|
13
15
|
class BaseModel {
|
|
14
16
|
constructor(data, fields) {
|
|
@@ -559,6 +561,10 @@ let League = class League extends BaseModel {
|
|
|
559
561
|
get tiktokLink() {
|
|
560
562
|
return this.socialLinks.find(link => link.indexOf('tiktok.com/') > -1);
|
|
561
563
|
}
|
|
564
|
+
checkRuDomain() {
|
|
565
|
+
const domainSplit = this.domain.split('.');
|
|
566
|
+
return domainSplit[(domainSplit.length - 1)] === 'ru';
|
|
567
|
+
}
|
|
562
568
|
};
|
|
563
569
|
League = __decorate([
|
|
564
570
|
Model({
|
|
@@ -1357,6 +1363,7 @@ LeaguePlayer = __decorate([
|
|
|
1357
1363
|
user: nestedModel(User),
|
|
1358
1364
|
qualification: enumField(Qualification),
|
|
1359
1365
|
fieldValues: listField(nestedModel(LeaguePlayerFieldValue)),
|
|
1366
|
+
gender: enumField(UserGender),
|
|
1360
1367
|
}
|
|
1361
1368
|
})
|
|
1362
1369
|
], LeaguePlayer);
|
|
@@ -4035,6 +4042,10 @@ class MediaApi {
|
|
|
4035
4042
|
if (filters.teamId) {
|
|
4036
4043
|
params = params.set('team_id', filters.teamId.toString());
|
|
4037
4044
|
}
|
|
4045
|
+
if (filters.statuses) {
|
|
4046
|
+
const statuses = filters.statuses.map(i => GameStatuses[i]);
|
|
4047
|
+
params = params.set('statuses', statuses.join(','));
|
|
4048
|
+
}
|
|
4038
4049
|
return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/media/`, { params, observe: 'response' })
|
|
4039
4050
|
.pipe(map(response => ({
|
|
4040
4051
|
total: +response.headers.get('X-Page-Count'),
|
|
@@ -4545,6 +4556,33 @@ let RugbyGameStatistic = class RugbyGameStatistic extends GameStatisticBase {
|
|
|
4545
4556
|
get gameMinutes() {
|
|
4546
4557
|
return Math.floor(this.gameTime / 60);
|
|
4547
4558
|
}
|
|
4559
|
+
get conversionKicks() {
|
|
4560
|
+
return (this.conversionGoals || 0) + (this.conversionMisses || 0);
|
|
4561
|
+
}
|
|
4562
|
+
get conversionGoalsPercent() {
|
|
4563
|
+
if (!this.conversionKicks) {
|
|
4564
|
+
return 0;
|
|
4565
|
+
}
|
|
4566
|
+
return Math.floor(1000 * this.conversionGoals / this.conversionKicks) / 10;
|
|
4567
|
+
}
|
|
4568
|
+
get penaltyKicksOnGoal() {
|
|
4569
|
+
return (this.penaltyGoals || 0) + (this.penaltyMisses || 0);
|
|
4570
|
+
}
|
|
4571
|
+
get penaltyGoalsPercent() {
|
|
4572
|
+
if (!this.penaltyKicksOnGoal) {
|
|
4573
|
+
return 0;
|
|
4574
|
+
}
|
|
4575
|
+
return Math.floor(1000 * this.penaltyGoals / this.penaltyKicksOnGoal) / 10;
|
|
4576
|
+
}
|
|
4577
|
+
get dropGoalKicks() {
|
|
4578
|
+
return (this.dropGoals || 0) + (this.dropGoalMisses || 0);
|
|
4579
|
+
}
|
|
4580
|
+
get dropGoalsPercent() {
|
|
4581
|
+
if (!this.dropGoalKicks) {
|
|
4582
|
+
return 0;
|
|
4583
|
+
}
|
|
4584
|
+
return Math.floor(1000 * this.dropGoals / this.dropGoalKicks) / 10;
|
|
4585
|
+
}
|
|
4548
4586
|
get totalGoals() {
|
|
4549
4587
|
return (this.conversionGoals || 0) + (this.dropGoals || 0) + (this.penaltyGoals || 0);
|
|
4550
4588
|
}
|
|
@@ -6018,6 +6056,14 @@ class VolleyballGameApi extends GameBaseApi {
|
|
|
6018
6056
|
}).toPromise();
|
|
6019
6057
|
});
|
|
6020
6058
|
}
|
|
6059
|
+
downloadProtocolAdvanced(gameId, format) {
|
|
6060
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
6061
|
+
return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_volleyball_game/${gameId}/game_protocol_advanced/`, {
|
|
6062
|
+
params: new HttpParams().set('file_type', format),
|
|
6063
|
+
responseType: 'blob'
|
|
6064
|
+
}).toPromise();
|
|
6065
|
+
});
|
|
6066
|
+
}
|
|
6021
6067
|
downloadProtocol(gameId, format) {
|
|
6022
6068
|
return __awaiter(this, void 0, void 0, function* () {
|
|
6023
6069
|
return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_volleyball_game/${gameId}/game_protocol/`, {
|
|
@@ -6350,7 +6396,7 @@ let WaterpoloGameStatistic = class WaterpoloGameStatistic extends GameStatisticB
|
|
|
6350
6396
|
return this.ppShots + this.evShots + this.shShots;
|
|
6351
6397
|
}
|
|
6352
6398
|
get totalShots() {
|
|
6353
|
-
return this.shots +
|
|
6399
|
+
return this.shots + this.shootoutShots;
|
|
6354
6400
|
}
|
|
6355
6401
|
get faceOffs() {
|
|
6356
6402
|
return (this.faceOffWins || 0) + (this.faceOffLosses || 0);
|
|
@@ -6399,8 +6445,7 @@ let WaterpoloGameStatistic = class WaterpoloGameStatistic extends GameStatisticB
|
|
|
6399
6445
|
this.freeKickShotsBlocked + this.cornerShotsBlocked;
|
|
6400
6446
|
}
|
|
6401
6447
|
get totalFouls() {
|
|
6402
|
-
return (this.fouls || 0) + (this.
|
|
6403
|
-
(this.minorPenalties || 0) + (this.majorPenalties || 0) + (this.matchPenalties || 0);
|
|
6448
|
+
return (this.fouls || 0) + (this.personalFouls || 0);
|
|
6404
6449
|
}
|
|
6405
6450
|
get totalPenalties() {
|
|
6406
6451
|
return (this.minorPenalties || 0) + (this.majorPenalties || 0) + (this.matchPenalties || 0);
|
|
@@ -6713,6 +6758,14 @@ class PublicTeamApi {
|
|
|
6713
6758
|
const params = new HttpParams().set('league_id', leagueId.toString());
|
|
6714
6759
|
return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/public_team/${teamId}/tournament_teams/`, { params }).pipe(map(result => result.map(item => new TournamentTeam(item)))).toPromise();
|
|
6715
6760
|
}
|
|
6761
|
+
getUsers(teamId) {
|
|
6762
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
6763
|
+
return this.httpClient
|
|
6764
|
+
.get(`${this.configService.get('apiUrl')}/api/v1/public_team/${teamId}/users/`)
|
|
6765
|
+
.pipe(map(data => data.map(item => new TeamUser(item))))
|
|
6766
|
+
.toPromise();
|
|
6767
|
+
});
|
|
6768
|
+
}
|
|
6716
6769
|
}
|
|
6717
6770
|
PublicTeamApi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PublicTeamApi, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6718
6771
|
PublicTeamApi.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PublicTeamApi, providedIn: 'root' });
|
|
@@ -6920,8 +6973,8 @@ const WaterpoloGameLogTypeLocalization = {
|
|
|
6920
6973
|
[WaterpoloGameLogTypes.assist]: 'Голевая передача',
|
|
6921
6974
|
[WaterpoloGameLogTypes.block_shot]: 'Блокировка броска',
|
|
6922
6975
|
[WaterpoloGameLogTypes.minor_penalty]: 'Удаление на 20 сек.',
|
|
6923
|
-
[WaterpoloGameLogTypes.major_penalty]: 'Удаление +
|
|
6924
|
-
[WaterpoloGameLogTypes.match_penalty]: 'Удаление
|
|
6976
|
+
[WaterpoloGameLogTypes.major_penalty]: 'Удаление + 20 сек. штраф',
|
|
6977
|
+
[WaterpoloGameLogTypes.match_penalty]: 'Удаление + 4 мин. штраф',
|
|
6925
6978
|
[WaterpoloGameLogTypes.foul]: 'Фол',
|
|
6926
6979
|
[WaterpoloGameLogTypes.penalty_foul]: 'Фол пенальти',
|
|
6927
6980
|
[WaterpoloGameLogTypes.attack_foul]: 'Фол в нападении',
|
|
@@ -7183,6 +7236,21 @@ const OrganizationStatusesLocalization = {
|
|
|
7183
7236
|
[OrganizationStatuses.not_confirmed]: 'Не подтвержден'
|
|
7184
7237
|
};
|
|
7185
7238
|
|
|
7239
|
+
var DeviceTheme;
|
|
7240
|
+
(function (DeviceTheme) {
|
|
7241
|
+
DeviceTheme[DeviceTheme["light"] = 1] = "light";
|
|
7242
|
+
DeviceTheme[DeviceTheme["dark"] = 2] = "dark";
|
|
7243
|
+
})(DeviceTheme || (DeviceTheme = {}));
|
|
7244
|
+
let DeviceInfo = class DeviceInfo extends BaseModel {
|
|
7245
|
+
};
|
|
7246
|
+
DeviceInfo = __decorate([
|
|
7247
|
+
Model({
|
|
7248
|
+
relation: {
|
|
7249
|
+
theme: enumField(DeviceTheme),
|
|
7250
|
+
}
|
|
7251
|
+
})
|
|
7252
|
+
], DeviceInfo);
|
|
7253
|
+
|
|
7186
7254
|
var OrganizationBillStatuses;
|
|
7187
7255
|
(function (OrganizationBillStatuses) {
|
|
7188
7256
|
OrganizationBillStatuses[OrganizationBillStatuses["pending"] = 1] = "pending";
|
|
@@ -7274,9 +7342,10 @@ TournamentJoin1x1Data = __decorate([
|
|
|
7274
7342
|
], TournamentJoin1x1Data);
|
|
7275
7343
|
|
|
7276
7344
|
class CentrifugoService {
|
|
7277
|
-
constructor(httpClient, configService) {
|
|
7345
|
+
constructor(httpClient, configService, platformId) {
|
|
7278
7346
|
this.httpClient = httpClient;
|
|
7279
7347
|
this.configService = configService;
|
|
7348
|
+
this.platformId = platformId;
|
|
7280
7349
|
this.channels$ = {};
|
|
7281
7350
|
this.subscriptions = {};
|
|
7282
7351
|
this.connectedSubject = new BehaviorSubject(false);
|
|
@@ -7285,6 +7354,11 @@ class CentrifugoService {
|
|
|
7285
7354
|
return this.connectedSubject;
|
|
7286
7355
|
}
|
|
7287
7356
|
listen(channel) {
|
|
7357
|
+
if (!isPlatformBrowser(this.platformId)) {
|
|
7358
|
+
return new Observable(observer => {
|
|
7359
|
+
observer.error('Centrifugo is not available in ssr mode');
|
|
7360
|
+
});
|
|
7361
|
+
}
|
|
7288
7362
|
if (channel in this.channels$) {
|
|
7289
7363
|
return this.channels$[channel];
|
|
7290
7364
|
}
|
|
@@ -7305,6 +7379,11 @@ class CentrifugoService {
|
|
|
7305
7379
|
}
|
|
7306
7380
|
}
|
|
7307
7381
|
connect() {
|
|
7382
|
+
if (!isPlatformBrowser(this.platformId)) {
|
|
7383
|
+
return new Observable(observer => {
|
|
7384
|
+
observer.error('Centrifugo is not available in ssr mode');
|
|
7385
|
+
});
|
|
7386
|
+
}
|
|
7308
7387
|
if (!this.initializeEngineSubject) {
|
|
7309
7388
|
this.initializeEngineSubject = new ReplaySubject(1);
|
|
7310
7389
|
this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/centrifugo_v2/`)
|
|
@@ -7329,6 +7408,9 @@ class CentrifugoService {
|
|
|
7329
7408
|
}
|
|
7330
7409
|
publish(channel, message) {
|
|
7331
7410
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7411
|
+
if (!isPlatformBrowser(this.platformId)) {
|
|
7412
|
+
throw new Error('Centrifugo is not available in ssr mode');
|
|
7413
|
+
}
|
|
7332
7414
|
const connected = yield this.connect().pipe(filter(item => Boolean(item)), take(1)).toPromise();
|
|
7333
7415
|
if (!connected) {
|
|
7334
7416
|
throw new Error('Centrifuge connection error');
|
|
@@ -7368,12 +7450,17 @@ class CentrifugoService {
|
|
|
7368
7450
|
this.channels$[channel].next(message);
|
|
7369
7451
|
}
|
|
7370
7452
|
}
|
|
7371
|
-
CentrifugoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CentrifugoService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7453
|
+
CentrifugoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CentrifugoService, deps: [{ token: i1.HttpClient }, { token: ConfigService }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7372
7454
|
CentrifugoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CentrifugoService, providedIn: 'root' });
|
|
7373
7455
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CentrifugoService, decorators: [{
|
|
7374
7456
|
type: Injectable,
|
|
7375
7457
|
args: [{ providedIn: 'root' }]
|
|
7376
|
-
}], ctorParameters: function () {
|
|
7458
|
+
}], ctorParameters: function () {
|
|
7459
|
+
return [{ type: i1.HttpClient }, { type: ConfigService }, { type: undefined, decorators: [{
|
|
7460
|
+
type: Inject,
|
|
7461
|
+
args: [PLATFORM_ID]
|
|
7462
|
+
}] }];
|
|
7463
|
+
} });
|
|
7377
7464
|
|
|
7378
7465
|
class BaseController {
|
|
7379
7466
|
constructor() {
|
|
@@ -7392,6 +7479,40 @@ class BaseController {
|
|
|
7392
7479
|
}
|
|
7393
7480
|
}
|
|
7394
7481
|
|
|
7482
|
+
class DeviceInfoService {
|
|
7483
|
+
constructor(platform) {
|
|
7484
|
+
this.platform = platform;
|
|
7485
|
+
}
|
|
7486
|
+
get() {
|
|
7487
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
7488
|
+
const fp = yield FingerPrint.load();
|
|
7489
|
+
const fingerprint = yield fp.get();
|
|
7490
|
+
const parser = new UAParser(window.navigator.userAgent);
|
|
7491
|
+
return new DeviceInfo(Object.assign({ deviceId: fingerprint.visitorId, osName: parser.getOS().name, osVersion: parser.getOS().version, browserName: parser.getBrowser().name, browserVersion: parser.getBrowser().version, device: null }, (isPlatformBrowser(this.platform)
|
|
7492
|
+
? {
|
|
7493
|
+
language: window.navigator.language,
|
|
7494
|
+
theme: window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
|
|
7495
|
+
? DeviceTheme.dark
|
|
7496
|
+
: window.matchMedia && window.matchMedia('(prefers-color-scheme: light)').matches
|
|
7497
|
+
? DeviceTheme.light
|
|
7498
|
+
: null,
|
|
7499
|
+
}
|
|
7500
|
+
: {})));
|
|
7501
|
+
});
|
|
7502
|
+
}
|
|
7503
|
+
}
|
|
7504
|
+
DeviceInfoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DeviceInfoService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7505
|
+
DeviceInfoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DeviceInfoService, providedIn: 'root' });
|
|
7506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DeviceInfoService, decorators: [{
|
|
7507
|
+
type: Injectable,
|
|
7508
|
+
args: [{ providedIn: 'root' }]
|
|
7509
|
+
}], ctorParameters: function () {
|
|
7510
|
+
return [{ type: undefined, decorators: [{
|
|
7511
|
+
type: Inject,
|
|
7512
|
+
args: [PLATFORM_ID]
|
|
7513
|
+
}] }];
|
|
7514
|
+
} });
|
|
7515
|
+
|
|
7395
7516
|
class OldStorageEngineField {
|
|
7396
7517
|
constructor(defaultValue, model) {
|
|
7397
7518
|
this.model = model;
|
|
@@ -7813,5 +7934,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
7813
7934
|
* Generated bundle index. Do not edit.
|
|
7814
7935
|
*/
|
|
7815
7936
|
|
|
7816
|
-
export { Achievement, AchievementTypes, BannerLocation, BaseController, BaseModel, BaseService, BaseStatistic, BasketballCourtSides, BasketballCourtZones, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameSubLogTypesLocalization, BasketballGameTeamStatistic, BasketballPenaltyTypes, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, BasketballSubLogTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, FootballGameApi, FootballGameConfig, FootballGameLog, FootballGameLogTypeLocalization, FootballGameLogTypes, FootballGameStatistic, FootballGameTeamStatistic, FootballProfile, FootballStatistic, FootballWorkFoot, FootballWorkFootLocalization, Game, GameAdditionalData, GameBaseApi, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameBill, GameBillStatusLocalization, GameBillStatuses, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameLogBase, GameResultTypes, GameRugbyPosition, GameRugbyPositionLocalization, GameStatisticBase, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserDisqualification, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, GameWaterpoloPosition, GameWaterpoloPositionLocalization, GameWaterpoloPositionShortRuLocalization, GameWebsocket, HandballGameApi, HandballGameConfig, HandballGameLog, HandballGameLogTypeLocalization, HandballGameLogTypes, HandballGameStatistic, HandballGameTeamStatistic, HandballProfile, HandballStatistic, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HockeyWorkHandLocalization, HttpCookieInterceptor, League, LeagueApi, LeagueBanner, LeagueCourt, LeagueDocument, LeagueFieldBase, LeagueFieldBaseValue, LeagueFieldTypes, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlayerField, LeaguePlayerFieldValue, LeaguePlaylist, LeagueTeamField, LocalStorageEngine, MediaApi, MediaItem, Model, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OldLocalStorageEngine, OldStorageEngine, OldStorageEngineField, OrgNotificationApi, Organization, OrganizationBill, OrganizationBillStatusLocalization, OrganizationBillStatuses, OrganizationStatistic, OrganizationStatuses, OrganizationStatusesLocalization, OrganizationTariff, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, PublicTeamApi, PublicUserApi, Qualification, QualificationLocalization, RUGBY_GAME_LOG_TYPE_POINTS, RUGBY_TEAM_LOG_TYPES, ReferenceApi, RugbyFoulGameStage, RugbyFoulGameStageLocalization, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, RugbyStatisticTypes, SCORE_LOG_TYPES, Sport, SportTypes, Storage, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamAchievement, TeamAdditionalData, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, TeamsAndUsers, TimerTypes, Tournament, TournamentApi, TournamentDisqualification, TournamentDivision, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoin1x1Data, TournamentJoin1x1Status, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentRound, TournamentRoundApi, TournamentRoundSettings, TournamentRoundTeam, TournamentRoundTypes, TournamentSeason, TournamentSeasonApi, TournamentSeasonStatuses, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamFieldValue, TournamentTeamUser, TournamentTeamUserInvite, TournamentTypes, UntilDestroy, User, UserAccess, UserApi, UserGender, UserPermission, UserPermissionTypes, UserProfile, VolleyballGameApi, VolleyballGameConfig, VolleyballGameLog, VolleyballGameLogType, VolleyballGameLogTypeLocalization, VolleyballGameStatistic, VolleyballGameTeamStatistic, VolleyballGameTypes, VolleyballProfile, VolleyballStatistic, VolleyballStatisticTypes, VolleyballWorkHand, VolleyballWorkHandLocalization, WaterpoloAdvantageTypes, WaterpoloGameApi, WaterpoloGameConfig, WaterpoloGameLog, WaterpoloGameLogTypeLocalization, WaterpoloGameLogTypes, WaterpoloGameStatistic, WaterpoloGameTeamStatistic, WaterpoloProfile, WaterpoloStatistic, WaterpoloWorkHand, WaterpoloWorkHandLocalization, WorkHand, WorkHandLocalization, _, addItemInArray, addItemsInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, dateField, dateTimeField, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, nestedModel, parseDate, patchItemInArray, toCamelCase, toJson, toUnderscore, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
|
|
7937
|
+
export { Achievement, AchievementTypes, BannerLocation, BaseController, BaseModel, BaseService, BaseStatistic, BasketballCourtSides, BasketballCourtZones, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameSubLogTypesLocalization, BasketballGameTeamStatistic, BasketballPenaltyTypes, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, BasketballSubLogTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DeviceInfo, DeviceInfoService, DeviceTheme, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, FootballGameApi, FootballGameConfig, FootballGameLog, FootballGameLogTypeLocalization, FootballGameLogTypes, FootballGameStatistic, FootballGameTeamStatistic, FootballProfile, FootballStatistic, FootballWorkFoot, FootballWorkFootLocalization, Game, GameAdditionalData, GameBaseApi, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameBill, GameBillStatusLocalization, GameBillStatuses, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameLogBase, GameResultTypes, GameRugbyPosition, GameRugbyPositionLocalization, GameStatisticBase, GameStatuses, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserDisqualification, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, GameWaterpoloPosition, GameWaterpoloPositionLocalization, GameWaterpoloPositionShortRuLocalization, GameWebsocket, HandballGameApi, HandballGameConfig, HandballGameLog, HandballGameLogTypeLocalization, HandballGameLogTypes, HandballGameStatistic, HandballGameTeamStatistic, HandballProfile, HandballStatistic, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HockeyWorkHandLocalization, HttpCookieInterceptor, League, LeagueApi, LeagueBanner, LeagueCourt, LeagueDocument, LeagueFieldBase, LeagueFieldBaseValue, LeagueFieldTypes, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlayerField, LeaguePlayerFieldValue, LeaguePlaylist, LeagueTeamField, LocalStorageEngine, MediaApi, MediaItem, Model, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OldLocalStorageEngine, OldStorageEngine, OldStorageEngineField, OrgNotificationApi, Organization, OrganizationBill, OrganizationBillStatusLocalization, OrganizationBillStatuses, OrganizationStatistic, OrganizationStatuses, OrganizationStatusesLocalization, OrganizationTariff, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, PublicTeamApi, PublicUserApi, Qualification, QualificationLocalization, RUGBY_GAME_LOG_TYPE_POINTS, RUGBY_TEAM_LOG_TYPES, ReferenceApi, RugbyFoulGameStage, RugbyFoulGameStageLocalization, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, RugbyStatisticTypes, SCORE_LOG_TYPES, Sport, SportTypes, Storage, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamAchievement, TeamAdditionalData, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, TeamsAndUsers, TimerTypes, Tournament, TournamentApi, TournamentDisqualification, TournamentDivision, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoin1x1Data, TournamentJoin1x1Status, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentRound, TournamentRoundApi, TournamentRoundSettings, TournamentRoundTeam, TournamentRoundTypes, TournamentSeason, TournamentSeasonApi, TournamentSeasonStatuses, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamFieldValue, TournamentTeamUser, TournamentTeamUserInvite, TournamentTypes, UntilDestroy, User, UserAccess, UserApi, UserGender, UserPermission, UserPermissionTypes, UserProfile, VolleyballGameApi, VolleyballGameConfig, VolleyballGameLog, VolleyballGameLogType, VolleyballGameLogTypeLocalization, VolleyballGameStatistic, VolleyballGameTeamStatistic, VolleyballGameTypes, VolleyballProfile, VolleyballStatistic, VolleyballStatisticTypes, VolleyballWorkHand, VolleyballWorkHandLocalization, WaterpoloAdvantageTypes, WaterpoloGameApi, WaterpoloGameConfig, WaterpoloGameLog, WaterpoloGameLogTypeLocalization, WaterpoloGameLogTypes, WaterpoloGameStatistic, WaterpoloGameTeamStatistic, WaterpoloProfile, WaterpoloStatistic, WaterpoloWorkHand, WaterpoloWorkHandLocalization, WorkHand, WorkHandLocalization, _, addItemInArray, addItemsInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, dateField, dateTimeField, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, nestedModel, parseDate, patchItemInArray, toCamelCase, toJson, toUnderscore, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
|
|
7817
7938
|
//# sourceMappingURL=mtgame-core.mjs.map
|