@mtgame/core 2.0.23 → 2.0.25
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/models/tournament.mjs +17 -5
- package/fesm2015/mtgame-core.mjs +108 -97
- package/fesm2015/mtgame-core.mjs.map +1 -1
- package/fesm2020/mtgame-core.mjs +111 -100
- package/fesm2020/mtgame-core.mjs.map +1 -1
- package/models/tournament.d.ts +14 -4
- package/package.json +1 -1
package/fesm2020/mtgame-core.mjs
CHANGED
|
@@ -606,102 +606,6 @@ TournamentSeason = __decorate([
|
|
|
606
606
|
})
|
|
607
607
|
], TournamentSeason);
|
|
608
608
|
|
|
609
|
-
let TournamentGroup = class TournamentGroup extends BaseModel {
|
|
610
|
-
};
|
|
611
|
-
TournamentGroup = __decorate([
|
|
612
|
-
Model()
|
|
613
|
-
], TournamentGroup);
|
|
614
|
-
|
|
615
|
-
let TournamentDivision = class TournamentDivision extends BaseModel {
|
|
616
|
-
};
|
|
617
|
-
TournamentDivision = __decorate([
|
|
618
|
-
Model({
|
|
619
|
-
relation: {
|
|
620
|
-
cover: nestedModel(File),
|
|
621
|
-
}
|
|
622
|
-
})
|
|
623
|
-
], TournamentDivision);
|
|
624
|
-
|
|
625
|
-
class LeagueFieldBaseValue extends BaseModel {
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
var LeagueFieldTypes;
|
|
629
|
-
(function (LeagueFieldTypes) {
|
|
630
|
-
LeagueFieldTypes[LeagueFieldTypes["text"] = 1] = "text";
|
|
631
|
-
LeagueFieldTypes[LeagueFieldTypes["select"] = 2] = "select";
|
|
632
|
-
LeagueFieldTypes[LeagueFieldTypes["file"] = 3] = "file";
|
|
633
|
-
})(LeagueFieldTypes || (LeagueFieldTypes = {}));
|
|
634
|
-
class LeagueFieldBase extends BaseModel {
|
|
635
|
-
constructor() {
|
|
636
|
-
super(...arguments);
|
|
637
|
-
this._variantsMapping = {};
|
|
638
|
-
this._variants = [];
|
|
639
|
-
}
|
|
640
|
-
set variants(value) {
|
|
641
|
-
this._variants = value;
|
|
642
|
-
this._variantsMapping = value.reduce((acc, item) => ({
|
|
643
|
-
...acc,
|
|
644
|
-
[item.uuid]: item.name
|
|
645
|
-
}), {});
|
|
646
|
-
}
|
|
647
|
-
get variants() {
|
|
648
|
-
return this._variants;
|
|
649
|
-
}
|
|
650
|
-
getName(uuid) {
|
|
651
|
-
return this._variantsMapping[uuid];
|
|
652
|
-
}
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
let LeagueTeamField = class LeagueTeamField extends LeagueFieldBase {
|
|
656
|
-
};
|
|
657
|
-
LeagueTeamField = __decorate([
|
|
658
|
-
Model({
|
|
659
|
-
relation: {
|
|
660
|
-
type: enumField(LeagueFieldTypes)
|
|
661
|
-
}
|
|
662
|
-
})
|
|
663
|
-
], LeagueTeamField);
|
|
664
|
-
|
|
665
|
-
let TournamentTeamFieldValue = class TournamentTeamFieldValue extends LeagueFieldBaseValue {
|
|
666
|
-
};
|
|
667
|
-
TournamentTeamFieldValue = __decorate([
|
|
668
|
-
Model({
|
|
669
|
-
relation: {
|
|
670
|
-
file: nestedModel(File),
|
|
671
|
-
leagueTeamField: nestedModel(LeagueTeamField),
|
|
672
|
-
}
|
|
673
|
-
})
|
|
674
|
-
], TournamentTeamFieldValue);
|
|
675
|
-
|
|
676
|
-
let TeamAdditionalData = class TeamAdditionalData extends BaseModel {
|
|
677
|
-
};
|
|
678
|
-
TeamAdditionalData = __decorate([
|
|
679
|
-
Model()
|
|
680
|
-
], TeamAdditionalData);
|
|
681
|
-
let TournamentTeam = class TournamentTeam extends BaseModel {
|
|
682
|
-
get gamesWonPercent() {
|
|
683
|
-
if (!this.gamesCount) {
|
|
684
|
-
return 0;
|
|
685
|
-
}
|
|
686
|
-
return Math.floor(1000 * this.wonGamesCount / this.gamesCount) / 10;
|
|
687
|
-
}
|
|
688
|
-
};
|
|
689
|
-
TournamentTeam = __decorate([
|
|
690
|
-
Model({
|
|
691
|
-
relation: {
|
|
692
|
-
logo: nestedModel(File),
|
|
693
|
-
teamPhoto: nestedModel(File),
|
|
694
|
-
teamUniform: nestedModel(File),
|
|
695
|
-
team: nestedModel(Team),
|
|
696
|
-
group: nestedModel(TournamentGroup),
|
|
697
|
-
division: nestedModel(TournamentDivision),
|
|
698
|
-
additionalData: nestedModel(TeamAdditionalData),
|
|
699
|
-
fieldValues: listField(nestedModel(TournamentTeamFieldValue)),
|
|
700
|
-
tournament: nestedModel(Tournament),
|
|
701
|
-
}
|
|
702
|
-
})
|
|
703
|
-
], TournamentTeam);
|
|
704
|
-
|
|
705
609
|
var TournamentTypes;
|
|
706
610
|
(function (TournamentTypes) {
|
|
707
611
|
TournamentTypes["group"] = "group";
|
|
@@ -797,6 +701,16 @@ TournamentSettings = __decorate([
|
|
|
797
701
|
}
|
|
798
702
|
})
|
|
799
703
|
], TournamentSettings);
|
|
704
|
+
let TournamentTeamWinner = class TournamentTeamWinner extends BaseModel {
|
|
705
|
+
};
|
|
706
|
+
TournamentTeamWinner = __decorate([
|
|
707
|
+
Model({
|
|
708
|
+
relation: {
|
|
709
|
+
logo: nestedModel(File),
|
|
710
|
+
team: nestedModel(Team),
|
|
711
|
+
}
|
|
712
|
+
})
|
|
713
|
+
], TournamentTeamWinner);
|
|
800
714
|
let Tournament = class Tournament extends BaseModel {
|
|
801
715
|
getEmptyLogoClass() {
|
|
802
716
|
const classList = ['empty-logo'];
|
|
@@ -836,11 +750,12 @@ Tournament = __decorate([
|
|
|
836
750
|
regulationFile: nestedModel(File),
|
|
837
751
|
settings: nestedModel(TournamentSettings),
|
|
838
752
|
date: dateTimeField,
|
|
753
|
+
dateEnd: dateTimeField,
|
|
839
754
|
league: nestedModel(League),
|
|
840
755
|
status: enumField(TournamentStatuses),
|
|
841
|
-
teamWinner: nestedModel(
|
|
842
|
-
teamSecond: nestedModel(
|
|
843
|
-
teamThird: nestedModel(
|
|
756
|
+
teamWinner: nestedModel(TournamentTeamWinner),
|
|
757
|
+
teamSecond: nestedModel(TournamentTeamWinner),
|
|
758
|
+
teamThird: nestedModel(TournamentTeamWinner),
|
|
844
759
|
season: nestedModel(TournamentSeason),
|
|
845
760
|
}
|
|
846
761
|
})
|
|
@@ -1026,6 +941,12 @@ Playoff = __decorate([
|
|
|
1026
941
|
})
|
|
1027
942
|
], Playoff);
|
|
1028
943
|
|
|
944
|
+
let TournamentGroup = class TournamentGroup extends BaseModel {
|
|
945
|
+
};
|
|
946
|
+
TournamentGroup = __decorate([
|
|
947
|
+
Model()
|
|
948
|
+
], TournamentGroup);
|
|
949
|
+
|
|
1029
950
|
let RugbyGameConfig = class RugbyGameConfig extends GameConfigBase {
|
|
1030
951
|
get penaltyPeriod() {
|
|
1031
952
|
if (this.overtimeType !== OvertimeTypes.time_and_penalties) {
|
|
@@ -1267,6 +1188,96 @@ Game = __decorate([
|
|
|
1267
1188
|
})
|
|
1268
1189
|
], Game);
|
|
1269
1190
|
|
|
1191
|
+
let TournamentDivision = class TournamentDivision extends BaseModel {
|
|
1192
|
+
};
|
|
1193
|
+
TournamentDivision = __decorate([
|
|
1194
|
+
Model({
|
|
1195
|
+
relation: {
|
|
1196
|
+
cover: nestedModel(File),
|
|
1197
|
+
}
|
|
1198
|
+
})
|
|
1199
|
+
], TournamentDivision);
|
|
1200
|
+
|
|
1201
|
+
class LeagueFieldBaseValue extends BaseModel {
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
var LeagueFieldTypes;
|
|
1205
|
+
(function (LeagueFieldTypes) {
|
|
1206
|
+
LeagueFieldTypes[LeagueFieldTypes["text"] = 1] = "text";
|
|
1207
|
+
LeagueFieldTypes[LeagueFieldTypes["select"] = 2] = "select";
|
|
1208
|
+
LeagueFieldTypes[LeagueFieldTypes["file"] = 3] = "file";
|
|
1209
|
+
})(LeagueFieldTypes || (LeagueFieldTypes = {}));
|
|
1210
|
+
class LeagueFieldBase extends BaseModel {
|
|
1211
|
+
constructor() {
|
|
1212
|
+
super(...arguments);
|
|
1213
|
+
this._variantsMapping = {};
|
|
1214
|
+
this._variants = [];
|
|
1215
|
+
}
|
|
1216
|
+
set variants(value) {
|
|
1217
|
+
this._variants = value;
|
|
1218
|
+
this._variantsMapping = value.reduce((acc, item) => ({
|
|
1219
|
+
...acc,
|
|
1220
|
+
[item.uuid]: item.name
|
|
1221
|
+
}), {});
|
|
1222
|
+
}
|
|
1223
|
+
get variants() {
|
|
1224
|
+
return this._variants;
|
|
1225
|
+
}
|
|
1226
|
+
getName(uuid) {
|
|
1227
|
+
return this._variantsMapping[uuid];
|
|
1228
|
+
}
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
let LeagueTeamField = class LeagueTeamField extends LeagueFieldBase {
|
|
1232
|
+
};
|
|
1233
|
+
LeagueTeamField = __decorate([
|
|
1234
|
+
Model({
|
|
1235
|
+
relation: {
|
|
1236
|
+
type: enumField(LeagueFieldTypes)
|
|
1237
|
+
}
|
|
1238
|
+
})
|
|
1239
|
+
], LeagueTeamField);
|
|
1240
|
+
|
|
1241
|
+
let TournamentTeamFieldValue = class TournamentTeamFieldValue extends LeagueFieldBaseValue {
|
|
1242
|
+
};
|
|
1243
|
+
TournamentTeamFieldValue = __decorate([
|
|
1244
|
+
Model({
|
|
1245
|
+
relation: {
|
|
1246
|
+
file: nestedModel(File),
|
|
1247
|
+
leagueTeamField: nestedModel(LeagueTeamField),
|
|
1248
|
+
}
|
|
1249
|
+
})
|
|
1250
|
+
], TournamentTeamFieldValue);
|
|
1251
|
+
|
|
1252
|
+
let TeamAdditionalData = class TeamAdditionalData extends BaseModel {
|
|
1253
|
+
};
|
|
1254
|
+
TeamAdditionalData = __decorate([
|
|
1255
|
+
Model()
|
|
1256
|
+
], TeamAdditionalData);
|
|
1257
|
+
let TournamentTeam = class TournamentTeam extends BaseModel {
|
|
1258
|
+
get gamesWonPercent() {
|
|
1259
|
+
if (!this.gamesCount) {
|
|
1260
|
+
return 0;
|
|
1261
|
+
}
|
|
1262
|
+
return Math.floor(1000 * this.wonGamesCount / this.gamesCount) / 10;
|
|
1263
|
+
}
|
|
1264
|
+
};
|
|
1265
|
+
TournamentTeam = __decorate([
|
|
1266
|
+
Model({
|
|
1267
|
+
relation: {
|
|
1268
|
+
logo: nestedModel(File),
|
|
1269
|
+
teamPhoto: nestedModel(File),
|
|
1270
|
+
teamUniform: nestedModel(File),
|
|
1271
|
+
team: nestedModel(Team),
|
|
1272
|
+
group: nestedModel(TournamentGroup),
|
|
1273
|
+
division: nestedModel(TournamentDivision),
|
|
1274
|
+
additionalData: nestedModel(TeamAdditionalData),
|
|
1275
|
+
fieldValues: listField(nestedModel(TournamentTeamFieldValue)),
|
|
1276
|
+
tournament: nestedModel(Tournament),
|
|
1277
|
+
}
|
|
1278
|
+
})
|
|
1279
|
+
], TournamentTeam);
|
|
1280
|
+
|
|
1270
1281
|
var TeamUserRole;
|
|
1271
1282
|
(function (TeamUserRole) {
|
|
1272
1283
|
TeamUserRole[TeamUserRole["member"] = 1] = "member";
|
|
@@ -7645,5 +7656,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.6", ngImpor
|
|
|
7645
7656
|
* Generated bundle index. Do not edit.
|
|
7646
7657
|
*/
|
|
7647
7658
|
|
|
7648
|
-
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, GameTeamAdditionalData, 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, TournamentTeamShort, 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 };
|
|
7659
|
+
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, GameTeamAdditionalData, 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, 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, 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 };
|
|
7649
7660
|
//# sourceMappingURL=mtgame-core.mjs.map
|