@footballbingo/client 5.23.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.
- package/dist/types.gen.d.ts +4 -39
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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;
|
|
@@ -5818,7 +5783,7 @@ export type AdminDashboardResponse = {
|
|
|
5818
5783
|
thisMonth: number;
|
|
5819
5784
|
activeToday: number;
|
|
5820
5785
|
activeThisWeek: number;
|
|
5821
|
-
|
|
5786
|
+
withUnlocks: number;
|
|
5822
5787
|
banned: number;
|
|
5823
5788
|
};
|
|
5824
5789
|
games: {
|
|
@@ -8247,7 +8212,7 @@ export type SubmitMatchRatingInput = {
|
|
|
8247
8212
|
}>;
|
|
8248
8213
|
};
|
|
8249
8214
|
export type CreateReportInput = {
|
|
8250
|
-
contentType: 'match_comment' | 'game_chat' | 'user';
|
|
8215
|
+
contentType: 'match_comment' | 'game_chat' | 'user' | 'feed_post' | 'creation_comment';
|
|
8251
8216
|
contentId: string;
|
|
8252
8217
|
reason: 'offensive' | 'spam' | 'harassment' | 'other';
|
|
8253
8218
|
description?: string;
|