@footballbingo/client 4.15.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.
@@ -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;
@@ -5310,13 +5311,20 @@ export type SharedPredictionResponse = {
5310
5311
  shareToken: string | null;
5311
5312
  shareUrl: string | null;
5312
5313
  isPublic: boolean;
5314
+ likesCount: number;
5315
+ commentsCount: number;
5316
+ viewCount: number;
5317
+ sharesCount: number;
5318
+ isLikedByUser: boolean | null;
5313
5319
  createdAt: string;
5314
5320
  updatedAt: string;
5315
5321
  resolvedAt: string | null;
5316
5322
  deletedAt: string | null;
5317
5323
  isDeleted: boolean;
5318
5324
  user: {
5325
+ id: string;
5319
5326
  username: string;
5327
+ avatarUrl: string | null;
5320
5328
  };
5321
5329
  predictedLineup: PredictedLineup;
5322
5330
  };
@@ -8184,13 +8192,13 @@ export type CreatePredictionInput = {
8184
8192
  notes?: string | null;
8185
8193
  predictedLineup?: {
8186
8194
  homePlayers: Array<{
8187
- photo?: string;
8195
+ photo?: string | '';
8188
8196
  playerId: number;
8189
8197
  position: string;
8190
8198
  playerName: string;
8191
8199
  }>;
8192
8200
  awayPlayers: Array<{
8193
- photo?: string;
8201
+ photo?: string | '';
8194
8202
  playerId: number;
8195
8203
  position: string;
8196
8204
  playerName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@footballbingo/client",
3
- "version": "4.15.0",
3
+ "version": "4.17.0",
4
4
  "description": "Auto-generated TypeScript client for the Football Bingo API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",