@footballbingo/client 5.22.0 → 5.24.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.
@@ -3445,43 +3445,6 @@ export type UserActivityItem = {
3445
3445
  followingId: string;
3446
3446
  followingUsername: string;
3447
3447
  followingAvatarUrl: string | null;
3448
- } | {
3449
- stakeId: string;
3450
- fixtureId: string;
3451
- predictionType: string;
3452
- coinAmount: number;
3453
- status: string;
3454
- } | {
3455
- stakeId: string;
3456
- fixtureId: string;
3457
- predictionType: string;
3458
- coinsEscrowed: number;
3459
- } | {
3460
- stakeId: string;
3461
- fixtureId: string;
3462
- outcome: string;
3463
- coinAmount: number;
3464
- } | {
3465
- flashPredictionId: string;
3466
- fixtureId: string;
3467
- question: string;
3468
- answer: string;
3469
- isCorrect: boolean | null;
3470
- } | {
3471
- postId: string;
3472
- communityId: string;
3473
- communityName: string;
3474
- isReply: boolean;
3475
- depth: number;
3476
- upvotesCount: number;
3477
- repliesCount: number;
3478
- preview: string;
3479
- } | {
3480
- communityId: string;
3481
- communityName: string;
3482
- communityAvatar: string | null;
3483
- communityType: string;
3484
- role: string;
3485
3448
  } | {
3486
3449
  gameType: string;
3487
3450
  gameName: string;
@@ -3798,6 +3761,8 @@ export type FeedPost = {
3798
3761
  subtitle?: string | null;
3799
3762
  imageUrl?: string | null;
3800
3763
  shareToken?: string | null;
3764
+ slug?: string | null;
3765
+ url: string;
3801
3766
  data?: {
3802
3767
  [key: string]: unknown;
3803
3768
  } | null;
@@ -5532,7 +5497,7 @@ export type ActiveBoostsResponse = {
5532
5497
  };
5533
5498
  export type StoreCatalogItem = {
5534
5499
  sku: string;
5535
- category: 'feature_unlock' | 'coin_pack' | 'bundle' | 'boost';
5500
+ category: 'feature_unlock' | 'coin_pack' | 'bundle' | 'boost' | 'subscription';
5536
5501
  name: string;
5537
5502
  description: string;
5538
5503
  priceUsdCents?: number;
@@ -5541,6 +5506,7 @@ export type StoreCatalogItem = {
5541
5506
  badge?: string;
5542
5507
  featured?: boolean;
5543
5508
  order: number;
5509
+ billingPeriod?: 'month' | 'year';
5544
5510
  };
5545
5511
  export type StoreCatalogResponse = {
5546
5512
  items: Array<StoreCatalogItem>;
@@ -5817,7 +5783,7 @@ export type AdminDashboardResponse = {
5817
5783
  thisMonth: number;
5818
5784
  activeToday: number;
5819
5785
  activeThisWeek: number;
5820
- premium: number;
5786
+ withUnlocks: number;
5821
5787
  banned: number;
5822
5788
  };
5823
5789
  games: {
@@ -8246,7 +8212,7 @@ export type SubmitMatchRatingInput = {
8246
8212
  }>;
8247
8213
  };
8248
8214
  export type CreateReportInput = {
8249
- contentType: 'match_comment' | 'game_chat' | 'user';
8215
+ contentType: 'match_comment' | 'game_chat' | 'user' | 'feed_post' | 'creation_comment';
8250
8216
  contentId: string;
8251
8217
  reason: 'offensive' | 'spam' | 'harassment' | 'other';
8252
8218
  description?: string;
@@ -8358,7 +8324,7 @@ export type DeleteCosmeticResponse = {
8358
8324
  };
8359
8325
  export type PurchaseSubscriptionInput = {
8360
8326
  platform: 'ios' | 'android' | 'web';
8361
- productId: 'boost_2x_24h' | 'coins_500' | 'coins_1500' | 'coins_5000' | 'coins_12000' | 'coins_30000' | 'newcomer_pack' | 'founders_pack';
8327
+ productId: 'boost_2x_24h' | 'coins_500' | 'coins_1500' | 'coins_5000' | 'coins_12000' | 'coins_30000' | 'ad_free_monthly' | 'ad_free_yearly' | 'newcomer_pack' | 'founders_pack_v1';
8362
8328
  receipt?: string;
8363
8329
  purchaseToken?: string;
8364
8330
  sessionId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@footballbingo/client",
3
- "version": "5.22.0",
3
+ "version": "5.24.0",
4
4
  "description": "Auto-generated TypeScript client for the Football Bingo API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",