@footballbingo/client 2.6.3 → 2.6.5
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 +9 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1567,6 +1567,14 @@ export type PlayerBoardData = {
|
|
|
1567
1567
|
completedAt?: string;
|
|
1568
1568
|
points?: number;
|
|
1569
1569
|
}>;
|
|
1570
|
+
claimableTiles: Array<{
|
|
1571
|
+
tileIndex: number;
|
|
1572
|
+
tileEvent: string;
|
|
1573
|
+
markedAt: string;
|
|
1574
|
+
claimWindowEnd: string;
|
|
1575
|
+
isRareEvent: boolean;
|
|
1576
|
+
eventMinute: number | null;
|
|
1577
|
+
}>;
|
|
1570
1578
|
};
|
|
1571
1579
|
};
|
|
1572
1580
|
export type MarkTileData = {
|
|
@@ -5393,6 +5401,7 @@ export type ActiveAcceptedStake = Stake & {
|
|
|
5393
5401
|
export type UserActiveStakesResponse = {
|
|
5394
5402
|
posted: Array<Stake>;
|
|
5395
5403
|
accepted: Array<ActiveAcceptedStake>;
|
|
5404
|
+
targetedAtMe: Array<Stake>;
|
|
5396
5405
|
};
|
|
5397
5406
|
export type HistoryAcceptedStake = Stake & {
|
|
5398
5407
|
myAcceptance: UserAcceptanceSummary & {
|