Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Generated Interface, do not change manually!

import { MediaMinimalView } from '../Media';
import { MediaMinimalView } from './mediaMinimal.view';

export interface StatisticOverallUtCardResultsView {
goalsShot: number | null;
Expand Down
4 changes: 2 additions & 2 deletions libs/types/src/lib/api/Participant/participantList.view.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Generated Interface, do not change manually!
import { StatisticClubView } from '../Statistic/HeadToHead';
import { MediaMinimalView } from './../Media/mediaMinimal.view';
import { ClubView } from './club.view';

export interface ParticipantListView {
id: string;
Expand All @@ -10,7 +10,7 @@ export interface ParticipantListView {
profileType: string | null;
profileId: string | null;
number: number | null;
footballClub: StatisticClubView | null;
footballClub: ClubView | null;
}

export default ParticipantListView;
5 changes: 2 additions & 3 deletions libs/types/src/lib/api/Round/roundWithStageAndGroup.view.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Generated Interface, do not change manually!

import { MediaMinimalView } from '../Media';
import { MediaMinimalView } from './mediaMinimal.view';

export interface StatisticWeeklyUtCardResultsView {
goalsShot: number | null;
Expand Down
160 changes: 80 additions & 80 deletions libs/types/src/lib/api/index.ts
Original file line number Diff line number Diff line change
@@ -1,96 +1,96 @@
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 { FootballPlayerListView } from './FootballPlayer/footballPlayerList.view';
export { FormViolationView } from './Form/formViolation.view';
export { EventListView } from './Game/Event/eventList.view';
export { EventListViewUnion } from './Game/Event/eventListView.union';
export { PlayerEventView } from './Game/Event/playerEvent.view';
export { SubstitutionEventView } from './Game/Event/substitutionEvent.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 { StatisticListView } from './Statistic/statisticList.view';
export { StatisticValueView } from './Statistic/statisticValue.view';
export { RoundWithStageAndGroupView } from './Round/roundWithStageAndGroup.view';
export { StageListView } from './Stage/stageList.view';
export { LineupPlayerVView } from './Lineup/lineupPlayerV.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 { FootballPlayerListView } from './FootballPlayer/footballPlayerList.view';
export { PlayerRosterView } from './Player/playerRoster.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 { 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 { MetricListView } from './Metric/metricList.view';
export { ListTournamentSearchRequestData } from './Season/listTournamentSearchRequest.data';
export { BaseSeasonView } from './Season/baseSeason.view';
export { SeasonWithTournamentGroupsView } from './Season/seasonWithTournamentGroups.view';
export { StageListView } from './Stage/stageList.view';
export { TournamentGroupListView } from './TournamentGroup/tournamentGroupList.view';
export { StatisticOverallUtCardResultsView } from './Overall/statisticOverallUtCardResults.view';
export { StatisticOverallTournamentView } from './Overall/statisticOverallTournament.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 { MatchGameLineupRequestData } from './Match/Game/matchGameLineupRequest.data';
export { MatchListView } from './Match/matchList.view';
export { MatchRankingView } from './Match/matchRanking.view';
export { IdentityMatchResultView } from './Match/identityMatchResult.view';
export { DetailedMatchListView } from './Match/detailedMatchList.view';
export { MatchListViewUnion } from './Match/matchListView.union';
export { LastXMatchesByIdentityView } from './Match/lastXMatchesByIdentity.view';
export { FormViolationView } from './Form/formViolation.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 { GameListView } from './Game/gameList.view';
export { LastXGamesByMatchGameView } from './Game/lastXGamesByMatchGame.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 { LastXGamesByPlayerIdentityView } from './Game/lastXGamesByPlayerIdentity.view';
export { LastXGamesByPlayerView } from './Game/lastXGamesByPlayer.view';
export { GameDetailView } from './Game/gameDetail.view';
export { GameRankingView } from './Game/gameRanking.view';
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 { 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 { 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 { SwissStageStructureView } from './Tournament/swissStageStructure.view';
export { TotalUserRegistrationsView } from './Tournament/totalUserRegistrations.view';
export { TournamentListView } from './Tournament/tournamentList.view';
export { TournamentGroupListView } from './TournamentGroup/tournamentGroupList.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 { StatisticWeeklyUtCardResultsView } from './Weekly/statisticWeeklyUtCardResults.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';
Loading