From 4c1a25509c21f2ece05b0b90bc82a8ad546b4a43 Mon Sep 17 00:00:00 2001 From: Gitlab CI Pipeline Date: Mon, 20 Apr 2026 16:16:45 +0000 Subject: [PATCH] dev-fifagg from API (195b2d10) --- libs/types/src/lib/api/Club/clubList.view.ts | 10 -- libs/types/src/lib/api/Club/index.ts | 1 - libs/types/src/lib/api/Game/gameList.view.ts | 2 - libs/types/src/lib/api/Game/index.ts | 2 - .../api/Game/lastXGamesByMatchGame.view.ts | 8 - .../Game/lastXGamesByPlayerIdentity.view.ts | 8 - libs/types/src/lib/api/Lineup/index.ts | 1 - .../src/lib/api/Lineup/lineupPlayerV.view.ts | 15 -- libs/types/src/lib/api/Match/Game/index.ts | 1 - .../Match/Game/matchGameLineupRequest.data.ts | 11 -- .../lib/api/Match/identityMatchResult.view.ts | 11 -- libs/types/src/lib/api/Match/index.ts | 2 - .../api/Match/lastXMatchesByIdentity.view.ts | 10 -- .../types/src/lib/api/Match/matchList.view.ts | 3 +- libs/types/src/lib/api/Media/media.view.ts | 1 - libs/types/src/lib/api/Overall/index.ts | 2 - .../statisticOverallTournament.view.ts | 9 - .../statisticOverallUtCardResults.view.ts | 12 -- .../Participant/abstractParticipant.view.ts | 2 - .../api/Participant/participantList.view.ts | 2 - .../api/Participant/playerParticipant.view.ts | 4 - .../api/Participant/teamParticipant.view.ts | 1 - .../api/Round/roundWithStageAndGroup.view.ts | 5 +- .../src/lib/api/Statistic/HeadToHead/index.ts | 2 - .../HeadToHead/statisticClub.view.ts | 30 ---- .../HeadToHead/statisticPlayer.view.ts | 31 ---- .../lib/api/Statistic/statisticValue.view.ts | 2 +- .../userTournamentRegistration.view.ts | 2 +- .../baseStageStageStructureView.union.ts | 3 +- libs/types/src/lib/api/Tournament/index.ts | 1 - .../Tournament/swissStageStructure.view.ts | 9 - libs/types/src/lib/api/Weekly/index.ts | 1 - .../statisticWeeklyUtCardResults.view.ts | 13 -- libs/types/src/lib/api/index.ts | 155 ++++++++---------- 34 files changed, 77 insertions(+), 295 deletions(-) delete mode 100644 libs/types/src/lib/api/Club/clubList.view.ts delete mode 100644 libs/types/src/lib/api/Club/index.ts delete mode 100644 libs/types/src/lib/api/Game/lastXGamesByMatchGame.view.ts delete mode 100644 libs/types/src/lib/api/Game/lastXGamesByPlayerIdentity.view.ts delete mode 100644 libs/types/src/lib/api/Lineup/lineupPlayerV.view.ts delete mode 100644 libs/types/src/lib/api/Match/Game/index.ts delete mode 100644 libs/types/src/lib/api/Match/Game/matchGameLineupRequest.data.ts delete mode 100644 libs/types/src/lib/api/Match/identityMatchResult.view.ts delete mode 100644 libs/types/src/lib/api/Match/lastXMatchesByIdentity.view.ts delete mode 100644 libs/types/src/lib/api/Overall/index.ts delete mode 100644 libs/types/src/lib/api/Overall/statisticOverallTournament.view.ts delete mode 100644 libs/types/src/lib/api/Overall/statisticOverallUtCardResults.view.ts delete mode 100644 libs/types/src/lib/api/Statistic/HeadToHead/index.ts delete mode 100644 libs/types/src/lib/api/Statistic/HeadToHead/statisticClub.view.ts delete mode 100644 libs/types/src/lib/api/Statistic/HeadToHead/statisticPlayer.view.ts delete mode 100644 libs/types/src/lib/api/Tournament/swissStageStructure.view.ts delete mode 100644 libs/types/src/lib/api/Weekly/index.ts delete mode 100644 libs/types/src/lib/api/Weekly/statisticWeeklyUtCardResults.view.ts diff --git a/libs/types/src/lib/api/Club/clubList.view.ts b/libs/types/src/lib/api/Club/clubList.view.ts deleted file mode 100644 index d85bf17e3..000000000 --- a/libs/types/src/lib/api/Club/clubList.view.ts +++ /dev/null @@ -1,10 +0,0 @@ -// Generated Interface, do not change manually! -import { MediaView } from './../Media/media.view'; - -export interface ClubListView { - id: string; - name: string | null; - emblem: MediaView | null; -} - -export default ClubListView; diff --git a/libs/types/src/lib/api/Club/index.ts b/libs/types/src/lib/api/Club/index.ts deleted file mode 100644 index a3760dc2a..000000000 --- a/libs/types/src/lib/api/Club/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { ClubListView } from './clubList.view'; diff --git a/libs/types/src/lib/api/Game/gameList.view.ts b/libs/types/src/lib/api/Game/gameList.view.ts index 6e8d74f23..110bdc689 100644 --- a/libs/types/src/lib/api/Game/gameList.view.ts +++ b/libs/types/src/lib/api/Game/gameList.view.ts @@ -16,8 +16,6 @@ export interface GameListView { gameType: string | null; platform: PlatformListView | null; isActive: boolean; - matchGameNumber: number | null; - groupName: string | null; } export default GameListView; diff --git a/libs/types/src/lib/api/Game/index.ts b/libs/types/src/lib/api/Game/index.ts index f57f559b9..9403c1151 100644 --- a/libs/types/src/lib/api/Game/index.ts +++ b/libs/types/src/lib/api/Game/index.ts @@ -1,7 +1,5 @@ export { GameListViewUnion } from './gameListView.union'; export { GameListView } from './gameList.view'; -export { LastXGamesByMatchGameView } from './lastXGamesByMatchGame.view'; export { LastXGamesByPlayerView } from './lastXGamesByPlayer.view'; -export { LastXGamesByPlayerIdentityView } from './lastXGamesByPlayerIdentity.view'; export { GameRankingView } from './gameRanking.view'; export { GameDetailView } from './gameDetail.view'; diff --git a/libs/types/src/lib/api/Game/lastXGamesByMatchGame.view.ts b/libs/types/src/lib/api/Game/lastXGamesByMatchGame.view.ts deleted file mode 100644 index d19e9ec10..000000000 --- a/libs/types/src/lib/api/Game/lastXGamesByMatchGame.view.ts +++ /dev/null @@ -1,8 +0,0 @@ -// Generated Interface, do not change manually! - -export interface LastXGamesByMatchGameView { - home: any; - away: any; -} - -export default LastXGamesByMatchGameView; diff --git a/libs/types/src/lib/api/Game/lastXGamesByPlayerIdentity.view.ts b/libs/types/src/lib/api/Game/lastXGamesByPlayerIdentity.view.ts deleted file mode 100644 index d0bce87cf..000000000 --- a/libs/types/src/lib/api/Game/lastXGamesByPlayerIdentity.view.ts +++ /dev/null @@ -1,8 +0,0 @@ -// Generated Interface, do not change manually! - -export interface LastXGamesByPlayerIdentityView { - playerIdentity: string; - results: any; -} - -export default LastXGamesByPlayerIdentityView; diff --git a/libs/types/src/lib/api/Lineup/index.ts b/libs/types/src/lib/api/Lineup/index.ts index b0ee2bb21..41914a310 100644 --- a/libs/types/src/lib/api/Lineup/index.ts +++ b/libs/types/src/lib/api/Lineup/index.ts @@ -1,4 +1,3 @@ -export { LineupPlayerV2View } from './lineupPlayerV.view'; export { FormationStructureView } from './formationStructure.view'; export { LineupPlayerView } from './lineupPlayer.view'; export { LineupListView } from './lineupList.view'; diff --git a/libs/types/src/lib/api/Lineup/lineupPlayerV.view.ts b/libs/types/src/lib/api/Lineup/lineupPlayerV.view.ts deleted file mode 100644 index 0f7d74798..000000000 --- a/libs/types/src/lib/api/Lineup/lineupPlayerV.view.ts +++ /dev/null @@ -1,15 +0,0 @@ -// 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; diff --git a/libs/types/src/lib/api/Match/Game/index.ts b/libs/types/src/lib/api/Match/Game/index.ts deleted file mode 100644 index 27c948d42..000000000 --- a/libs/types/src/lib/api/Match/Game/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { MatchGameLineupRequestData } from './matchGameLineupRequest.data'; diff --git a/libs/types/src/lib/api/Match/Game/matchGameLineupRequest.data.ts b/libs/types/src/lib/api/Match/Game/matchGameLineupRequest.data.ts deleted file mode 100644 index 024930f5b..000000000 --- a/libs/types/src/lib/api/Match/Game/matchGameLineupRequest.data.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Generated Interface, do not change manually! - -export interface MatchGameLineupRequestData { - - /** - * @default false - */ - switchLineups?: boolean; -} - -export default MatchGameLineupRequestData; diff --git a/libs/types/src/lib/api/Match/identityMatchResult.view.ts b/libs/types/src/lib/api/Match/identityMatchResult.view.ts deleted file mode 100644 index dc0e9aca1..000000000 --- a/libs/types/src/lib/api/Match/identityMatchResult.view.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Generated Interface, do not change manually! - -export interface IdentityMatchResultView { - matchId: string; - playedAt: string; - participantScore: number; - opponentScore: number; - result: string; -} - -export default IdentityMatchResultView; diff --git a/libs/types/src/lib/api/Match/index.ts b/libs/types/src/lib/api/Match/index.ts index 405bb7573..7ddca8399 100644 --- a/libs/types/src/lib/api/Match/index.ts +++ b/libs/types/src/lib/api/Match/index.ts @@ -3,5 +3,3 @@ export { MatchRankingView } from './matchRanking.view'; export { MatchListView } from './matchList.view'; export { DetailedMatchListView } from './detailedMatchList.view'; export { ListUpcomingMatchesForUserSearchRequestData } from './listUpcomingMatchesForUserSearchRequest.data'; -export { IdentityMatchResultView } from './identityMatchResult.view'; -export { LastXMatchesByIdentityView } from './lastXMatchesByIdentity.view'; diff --git a/libs/types/src/lib/api/Match/lastXMatchesByIdentity.view.ts b/libs/types/src/lib/api/Match/lastXMatchesByIdentity.view.ts deleted file mode 100644 index 2dbf77ede..000000000 --- a/libs/types/src/lib/api/Match/lastXMatchesByIdentity.view.ts +++ /dev/null @@ -1,10 +0,0 @@ -// Generated Interface, do not change manually! -import { IdentityMatchResultView } from './identityMatchResult.view'; - -export interface LastXMatchesByIdentityView { - identityId: string; - identityName: string; - matches: IdentityMatchResultView[]; -} - -export default LastXMatchesByIdentityView; diff --git a/libs/types/src/lib/api/Match/matchList.view.ts b/libs/types/src/lib/api/Match/matchList.view.ts index 143ec23db..6a9ec6bdb 100644 --- a/libs/types/src/lib/api/Match/matchList.view.ts +++ b/libs/types/src/lib/api/Match/matchList.view.ts @@ -14,9 +14,8 @@ export interface MatchListView { id: string; status: MatchStatus | null; number: number | null; - matchNumber: number | null; type: MatchType | null; - startTime: string | null; + startTime: string; home: ParticipantViewUnion | null; away: ParticipantViewUnion | null; games: GameListViewUnion[]; diff --git a/libs/types/src/lib/api/Media/media.view.ts b/libs/types/src/lib/api/Media/media.view.ts index fb573cbf2..67febe6e4 100644 --- a/libs/types/src/lib/api/Media/media.view.ts +++ b/libs/types/src/lib/api/Media/media.view.ts @@ -7,7 +7,6 @@ export interface MediaView { description: string | null; providerReference: string | null; path: string | null; - original: string | null; } export default MediaView; diff --git a/libs/types/src/lib/api/Overall/index.ts b/libs/types/src/lib/api/Overall/index.ts deleted file mode 100644 index 273f6d2fc..000000000 --- a/libs/types/src/lib/api/Overall/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { StatisticOverallTournamentView } from './statisticOverallTournament.view'; -export { StatisticOverallUtCardResultsView } from './statisticOverallUtCardResults.view'; diff --git a/libs/types/src/lib/api/Overall/statisticOverallTournament.view.ts b/libs/types/src/lib/api/Overall/statisticOverallTournament.view.ts deleted file mode 100644 index f9d36e39d..000000000 --- a/libs/types/src/lib/api/Overall/statisticOverallTournament.view.ts +++ /dev/null @@ -1,9 +0,0 @@ -// Generated Interface, do not change manually! - -export interface StatisticOverallTournamentView { - totalMatchGameCount: number; - totalScoreSum: number; - averageScore: number; -} - -export default StatisticOverallTournamentView; diff --git a/libs/types/src/lib/api/Overall/statisticOverallUtCardResults.view.ts b/libs/types/src/lib/api/Overall/statisticOverallUtCardResults.view.ts deleted file mode 100644 index acefebc37..000000000 --- a/libs/types/src/lib/api/Overall/statisticOverallUtCardResults.view.ts +++ /dev/null @@ -1,12 +0,0 @@ -// Generated Interface, do not change manually! -import { MediaMinimalView } from '../Media'; - -export interface StatisticOverallUtCardResultsView { - goalsShot: number | null; - playerInLineup: number | null; - utCardFirstName: string; - utCardLastName: string; - utCardImage: MediaMinimalView | null; -} - -export default StatisticOverallUtCardResultsView; diff --git a/libs/types/src/lib/api/Participant/abstractParticipant.view.ts b/libs/types/src/lib/api/Participant/abstractParticipant.view.ts index 571203a32..1772f994e 100644 --- a/libs/types/src/lib/api/Participant/abstractParticipant.view.ts +++ b/libs/types/src/lib/api/Participant/abstractParticipant.view.ts @@ -14,8 +14,6 @@ export interface AbstractParticipantView { countryOfResidence: CountryView | null; countryOfRepresentation: CountryView | null; identity: IdentityView | null; - mediaCollection: any[]; - footballClubEmblem: MediaView | null; } export default AbstractParticipantView; diff --git a/libs/types/src/lib/api/Participant/participantList.view.ts b/libs/types/src/lib/api/Participant/participantList.view.ts index 5be5658bd..bd5ea861d 100644 --- a/libs/types/src/lib/api/Participant/participantList.view.ts +++ b/libs/types/src/lib/api/Participant/participantList.view.ts @@ -1,5 +1,4 @@ // Generated Interface, do not change manually! -import { ClubListView } from '../Club'; import { MediaMinimalView } from './../Media/mediaMinimal.view'; export interface ParticipantListView { @@ -10,7 +9,6 @@ export interface ParticipantListView { profileType: string | null; profileId: string | null; number: number | null; - footballClub: ClubListView | null; } export default ParticipantListView; diff --git a/libs/types/src/lib/api/Participant/playerParticipant.view.ts b/libs/types/src/lib/api/Participant/playerParticipant.view.ts index 2a2611ea2..0fc0f3922 100644 --- a/libs/types/src/lib/api/Participant/playerParticipant.view.ts +++ b/libs/types/src/lib/api/Participant/playerParticipant.view.ts @@ -1,11 +1,7 @@ // Generated Interface, do not change manually! import { AbstractParticipantView } from './abstractParticipant.view'; -import { ClubListView } from './../Club/clubList.view'; export interface PlayerParticipantView extends AbstractParticipantView { - gamertag: string | null; - club: ClubListView | null; - mediaCollection: any[]; } export default PlayerParticipantView; diff --git a/libs/types/src/lib/api/Participant/teamParticipant.view.ts b/libs/types/src/lib/api/Participant/teamParticipant.view.ts index 1b61a488c..456fee48f 100644 --- a/libs/types/src/lib/api/Participant/teamParticipant.view.ts +++ b/libs/types/src/lib/api/Participant/teamParticipant.view.ts @@ -2,7 +2,6 @@ import { AbstractParticipantView } from './abstractParticipant.view'; export interface TeamParticipantView extends AbstractParticipantView { - mediaCollection: any[]; } export default TeamParticipantView; diff --git a/libs/types/src/lib/api/Round/roundWithStageAndGroup.view.ts b/libs/types/src/lib/api/Round/roundWithStageAndGroup.view.ts index 8ca7fb593..512f9886c 100644 --- a/libs/types/src/lib/api/Round/roundWithStageAndGroup.view.ts +++ b/libs/types/src/lib/api/Round/roundWithStageAndGroup.view.ts @@ -1,7 +1,6 @@ // Generated Interface, do not change manually! - -import { GroupListView } from '../Group'; -import { StageListView } from '../Stage'; +import { StageListView } from './stageList.view'; +import { GroupListView } from './groupList.view'; export interface RoundWithStageAndGroupView { id: string; diff --git a/libs/types/src/lib/api/Statistic/HeadToHead/index.ts b/libs/types/src/lib/api/Statistic/HeadToHead/index.ts deleted file mode 100644 index 6b145fc25..000000000 --- a/libs/types/src/lib/api/Statistic/HeadToHead/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { StatisticClubView } from './statisticClub.view'; -export { StatisticPlayerView } from './statisticPlayer.view'; diff --git a/libs/types/src/lib/api/Statistic/HeadToHead/statisticClub.view.ts b/libs/types/src/lib/api/Statistic/HeadToHead/statisticClub.view.ts deleted file mode 100644 index f3977e21f..000000000 --- a/libs/types/src/lib/api/Statistic/HeadToHead/statisticClub.view.ts +++ /dev/null @@ -1,30 +0,0 @@ -// 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; - tournamentGroupRank: number | null; -} - -export default StatisticClubView; diff --git a/libs/types/src/lib/api/Statistic/HeadToHead/statisticPlayer.view.ts b/libs/types/src/lib/api/Statistic/HeadToHead/statisticPlayer.view.ts deleted file mode 100644 index 0e81bdb27..000000000 --- a/libs/types/src/lib/api/Statistic/HeadToHead/statisticPlayer.view.ts +++ /dev/null @@ -1,31 +0,0 @@ -// 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; - averagePossession: number | null; - averageBallRecoveryTimePerGame: number | null; - efficiency: number | null; - trendPoints: number | null; - trendPointsZone: string | null; - averageExpectedScorePerGame: number | null; - totalPoints: number; - createdAt: string; -} - -export default StatisticPlayerView; diff --git a/libs/types/src/lib/api/Statistic/statisticValue.view.ts b/libs/types/src/lib/api/Statistic/statisticValue.view.ts index 42fd21786..5e2f83fb4 100644 --- a/libs/types/src/lib/api/Statistic/statisticValue.view.ts +++ b/libs/types/src/lib/api/Statistic/statisticValue.view.ts @@ -2,7 +2,7 @@ export interface StatisticValueView { value: number | null; - totalMatchesOrMatchGames: number; + totalMatchGames: number; } export default StatisticValueView; diff --git a/libs/types/src/lib/api/Tournament/Registration/userTournamentRegistration.view.ts b/libs/types/src/lib/api/Tournament/Registration/userTournamentRegistration.view.ts index 553661d1e..e76c08342 100644 --- a/libs/types/src/lib/api/Tournament/Registration/userTournamentRegistration.view.ts +++ b/libs/types/src/lib/api/Tournament/Registration/userTournamentRegistration.view.ts @@ -1,6 +1,6 @@ // Generated Interface, do not change manually! -import { MediaView } from '../../Media'; import { CheckInStatus } from './../../Registration/checkIn.status'; +import { MediaView } from './media.view'; export interface UserTournamentRegistrationView { id: string; diff --git a/libs/types/src/lib/api/Tournament/baseStageStageStructureView.union.ts b/libs/types/src/lib/api/Tournament/baseStageStageStructureView.union.ts index 9f7f777dd..d42267e90 100644 --- a/libs/types/src/lib/api/Tournament/baseStageStageStructureView.union.ts +++ b/libs/types/src/lib/api/Tournament/baseStageStageStructureView.union.ts @@ -1,7 +1,6 @@ // Generated Type, do not change manually! import { SingleEliminationStageStageStructureView } from './../Tournament/singleEliminationStageStageStructure.view'; import { GroupStageStageStructureView } from './../Tournament/groupStageStageStructure.view'; -import { SwissStageStructureView } from './../Tournament/swissStageStructure.view'; import { DoubleEliminationStageStageStructureView } from './../Tournament/doubleEliminationStageStageStructure.view'; -export type BaseStageStageStructureViewUnion = SingleEliminationStageStageStructureView | GroupStageStageStructureView | SwissStageStructureView | DoubleEliminationStageStageStructureView; \ No newline at end of file +export type BaseStageStageStructureViewUnion = SingleEliminationStageStageStructureView | GroupStageStageStructureView | DoubleEliminationStageStageStructureView; \ No newline at end of file diff --git a/libs/types/src/lib/api/Tournament/index.ts b/libs/types/src/lib/api/Tournament/index.ts index d5e305587..dbad9dd12 100644 --- a/libs/types/src/lib/api/Tournament/index.ts +++ b/libs/types/src/lib/api/Tournament/index.ts @@ -3,7 +3,6 @@ export { BaseStageStageStructureView } from './baseStageStageStructure.view'; export { TournamentListView } from './tournamentList.view'; export { SingleEliminationStageStageStructureView } from './singleEliminationStageStageStructure.view'; export { GroupStageStageStructureView } from './groupStageStageStructure.view'; -export { SwissStageStructureView } from './swissStageStructure.view'; export { GroupStageStructureView } from './groupStageStructure.view'; export { ListSearchRequestData } from './listSearchRequest.data'; export { RoundStageStructureView } from './roundStageStructure.view'; diff --git a/libs/types/src/lib/api/Tournament/swissStageStructure.view.ts b/libs/types/src/lib/api/Tournament/swissStageStructure.view.ts deleted file mode 100644 index 33ff38ef5..000000000 --- a/libs/types/src/lib/api/Tournament/swissStageStructure.view.ts +++ /dev/null @@ -1,9 +0,0 @@ -// Generated Interface, do not change manually! -import { BaseStageStageStructureView } from './baseStageStageStructure.view'; -import { RoundStageStructureView } from './roundStageStructure.view'; - -export interface SwissStageStructureView extends BaseStageStageStructureView { - rounds: RoundStageStructureView[]; -} - -export default SwissStageStructureView; diff --git a/libs/types/src/lib/api/Weekly/index.ts b/libs/types/src/lib/api/Weekly/index.ts deleted file mode 100644 index 670fe05d8..000000000 --- a/libs/types/src/lib/api/Weekly/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { StatisticWeeklyUtCardResultsView } from './statisticWeeklyUtCardResults.view'; diff --git a/libs/types/src/lib/api/Weekly/statisticWeeklyUtCardResults.view.ts b/libs/types/src/lib/api/Weekly/statisticWeeklyUtCardResults.view.ts deleted file mode 100644 index d1b6ddfe2..000000000 --- a/libs/types/src/lib/api/Weekly/statisticWeeklyUtCardResults.view.ts +++ /dev/null @@ -1,13 +0,0 @@ -// Generated Interface, do not change manually! -import { MediaMinimalView } from '../Media'; - -export interface StatisticWeeklyUtCardResultsView { - goalsShot: number | null; - playerInLineup: number | null; - utCardFirstName: string; - utCardLastName: string; - utCardImage: MediaMinimalView | null; - week: number; -} - -export default StatisticWeeklyUtCardResultsView; diff --git a/libs/types/src/lib/api/index.ts b/libs/types/src/lib/api/index.ts index e3c6cb6b1..e3a2a897a 100644 --- a/libs/types/src/lib/api/index.ts +++ b/libs/types/src/lib/api/index.ts @@ -1,97 +1,84 @@ -export { ClubListView } from './Club/clubList.view'; -export { CountryView } from './Country/country.view'; -export { DateRangeRequestData } from './DateRange/dateRangeRequest.data'; -export { MatchStatus } from './Enum/Match/match.status'; -export { MatchType } from './Enum/Match/match.type'; -export { MatchStreamCategory } from './Enum/Match/matchStream.category'; -export { OpponentSide } from './Enum/Opponent/opponent.side'; -export { ParticipantType } from './Enum/Participant/participant.type'; -export { RankingStatus } from './Enum/Ranking/ranking.status'; -export { RoundType } from './Enum/Round/round.type'; -export { SeasonStatus } from './Enum/Season/season.status'; -export { StageType } from './Enum/Stage/stage.type'; -export { TournamentStatus } from './Enum/Tournament/tournament.status'; +export { StatisticListView } from './Statistic/statisticList.view'; +export { StatisticValueView } from './Statistic/statisticValue.view'; +export { RoundWithStageAndGroupView } from './Round/roundWithStageAndGroup.view'; +export { StageListView } from './Stage/stageList.view'; +export { FormationStructureView } from './Lineup/formationStructure.view'; +export { PaginationView } from './pagination.view'; export { FootballPlayerListView } from './FootballPlayer/footballPlayerList.view'; +export { PlayerRosterView } from './Player/playerRoster.view'; +export { PlayerListView } from './Player/playerList.view'; +export { PlayerListViewUnion } from './Player/playerListView.union'; +export { MetricListView } from './Metric/metricList.view'; +export { ListTournamentSearchRequestData } from './Season/listTournamentSearchRequest.data'; +export { BaseSeasonView } from './Season/baseSeason.view'; +export { SeasonWithTournamentGroupsView } from './Season/seasonWithTournamentGroups.view'; +export { TournamentGroupListView } from './TournamentGroup/tournamentGroupList.view'; +export { ListUpcomingMatchesForUserSearchRequestData } from './Match/listUpcomingMatchesForUserSearchRequest.data'; +export { MatchStreamListView } from './Match/Stream/matchStreamList.view'; +export { MatchListWithStreamView } from './Match/Stream/matchListWithStream.view'; +export { MatchStreamDetailView } from './Match/Stream/matchStreamDetail.view'; +export { ListScheduledInMinutesFromNowSearchRequestData } from './Match/Stream/listScheduledInMinutesFromNowSearchRequest.data'; +export { MatchListView } from './Match/matchList.view'; +export { MatchRankingView } from './Match/matchRanking.view'; +export { DetailedMatchListView } from './Match/detailedMatchList.view'; +export { MatchListViewUnion } from './Match/matchListView.union'; export { FormViolationView } from './Form/formViolation.view'; -export { EventListView } from './Game/Event/eventList.view'; -export { EventListViewUnion } from './Game/Event/eventListView.union'; +export { GroupedStatisticListView } from './Statistic/groupedStatisticList.view'; +export { GameListView } from './Game/gameList.view'; export { PlayerEventView } from './Game/Event/playerEvent.view'; export { SubstitutionEventView } from './Game/Event/substitutionEvent.view'; +export { EventListView } from './Game/Event/eventList.view'; +export { EventListViewUnion } from './Game/Event/eventListView.union'; +export { LastXGamesByPlayerView } from './Game/lastXGamesByPlayer.view'; export { GameDetailView } from './Game/gameDetail.view'; -export { GameListView } from './Game/gameList.view'; -export { GameListViewUnion } from './Game/gameListView.union'; export { GameRankingView } from './Game/gameRanking.view'; -export { LastXGamesByMatchGameView } from './Game/lastXGamesByMatchGame.view'; -export { LastXGamesByPlayerView } from './Game/lastXGamesByPlayer.view'; -export { LastXGamesByPlayerIdentityView } from './Game/lastXGamesByPlayerIdentity.view'; -export { GroupDetailView } from './Group/groupDetail.view'; -export { GroupListView } from './Group/groupList.view'; -export { GroupListViewUnion } from './Group/groupListView.union'; -export { GroupRankingView } from './Group/groupRanking.view'; -export { IdentityView } from './Identity/identity.view'; -export { FormationStructureView } from './Lineup/formationStructure.view'; -export { LineupListView } from './Lineup/lineupList.view'; -export { LineupPlayerView } from './Lineup/lineupPlayer.view'; -export { DetailedMatchListView } from './Match/detailedMatchList.view'; -export { MatchGameLineupRequestData } from './Match/Game/matchGameLineupRequest.data'; -export { IdentityMatchResultView } from './Match/identityMatchResult.view'; -export { LastXMatchesByIdentityView } from './Match/lastXMatchesByIdentity.view'; -export { ListUpcomingMatchesForUserSearchRequestData } from './Match/listUpcomingMatchesForUserSearchRequest.data'; -export { MatchListView } from './Match/matchList.view'; -export { MatchListViewUnion } from './Match/matchListView.union'; -export { MatchRankingView } from './Match/matchRanking.view'; -export { ListScheduledInMinutesFromNowSearchRequestData } from './Match/Stream/listScheduledInMinutesFromNowSearchRequest.data'; -export { MatchListWithStreamView } from './Match/Stream/matchListWithStream.view'; -export { MatchStreamDetailView } from './Match/Stream/matchStreamDetail.view'; -export { MatchStreamListView } from './Match/Stream/matchStreamList.view'; -export { MediaView } from './Media/media.view'; -export { MediaMinimalView } from './Media/mediaMinimal.view'; -export { MetricListView } from './Metric/metricList.view'; -export { StatisticOverallTournamentView } from './Overall/statisticOverallTournament.view'; -export { StatisticOverallUtCardResultsView } from './Overall/statisticOverallUtCardResults.view'; -export { PaginationView } from './pagination.view'; -export { AbstractParticipantView } from './Participant/abstractParticipant.view'; -export { ParticipantListView } from './Participant/participantList.view'; -export { ParticipantViewUnion } from './Participant/participantView.union'; -export { PlayerParticipantView } from './Participant/playerParticipant.view'; -export { TeamParticipantView } from './Participant/teamParticipant.view'; -export { TeamParticipantDetailView } from './Participant/teamParticipantDetail.view'; -export { TeamParticipantViewUnion } from './Participant/teamParticipantView.union'; -export { PlatformListView } from './Platform/platformList.view'; -export { PlayerListView } from './Player/playerList.view'; -export { PlayerListViewUnion } from './Player/playerListView.union'; -export { PlayerRosterView } from './Player/playerRoster.view'; -export { PlacementView } from './Ranking/Placement/placement.view'; -export { CheckInStatus } from './Registration/checkIn.status'; -export { PaginatedSearchRequestData } from './Request/paginatedSearchRequest.data'; -export { PaginatedSearchRequestDataUnion } from './Request/paginatedSearchRequestData.union'; +export { GameListViewUnion } from './Game/gameListView.union'; +export { RoundListView } from './Round/roundList.view'; export { RoundStageStructureWithMatchesView } from './Round/Match/roundStageStructureWithMatches.view'; export { RoundWithMatchesView } from './Round/Match/roundWithMatches.view'; -export { RoundListView } from './Round/roundList.view'; -export { RoundWithStageAndGroupView } from './Round/roundWithStageAndGroup.view'; -export { BaseSeasonView } from './Season/baseSeason.view'; -export { ListTournamentSearchRequestData } from './Season/listTournamentSearchRequest.data'; -export { SeasonWithTournamentGroupsView } from './Season/seasonWithTournamentGroups.view'; -export { StageListView } from './Stage/stageList.view'; -export { GroupedStatisticListView } from './Statistic/groupedStatisticList.view'; -export { StatisticClubView } from './Statistic/HeadToHead/statisticClub.view'; -export { StatisticPlayerView } from './Statistic/HeadToHead/statisticPlayer.view'; -export { StatisticListView } from './Statistic/statisticList.view'; -export { StatisticValueView } from './Statistic/statisticValue.view'; -export { TeamListView } from './Team/teamList.view'; -export { BaseStageStageStructureView } from './Tournament/baseStageStageStructure.view'; +export { DateRangeRequestData } from './DateRange/dateRangeRequest.data'; +export { PlacementView } from './Ranking/Placement/placement.view'; +export { PlatformListView } from './Platform/platformList.view'; +export { PaginatedSearchRequestDataUnion } from './Request/paginatedSearchRequestData.union'; +export { PaginatedSearchRequestData } from './Request/paginatedSearchRequest.data'; +export { RoundStageStructureView } from './Tournament/roundStageStructure.view'; export { BaseStageStageStructureViewUnion } from './Tournament/baseStageStageStructureView.union'; -export { DoubleEliminationStageStageStructureView } from './Tournament/doubleEliminationStageStageStructure.view'; -export { GroupStageStageStructureView } from './Tournament/groupStageStageStructure.view'; -export { GroupStageStructureView } from './Tournament/groupStageStructure.view'; export { ListSearchRequestData } from './Tournament/listSearchRequest.data'; -export { CreateUserTournamentRegistrationRequestData } from './Tournament/Registration/createUserTournamentRegistrationRequest.data'; export { UserTournamentRegistrationView } from './Tournament/Registration/userTournamentRegistration.view'; -export { RoundStageStructureView } from './Tournament/roundStageStructure.view'; -export { SingleEliminationStageStageStructureView } from './Tournament/singleEliminationStageStageStructure.view'; -export { SwissStageStructureView } from './Tournament/swissStageStructure.view'; +export { CreateUserTournamentRegistrationRequestData } from './Tournament/Registration/createUserTournamentRegistrationRequest.data'; +export { GroupStageStageStructureView } from './Tournament/groupStageStageStructure.view'; +export { BaseStageStageStructureView } from './Tournament/baseStageStageStructure.view'; +export { DoubleEliminationStageStageStructureView } from './Tournament/doubleEliminationStageStageStructure.view'; export { TotalUserRegistrationsView } from './Tournament/totalUserRegistrations.view'; +export { GroupStageStructureView } from './Tournament/groupStageStructure.view'; +export { SingleEliminationStageStageStructureView } from './Tournament/singleEliminationStageStageStructure.view'; export { TournamentListView } from './Tournament/tournamentList.view'; -export { TournamentGroupListView } from './TournamentGroup/tournamentGroupList.view'; -export { StatisticWeeklyUtCardResultsView } from './Weekly/statisticWeeklyUtCardResults.view'; - +export { MediaMinimalView } from './Media/mediaMinimal.view'; +export { MediaView } from './Media/media.view'; +export { GroupListView } from './Group/groupList.view'; +export { GroupDetailView } from './Group/groupDetail.view'; +export { GroupListViewUnion } from './Group/groupListView.union'; +export { GroupRankingView } from './Group/groupRanking.view'; +export { TeamListView } from './Team/teamList.view'; +export { CountryView } from './Country/country.view'; +export { TeamParticipantView } from './Participant/teamParticipant.view'; +export { ParticipantListView } from './Participant/participantList.view'; +export { TeamParticipantViewUnion } from './Participant/teamParticipantView.union'; +export { TeamParticipantDetailView } from './Participant/teamParticipantDetail.view'; +export { PlayerParticipantView } from './Participant/playerParticipant.view'; +export { AbstractParticipantView } from './Participant/abstractParticipant.view'; +export { ParticipantViewUnion } from './Participant/participantView.union'; +export { LineupPlayerView } from './Lineup/lineupPlayer.view'; +export { LineupListView } from './Lineup/lineupList.view'; +export { IdentityView } from './Identity/identity.view'; +export { CheckInStatus } from './Registration/checkIn.status'; +export { SeasonStatus } from './Enum/Season/season.status'; +export { MatchStatus } from './Enum/Match/match.status'; +export { MatchType } from './Enum/Match/match.type'; +export { MatchStreamCategory } from './Enum/Match/matchStream.category'; +export { RoundType } from './Enum/Round/round.type'; +export { OpponentSide } from './Enum/Opponent/opponent.side'; +export { RankingStatus } from './Enum/Ranking/ranking.status'; +export { StageType } from './Enum/Stage/stage.type'; +export { TournamentStatus } from './Enum/Tournament/tournament.status'; +export { ParticipantType } from './Enum/Participant/participant.type';