@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/fesm2020/mtgame-core.mjs
CHANGED
|
@@ -4,11 +4,13 @@ import { map, filter, take, takeUntil, distinctUntilChanged, delay, switchMap }
|
|
|
4
4
|
import { __decorate } from 'tslib';
|
|
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({
|
|
@@ -1360,6 +1366,7 @@ LeaguePlayer = __decorate([
|
|
|
1360
1366
|
user: nestedModel(User),
|
|
1361
1367
|
qualification: enumField(Qualification),
|
|
1362
1368
|
fieldValues: listField(nestedModel(LeaguePlayerFieldValue)),
|
|
1369
|
+
gender: enumField(UserGender),
|
|
1363
1370
|
}
|
|
1364
1371
|
})
|
|
1365
1372
|
], LeaguePlayer);
|
|
@@ -3855,6 +3862,10 @@ class MediaApi {
|
|
|
3855
3862
|
if (filters.teamId) {
|
|
3856
3863
|
params = params.set('team_id', filters.teamId.toString());
|
|
3857
3864
|
}
|
|
3865
|
+
if (filters.statuses) {
|
|
3866
|
+
const statuses = filters.statuses.map(i => GameStatuses[i]);
|
|
3867
|
+
params = params.set('statuses', statuses.join(','));
|
|
3868
|
+
}
|
|
3858
3869
|
return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/league/${leagueId}/media/`, { params, observe: 'response' })
|
|
3859
3870
|
.pipe(map(response => ({
|
|
3860
3871
|
total: +response.headers.get('X-Page-Count'),
|
|
@@ -4338,6 +4349,33 @@ let RugbyGameStatistic = class RugbyGameStatistic extends GameStatisticBase {
|
|
|
4338
4349
|
get gameMinutes() {
|
|
4339
4350
|
return Math.floor(this.gameTime / 60);
|
|
4340
4351
|
}
|
|
4352
|
+
get conversionKicks() {
|
|
4353
|
+
return (this.conversionGoals || 0) + (this.conversionMisses || 0);
|
|
4354
|
+
}
|
|
4355
|
+
get conversionGoalsPercent() {
|
|
4356
|
+
if (!this.conversionKicks) {
|
|
4357
|
+
return 0;
|
|
4358
|
+
}
|
|
4359
|
+
return Math.floor(1000 * this.conversionGoals / this.conversionKicks) / 10;
|
|
4360
|
+
}
|
|
4361
|
+
get penaltyKicksOnGoal() {
|
|
4362
|
+
return (this.penaltyGoals || 0) + (this.penaltyMisses || 0);
|
|
4363
|
+
}
|
|
4364
|
+
get penaltyGoalsPercent() {
|
|
4365
|
+
if (!this.penaltyKicksOnGoal) {
|
|
4366
|
+
return 0;
|
|
4367
|
+
}
|
|
4368
|
+
return Math.floor(1000 * this.penaltyGoals / this.penaltyKicksOnGoal) / 10;
|
|
4369
|
+
}
|
|
4370
|
+
get dropGoalKicks() {
|
|
4371
|
+
return (this.dropGoals || 0) + (this.dropGoalMisses || 0);
|
|
4372
|
+
}
|
|
4373
|
+
get dropGoalsPercent() {
|
|
4374
|
+
if (!this.dropGoalKicks) {
|
|
4375
|
+
return 0;
|
|
4376
|
+
}
|
|
4377
|
+
return Math.floor(1000 * this.dropGoals / this.dropGoalKicks) / 10;
|
|
4378
|
+
}
|
|
4341
4379
|
get totalGoals() {
|
|
4342
4380
|
return (this.conversionGoals || 0) + (this.dropGoals || 0) + (this.penaltyGoals || 0);
|
|
4343
4381
|
}
|
|
@@ -5586,6 +5624,12 @@ class VolleyballGameApi extends GameBaseApi {
|
|
|
5586
5624
|
responseType: 'blob'
|
|
5587
5625
|
}).toPromise();
|
|
5588
5626
|
}
|
|
5627
|
+
async downloadProtocolAdvanced(gameId, format) {
|
|
5628
|
+
return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_volleyball_game/${gameId}/game_protocol_advanced/`, {
|
|
5629
|
+
params: new HttpParams().set('file_type', format),
|
|
5630
|
+
responseType: 'blob'
|
|
5631
|
+
}).toPromise();
|
|
5632
|
+
}
|
|
5589
5633
|
async downloadProtocol(gameId, format) {
|
|
5590
5634
|
return this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/tournament_volleyball_game/${gameId}/game_protocol/`, {
|
|
5591
5635
|
params: new HttpParams().set('file_type', format),
|
|
@@ -5916,7 +5960,7 @@ let WaterpoloGameStatistic = class WaterpoloGameStatistic extends GameStatisticB
|
|
|
5916
5960
|
return this.ppShots + this.evShots + this.shShots;
|
|
5917
5961
|
}
|
|
5918
5962
|
get totalShots() {
|
|
5919
|
-
return this.shots +
|
|
5963
|
+
return this.shots + this.shootoutShots;
|
|
5920
5964
|
}
|
|
5921
5965
|
get faceOffs() {
|
|
5922
5966
|
return (this.faceOffWins || 0) + (this.faceOffLosses || 0);
|
|
@@ -5965,8 +6009,7 @@ let WaterpoloGameStatistic = class WaterpoloGameStatistic extends GameStatisticB
|
|
|
5965
6009
|
this.freeKickShotsBlocked + this.cornerShotsBlocked;
|
|
5966
6010
|
}
|
|
5967
6011
|
get totalFouls() {
|
|
5968
|
-
return (this.fouls || 0) + (this.
|
|
5969
|
-
(this.minorPenalties || 0) + (this.majorPenalties || 0) + (this.matchPenalties || 0);
|
|
6012
|
+
return (this.fouls || 0) + (this.personalFouls || 0);
|
|
5970
6013
|
}
|
|
5971
6014
|
get totalPenalties() {
|
|
5972
6015
|
return (this.minorPenalties || 0) + (this.majorPenalties || 0) + (this.matchPenalties || 0);
|
|
@@ -6267,6 +6310,12 @@ class PublicTeamApi {
|
|
|
6267
6310
|
const params = new HttpParams().set('league_id', leagueId.toString());
|
|
6268
6311
|
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();
|
|
6269
6312
|
}
|
|
6313
|
+
async getUsers(teamId) {
|
|
6314
|
+
return this.httpClient
|
|
6315
|
+
.get(`${this.configService.get('apiUrl')}/api/v1/public_team/${teamId}/users/`)
|
|
6316
|
+
.pipe(map(data => data.map(item => new TeamUser(item))))
|
|
6317
|
+
.toPromise();
|
|
6318
|
+
}
|
|
6270
6319
|
}
|
|
6271
6320
|
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 });
|
|
6272
6321
|
PublicTeamApi.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PublicTeamApi, providedIn: 'root' });
|
|
@@ -6474,8 +6523,8 @@ const WaterpoloGameLogTypeLocalization = {
|
|
|
6474
6523
|
[WaterpoloGameLogTypes.assist]: 'Голевая передача',
|
|
6475
6524
|
[WaterpoloGameLogTypes.block_shot]: 'Блокировка броска',
|
|
6476
6525
|
[WaterpoloGameLogTypes.minor_penalty]: 'Удаление на 20 сек.',
|
|
6477
|
-
[WaterpoloGameLogTypes.major_penalty]: 'Удаление +
|
|
6478
|
-
[WaterpoloGameLogTypes.match_penalty]: 'Удаление
|
|
6526
|
+
[WaterpoloGameLogTypes.major_penalty]: 'Удаление + 20 сек. штраф',
|
|
6527
|
+
[WaterpoloGameLogTypes.match_penalty]: 'Удаление + 4 мин. штраф',
|
|
6479
6528
|
[WaterpoloGameLogTypes.foul]: 'Фол',
|
|
6480
6529
|
[WaterpoloGameLogTypes.penalty_foul]: 'Фол пенальти',
|
|
6481
6530
|
[WaterpoloGameLogTypes.attack_foul]: 'Фол в нападении',
|
|
@@ -6737,6 +6786,21 @@ const OrganizationStatusesLocalization = {
|
|
|
6737
6786
|
[OrganizationStatuses.not_confirmed]: 'Не подтвержден'
|
|
6738
6787
|
};
|
|
6739
6788
|
|
|
6789
|
+
var DeviceTheme;
|
|
6790
|
+
(function (DeviceTheme) {
|
|
6791
|
+
DeviceTheme[DeviceTheme["light"] = 1] = "light";
|
|
6792
|
+
DeviceTheme[DeviceTheme["dark"] = 2] = "dark";
|
|
6793
|
+
})(DeviceTheme || (DeviceTheme = {}));
|
|
6794
|
+
let DeviceInfo = class DeviceInfo extends BaseModel {
|
|
6795
|
+
};
|
|
6796
|
+
DeviceInfo = __decorate([
|
|
6797
|
+
Model({
|
|
6798
|
+
relation: {
|
|
6799
|
+
theme: enumField(DeviceTheme),
|
|
6800
|
+
}
|
|
6801
|
+
})
|
|
6802
|
+
], DeviceInfo);
|
|
6803
|
+
|
|
6740
6804
|
var OrganizationBillStatuses;
|
|
6741
6805
|
(function (OrganizationBillStatuses) {
|
|
6742
6806
|
OrganizationBillStatuses[OrganizationBillStatuses["pending"] = 1] = "pending";
|
|
@@ -6828,9 +6892,10 @@ TournamentJoin1x1Data = __decorate([
|
|
|
6828
6892
|
], TournamentJoin1x1Data);
|
|
6829
6893
|
|
|
6830
6894
|
class CentrifugoService {
|
|
6831
|
-
constructor(httpClient, configService) {
|
|
6895
|
+
constructor(httpClient, configService, platformId) {
|
|
6832
6896
|
this.httpClient = httpClient;
|
|
6833
6897
|
this.configService = configService;
|
|
6898
|
+
this.platformId = platformId;
|
|
6834
6899
|
this.channels$ = {};
|
|
6835
6900
|
this.subscriptions = {};
|
|
6836
6901
|
this.connectedSubject = new BehaviorSubject(false);
|
|
@@ -6839,6 +6904,11 @@ class CentrifugoService {
|
|
|
6839
6904
|
return this.connectedSubject;
|
|
6840
6905
|
}
|
|
6841
6906
|
listen(channel) {
|
|
6907
|
+
if (!isPlatformBrowser(this.platformId)) {
|
|
6908
|
+
return new Observable(observer => {
|
|
6909
|
+
observer.error('Centrifugo is not available in ssr mode');
|
|
6910
|
+
});
|
|
6911
|
+
}
|
|
6842
6912
|
if (channel in this.channels$) {
|
|
6843
6913
|
return this.channels$[channel];
|
|
6844
6914
|
}
|
|
@@ -6859,6 +6929,11 @@ class CentrifugoService {
|
|
|
6859
6929
|
}
|
|
6860
6930
|
}
|
|
6861
6931
|
connect() {
|
|
6932
|
+
if (!isPlatformBrowser(this.platformId)) {
|
|
6933
|
+
return new Observable(observer => {
|
|
6934
|
+
observer.error('Centrifugo is not available in ssr mode');
|
|
6935
|
+
});
|
|
6936
|
+
}
|
|
6862
6937
|
if (!this.initializeEngineSubject) {
|
|
6863
6938
|
this.initializeEngineSubject = new ReplaySubject(1);
|
|
6864
6939
|
this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/centrifugo_v2/`)
|
|
@@ -6882,6 +6957,9 @@ class CentrifugoService {
|
|
|
6882
6957
|
return this.initializeEngineSubject.pipe(filter(item => Boolean(item)), take(1));
|
|
6883
6958
|
}
|
|
6884
6959
|
async publish(channel, message) {
|
|
6960
|
+
if (!isPlatformBrowser(this.platformId)) {
|
|
6961
|
+
throw new Error('Centrifugo is not available in ssr mode');
|
|
6962
|
+
}
|
|
6885
6963
|
const connected = await this.connect().pipe(filter(item => Boolean(item)), take(1)).toPromise();
|
|
6886
6964
|
if (!connected) {
|
|
6887
6965
|
throw new Error('Centrifuge connection error');
|
|
@@ -6920,12 +6998,15 @@ class CentrifugoService {
|
|
|
6920
6998
|
this.channels$[channel].next(message);
|
|
6921
6999
|
}
|
|
6922
7000
|
}
|
|
6923
|
-
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 });
|
|
7001
|
+
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 });
|
|
6924
7002
|
CentrifugoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CentrifugoService, providedIn: 'root' });
|
|
6925
7003
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CentrifugoService, decorators: [{
|
|
6926
7004
|
type: Injectable,
|
|
6927
7005
|
args: [{ providedIn: 'root' }]
|
|
6928
|
-
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: ConfigService }
|
|
7006
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: ConfigService }, { type: undefined, decorators: [{
|
|
7007
|
+
type: Inject,
|
|
7008
|
+
args: [PLATFORM_ID]
|
|
7009
|
+
}] }]; } });
|
|
6929
7010
|
|
|
6930
7011
|
class BaseController {
|
|
6931
7012
|
constructor() {
|
|
@@ -6944,6 +7025,44 @@ class BaseController {
|
|
|
6944
7025
|
}
|
|
6945
7026
|
}
|
|
6946
7027
|
|
|
7028
|
+
class DeviceInfoService {
|
|
7029
|
+
constructor(platform) {
|
|
7030
|
+
this.platform = platform;
|
|
7031
|
+
}
|
|
7032
|
+
async get() {
|
|
7033
|
+
const fp = await FingerPrint.load();
|
|
7034
|
+
const fingerprint = await fp.get();
|
|
7035
|
+
const parser = new UAParser(window.navigator.userAgent);
|
|
7036
|
+
return new DeviceInfo({
|
|
7037
|
+
deviceId: fingerprint.visitorId,
|
|
7038
|
+
osName: parser.getOS().name,
|
|
7039
|
+
osVersion: parser.getOS().version,
|
|
7040
|
+
browserName: parser.getBrowser().name,
|
|
7041
|
+
browserVersion: parser.getBrowser().version,
|
|
7042
|
+
device: null,
|
|
7043
|
+
...(isPlatformBrowser(this.platform)
|
|
7044
|
+
? {
|
|
7045
|
+
language: window.navigator.language,
|
|
7046
|
+
theme: window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
|
|
7047
|
+
? DeviceTheme.dark
|
|
7048
|
+
: window.matchMedia && window.matchMedia('(prefers-color-scheme: light)').matches
|
|
7049
|
+
? DeviceTheme.light
|
|
7050
|
+
: null,
|
|
7051
|
+
}
|
|
7052
|
+
: {})
|
|
7053
|
+
});
|
|
7054
|
+
}
|
|
7055
|
+
}
|
|
7056
|
+
DeviceInfoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DeviceInfoService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7057
|
+
DeviceInfoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DeviceInfoService, providedIn: 'root' });
|
|
7058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DeviceInfoService, decorators: [{
|
|
7059
|
+
type: Injectable,
|
|
7060
|
+
args: [{ providedIn: 'root' }]
|
|
7061
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
7062
|
+
type: Inject,
|
|
7063
|
+
args: [PLATFORM_ID]
|
|
7064
|
+
}] }]; } });
|
|
7065
|
+
|
|
6947
7066
|
class OldStorageEngineField {
|
|
6948
7067
|
constructor(defaultValue, model) {
|
|
6949
7068
|
this.model = model;
|
|
@@ -7375,5 +7494,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
7375
7494
|
* Generated bundle index. Do not edit.
|
|
7376
7495
|
*/
|
|
7377
7496
|
|
|
7378
|
-
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 };
|
|
7497
|
+
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 };
|
|
7379
7498
|
//# sourceMappingURL=mtgame-core.mjs.map
|