@footballbingo/client 4.10.0 → 4.11.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 +5 -3
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4673,6 +4673,7 @@ export type MatchRatingResponse = {
|
|
|
4673
4673
|
logo: string;
|
|
4674
4674
|
score: number | null;
|
|
4675
4675
|
};
|
|
4676
|
+
date?: string | null;
|
|
4676
4677
|
} | null;
|
|
4677
4678
|
user?: {
|
|
4678
4679
|
id: string;
|
|
@@ -4682,7 +4683,7 @@ export type MatchRatingResponse = {
|
|
|
4682
4683
|
playerRatings: Array<PlayerRating>;
|
|
4683
4684
|
createdAt: string;
|
|
4684
4685
|
updatedAt: string;
|
|
4685
|
-
shareToken
|
|
4686
|
+
shareToken: string;
|
|
4686
4687
|
shareUrl?: string | null;
|
|
4687
4688
|
};
|
|
4688
4689
|
export type ManOfTheMatchStat = {
|
|
@@ -4809,7 +4810,6 @@ export type RatingFormDataResponse = {
|
|
|
4809
4810
|
existingRating: MatchRatingResponse & unknown;
|
|
4810
4811
|
};
|
|
4811
4812
|
export type SharedMatchRatingResponse = MatchRatingResponse & {
|
|
4812
|
-
shareToken: string;
|
|
4813
4813
|
shareUrl: string;
|
|
4814
4814
|
viewCount: number;
|
|
4815
4815
|
isOwner: boolean;
|
|
@@ -8057,7 +8057,7 @@ export type UnfollowHashtagResponse = {
|
|
|
8057
8057
|
};
|
|
8058
8058
|
export type ShareToUsersInput = {
|
|
8059
8059
|
toUserIds: Array<string>;
|
|
8060
|
-
entityType: 'lineup' | 'tactics' | 'transfer_plan';
|
|
8060
|
+
entityType: 'lineup' | 'tactics' | 'transfer_plan' | 'news';
|
|
8061
8061
|
entityId: string;
|
|
8062
8062
|
message?: string;
|
|
8063
8063
|
};
|
|
@@ -17119,6 +17119,7 @@ export type ListTrendingTacticsBoardsData = {
|
|
|
17119
17119
|
query?: {
|
|
17120
17120
|
page?: number;
|
|
17121
17121
|
limit?: number;
|
|
17122
|
+
offset?: number | null;
|
|
17122
17123
|
};
|
|
17123
17124
|
url: '/api/v1/community/tactics-boards/trending';
|
|
17124
17125
|
};
|
|
@@ -17152,6 +17153,7 @@ export type ListPopularTacticsBoardsData = {
|
|
|
17152
17153
|
query?: {
|
|
17153
17154
|
page?: number;
|
|
17154
17155
|
limit?: number;
|
|
17156
|
+
offset?: number | null;
|
|
17155
17157
|
};
|
|
17156
17158
|
url: '/api/v1/community/tactics-boards/popular';
|
|
17157
17159
|
};
|