@footballbingo/client 4.14.0 → 4.15.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.
@@ -4577,7 +4577,7 @@ export type CreationCommentResponse = {
4577
4577
  userId: string;
4578
4578
  username: string;
4579
4579
  avatarUrl: string | null;
4580
- entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news';
4580
+ entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction';
4581
4581
  entityId: string;
4582
4582
  content: string;
4583
4583
  parentId: string | null;
@@ -8107,7 +8107,7 @@ export type UnfollowHashtagResponse = {
8107
8107
  };
8108
8108
  export type ShareToUsersInput = {
8109
8109
  toUserIds: Array<string>;
8110
- entityType: 'lineup' | 'tactics' | 'transfer_plan' | 'news';
8110
+ entityType: 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction';
8111
8111
  entityId: string;
8112
8112
  message?: string;
8113
8113
  };
@@ -8198,6 +8198,7 @@ export type CreatePredictionInput = {
8198
8198
  homeFormation: string;
8199
8199
  awayFormation: string;
8200
8200
  } | null;
8201
+ autoShareToFeed?: boolean;
8201
8202
  };
8202
8203
  export type ClaimAdRewardInput = {
8203
8204
  rewardToken: string;
@@ -18817,7 +18818,7 @@ export type UpdateMatchCommentResponse = UpdateMatchCommentResponses[keyof Updat
18817
18818
  export type ListCreationCommentsData = {
18818
18819
  body?: never;
18819
18820
  path: {
18820
- entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news';
18821
+ entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction';
18821
18822
  entityId: string;
18822
18823
  };
18823
18824
  query?: {
@@ -18855,7 +18856,7 @@ export type ListCreationCommentsResponse2 = ListCreationCommentsResponses[keyof
18855
18856
  export type CreateCreationCommentData = {
18856
18857
  body?: CreateCreationCommentInput;
18857
18858
  path: {
18858
- entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news';
18859
+ entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction';
18859
18860
  entityId: string;
18860
18861
  };
18861
18862
  query?: never;
@@ -19133,7 +19134,7 @@ export type UpdateCreationCommentResponse = UpdateCreationCommentResponses[keyof
19133
19134
  export type ToggleCreationLikeData = {
19134
19135
  body?: never;
19135
19136
  path: {
19136
- entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news';
19137
+ entityType: 'feed_post' | 'lineup' | 'tactics' | 'transfer_plan' | 'news' | 'prediction';
19137
19138
  entityId: string;
19138
19139
  };
19139
19140
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@footballbingo/client",
3
- "version": "4.14.0",
3
+ "version": "4.15.0",
4
4
  "description": "Auto-generated TypeScript client for the Football Bingo API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",