@mtgame/core 0.1.157 → 0.2.1
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 +58 -36
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/basketball-game-sub-log-types.js +5 -2
- package/esm2015/models/basketball-game-config.js +4 -2
- package/esm2015/models/basketball-game-log.js +4 -1
- package/esm2015/models/league.js +3 -1
- package/esm2015/models/tournament.js +8 -1
- package/esm2015/services/centrifugo.service.js +27 -34
- package/fesm2015/mtgame-core.js +46 -36
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/basketball-game-sub-log-types.d.ts +3 -0
- package/models/basketball-game-config.d.ts +2 -1
- package/models/basketball-game-log.d.ts +4 -1
- package/models/league.d.ts +1 -0
- package/models/tournament.d.ts +5 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +4 -4
- package/services/centrifugo.service.d.ts +1 -1
package/fesm2015/mtgame-core.js
CHANGED
|
@@ -3,11 +3,10 @@ import * as i0 from '@angular/core';
|
|
|
3
3
|
import { Injectable, Optional, Inject, Injector, PLATFORM_ID } from '@angular/core';
|
|
4
4
|
import * as i1 from '@angular/common/http';
|
|
5
5
|
import { HttpParams, HttpClient } from '@angular/common/http';
|
|
6
|
-
import { map, filter, take, delay, switchMap } from 'rxjs/operators';
|
|
7
|
-
import { BehaviorSubject,
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import * as Centrifuge from 'centrifuge';
|
|
6
|
+
import { map, filter, take, tap, delay, switchMap } from 'rxjs/operators';
|
|
7
|
+
import { BehaviorSubject, Subject, ReplaySubject, of } from 'rxjs';
|
|
8
|
+
import { Centrifuge } from 'centrifuge';
|
|
9
|
+
import { Subject as Subject$1 } from 'rxjs/internal/Subject';
|
|
11
10
|
import { captureException } from '@sentry/angular';
|
|
12
11
|
import { FormGroup } from '@angular/forms';
|
|
13
12
|
import { isPlatformBrowser } from '@angular/common';
|
|
@@ -990,12 +989,14 @@ League = __decorate([
|
|
|
990
989
|
documents_count: 'documentsCount',
|
|
991
990
|
closest_game_datetime: 'closestGameDatetime',
|
|
992
991
|
cover: 'cover',
|
|
992
|
+
cover_mobile: 'coverMobile',
|
|
993
993
|
about: 'about',
|
|
994
994
|
},
|
|
995
995
|
relation: {
|
|
996
996
|
organization: Organization,
|
|
997
997
|
logo: File,
|
|
998
998
|
cover: File,
|
|
999
|
+
coverMobile: File,
|
|
999
1000
|
sport: Sport,
|
|
1000
1001
|
}
|
|
1001
1002
|
})
|
|
@@ -1094,6 +1095,11 @@ var OvertimeTypes;
|
|
|
1094
1095
|
OvertimeTypes[OvertimeTypes["penalties"] = 8] = "penalties";
|
|
1095
1096
|
OvertimeTypes[OvertimeTypes["time_and_penalties"] = 9] = "time_and_penalties";
|
|
1096
1097
|
})(OvertimeTypes || (OvertimeTypes = {}));
|
|
1098
|
+
var TimerTypes;
|
|
1099
|
+
(function (TimerTypes) {
|
|
1100
|
+
TimerTypes[TimerTypes["backward"] = 1] = "backward";
|
|
1101
|
+
TimerTypes[TimerTypes["forward"] = 2] = "forward";
|
|
1102
|
+
})(TimerTypes || (TimerTypes = {}));
|
|
1097
1103
|
let TournamentSettings = class TournamentSettings extends BaseModel {
|
|
1098
1104
|
get genderTitle() {
|
|
1099
1105
|
const yearDiff = new Date().getFullYear() - this.birthYearFrom;
|
|
@@ -1165,6 +1171,7 @@ TournamentSettings = __decorate([
|
|
|
1165
1171
|
major_penalty_time: 'majorPenaltyTime',
|
|
1166
1172
|
misconduct_penalty_time: 'misconductPenaltyTime',
|
|
1167
1173
|
game_misconduct_penalty_time: 'gameMisconductPenaltyTime',
|
|
1174
|
+
timer_type: 'timerType',
|
|
1168
1175
|
},
|
|
1169
1176
|
relation: {
|
|
1170
1177
|
type: enumField(TournamentTypes),
|
|
@@ -1174,6 +1181,7 @@ TournamentSettings = __decorate([
|
|
|
1174
1181
|
rugbyStatisticType: enumField(RugbyStatisticTypes),
|
|
1175
1182
|
gameTimeType: enumField(GameTimeTypes),
|
|
1176
1183
|
overtimeType: enumField(OvertimeTypes),
|
|
1184
|
+
timerType: enumField(TimerTypes),
|
|
1177
1185
|
}
|
|
1178
1186
|
})
|
|
1179
1187
|
], TournamentSettings);
|
|
@@ -1313,11 +1321,13 @@ BasketballGameConfig = __decorate([
|
|
|
1313
1321
|
statistic_type: 'statisticType',
|
|
1314
1322
|
shot_clock_enabled: 'shotClockEnabled',
|
|
1315
1323
|
game_time_type: 'gameTimeType',
|
|
1324
|
+
timer_type: 'timerType',
|
|
1316
1325
|
},
|
|
1317
1326
|
relation: {
|
|
1318
1327
|
overtimeType: enumField(OvertimeTypes),
|
|
1319
1328
|
statisticType: enumField(BasketballStatisticTypes),
|
|
1320
1329
|
gameTimeType: enumField(GameTimeTypes),
|
|
1330
|
+
timerType: enumField(TimerTypes),
|
|
1321
1331
|
}
|
|
1322
1332
|
})
|
|
1323
1333
|
], BasketballGameConfig);
|
|
@@ -2758,6 +2768,9 @@ var BasketballSubLogTypes;
|
|
|
2758
2768
|
BasketballSubLogTypes[BasketballSubLogTypes["five_seconds"] = 21] = "five_seconds";
|
|
2759
2769
|
BasketballSubLogTypes[BasketballSubLogTypes["eight_seconds"] = 22] = "eight_seconds";
|
|
2760
2770
|
BasketballSubLogTypes[BasketballSubLogTypes["twenty_four_seconds"] = 23] = "twenty_four_seconds";
|
|
2771
|
+
BasketballSubLogTypes[BasketballSubLogTypes["back_court"] = 24] = "back_court";
|
|
2772
|
+
BasketballSubLogTypes[BasketballSubLogTypes["offensive_goal_tending"] = 25] = "offensive_goal_tending";
|
|
2773
|
+
BasketballSubLogTypes[BasketballSubLogTypes["other_turnover"] = 26] = "other_turnover";
|
|
2761
2774
|
})(BasketballSubLogTypes || (BasketballSubLogTypes = {}));
|
|
2762
2775
|
var BasketballCourtZones;
|
|
2763
2776
|
(function (BasketballCourtZones) {
|
|
@@ -9721,12 +9734,15 @@ const BasketballGameSubLogTypesLocalization = {
|
|
|
9721
9734
|
[BasketballSubLogTypes.bad_pass]: 'Плохой пас',
|
|
9722
9735
|
[BasketballSubLogTypes.ball_handling]: 'На ведении',
|
|
9723
9736
|
[BasketballSubLogTypes.travel]: 'Пробежка',
|
|
9724
|
-
[BasketballSubLogTypes.double_dribble]: '
|
|
9737
|
+
[BasketballSubLogTypes.double_dribble]: 'Двойное ведение',
|
|
9725
9738
|
[BasketballSubLogTypes.out_of_bounds]: 'Заступ в аут',
|
|
9726
9739
|
[BasketballSubLogTypes.three_seconds]: '3 секунды',
|
|
9727
9740
|
[BasketballSubLogTypes.five_seconds]: '5 секунд',
|
|
9728
9741
|
[BasketballSubLogTypes.eight_seconds]: '8 секунд',
|
|
9729
9742
|
[BasketballSubLogTypes.twenty_four_seconds]: '24 секунды',
|
|
9743
|
+
[BasketballSubLogTypes.back_court]: 'Зона',
|
|
9744
|
+
[BasketballSubLogTypes.offensive_goal_tending]: 'Гоалтендинг',
|
|
9745
|
+
[BasketballSubLogTypes.other_turnover]: 'Другое',
|
|
9730
9746
|
};
|
|
9731
9747
|
|
|
9732
9748
|
const HockeyGameLogTypeLocalization = {
|
|
@@ -10281,11 +10297,8 @@ class CentrifugoService {
|
|
|
10281
10297
|
return this.channels$[channel];
|
|
10282
10298
|
}
|
|
10283
10299
|
this.channels$[channel] = new Subject();
|
|
10284
|
-
|
|
10300
|
+
this.connect().subscribe(connected => {
|
|
10285
10301
|
this.subscriptions[channel] = this.addEngineSubscription(channel);
|
|
10286
|
-
setTimeout(() => {
|
|
10287
|
-
subscription.unsubscribe();
|
|
10288
|
-
});
|
|
10289
10302
|
});
|
|
10290
10303
|
return this.channels$[channel];
|
|
10291
10304
|
}
|
|
@@ -10302,60 +10315,57 @@ class CentrifugoService {
|
|
|
10302
10315
|
connect() {
|
|
10303
10316
|
if (!this.initializeEngineSubject) {
|
|
10304
10317
|
this.initializeEngineSubject = new ReplaySubject(1);
|
|
10305
|
-
this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/
|
|
10318
|
+
this.httpClient.get(`${this.configService.get('apiUrl')}/api/v1/centrifugo_v2/`)
|
|
10306
10319
|
.subscribe(config => {
|
|
10307
10320
|
this.initializeEngine({
|
|
10308
10321
|
url: this.configService.get('centrifugoUrl'),
|
|
10309
|
-
user: config.user,
|
|
10310
|
-
timestamp: config.timestamp,
|
|
10311
10322
|
token: config.token,
|
|
10312
10323
|
transports: ['websocket']
|
|
10313
10324
|
});
|
|
10314
|
-
this.centrifuge.
|
|
10315
|
-
this.centrifuge.on('connect', () => {
|
|
10325
|
+
this.centrifuge.on('connected', () => {
|
|
10316
10326
|
this.initializeEngineSubject.next(true);
|
|
10317
10327
|
this.connectedSubject.next(true);
|
|
10318
10328
|
});
|
|
10319
|
-
this.centrifuge.on('
|
|
10329
|
+
this.centrifuge.on('disconnected', () => {
|
|
10320
10330
|
this.connectedSubject.next(false);
|
|
10331
|
+
this.initializeEngineSubject.next(false);
|
|
10321
10332
|
});
|
|
10333
|
+
this.centrifuge.connect();
|
|
10322
10334
|
});
|
|
10323
10335
|
}
|
|
10324
10336
|
return this.initializeEngineSubject.pipe(filter(item => Boolean(item)), take(1));
|
|
10325
10337
|
}
|
|
10326
10338
|
publish(channel, message) {
|
|
10327
|
-
return
|
|
10328
|
-
this.connect().subscribe(() => {
|
|
10329
|
-
if (!this.subscriptions[channel]) {
|
|
10330
|
-
this.subscriptions[channel] = this.addEngineSubscription(channel);
|
|
10331
|
-
}
|
|
10332
|
-
this.subscriptions[channel].publish(message).then(res => {
|
|
10333
|
-
observer.next(res);
|
|
10334
|
-
observer.complete();
|
|
10335
|
-
}, error => {
|
|
10336
|
-
throw error;
|
|
10337
|
-
});
|
|
10338
|
-
});
|
|
10339
|
-
});
|
|
10339
|
+
return this.connect().pipe(tap(() => this.centrifuge.publish(channel, message)));
|
|
10340
10340
|
}
|
|
10341
10341
|
disconnect() {
|
|
10342
10342
|
this.centrifuge.disconnect();
|
|
10343
10343
|
this.initializeEngineSubject = undefined;
|
|
10344
|
+
for (const channel of Object.keys(this.channels$)) {
|
|
10345
|
+
this.unsubscribe(channel);
|
|
10346
|
+
}
|
|
10344
10347
|
this.channels$ = {};
|
|
10345
10348
|
this.subscriptions = {};
|
|
10346
10349
|
}
|
|
10347
10350
|
initializeEngine(config) {
|
|
10348
|
-
this.centrifuge = new Centrifuge(config
|
|
10351
|
+
this.centrifuge = new Centrifuge(config.url, {
|
|
10352
|
+
token: config.token,
|
|
10353
|
+
});
|
|
10349
10354
|
}
|
|
10350
10355
|
addEngineSubscription(channel) {
|
|
10351
|
-
|
|
10356
|
+
const sub = this.centrifuge.newSubscription(channel);
|
|
10357
|
+
sub.on('publication', ctx => {
|
|
10358
|
+
this.resolveMessage(channel, ctx.data);
|
|
10359
|
+
});
|
|
10360
|
+
sub.subscribe();
|
|
10361
|
+
return sub;
|
|
10352
10362
|
}
|
|
10353
|
-
resolveMessage(
|
|
10354
|
-
const channel = response.channel;
|
|
10363
|
+
resolveMessage(channel, message) {
|
|
10355
10364
|
if (!this.channels$[channel]) {
|
|
10356
10365
|
return;
|
|
10357
10366
|
}
|
|
10358
|
-
|
|
10367
|
+
console.log(message);
|
|
10368
|
+
this.channels$[channel].next(message);
|
|
10359
10369
|
}
|
|
10360
10370
|
}
|
|
10361
10371
|
CentrifugoService.ɵprov = i0.ɵɵdefineInjectable({ factory: function CentrifugoService_Factory() { return new CentrifugoService(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(ConfigService)); }, token: CentrifugoService, providedIn: "root" });
|
|
@@ -10450,7 +10460,7 @@ function componentDestroyed(component) {
|
|
|
10450
10460
|
throw new Error('Use @UntilDestroy decorator in class');
|
|
10451
10461
|
}
|
|
10452
10462
|
if (!component.__componentDestroyed$) {
|
|
10453
|
-
component.__componentDestroyed$ = new Subject();
|
|
10463
|
+
component.__componentDestroyed$ = new Subject$1();
|
|
10454
10464
|
}
|
|
10455
10465
|
return component.__componentDestroyed$;
|
|
10456
10466
|
}
|
|
@@ -10649,5 +10659,5 @@ HttpCookieInterceptor.ctorParameters = () => [
|
|
|
10649
10659
|
* Generated bundle index. Do not edit.
|
|
10650
10660
|
*/
|
|
10651
10661
|
|
|
10652
|
-
export { Achievement, AchievementTypes, BannerLocation, BaseModel, BaseService, BasketballCourtSides, BasketballCourtZones, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameSubLogTypesLocalization, BasketballGameTeamStatistic, BasketballPenaltyTypes, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, BasketballSubLogTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DateField, DateTimeField, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, FootballGameApi, FootballGameConfig, FootballGameLog, FootballGameLogTypeLocalization, FootballGameLogTypes, FootballGameStatistic, FootballGameTeamStatistic, FootballProfile, FootballStatistic, FootballWorkFoot, FootballWorkFootLocalization, Game, GameBaseApi, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameBill, GameBillStatusLocalization, GameBillStatuses, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameRugbyPosition, GameRugbyPositionLocalization, GameStatuses, GameTeamAdditionalData, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserDisqualification, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, GameWaterpoloPosition, GameWaterpoloPositionLocalization, GameWaterpoloPositionShortRuLocalization, 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, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlaylist, LocalStorageEngine, MODEL_MAPPING_FIELDS_KEY, MODEL_RELATION_KEY, MODEL_TO_BACK_KEY, MODEL_TO_FRONT_KEY, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, 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, RoundTeamGame, RugbyFoulGameStage, RugbyFoulGameStageLocalization, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, RugbyStatisticTypes, SCORE_LOG_TYPES, Sport, SportTypes, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamAchievement, TeamAdditionalData, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, TeamsAndUsers, ToBackHook, ToFrontHook, 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, TournamentTeamShort, 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, WaterpoloAdvantageTypes, WaterpoloGameApi, WaterpoloGameConfig, WaterpoloGameLog, WaterpoloGameLogTypeLocalization, WaterpoloGameLogTypes, WaterpoloGameStatistic, WaterpoloGameTeamStatistic, WaterpoloProfile, WaterpoloStatistic, WaterpoloWorkHand, WaterpoloWorkHandLocalization, WorkHand, WorkHandLocalization, addItemInArray, addItemsInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, parseDate, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
|
|
10662
|
+
export { Achievement, AchievementTypes, BannerLocation, BaseModel, BaseService, BasketballCourtSides, BasketballCourtZones, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameSubLogTypesLocalization, BasketballGameTeamStatistic, BasketballPenaltyTypes, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, BasketballSubLogTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DateField, DateTimeField, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, FootballGameApi, FootballGameConfig, FootballGameLog, FootballGameLogTypeLocalization, FootballGameLogTypes, FootballGameStatistic, FootballGameTeamStatistic, FootballProfile, FootballStatistic, FootballWorkFoot, FootballWorkFootLocalization, Game, GameBaseApi, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameBill, GameBillStatusLocalization, GameBillStatuses, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameRugbyPosition, GameRugbyPositionLocalization, GameStatuses, GameTeamAdditionalData, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserDisqualification, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, GameWaterpoloPosition, GameWaterpoloPositionLocalization, GameWaterpoloPositionShortRuLocalization, 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, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlaylist, LocalStorageEngine, MODEL_MAPPING_FIELDS_KEY, MODEL_RELATION_KEY, MODEL_TO_BACK_KEY, MODEL_TO_FRONT_KEY, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, 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, RoundTeamGame, RugbyFoulGameStage, RugbyFoulGameStageLocalization, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, RugbyStatisticTypes, SCORE_LOG_TYPES, Sport, SportTypes, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamAchievement, TeamAdditionalData, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, TeamsAndUsers, TimerTypes, ToBackHook, ToFrontHook, 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, TournamentTeamShort, 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, WaterpoloAdvantageTypes, WaterpoloGameApi, WaterpoloGameConfig, WaterpoloGameLog, WaterpoloGameLogTypeLocalization, WaterpoloGameLogTypes, WaterpoloGameStatistic, WaterpoloGameTeamStatistic, WaterpoloProfile, WaterpoloStatistic, WaterpoloWorkHand, WaterpoloWorkHandLocalization, WorkHand, WorkHandLocalization, addItemInArray, addItemsInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, parseDate, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
|
|
10653
10663
|
//# sourceMappingURL=mtgame-core.js.map
|