@footballbingo/client 4.20.0 → 5.1.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 +10 -15
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1329,12 +1329,12 @@ export type FeaturedGame = {
|
|
|
1329
1329
|
isGlobalGame: boolean;
|
|
1330
1330
|
name: string | null;
|
|
1331
1331
|
tags: Array<string>;
|
|
1332
|
+
theme: string | null;
|
|
1332
1333
|
sessionCode: string | null;
|
|
1333
1334
|
instanceId: string | null;
|
|
1334
1335
|
currentPlayers: number;
|
|
1335
1336
|
maxPlayers: number | null;
|
|
1336
1337
|
boardSize: number;
|
|
1337
|
-
gameMode: string;
|
|
1338
1338
|
gameType: 'classic';
|
|
1339
1339
|
difficulty: 'beginner' | 'easy' | 'intermediate' | 'medium' | 'hard' | 'expert';
|
|
1340
1340
|
eventPool: string;
|
|
@@ -1380,7 +1380,6 @@ export type CreatedGame = {
|
|
|
1380
1380
|
eventPoolId: string | null;
|
|
1381
1381
|
maxPlayers: number | null;
|
|
1382
1382
|
isPrivate: boolean;
|
|
1383
|
-
isMultiplayer: boolean;
|
|
1384
1383
|
isGlobalGame: boolean;
|
|
1385
1384
|
entryFee: number;
|
|
1386
1385
|
prizePool: number;
|
|
@@ -1457,7 +1456,6 @@ export type GameBySessionCodeData = {
|
|
|
1457
1456
|
isGlobalGame: boolean;
|
|
1458
1457
|
maxPlayers: number | null;
|
|
1459
1458
|
isPrivate: boolean;
|
|
1460
|
-
isMultiplayer: boolean;
|
|
1461
1459
|
boardSize: number;
|
|
1462
1460
|
eventPoolId: string | null;
|
|
1463
1461
|
eventPool: {
|
|
@@ -1485,7 +1483,6 @@ export type GameBySessionCodeData = {
|
|
|
1485
1483
|
resolved: boolean;
|
|
1486
1484
|
resolvedAt?: string | null;
|
|
1487
1485
|
}> | null;
|
|
1488
|
-
gameMode: string;
|
|
1489
1486
|
gameType: 'classic';
|
|
1490
1487
|
entryFee: number;
|
|
1491
1488
|
prizePool: number;
|
|
@@ -1553,6 +1550,12 @@ export type GameBySessionCodeData = {
|
|
|
1553
1550
|
isRareEvent: boolean;
|
|
1554
1551
|
eventMinute: number | null;
|
|
1555
1552
|
}>;
|
|
1553
|
+
mysteryTiles?: Array<{
|
|
1554
|
+
index: number;
|
|
1555
|
+
flavor: 'hidden' | 'gamble';
|
|
1556
|
+
revealed: boolean;
|
|
1557
|
+
}>;
|
|
1558
|
+
freeShuffleUsed?: boolean;
|
|
1556
1559
|
} | null;
|
|
1557
1560
|
};
|
|
1558
1561
|
export type ReadyStatusData = {
|
|
@@ -1711,7 +1714,6 @@ export type UserGamesData = {
|
|
|
1711
1714
|
id: string;
|
|
1712
1715
|
name: string | null;
|
|
1713
1716
|
sessionCode: string;
|
|
1714
|
-
gameMode: string;
|
|
1715
1717
|
status: 'waiting' | 'inProgress' | 'completed' | 'expired' | 'abandoned';
|
|
1716
1718
|
fixtureId: string;
|
|
1717
1719
|
homeTeam: {
|
|
@@ -6069,7 +6071,6 @@ export type AdminListGameTemplatesResponse = {
|
|
|
6069
6071
|
createdById: string | null;
|
|
6070
6072
|
eventPoolId: string | null;
|
|
6071
6073
|
gameType: 'classic';
|
|
6072
|
-
isMultiplayer: boolean;
|
|
6073
6074
|
isPrivate: boolean;
|
|
6074
6075
|
maxPlayers: number | null;
|
|
6075
6076
|
tags: Array<string>;
|
|
@@ -6107,7 +6108,6 @@ export type AdminGameTemplateResponse = {
|
|
|
6107
6108
|
createdById: string | null;
|
|
6108
6109
|
eventPoolId: string | null;
|
|
6109
6110
|
gameType: 'classic';
|
|
6110
|
-
isMultiplayer: boolean;
|
|
6111
6111
|
isPrivate: boolean;
|
|
6112
6112
|
maxPlayers: number | null;
|
|
6113
6113
|
tags: Array<string>;
|
|
@@ -6169,7 +6169,6 @@ export type AdminArchiveGameTemplateResponse = {
|
|
|
6169
6169
|
createdById: string | null;
|
|
6170
6170
|
eventPoolId: string | null;
|
|
6171
6171
|
gameType: 'classic';
|
|
6172
|
-
isMultiplayer: boolean;
|
|
6173
6172
|
isPrivate: boolean;
|
|
6174
6173
|
maxPlayers: number | null;
|
|
6175
6174
|
tags: Array<string>;
|
|
@@ -6271,7 +6270,6 @@ export type AdminSessionDetailsResponse = {
|
|
|
6271
6270
|
name: string | null;
|
|
6272
6271
|
boardSize: number;
|
|
6273
6272
|
gameType: string | null;
|
|
6274
|
-
isMultiplayer: boolean;
|
|
6275
6273
|
createdById?: string | null;
|
|
6276
6274
|
eventPoolId?: string | null;
|
|
6277
6275
|
isPrivate?: boolean;
|
|
@@ -7330,7 +7328,7 @@ export type UpdateNewsArticleInput = {
|
|
|
7330
7328
|
};
|
|
7331
7329
|
export type CreateBingoGameInput = {
|
|
7332
7330
|
matchId?: string;
|
|
7333
|
-
boardSize?:
|
|
7331
|
+
boardSize?: 5;
|
|
7334
7332
|
boardGeneration?: 'shuffle' | 'random';
|
|
7335
7333
|
eventPoolId: string | null;
|
|
7336
7334
|
customEvents?: Array<{
|
|
@@ -7352,7 +7350,6 @@ export type CreateBingoGameInput = {
|
|
|
7352
7350
|
maxPlayers?: number | null;
|
|
7353
7351
|
isPrivate?: boolean;
|
|
7354
7352
|
autoStart?: boolean;
|
|
7355
|
-
isMultiplayer?: boolean;
|
|
7356
7353
|
gameType?: 'classic';
|
|
7357
7354
|
name?: string;
|
|
7358
7355
|
tags?: Array<string>;
|
|
@@ -8311,10 +8308,9 @@ export type RevokeImpersonationInput = {
|
|
|
8311
8308
|
};
|
|
8312
8309
|
export type CreateGameTemplateInput = {
|
|
8313
8310
|
name: string;
|
|
8314
|
-
boardSize:
|
|
8311
|
+
boardSize: 5;
|
|
8315
8312
|
eventPoolId?: string;
|
|
8316
8313
|
gameType?: string;
|
|
8317
|
-
isMultiplayer?: boolean;
|
|
8318
8314
|
isPrivate?: boolean;
|
|
8319
8315
|
maxPlayers?: number;
|
|
8320
8316
|
tags?: Array<string>;
|
|
@@ -8329,10 +8325,9 @@ export type CreateGameTemplateInput = {
|
|
|
8329
8325
|
};
|
|
8330
8326
|
export type UpdateGameTemplateInput = {
|
|
8331
8327
|
name?: string;
|
|
8332
|
-
boardSize?:
|
|
8328
|
+
boardSize?: 5;
|
|
8333
8329
|
eventPoolId?: string;
|
|
8334
8330
|
gameType?: string;
|
|
8335
|
-
isMultiplayer?: boolean;
|
|
8336
8331
|
isPrivate?: boolean;
|
|
8337
8332
|
maxPlayers?: number;
|
|
8338
8333
|
tags?: Array<string>;
|