@footballbingo/client 4.16.0 → 4.17.0
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/dist/types.gen.d.ts +3 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2136,6 +2136,7 @@ export type AvailablePacksData = Array<{
|
|
|
2136
2136
|
website: string | null;
|
|
2137
2137
|
} | null;
|
|
2138
2138
|
purchaseCount: number;
|
|
2139
|
+
starredTeamCount: number;
|
|
2139
2140
|
}>;
|
|
2140
2141
|
export type PackDetailsData = {
|
|
2141
2142
|
id: string;
|
|
@@ -8191,13 +8192,13 @@ export type CreatePredictionInput = {
|
|
|
8191
8192
|
notes?: string | null;
|
|
8192
8193
|
predictedLineup?: {
|
|
8193
8194
|
homePlayers: Array<{
|
|
8194
|
-
photo?: string;
|
|
8195
|
+
photo?: string | '';
|
|
8195
8196
|
playerId: number;
|
|
8196
8197
|
position: string;
|
|
8197
8198
|
playerName: string;
|
|
8198
8199
|
}>;
|
|
8199
8200
|
awayPlayers: Array<{
|
|
8200
|
-
photo?: string;
|
|
8201
|
+
photo?: string | '';
|
|
8201
8202
|
playerId: number;
|
|
8202
8203
|
position: string;
|
|
8203
8204
|
playerName: string;
|