@footballbingo/client 2.1.2 → 2.2.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 +8 -6
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1415,6 +1415,7 @@ export type JoinGameData = {
|
|
|
1415
1415
|
fixtureId: string;
|
|
1416
1416
|
startedAt: string | null;
|
|
1417
1417
|
endedAt: string | null;
|
|
1418
|
+
autoStart: boolean;
|
|
1418
1419
|
currentPlayers: number;
|
|
1419
1420
|
status: 'waiting' | 'inProgress' | 'completed' | 'expired' | 'abandoned';
|
|
1420
1421
|
};
|
|
@@ -1489,6 +1490,7 @@ export type GameBySessionCodeData = {
|
|
|
1489
1490
|
fixtureId: string;
|
|
1490
1491
|
startedAt: string | null;
|
|
1491
1492
|
endedAt: string | null;
|
|
1493
|
+
autoStart: boolean;
|
|
1492
1494
|
currentPlayers: number;
|
|
1493
1495
|
status: 'waiting' | 'inProgress' | 'completed' | 'expired' | 'abandoned';
|
|
1494
1496
|
};
|
|
@@ -3740,11 +3742,11 @@ export type LiveActivityItem = {
|
|
|
3740
3742
|
userId: string;
|
|
3741
3743
|
username: string;
|
|
3742
3744
|
avatarUrl?: string;
|
|
3743
|
-
activityType: 'bingo' | 'full-house' | 'first-bingo' | 'speed-bingo';
|
|
3744
|
-
description
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3745
|
+
activityType: 'bingo' | 'full-house' | 'first-bingo' | 'speed-bingo' | 'perfect-game' | 'prediction' | 'prediction-correct' | 'prediction-streak' | 'flash-correct' | 'stake-created' | 'stake-accepted' | 'stake-won' | 'achievement-unlocked' | 'challenge-completed' | 'level-up' | 'rank-up' | 'lineup-created' | 'tactics-created' | 'transfer-plan-created' | 'community-joined' | 'community-post' | 'mini-game' | 'login-streak' | 'other';
|
|
3746
|
+
description: string;
|
|
3747
|
+
entityType?: string;
|
|
3748
|
+
entityId?: string;
|
|
3749
|
+
domain: string;
|
|
3748
3750
|
timestamp: string;
|
|
3749
3751
|
};
|
|
3750
3752
|
export type LiveActivitiesServiceResult = {
|
|
@@ -20948,7 +20950,7 @@ export type ListStakesData = {
|
|
|
20948
20950
|
path?: never;
|
|
20949
20951
|
query: {
|
|
20950
20952
|
fixtureId: string;
|
|
20951
|
-
status?:
|
|
20953
|
+
status?: 'open' | 'closed' | 'resolved' | 'expired' | 'cancelled' | 'voided';
|
|
20952
20954
|
limit?: number;
|
|
20953
20955
|
offset?: number | null;
|
|
20954
20956
|
};
|