volleyballsimtypes 0.0.411 → 0.0.413
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.
|
@@ -117,6 +117,7 @@ export type Team = Omit<DataProps<_Team>, 'roster' | '_rating' | 'rating' | 'tac
|
|
|
117
117
|
name: string;
|
|
118
118
|
};
|
|
119
119
|
};
|
|
120
|
+
nationalCountryName?: string;
|
|
120
121
|
};
|
|
121
122
|
export type Standing = DataProps<_Standing> & {
|
|
122
123
|
position: number;
|
|
@@ -139,14 +140,18 @@ export type League = Omit<DataProps<_League>, 'divisions'> & {
|
|
|
139
140
|
export type TournamentMatch = Omit<DataProps<_TournamentMatch>, 'match'> & {
|
|
140
141
|
match: Match;
|
|
141
142
|
};
|
|
142
|
-
export type Tournament = Omit<DataProps<_Tournament>, 'matches'> & {
|
|
143
|
+
export type Tournament = Omit<DataProps<_Tournament>, 'matches' | 'teams' | 'champion'> & {
|
|
143
144
|
matches: TournamentMatch[];
|
|
145
|
+
teams: Team[];
|
|
146
|
+
champion?: Team;
|
|
144
147
|
};
|
|
145
148
|
export type QualifierMatch = Omit<DataProps<_QualifierMatch>, 'match'> & {
|
|
146
149
|
match: Match;
|
|
147
150
|
};
|
|
148
|
-
export type Qualifier = Omit<DataProps<_Qualifier>, 'matches'> & {
|
|
151
|
+
export type Qualifier = Omit<DataProps<_Qualifier>, 'matches' | 'teams' | 'champion'> & {
|
|
149
152
|
matches: QualifierMatch[];
|
|
153
|
+
teams: Team[];
|
|
154
|
+
champion?: Team;
|
|
150
155
|
};
|
|
151
156
|
export type NationalMatch = Omit<DataProps<_NationalMatch>, 'match'> & {
|
|
152
157
|
match: Match;
|
|
@@ -117,6 +117,7 @@ export type Team = Omit<DataProps<_Team>, 'roster' | '_rating' | 'rating' | 'tac
|
|
|
117
117
|
name: string;
|
|
118
118
|
};
|
|
119
119
|
};
|
|
120
|
+
nationalCountryName?: string;
|
|
120
121
|
};
|
|
121
122
|
export type Standing = DataProps<_Standing> & {
|
|
122
123
|
position: number;
|
|
@@ -139,14 +140,18 @@ export type League = Omit<DataProps<_League>, 'divisions'> & {
|
|
|
139
140
|
export type TournamentMatch = Omit<DataProps<_TournamentMatch>, 'match'> & {
|
|
140
141
|
match: Match;
|
|
141
142
|
};
|
|
142
|
-
export type Tournament = Omit<DataProps<_Tournament>, 'matches'> & {
|
|
143
|
+
export type Tournament = Omit<DataProps<_Tournament>, 'matches' | 'teams' | 'champion'> & {
|
|
143
144
|
matches: TournamentMatch[];
|
|
145
|
+
teams: Team[];
|
|
146
|
+
champion?: Team;
|
|
144
147
|
};
|
|
145
148
|
export type QualifierMatch = Omit<DataProps<_QualifierMatch>, 'match'> & {
|
|
146
149
|
match: Match;
|
|
147
150
|
};
|
|
148
|
-
export type Qualifier = Omit<DataProps<_Qualifier>, 'matches'> & {
|
|
151
|
+
export type Qualifier = Omit<DataProps<_Qualifier>, 'matches' | 'teams' | 'champion'> & {
|
|
149
152
|
matches: QualifierMatch[];
|
|
153
|
+
teams: Team[];
|
|
154
|
+
champion?: Team;
|
|
150
155
|
};
|
|
151
156
|
export type NationalMatch = Omit<DataProps<_NationalMatch>, 'match'> & {
|
|
152
157
|
match: Match;
|