@footballbingo/client 5.8.0 → 5.10.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 +11 -6
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4632,7 +4632,7 @@ export type CreationCommentResponse = {
|
|
|
4632
4632
|
userId: string;
|
|
4633
4633
|
username: string;
|
|
4634
4634
|
avatarUrl: string | null;
|
|
4635
|
-
entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board';
|
|
4635
|
+
entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board' | 'match_rating';
|
|
4636
4636
|
entityId: string;
|
|
4637
4637
|
content: string;
|
|
4638
4638
|
parentId: string | null;
|
|
@@ -4716,6 +4716,11 @@ export type MatchRatingResponse = {
|
|
|
4716
4716
|
manOfTheMatchPhoto?: string | null;
|
|
4717
4717
|
comment: string | null;
|
|
4718
4718
|
feedPostId?: string | null;
|
|
4719
|
+
likesCount?: number;
|
|
4720
|
+
commentsCount?: number;
|
|
4721
|
+
sharesCount?: number;
|
|
4722
|
+
viewCount?: number;
|
|
4723
|
+
isLikedByViewer?: boolean;
|
|
4719
4724
|
fixture?: {
|
|
4720
4725
|
homeTeam: FixtureTeam & {
|
|
4721
4726
|
id: number;
|
|
@@ -4866,8 +4871,8 @@ export type RatingFormDataResponse = {
|
|
|
4866
4871
|
existingRating: MatchRatingResponse & unknown;
|
|
4867
4872
|
};
|
|
4868
4873
|
export type SharedMatchRatingResponse = MatchRatingResponse & {
|
|
4869
|
-
shareUrl: string;
|
|
4870
4874
|
viewCount: number;
|
|
4875
|
+
shareUrl: string;
|
|
4871
4876
|
isOwner: boolean;
|
|
4872
4877
|
};
|
|
4873
4878
|
export type RatingShareUrlResponse = {
|
|
@@ -8215,7 +8220,7 @@ export type UnfollowHashtagResponse = {
|
|
|
8215
8220
|
};
|
|
8216
8221
|
export type ShareToUsersInput = {
|
|
8217
8222
|
toUserIds: Array<string>;
|
|
8218
|
-
entityType: 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board';
|
|
8223
|
+
entityType: 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board' | 'match_rating';
|
|
8219
8224
|
entityId: string;
|
|
8220
8225
|
message?: string;
|
|
8221
8226
|
};
|
|
@@ -19312,7 +19317,7 @@ export type UpdateMatchCommentResponse = UpdateMatchCommentResponses[keyof Updat
|
|
|
19312
19317
|
export type ListCreationCommentsData = {
|
|
19313
19318
|
body?: never;
|
|
19314
19319
|
path: {
|
|
19315
|
-
entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board';
|
|
19320
|
+
entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board' | 'match_rating';
|
|
19316
19321
|
entityId: string;
|
|
19317
19322
|
};
|
|
19318
19323
|
query?: {
|
|
@@ -19350,7 +19355,7 @@ export type ListCreationCommentsResponse2 = ListCreationCommentsResponses[keyof
|
|
|
19350
19355
|
export type CreateCreationCommentData = {
|
|
19351
19356
|
body?: CreateCreationCommentInput;
|
|
19352
19357
|
path: {
|
|
19353
|
-
entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board';
|
|
19358
|
+
entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board' | 'match_rating';
|
|
19354
19359
|
entityId: string;
|
|
19355
19360
|
};
|
|
19356
19361
|
query?: never;
|
|
@@ -19628,7 +19633,7 @@ export type UpdateCreationCommentResponse = UpdateCreationCommentResponses[keyof
|
|
|
19628
19633
|
export type ToggleCreationLikeData = {
|
|
19629
19634
|
body?: never;
|
|
19630
19635
|
path: {
|
|
19631
|
-
entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board';
|
|
19636
|
+
entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction' | 'bingo_board' | 'match_rating';
|
|
19632
19637
|
entityId: string;
|
|
19633
19638
|
};
|
|
19634
19639
|
query?: never;
|