@footballbingo/client 2.6.5 → 2.6.6
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 +24 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1393,6 +1393,14 @@ export type CreatedGame = {
|
|
|
1393
1393
|
id: string;
|
|
1394
1394
|
tiles: Array<Array<string>>;
|
|
1395
1395
|
markedTiles: Array<number>;
|
|
1396
|
+
claimableTiles: Array<{
|
|
1397
|
+
tileIndex: number;
|
|
1398
|
+
tileEvent: string;
|
|
1399
|
+
markedAt: string;
|
|
1400
|
+
claimWindowEnd: string;
|
|
1401
|
+
isRareEvent: boolean;
|
|
1402
|
+
eventMinute: number | null;
|
|
1403
|
+
}>;
|
|
1396
1404
|
} | null;
|
|
1397
1405
|
};
|
|
1398
1406
|
export type CreateGameData = {
|
|
@@ -1430,6 +1438,14 @@ export type JoinGameData = {
|
|
|
1430
1438
|
id: string;
|
|
1431
1439
|
tiles: Array<Array<string>>;
|
|
1432
1440
|
markedTiles: Array<number>;
|
|
1441
|
+
claimableTiles: Array<{
|
|
1442
|
+
tileIndex: number;
|
|
1443
|
+
tileEvent: string;
|
|
1444
|
+
markedAt: string;
|
|
1445
|
+
claimWindowEnd: string;
|
|
1446
|
+
isRareEvent: boolean;
|
|
1447
|
+
eventMinute: number | null;
|
|
1448
|
+
}>;
|
|
1433
1449
|
};
|
|
1434
1450
|
};
|
|
1435
1451
|
export type GameBySessionCodeData = {
|
|
@@ -1524,6 +1540,14 @@ export type GameBySessionCodeData = {
|
|
|
1524
1540
|
}>;
|
|
1525
1541
|
score: number;
|
|
1526
1542
|
hasFullHouse: boolean;
|
|
1543
|
+
claimableTiles: Array<{
|
|
1544
|
+
tileIndex: number;
|
|
1545
|
+
tileEvent: string;
|
|
1546
|
+
markedAt: string;
|
|
1547
|
+
claimWindowEnd: string;
|
|
1548
|
+
isRareEvent: boolean;
|
|
1549
|
+
eventMinute: number | null;
|
|
1550
|
+
}>;
|
|
1527
1551
|
} | null;
|
|
1528
1552
|
};
|
|
1529
1553
|
export type ReadyStatusData = {
|