@mtgame/core 0.0.77 → 0.1.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/api/league-api.d.ts +7 -3
- package/api/media-api.d.ts +6 -9
- package/api/tournament-api.d.ts +44 -5
- package/bundles/mtgame-core.umd.js +290 -88
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/api/league-api.js +27 -8
- package/esm2015/api/media-api.js +31 -41
- package/esm2015/api/tournament-api.js +115 -6
- package/esm2015/api/tournament-season-api.js +4 -22
- package/esm2015/models/base-statistic.js +1 -1
- package/esm2015/models/public-api.js +37 -37
- package/esm2015/models/tournament-season.js +2 -1
- package/esm2015/models/tournament-team.js +3 -1
- package/esm2015/mtgame-core.js +2 -3
- package/esm5/api/league-api.js +32 -8
- package/esm5/api/media-api.js +31 -41
- package/esm5/api/tournament-api.js +222 -21
- package/esm5/api/tournament-season-api.js +4 -22
- package/esm5/models/base-statistic.js +1 -1
- package/esm5/models/public-api.js +37 -37
- package/esm5/models/tournament-season.js +2 -1
- package/esm5/models/tournament-team.js +3 -1
- package/esm5/mtgame-core.js +2 -3
- package/fesm2015/mtgame-core.js +173 -72
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +285 -87
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/base-statistic.d.ts +1 -0
- package/models/public-api.d.ts +37 -37
- package/models/tournament-team.d.ts +1 -0
- package/mtgame-core.d.ts +1 -2
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/models/public-api.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export * from './base-statistic';
|
|
2
2
|
export * from './basketball-game-config';
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
3
|
+
export * from './basketball-game-log';
|
|
4
|
+
export * from './basketball-game-statistic';
|
|
5
|
+
export * from './basketball-game-team-statistic';
|
|
6
|
+
export * from './basketball-profile';
|
|
7
|
+
export * from './basketball-statistic';
|
|
8
|
+
export * from './city';
|
|
9
9
|
export * from './feedback';
|
|
10
|
-
export
|
|
11
|
-
export
|
|
10
|
+
export * from './file';
|
|
11
|
+
export * from './game';
|
|
12
12
|
export * from './game-invite';
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
13
|
+
export * from './game-log-base';
|
|
14
|
+
export * from './game-timeline-stages';
|
|
15
|
+
export * from './game-user';
|
|
16
16
|
export * from './handball-game-config';
|
|
17
17
|
export * from './handball-game-log';
|
|
18
18
|
export * from './handball-game-statistic';
|
|
@@ -31,20 +31,20 @@ export * from './football-game-statistic';
|
|
|
31
31
|
export * from './football-game-team-statistic';
|
|
32
32
|
export * from './football-profile';
|
|
33
33
|
export * from './football-statistic';
|
|
34
|
-
export
|
|
35
|
-
export
|
|
34
|
+
export * from './league';
|
|
35
|
+
export * from './league-court';
|
|
36
36
|
export * from './league-news';
|
|
37
37
|
export * from './league-partner';
|
|
38
38
|
export * from './league-banner';
|
|
39
39
|
export * from './league-playlist';
|
|
40
|
-
export
|
|
40
|
+
export * from './media-item';
|
|
41
41
|
export * from './notification';
|
|
42
42
|
export * from './notification-settings';
|
|
43
|
-
export
|
|
43
|
+
export * from './organization';
|
|
44
44
|
export * from './playoff';
|
|
45
45
|
export * from './poll';
|
|
46
|
-
export
|
|
47
|
-
export
|
|
46
|
+
export * from './sport';
|
|
47
|
+
export * from './team';
|
|
48
48
|
export * from './team-access';
|
|
49
49
|
export * from './team-event';
|
|
50
50
|
export * from './team-event-invite';
|
|
@@ -54,26 +54,26 @@ export * from './team-invite-external';
|
|
|
54
54
|
export * from './team-permission';
|
|
55
55
|
export * from './team-user';
|
|
56
56
|
export * from './tournament';
|
|
57
|
-
export
|
|
58
|
-
export
|
|
59
|
-
export
|
|
60
|
-
export
|
|
61
|
-
export
|
|
62
|
-
export
|
|
57
|
+
export * from './tournament-disqualification';
|
|
58
|
+
export * from './tournament-event';
|
|
59
|
+
export * from './tournament-group';
|
|
60
|
+
export * from './tournament-invite';
|
|
61
|
+
export * from './tournament-join-team';
|
|
62
|
+
export * from './tournament-news';
|
|
63
63
|
export * from './tournament-season';
|
|
64
|
-
export
|
|
65
|
-
export
|
|
66
|
-
export
|
|
67
|
-
export
|
|
68
|
-
export
|
|
69
|
-
export
|
|
64
|
+
export * from './tournament-stage';
|
|
65
|
+
export * from './tournament-stage-team';
|
|
66
|
+
export * from './tournament-team';
|
|
67
|
+
export * from './tournament-team-user';
|
|
68
|
+
export * from './tournament-team-user-invite';
|
|
69
|
+
export * from './user';
|
|
70
70
|
export * from './user-access';
|
|
71
71
|
export * from './user-permission';
|
|
72
|
-
export
|
|
73
|
-
export
|
|
74
|
-
export
|
|
75
|
-
export
|
|
76
|
-
export
|
|
77
|
-
export
|
|
78
|
-
export
|
|
79
|
-
export
|
|
72
|
+
export * from './user-profile';
|
|
73
|
+
export * from './util';
|
|
74
|
+
export * from './volleyball-game-config';
|
|
75
|
+
export * from './volleyball-game-log';
|
|
76
|
+
export * from './volleyball-game-statistic';
|
|
77
|
+
export * from './volleyball-game-team-statistic';
|
|
78
|
+
export * from './volleyball-profile';
|
|
79
|
+
export * from './volleyball-statistic';
|
|
@@ -28,6 +28,7 @@ export declare class TournamentTeam extends BaseModel {
|
|
|
28
28
|
loseNormalTimeGamesCount: number;
|
|
29
29
|
winOvertimeGamesCount: number;
|
|
30
30
|
loseOvertimeGamesCount: number;
|
|
31
|
+
lastFiveGames: Game[];
|
|
31
32
|
get gamesWonPercent(): number;
|
|
32
33
|
static toFront(data: any): any;
|
|
33
34
|
static toBack(data: any): any;
|
package/mtgame-core.d.ts
CHANGED