@mtgame/core 0.1.151 → 0.1.154
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 +166 -132
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/game.js +21 -3
- package/esm2015/models/hockey-game-log.js +4 -1
- package/esm2015/models/hockey-game-statistic.js +7 -2
- package/esm2015/models/hockey-statistic.js +6 -1
- package/fesm2015/mtgame-core.js +147 -116
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/game.d.ts +7 -2
- package/models/hockey-game-log.d.ts +4 -1
- package/models/hockey-game-statistic.d.ts +5 -0
- package/models/hockey-statistic.d.ts +5 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/fesm2015/mtgame-core.js
CHANGED
|
@@ -1741,119 +1741,6 @@ WaterpoloGameConfig = __decorate([
|
|
|
1741
1741
|
})
|
|
1742
1742
|
], WaterpoloGameConfig);
|
|
1743
1743
|
|
|
1744
|
-
let TournamentDivision = class TournamentDivision extends BaseModel {
|
|
1745
|
-
static toFront(data) { }
|
|
1746
|
-
static toBack(data) { }
|
|
1747
|
-
};
|
|
1748
|
-
__decorate([
|
|
1749
|
-
ToFrontHook
|
|
1750
|
-
], TournamentDivision, "toFront", null);
|
|
1751
|
-
__decorate([
|
|
1752
|
-
ToBackHook
|
|
1753
|
-
], TournamentDivision, "toBack", null);
|
|
1754
|
-
TournamentDivision = __decorate([
|
|
1755
|
-
ModelInstance({
|
|
1756
|
-
mappingFields: {
|
|
1757
|
-
id: 'id',
|
|
1758
|
-
name: 'name',
|
|
1759
|
-
cover: 'cover',
|
|
1760
|
-
},
|
|
1761
|
-
relation: {
|
|
1762
|
-
cover: File
|
|
1763
|
-
}
|
|
1764
|
-
})
|
|
1765
|
-
], TournamentDivision);
|
|
1766
|
-
|
|
1767
|
-
let TeamAdditionalData = class TeamAdditionalData {
|
|
1768
|
-
static toFront(data) { }
|
|
1769
|
-
static toBack(data) { }
|
|
1770
|
-
};
|
|
1771
|
-
__decorate([
|
|
1772
|
-
ToFrontHook
|
|
1773
|
-
], TeamAdditionalData, "toFront", null);
|
|
1774
|
-
__decorate([
|
|
1775
|
-
ToBackHook
|
|
1776
|
-
], TeamAdditionalData, "toBack", null);
|
|
1777
|
-
TeamAdditionalData = __decorate([
|
|
1778
|
-
ModelInstance({
|
|
1779
|
-
mappingFields: {
|
|
1780
|
-
nickname: 'nickname',
|
|
1781
|
-
color: 'color',
|
|
1782
|
-
}
|
|
1783
|
-
})
|
|
1784
|
-
], TeamAdditionalData);
|
|
1785
|
-
let TournamentTeam = class TournamentTeam extends BaseModel {
|
|
1786
|
-
get gamesWonPercent() {
|
|
1787
|
-
if (!this.gamesCount) {
|
|
1788
|
-
return 0;
|
|
1789
|
-
}
|
|
1790
|
-
return Math.floor(1000 * this.wonGamesCount / this.gamesCount) / 10;
|
|
1791
|
-
}
|
|
1792
|
-
static toFront(data) { }
|
|
1793
|
-
static toBack(data) { }
|
|
1794
|
-
};
|
|
1795
|
-
__decorate([
|
|
1796
|
-
ToFrontHook
|
|
1797
|
-
], TournamentTeam, "toFront", null);
|
|
1798
|
-
__decorate([
|
|
1799
|
-
ToBackHook
|
|
1800
|
-
], TournamentTeam, "toBack", null);
|
|
1801
|
-
TournamentTeam = __decorate([
|
|
1802
|
-
ModelInstance({
|
|
1803
|
-
mappingFields: {
|
|
1804
|
-
id: 'id',
|
|
1805
|
-
name: 'name',
|
|
1806
|
-
logo: 'logo',
|
|
1807
|
-
team_photo: 'teamPhoto',
|
|
1808
|
-
team_uniform: 'teamUniform',
|
|
1809
|
-
team_id: 'teamId',
|
|
1810
|
-
tournament_id: 'tournamentId',
|
|
1811
|
-
tournament: 'tournament',
|
|
1812
|
-
team: 'team',
|
|
1813
|
-
group: 'group',
|
|
1814
|
-
division: 'division',
|
|
1815
|
-
final_standing: 'finalStanding',
|
|
1816
|
-
games_count: 'gamesCount',
|
|
1817
|
-
won_games_count: 'wonGamesCount',
|
|
1818
|
-
draw_games_count: 'drawGamesCount',
|
|
1819
|
-
lose_games_count: 'loseGamesCount',
|
|
1820
|
-
last_games_count: 'lastGamesCount',
|
|
1821
|
-
last_games_won: 'lastGamesWon',
|
|
1822
|
-
score_sum: 'scoreSum',
|
|
1823
|
-
missed_sum: 'missedSum',
|
|
1824
|
-
score_points_sum: 'scorePointsSum',
|
|
1825
|
-
missed_points_sum: 'missedPointsSum',
|
|
1826
|
-
points: 'points',
|
|
1827
|
-
mt_points: 'mtPoints',
|
|
1828
|
-
users_count: 'usersCount',
|
|
1829
|
-
games: 'games',
|
|
1830
|
-
notifications_count: 'notificationsCount',
|
|
1831
|
-
win_normal_time_games_count: 'winNormalTimeGamesCount',
|
|
1832
|
-
lose_normal_time_games_count: 'loseNormalTimeGamesCount',
|
|
1833
|
-
win_overtime_games_count: 'winOvertimeGamesCount',
|
|
1834
|
-
lose_overtime_games_count: 'loseOvertimeGamesCount',
|
|
1835
|
-
last_five_games: 'lastFiveGames',
|
|
1836
|
-
tries_scored: 'triesScored',
|
|
1837
|
-
tries_missed: 'triesMissed',
|
|
1838
|
-
attack_bonuses: 'attackBonuses',
|
|
1839
|
-
defense_bonuses: 'defenseBonuses',
|
|
1840
|
-
team_additional_data: 'teamAdditionalData',
|
|
1841
|
-
},
|
|
1842
|
-
relation: {
|
|
1843
|
-
logo: File,
|
|
1844
|
-
teamPhoto: File,
|
|
1845
|
-
teamUniform: File,
|
|
1846
|
-
tournament: Tournament,
|
|
1847
|
-
team: Team,
|
|
1848
|
-
group: TournamentGroup,
|
|
1849
|
-
games: Game,
|
|
1850
|
-
lastFiveGames: Game,
|
|
1851
|
-
division: TournamentDivision,
|
|
1852
|
-
teamAdditionalData: TeamAdditionalData,
|
|
1853
|
-
}
|
|
1854
|
-
})
|
|
1855
|
-
], TournamentTeam);
|
|
1856
|
-
|
|
1857
1744
|
var GameStatuses;
|
|
1858
1745
|
(function (GameStatuses) {
|
|
1859
1746
|
GameStatuses[GameStatuses["open"] = 1] = "open";
|
|
@@ -1870,6 +1757,24 @@ var GameResultTypes;
|
|
|
1870
1757
|
GameResultTypes[GameResultTypes["competitor_team_technical_defeat"] = 4] = "competitor_team_technical_defeat";
|
|
1871
1758
|
GameResultTypes[GameResultTypes["draw"] = 5] = "draw";
|
|
1872
1759
|
})(GameResultTypes || (GameResultTypes = {}));
|
|
1760
|
+
let GameTeamAdditionalData = class GameTeamAdditionalData {
|
|
1761
|
+
static toFront(data) { }
|
|
1762
|
+
static toBack(data) { }
|
|
1763
|
+
};
|
|
1764
|
+
__decorate([
|
|
1765
|
+
ToFrontHook
|
|
1766
|
+
], GameTeamAdditionalData, "toFront", null);
|
|
1767
|
+
__decorate([
|
|
1768
|
+
ToBackHook
|
|
1769
|
+
], GameTeamAdditionalData, "toBack", null);
|
|
1770
|
+
GameTeamAdditionalData = __decorate([
|
|
1771
|
+
ModelInstance({
|
|
1772
|
+
mappingFields: {
|
|
1773
|
+
nickname: 'nickname',
|
|
1774
|
+
color: 'color',
|
|
1775
|
+
}
|
|
1776
|
+
})
|
|
1777
|
+
], GameTeamAdditionalData);
|
|
1873
1778
|
let TournamentTeamShort = class TournamentTeamShort extends BaseModel {
|
|
1874
1779
|
static toFront(data) { }
|
|
1875
1780
|
static toBack(data) { }
|
|
@@ -1890,7 +1795,7 @@ TournamentTeamShort = __decorate([
|
|
|
1890
1795
|
},
|
|
1891
1796
|
relation: {
|
|
1892
1797
|
logo: File,
|
|
1893
|
-
additionalData:
|
|
1798
|
+
additionalData: GameTeamAdditionalData,
|
|
1894
1799
|
}
|
|
1895
1800
|
})
|
|
1896
1801
|
], TournamentTeamShort);
|
|
@@ -2280,6 +2185,119 @@ ConfigService.ctorParameters = () => [
|
|
|
2280
2185
|
{ type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [CONFIG_DATA,] }] }
|
|
2281
2186
|
];
|
|
2282
2187
|
|
|
2188
|
+
let TournamentDivision = class TournamentDivision extends BaseModel {
|
|
2189
|
+
static toFront(data) { }
|
|
2190
|
+
static toBack(data) { }
|
|
2191
|
+
};
|
|
2192
|
+
__decorate([
|
|
2193
|
+
ToFrontHook
|
|
2194
|
+
], TournamentDivision, "toFront", null);
|
|
2195
|
+
__decorate([
|
|
2196
|
+
ToBackHook
|
|
2197
|
+
], TournamentDivision, "toBack", null);
|
|
2198
|
+
TournamentDivision = __decorate([
|
|
2199
|
+
ModelInstance({
|
|
2200
|
+
mappingFields: {
|
|
2201
|
+
id: 'id',
|
|
2202
|
+
name: 'name',
|
|
2203
|
+
cover: 'cover',
|
|
2204
|
+
},
|
|
2205
|
+
relation: {
|
|
2206
|
+
cover: File
|
|
2207
|
+
}
|
|
2208
|
+
})
|
|
2209
|
+
], TournamentDivision);
|
|
2210
|
+
|
|
2211
|
+
let TeamAdditionalData = class TeamAdditionalData {
|
|
2212
|
+
static toFront(data) { }
|
|
2213
|
+
static toBack(data) { }
|
|
2214
|
+
};
|
|
2215
|
+
__decorate([
|
|
2216
|
+
ToFrontHook
|
|
2217
|
+
], TeamAdditionalData, "toFront", null);
|
|
2218
|
+
__decorate([
|
|
2219
|
+
ToBackHook
|
|
2220
|
+
], TeamAdditionalData, "toBack", null);
|
|
2221
|
+
TeamAdditionalData = __decorate([
|
|
2222
|
+
ModelInstance({
|
|
2223
|
+
mappingFields: {
|
|
2224
|
+
nickname: 'nickname',
|
|
2225
|
+
color: 'color',
|
|
2226
|
+
}
|
|
2227
|
+
})
|
|
2228
|
+
], TeamAdditionalData);
|
|
2229
|
+
let TournamentTeam = class TournamentTeam extends BaseModel {
|
|
2230
|
+
get gamesWonPercent() {
|
|
2231
|
+
if (!this.gamesCount) {
|
|
2232
|
+
return 0;
|
|
2233
|
+
}
|
|
2234
|
+
return Math.floor(1000 * this.wonGamesCount / this.gamesCount) / 10;
|
|
2235
|
+
}
|
|
2236
|
+
static toFront(data) { }
|
|
2237
|
+
static toBack(data) { }
|
|
2238
|
+
};
|
|
2239
|
+
__decorate([
|
|
2240
|
+
ToFrontHook
|
|
2241
|
+
], TournamentTeam, "toFront", null);
|
|
2242
|
+
__decorate([
|
|
2243
|
+
ToBackHook
|
|
2244
|
+
], TournamentTeam, "toBack", null);
|
|
2245
|
+
TournamentTeam = __decorate([
|
|
2246
|
+
ModelInstance({
|
|
2247
|
+
mappingFields: {
|
|
2248
|
+
id: 'id',
|
|
2249
|
+
name: 'name',
|
|
2250
|
+
logo: 'logo',
|
|
2251
|
+
team_photo: 'teamPhoto',
|
|
2252
|
+
team_uniform: 'teamUniform',
|
|
2253
|
+
team_id: 'teamId',
|
|
2254
|
+
tournament_id: 'tournamentId',
|
|
2255
|
+
tournament: 'tournament',
|
|
2256
|
+
team: 'team',
|
|
2257
|
+
group: 'group',
|
|
2258
|
+
division: 'division',
|
|
2259
|
+
final_standing: 'finalStanding',
|
|
2260
|
+
games_count: 'gamesCount',
|
|
2261
|
+
won_games_count: 'wonGamesCount',
|
|
2262
|
+
draw_games_count: 'drawGamesCount',
|
|
2263
|
+
lose_games_count: 'loseGamesCount',
|
|
2264
|
+
last_games_count: 'lastGamesCount',
|
|
2265
|
+
last_games_won: 'lastGamesWon',
|
|
2266
|
+
score_sum: 'scoreSum',
|
|
2267
|
+
missed_sum: 'missedSum',
|
|
2268
|
+
score_points_sum: 'scorePointsSum',
|
|
2269
|
+
missed_points_sum: 'missedPointsSum',
|
|
2270
|
+
points: 'points',
|
|
2271
|
+
mt_points: 'mtPoints',
|
|
2272
|
+
users_count: 'usersCount',
|
|
2273
|
+
games: 'games',
|
|
2274
|
+
notifications_count: 'notificationsCount',
|
|
2275
|
+
win_normal_time_games_count: 'winNormalTimeGamesCount',
|
|
2276
|
+
lose_normal_time_games_count: 'loseNormalTimeGamesCount',
|
|
2277
|
+
win_overtime_games_count: 'winOvertimeGamesCount',
|
|
2278
|
+
lose_overtime_games_count: 'loseOvertimeGamesCount',
|
|
2279
|
+
last_five_games: 'lastFiveGames',
|
|
2280
|
+
tries_scored: 'triesScored',
|
|
2281
|
+
tries_missed: 'triesMissed',
|
|
2282
|
+
attack_bonuses: 'attackBonuses',
|
|
2283
|
+
defense_bonuses: 'defenseBonuses',
|
|
2284
|
+
team_additional_data: 'teamAdditionalData',
|
|
2285
|
+
},
|
|
2286
|
+
relation: {
|
|
2287
|
+
logo: File,
|
|
2288
|
+
teamPhoto: File,
|
|
2289
|
+
teamUniform: File,
|
|
2290
|
+
tournament: Tournament,
|
|
2291
|
+
team: Team,
|
|
2292
|
+
group: TournamentGroup,
|
|
2293
|
+
games: Game,
|
|
2294
|
+
lastFiveGames: Game,
|
|
2295
|
+
division: TournamentDivision,
|
|
2296
|
+
teamAdditionalData: TeamAdditionalData,
|
|
2297
|
+
}
|
|
2298
|
+
})
|
|
2299
|
+
], TournamentTeam);
|
|
2300
|
+
|
|
2283
2301
|
var TeamUserRole;
|
|
2284
2302
|
(function (TeamUserRole) {
|
|
2285
2303
|
TeamUserRole[TeamUserRole["member"] = 1] = "member";
|
|
@@ -3191,6 +3209,9 @@ var HockeyGameLogTypes;
|
|
|
3191
3209
|
HockeyGameLogTypes[HockeyGameLogTypes["after_game_shootout_goal"] = 24] = "after_game_shootout_goal";
|
|
3192
3210
|
HockeyGameLogTypes[HockeyGameLogTypes["after_game_shootout_save"] = 25] = "after_game_shootout_save";
|
|
3193
3211
|
HockeyGameLogTypes[HockeyGameLogTypes["shootout_save"] = 26] = "shootout_save";
|
|
3212
|
+
HockeyGameLogTypes[HockeyGameLogTypes["steal"] = 27] = "steal";
|
|
3213
|
+
HockeyGameLogTypes[HockeyGameLogTypes["loss"] = 28] = "loss";
|
|
3214
|
+
HockeyGameLogTypes[HockeyGameLogTypes["sharp_poss"] = 29] = "sharp_poss";
|
|
3194
3215
|
})(HockeyGameLogTypes || (HockeyGameLogTypes = {}));
|
|
3195
3216
|
var HockeyAdvantageTypes;
|
|
3196
3217
|
(function (HockeyAdvantageTypes) {
|
|
@@ -3418,7 +3439,12 @@ HockeyGameStatistic = __decorate([
|
|
|
3418
3439
|
safety_rate: 'safetyRate',
|
|
3419
3440
|
penalty_minutes: 'penaltyMinutes',
|
|
3420
3441
|
game_time: 'gameTime',
|
|
3421
|
-
plus_minus: 'plusMinus'
|
|
3442
|
+
plus_minus: 'plusMinus',
|
|
3443
|
+
steals: 'steals',
|
|
3444
|
+
losses: 'losses',
|
|
3445
|
+
sharp_passes: 'sharpPasses',
|
|
3446
|
+
drawn_fouls: 'drawnFouls',
|
|
3447
|
+
efficiency: 'efficiency',
|
|
3422
3448
|
},
|
|
3423
3449
|
relation: {
|
|
3424
3450
|
updatedAt: DateTimeField,
|
|
@@ -3531,6 +3557,11 @@ HockeyStatistic = __decorate([
|
|
|
3531
3557
|
penalty_minutes: 'penaltyMinutes',
|
|
3532
3558
|
game_time: 'gameTime',
|
|
3533
3559
|
plus_minus: 'plusMinus',
|
|
3560
|
+
steals: 'steals',
|
|
3561
|
+
losses: 'losses',
|
|
3562
|
+
sharp_passes: 'sharpPasses',
|
|
3563
|
+
drawn_fouls: 'drawnFouls',
|
|
3564
|
+
efficiency: 'efficiency',
|
|
3534
3565
|
newbie: 'newbie',
|
|
3535
3566
|
rank: 'rank',
|
|
3536
3567
|
},
|
|
@@ -10614,5 +10645,5 @@ HttpCookieInterceptor.ctorParameters = () => [
|
|
|
10614
10645
|
* Generated bundle index. Do not edit.
|
|
10615
10646
|
*/
|
|
10616
10647
|
|
|
10617
|
-
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, 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 };
|
|
10648
|
+
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 };
|
|
10618
10649
|
//# sourceMappingURL=mtgame-core.js.map
|