@footballbingo/client 4.20.0 → 5.0.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 +4 -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;
|
|
@@ -1711,7 +1708,6 @@ export type UserGamesData = {
|
|
|
1711
1708
|
id: string;
|
|
1712
1709
|
name: string | null;
|
|
1713
1710
|
sessionCode: string;
|
|
1714
|
-
gameMode: string;
|
|
1715
1711
|
status: 'waiting' | 'inProgress' | 'completed' | 'expired' | 'abandoned';
|
|
1716
1712
|
fixtureId: string;
|
|
1717
1713
|
homeTeam: {
|
|
@@ -6069,7 +6065,6 @@ export type AdminListGameTemplatesResponse = {
|
|
|
6069
6065
|
createdById: string | null;
|
|
6070
6066
|
eventPoolId: string | null;
|
|
6071
6067
|
gameType: 'classic';
|
|
6072
|
-
isMultiplayer: boolean;
|
|
6073
6068
|
isPrivate: boolean;
|
|
6074
6069
|
maxPlayers: number | null;
|
|
6075
6070
|
tags: Array<string>;
|
|
@@ -6107,7 +6102,6 @@ export type AdminGameTemplateResponse = {
|
|
|
6107
6102
|
createdById: string | null;
|
|
6108
6103
|
eventPoolId: string | null;
|
|
6109
6104
|
gameType: 'classic';
|
|
6110
|
-
isMultiplayer: boolean;
|
|
6111
6105
|
isPrivate: boolean;
|
|
6112
6106
|
maxPlayers: number | null;
|
|
6113
6107
|
tags: Array<string>;
|
|
@@ -6169,7 +6163,6 @@ export type AdminArchiveGameTemplateResponse = {
|
|
|
6169
6163
|
createdById: string | null;
|
|
6170
6164
|
eventPoolId: string | null;
|
|
6171
6165
|
gameType: 'classic';
|
|
6172
|
-
isMultiplayer: boolean;
|
|
6173
6166
|
isPrivate: boolean;
|
|
6174
6167
|
maxPlayers: number | null;
|
|
6175
6168
|
tags: Array<string>;
|
|
@@ -6271,7 +6264,6 @@ export type AdminSessionDetailsResponse = {
|
|
|
6271
6264
|
name: string | null;
|
|
6272
6265
|
boardSize: number;
|
|
6273
6266
|
gameType: string | null;
|
|
6274
|
-
isMultiplayer: boolean;
|
|
6275
6267
|
createdById?: string | null;
|
|
6276
6268
|
eventPoolId?: string | null;
|
|
6277
6269
|
isPrivate?: boolean;
|
|
@@ -7330,7 +7322,7 @@ export type UpdateNewsArticleInput = {
|
|
|
7330
7322
|
};
|
|
7331
7323
|
export type CreateBingoGameInput = {
|
|
7332
7324
|
matchId?: string;
|
|
7333
|
-
boardSize?:
|
|
7325
|
+
boardSize?: 5;
|
|
7334
7326
|
boardGeneration?: 'shuffle' | 'random';
|
|
7335
7327
|
eventPoolId: string | null;
|
|
7336
7328
|
customEvents?: Array<{
|
|
@@ -7352,7 +7344,6 @@ export type CreateBingoGameInput = {
|
|
|
7352
7344
|
maxPlayers?: number | null;
|
|
7353
7345
|
isPrivate?: boolean;
|
|
7354
7346
|
autoStart?: boolean;
|
|
7355
|
-
isMultiplayer?: boolean;
|
|
7356
7347
|
gameType?: 'classic';
|
|
7357
7348
|
name?: string;
|
|
7358
7349
|
tags?: Array<string>;
|
|
@@ -8311,10 +8302,9 @@ export type RevokeImpersonationInput = {
|
|
|
8311
8302
|
};
|
|
8312
8303
|
export type CreateGameTemplateInput = {
|
|
8313
8304
|
name: string;
|
|
8314
|
-
boardSize:
|
|
8305
|
+
boardSize: 5;
|
|
8315
8306
|
eventPoolId?: string;
|
|
8316
8307
|
gameType?: string;
|
|
8317
|
-
isMultiplayer?: boolean;
|
|
8318
8308
|
isPrivate?: boolean;
|
|
8319
8309
|
maxPlayers?: number;
|
|
8320
8310
|
tags?: Array<string>;
|
|
@@ -8329,10 +8319,9 @@ export type CreateGameTemplateInput = {
|
|
|
8329
8319
|
};
|
|
8330
8320
|
export type UpdateGameTemplateInput = {
|
|
8331
8321
|
name?: string;
|
|
8332
|
-
boardSize?:
|
|
8322
|
+
boardSize?: 5;
|
|
8333
8323
|
eventPoolId?: string;
|
|
8334
8324
|
gameType?: string;
|
|
8335
|
-
isMultiplayer?: boolean;
|
|
8336
8325
|
isPrivate?: boolean;
|
|
8337
8326
|
maxPlayers?: number;
|
|
8338
8327
|
tags?: Array<string>;
|