-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-vbl-statistic from API (4c02377b)
- Loading branch information
Gitlab CI Pipeline
committed
Feb 19, 2024
1 parent
2fb9b8a
commit a72d8b4
Showing
20 changed files
with
148 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Generated Interface, do not change manually! | ||
|
||
export interface LastXGamesByMatchGameView { | ||
home: any; | ||
away: any; | ||
} | ||
|
||
export default LastXGamesByMatchGameView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export { FormationStructureView } from './formationStructure.view'; | ||
export { LineupPlayerV2View } from './lineupPlayerV.view'; | ||
export { LineupPlayerView } from './lineupPlayer.view'; | ||
export { LineupListView } from './lineupList.view'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Generated Interface, do not change manually! | ||
import { MediaView } from './../Media/media.view'; | ||
|
||
export interface LineupPlayerV2View { | ||
fullname: string | null; | ||
firstname: string | null; | ||
lastname: string | null; | ||
club: string | null; | ||
sorting: number; | ||
position: string | null; | ||
rating: number | null; | ||
media: MediaView | null; | ||
} | ||
|
||
export default LineupPlayerV2View; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { MatchGameLineupRequestData } from './matchGameLineupRequest.data'; |
11 changes: 11 additions & 0 deletions
11
libs/types/src/lib/api/Match/Game/matchGameLineupRequest.data.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Generated Interface, do not change manually! | ||
|
||
export interface MatchGameLineupRequestData { | ||
|
||
/** | ||
* @default false | ||
*/ | ||
switchLineups?: boolean; | ||
} | ||
|
||
export default MatchGameLineupRequestData; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { StatisticOverallTournamentView } from './statisticOverallTournament.view'; | ||
export { StatisticOverallUtCardResultsView } from './statisticOverallUtCardResults.view'; |
9 changes: 9 additions & 0 deletions
9
libs/types/src/lib/api/Overall/statisticOverallTournament.view.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Generated Interface, do not change manually! | ||
|
||
export interface StatisticOverallTournamentView { | ||
totalMatchGameCount: number; | ||
totalScoreSum: number; | ||
averageScore: number; | ||
} | ||
|
||
export default StatisticOverallTournamentView; |
12 changes: 12 additions & 0 deletions
12
libs/types/src/lib/api/Overall/statisticOverallUtCardResults.view.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Generated Interface, do not change manually! | ||
import { MediaMinimalView } from './mediaMinimal.view'; | ||
|
||
export interface StatisticOverallUtCardResultsView { | ||
goalsShot: number | null; | ||
playerInLineup: number | null; | ||
utCardFirstName: string; | ||
utCardLastName: string; | ||
utCardImage: MediaMinimalView | null; | ||
} | ||
|
||
export default StatisticOverallUtCardResultsView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { StatisticPlayerView } from './statisticPlayer.view'; | ||
export { StatisticClubView } from './statisticClub.view'; |
29 changes: 29 additions & 0 deletions
29
libs/types/src/lib/api/Statistic/HeadToHead/statisticClub.view.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Generated Interface, do not change manually! | ||
import { TeamParticipantViewUnion } from './../../Participant/teamParticipantView.union'; | ||
|
||
export interface StatisticClubView { | ||
id: string; | ||
statisticConfigurationId: string; | ||
identityId: string; | ||
participant: TeamParticipantViewUnion; | ||
matchesPlayed: number; | ||
gamesPlayed: number; | ||
wonSum: number | null; | ||
lostSum: number | null; | ||
tieSum: number | null; | ||
scoreSum: number | null; | ||
scoreDifference: number | null; | ||
averagePointsPerMatch: number | null; | ||
gamesPlayedOneVsOne: number; | ||
gamesPlayedTwoVsTwo: number; | ||
averagePointsOneVsOnePerGame: number | null; | ||
averagePointsTwoVsTwoPerGame: number | null; | ||
averageGoalsPerGame: number | null; | ||
placement: number | null; | ||
efficiency: number | null; | ||
trendPoints: number | null; | ||
trendPointsZone: string | null; | ||
createdAt: string; | ||
} | ||
|
||
export default StatisticClubView; |
29 changes: 29 additions & 0 deletions
29
libs/types/src/lib/api/Statistic/HeadToHead/statisticPlayer.view.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Generated Interface, do not change manually! | ||
import { PlayerParticipantView } from './../../Participant/playerParticipant.view'; | ||
import { PlayerListViewUnion } from './../../Player/playerListView.union'; | ||
|
||
export interface StatisticPlayerView { | ||
id: string; | ||
statisticConfigurationId: string; | ||
identityId: string; | ||
participant: PlayerParticipantView | null; | ||
player: PlayerListViewUnion | null; | ||
gamesPlayed: number; | ||
wonSum: number | null; | ||
lostSum: number | null; | ||
tieSum: number | null; | ||
scoreSum: number | null; | ||
scoreDifference: number | null; | ||
averageGoalsPerGame: number | null; | ||
averageEnemyGoalsPerGame: number | null; | ||
averagePointsPerGame: number | null; | ||
averageShotsPerGoal: number | null; | ||
averageBallRecoveryTimePerGame: number | null; | ||
efficiency: number | null; | ||
trendPoints: number | null; | ||
trendPointsZone: string | null; | ||
averageExpectedScorePerGame: number | null; | ||
createdAt: string; | ||
} | ||
|
||
export default StatisticPlayerView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
libs/types/src/lib/api/Tournament/Registration/userTournamentRegistration.view.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { StatisticWeeklyUtCardResultsView } from './statisticWeeklyUtCardResults.view'; |
13 changes: 13 additions & 0 deletions
13
libs/types/src/lib/api/Weekly/statisticWeeklyUtCardResults.view.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Generated Interface, do not change manually! | ||
import { MediaMinimalView } from './mediaMinimal.view'; | ||
|
||
export interface StatisticWeeklyUtCardResultsView { | ||
goalsShot: number | null; | ||
playerInLineup: number | null; | ||
utCardFirstName: string; | ||
utCardLastName: string; | ||
utCardImage: MediaMinimalView | null; | ||
week: number; | ||
} | ||
|
||
export default StatisticWeeklyUtCardResultsView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters