@mtgame/core 2.0.5 → 2.0.7
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/esm2020/localization/basketball-game-sub-log-types.mjs +5 -2
- package/esm2020/localization/hockey-game-log-types.mjs +5 -2
- package/esm2020/models/basketball-game-log.mjs +4 -1
- package/esm2020/models/hockey-game-log.mjs +4 -1
- package/esm2020/models/hockey-game-statistic.mjs +1 -1
- package/esm2020/models/hockey-statistic.mjs +1 -1
- package/esm2020/models/league-field-base-value.mjs +4 -0
- package/esm2020/models/league-field-base.mjs +28 -0
- package/esm2020/models/league-player-field-value.mjs +17 -0
- package/esm2020/models/league-player-field.mjs +14 -0
- package/esm2020/models/league-player.mjs +12 -4
- package/esm2020/models/league-team-field.mjs +14 -0
- package/esm2020/models/league.mjs +2 -1
- package/esm2020/models/public-api.mjs +7 -1
- package/esm2020/models/tournament-team-field-value.mjs +17 -0
- package/esm2020/models/tournament-team.mjs +4 -2
- package/esm2020/models/tournament.mjs +2 -1
- package/esm2020/services/centrifugo.service.mjs +6 -3
- package/fesm2015/mtgame-core.mjs +101 -7
- package/fesm2015/mtgame-core.mjs.map +1 -1
- package/fesm2020/mtgame-core.mjs +104 -7
- package/fesm2020/mtgame-core.mjs.map +1 -1
- package/localization/basketball-game-sub-log-types.d.ts +3 -0
- package/localization/hockey-game-log-types.d.ts +3 -0
- package/models/basketball-game-log.d.ts +4 -1
- package/models/hockey-game-log.d.ts +5 -1
- package/models/hockey-game-statistic.d.ts +5 -0
- package/models/hockey-statistic.d.ts +5 -0
- package/models/league-field-base-value.d.ts +7 -0
- package/models/league-field-base.d.ts +24 -0
- package/models/league-player-field-value.d.ts +6 -0
- package/models/league-player-field.d.ts +3 -0
- package/models/league-player.d.ts +9 -1
- package/models/league-team-field.d.ts +3 -0
- package/models/league.d.ts +1 -0
- package/models/public-api.d.ts +6 -0
- package/models/tournament-team-field-value.d.ts +6 -0
- package/models/tournament-team.d.ts +2 -0
- package/models/tournament.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/mtgame-core.mjs
CHANGED
|
@@ -566,6 +566,7 @@ League = __decorate([
|
|
|
566
566
|
organization: nestedModel(Organization),
|
|
567
567
|
logo: nestedModel(File),
|
|
568
568
|
cover: nestedModel(File),
|
|
569
|
+
coverMobile: nestedModel(File),
|
|
569
570
|
sport: nestedModel(Sport),
|
|
570
571
|
}
|
|
571
572
|
})
|
|
@@ -608,6 +609,57 @@ TournamentDivision = __decorate([
|
|
|
608
609
|
})
|
|
609
610
|
], TournamentDivision);
|
|
610
611
|
|
|
612
|
+
class LeagueFieldBaseValue extends BaseModel {
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
var LeagueFieldTypes;
|
|
616
|
+
(function (LeagueFieldTypes) {
|
|
617
|
+
LeagueFieldTypes[LeagueFieldTypes["text"] = 1] = "text";
|
|
618
|
+
LeagueFieldTypes[LeagueFieldTypes["select"] = 2] = "select";
|
|
619
|
+
LeagueFieldTypes[LeagueFieldTypes["file"] = 3] = "file";
|
|
620
|
+
})(LeagueFieldTypes || (LeagueFieldTypes = {}));
|
|
621
|
+
class LeagueFieldBase extends BaseModel {
|
|
622
|
+
constructor() {
|
|
623
|
+
super(...arguments);
|
|
624
|
+
this._variantsMapping = {};
|
|
625
|
+
this._variants = [];
|
|
626
|
+
}
|
|
627
|
+
set variants(value) {
|
|
628
|
+
this._variants = value;
|
|
629
|
+
this._variantsMapping = value.reduce((acc, item) => ({
|
|
630
|
+
...acc,
|
|
631
|
+
[item.uuid]: item.name
|
|
632
|
+
}), {});
|
|
633
|
+
}
|
|
634
|
+
get variants() {
|
|
635
|
+
return this._variants;
|
|
636
|
+
}
|
|
637
|
+
getName(uuid) {
|
|
638
|
+
return this._variantsMapping[uuid];
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
let LeagueTeamField = class LeagueTeamField extends LeagueFieldBase {
|
|
643
|
+
};
|
|
644
|
+
LeagueTeamField = __decorate([
|
|
645
|
+
Model({
|
|
646
|
+
relation: {
|
|
647
|
+
type: enumField(LeagueFieldTypes)
|
|
648
|
+
}
|
|
649
|
+
})
|
|
650
|
+
], LeagueTeamField);
|
|
651
|
+
|
|
652
|
+
let TournamentTeamFieldValue = class TournamentTeamFieldValue extends LeagueFieldBaseValue {
|
|
653
|
+
};
|
|
654
|
+
TournamentTeamFieldValue = __decorate([
|
|
655
|
+
Model({
|
|
656
|
+
relation: {
|
|
657
|
+
file: nestedModel(File),
|
|
658
|
+
leagueTeamField: nestedModel(LeagueTeamField),
|
|
659
|
+
}
|
|
660
|
+
})
|
|
661
|
+
], TournamentTeamFieldValue);
|
|
662
|
+
|
|
611
663
|
let TeamAdditionalData = class TeamAdditionalData extends BaseModel {
|
|
612
664
|
};
|
|
613
665
|
TeamAdditionalData = __decorate([
|
|
@@ -631,6 +683,7 @@ TournamentTeam = __decorate([
|
|
|
631
683
|
group: nestedModel(TournamentGroup),
|
|
632
684
|
division: nestedModel(TournamentDivision),
|
|
633
685
|
additionalData: nestedModel(TeamAdditionalData),
|
|
686
|
+
fieldValues: listField(nestedModel(TournamentTeamFieldValue)),
|
|
634
687
|
}
|
|
635
688
|
})
|
|
636
689
|
], TournamentTeam);
|
|
@@ -762,6 +815,7 @@ Tournament = __decorate([
|
|
|
762
815
|
relation: {
|
|
763
816
|
logo: nestedModel(File),
|
|
764
817
|
cover: nestedModel(File),
|
|
818
|
+
coverMobile: nestedModel(File),
|
|
765
819
|
previewImage: nestedModel(File),
|
|
766
820
|
city: nestedModel(City),
|
|
767
821
|
sport: nestedModel(Sport),
|
|
@@ -1206,6 +1260,27 @@ TournamentDisqualification = __decorate([
|
|
|
1206
1260
|
})
|
|
1207
1261
|
], TournamentDisqualification);
|
|
1208
1262
|
|
|
1263
|
+
let LeaguePlayerField = class LeaguePlayerField extends LeagueFieldBase {
|
|
1264
|
+
};
|
|
1265
|
+
LeaguePlayerField = __decorate([
|
|
1266
|
+
Model({
|
|
1267
|
+
relation: {
|
|
1268
|
+
type: enumField(LeagueFieldTypes)
|
|
1269
|
+
}
|
|
1270
|
+
})
|
|
1271
|
+
], LeaguePlayerField);
|
|
1272
|
+
|
|
1273
|
+
let LeaguePlayerFieldValue = class LeaguePlayerFieldValue extends LeagueFieldBaseValue {
|
|
1274
|
+
};
|
|
1275
|
+
LeaguePlayerFieldValue = __decorate([
|
|
1276
|
+
Model({
|
|
1277
|
+
relation: {
|
|
1278
|
+
file: nestedModel(File),
|
|
1279
|
+
leaguePlayerField: nestedModel(LeaguePlayerField),
|
|
1280
|
+
}
|
|
1281
|
+
})
|
|
1282
|
+
], LeaguePlayerFieldValue);
|
|
1283
|
+
|
|
1209
1284
|
var Qualification;
|
|
1210
1285
|
(function (Qualification) {
|
|
1211
1286
|
Qualification[Qualification["practician"] = 1] = "practician";
|
|
@@ -1229,6 +1304,9 @@ var Qualification;
|
|
|
1229
1304
|
Qualification[Qualification["goalkeeper_khl"] = 19] = "goalkeeper_khl";
|
|
1230
1305
|
Qualification[Qualification["beginner"] = 20] = "beginner";
|
|
1231
1306
|
Qualification[Qualification["junior"] = 21] = "junior";
|
|
1307
|
+
Qualification[Qualification["debutant"] = 22] = "debutant";
|
|
1308
|
+
Qualification[Qualification["schoolchild"] = 23] = "schoolchild";
|
|
1309
|
+
Qualification[Qualification["preschool_child"] = 24] = "preschool_child";
|
|
1232
1310
|
})(Qualification || (Qualification = {}));
|
|
1233
1311
|
const QualificationLocalization = {
|
|
1234
1312
|
[Qualification.practician]: 'Практик',
|
|
@@ -1251,7 +1329,10 @@ const QualificationLocalization = {
|
|
|
1251
1329
|
[Qualification.goalkeeper_vhl]: 'Вратарь ВХЛ',
|
|
1252
1330
|
[Qualification.goalkeeper_khl]: 'Вратарь КХЛ',
|
|
1253
1331
|
[Qualification.beginner]: 'Новичок',
|
|
1254
|
-
[Qualification.junior]: 'Юниор'
|
|
1332
|
+
[Qualification.junior]: 'Юниор',
|
|
1333
|
+
[Qualification.debutant]: 'Дебютант',
|
|
1334
|
+
[Qualification.schoolchild]: 'Школьник',
|
|
1335
|
+
[Qualification.preschool_child]: 'Дошкольник',
|
|
1255
1336
|
};
|
|
1256
1337
|
let LeaguePlayer = class LeaguePlayer extends BaseModel {
|
|
1257
1338
|
get fullName() {
|
|
@@ -1277,7 +1358,8 @@ LeaguePlayer = __decorate([
|
|
|
1277
1358
|
birthDate: dateField,
|
|
1278
1359
|
photo: nestedModel(File),
|
|
1279
1360
|
user: nestedModel(User),
|
|
1280
|
-
qualification: enumField(Qualification)
|
|
1361
|
+
qualification: enumField(Qualification),
|
|
1362
|
+
fieldValues: listField(nestedModel(LeaguePlayerFieldValue)),
|
|
1281
1363
|
}
|
|
1282
1364
|
})
|
|
1283
1365
|
], LeaguePlayer);
|
|
@@ -1468,6 +1550,9 @@ var BasketballSubLogTypes;
|
|
|
1468
1550
|
BasketballSubLogTypes[BasketballSubLogTypes["five_seconds"] = 21] = "five_seconds";
|
|
1469
1551
|
BasketballSubLogTypes[BasketballSubLogTypes["eight_seconds"] = 22] = "eight_seconds";
|
|
1470
1552
|
BasketballSubLogTypes[BasketballSubLogTypes["twenty_four_seconds"] = 23] = "twenty_four_seconds";
|
|
1553
|
+
BasketballSubLogTypes[BasketballSubLogTypes["back_court"] = 24] = "back_court";
|
|
1554
|
+
BasketballSubLogTypes[BasketballSubLogTypes["offensive_goal_tending"] = 25] = "offensive_goal_tending";
|
|
1555
|
+
BasketballSubLogTypes[BasketballSubLogTypes["other_turnover"] = 26] = "other_turnover";
|
|
1471
1556
|
})(BasketballSubLogTypes || (BasketballSubLogTypes = {}));
|
|
1472
1557
|
var BasketballCourtZones;
|
|
1473
1558
|
(function (BasketballCourtZones) {
|
|
@@ -2101,6 +2186,9 @@ var HockeyGameLogTypes;
|
|
|
2101
2186
|
HockeyGameLogTypes[HockeyGameLogTypes["after_game_shootout_goal"] = 24] = "after_game_shootout_goal";
|
|
2102
2187
|
HockeyGameLogTypes[HockeyGameLogTypes["after_game_shootout_save"] = 25] = "after_game_shootout_save";
|
|
2103
2188
|
HockeyGameLogTypes[HockeyGameLogTypes["shootout_save"] = 26] = "shootout_save";
|
|
2189
|
+
HockeyGameLogTypes[HockeyGameLogTypes["steal"] = 27] = "steal";
|
|
2190
|
+
HockeyGameLogTypes[HockeyGameLogTypes["loss"] = 28] = "loss";
|
|
2191
|
+
HockeyGameLogTypes[HockeyGameLogTypes["sharp_pass"] = 29] = "sharp_pass";
|
|
2104
2192
|
})(HockeyGameLogTypes || (HockeyGameLogTypes = {}));
|
|
2105
2193
|
var HockeyAdvantageTypes;
|
|
2106
2194
|
(function (HockeyAdvantageTypes) {
|
|
@@ -6262,12 +6350,15 @@ const BasketballGameSubLogTypesLocalization = {
|
|
|
6262
6350
|
[BasketballSubLogTypes.bad_pass]: 'Плохой пас',
|
|
6263
6351
|
[BasketballSubLogTypes.ball_handling]: 'На ведении',
|
|
6264
6352
|
[BasketballSubLogTypes.travel]: 'Пробежка',
|
|
6265
|
-
[BasketballSubLogTypes.double_dribble]: '
|
|
6353
|
+
[BasketballSubLogTypes.double_dribble]: 'Двойное ведение',
|
|
6266
6354
|
[BasketballSubLogTypes.out_of_bounds]: 'Заступ в аут',
|
|
6267
6355
|
[BasketballSubLogTypes.three_seconds]: '3 секунды',
|
|
6268
6356
|
[BasketballSubLogTypes.five_seconds]: '5 секунд',
|
|
6269
6357
|
[BasketballSubLogTypes.eight_seconds]: '8 секунд',
|
|
6270
6358
|
[BasketballSubLogTypes.twenty_four_seconds]: '24 секунды',
|
|
6359
|
+
[BasketballSubLogTypes.back_court]: 'Зона',
|
|
6360
|
+
[BasketballSubLogTypes.offensive_goal_tending]: 'Гоалтендинг',
|
|
6361
|
+
[BasketballSubLogTypes.other_turnover]: 'Другое',
|
|
6271
6362
|
};
|
|
6272
6363
|
|
|
6273
6364
|
const HockeyGameLogTypeLocalization = {
|
|
@@ -6296,7 +6387,10 @@ const HockeyGameLogTypeLocalization = {
|
|
|
6296
6387
|
[HockeyGameLogTypes.after_game_shootout_save]: 'Отражен бросок',
|
|
6297
6388
|
[HockeyGameLogTypes.timeout]: 'Таймаут',
|
|
6298
6389
|
[HockeyGameLogTypes.penalty_start]: 'Начало штрафного времени',
|
|
6299
|
-
[HockeyGameLogTypes.penalty_end]: 'Конец штрафного времени'
|
|
6390
|
+
[HockeyGameLogTypes.penalty_end]: 'Конец штрафного времени',
|
|
6391
|
+
[HockeyGameLogTypes.steal]: 'Отбор',
|
|
6392
|
+
[HockeyGameLogTypes.loss]: 'Потеря',
|
|
6393
|
+
[HockeyGameLogTypes.sharp_pass]: 'Острая передача',
|
|
6300
6394
|
};
|
|
6301
6395
|
|
|
6302
6396
|
const FootballGameLogTypeLocalization = {
|
|
@@ -6749,7 +6843,7 @@ class CentrifugoService {
|
|
|
6749
6843
|
return this.channels$[channel];
|
|
6750
6844
|
}
|
|
6751
6845
|
this.channels$[channel] = new Subject();
|
|
6752
|
-
this.connect().
|
|
6846
|
+
this.connect().subscribe(connected => {
|
|
6753
6847
|
this.subscriptions[channel] = this.addEngineSubscription(channel);
|
|
6754
6848
|
});
|
|
6755
6849
|
return this.channels$[channel];
|
|
@@ -6785,7 +6879,7 @@ class CentrifugoService {
|
|
|
6785
6879
|
this.centrifuge.connect();
|
|
6786
6880
|
});
|
|
6787
6881
|
}
|
|
6788
|
-
return this.initializeEngineSubject;
|
|
6882
|
+
return this.initializeEngineSubject.pipe(filter(item => Boolean(item)), take(1));
|
|
6789
6883
|
}
|
|
6790
6884
|
async publish(channel, message) {
|
|
6791
6885
|
const connected = await this.connect().pipe(filter(item => Boolean(item)), take(1)).toPromise();
|
|
@@ -6806,7 +6900,10 @@ class CentrifugoService {
|
|
|
6806
6900
|
initializeEngine(config) {
|
|
6807
6901
|
this.centrifuge = new Centrifuge(config.url, {
|
|
6808
6902
|
token: config.token,
|
|
6903
|
+
debug: true,
|
|
6809
6904
|
});
|
|
6905
|
+
// @ts-ignore
|
|
6906
|
+
this.centrifuge._debugEnabled = false;
|
|
6810
6907
|
}
|
|
6811
6908
|
addEngineSubscription(channel) {
|
|
6812
6909
|
const sub = this.centrifuge.newSubscription(channel);
|
|
@@ -7278,5 +7375,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
7278
7375
|
* Generated bundle index. Do not edit.
|
|
7279
7376
|
*/
|
|
7280
7377
|
|
|
7281
|
-
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, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlaylist, 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, 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 };
|
|
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 };
|
|
7282
7379
|
//# sourceMappingURL=mtgame-core.mjs.map
|