@footballbingo/client 5.13.0 → 5.15.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 +25 -8
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1525,9 +1525,12 @@ export type GameBySessionCodeData = {
|
|
|
1525
1525
|
hasFullHouse?: boolean;
|
|
1526
1526
|
equippedCosmetics: {
|
|
1527
1527
|
avatarFrame: string | null;
|
|
1528
|
-
boardTheme: string | null;
|
|
1529
|
-
boardThemeKey: string | null;
|
|
1530
1528
|
badge: string | null;
|
|
1529
|
+
boardTheme: string | null;
|
|
1530
|
+
pitchTheme: string | null;
|
|
1531
|
+
victoryCelebration: string | null;
|
|
1532
|
+
tileAnimation: string | null;
|
|
1533
|
+
ownedEmotePacks: Array<string>;
|
|
1531
1534
|
};
|
|
1532
1535
|
}>;
|
|
1533
1536
|
hasJoined: boolean;
|
|
@@ -1841,9 +1844,12 @@ export type GameActivitiesData = {
|
|
|
1841
1844
|
level: number;
|
|
1842
1845
|
equippedCosmetics: {
|
|
1843
1846
|
avatarFrame: string | null;
|
|
1844
|
-
boardTheme: string | null;
|
|
1845
|
-
boardThemeKey: string | null;
|
|
1846
1847
|
badge: string | null;
|
|
1848
|
+
boardTheme: string | null;
|
|
1849
|
+
pitchTheme: string | null;
|
|
1850
|
+
victoryCelebration: string | null;
|
|
1851
|
+
tileAnimation: string | null;
|
|
1852
|
+
ownedEmotePacks: Array<string>;
|
|
1847
1853
|
};
|
|
1848
1854
|
} | null;
|
|
1849
1855
|
participation: {
|
|
@@ -4976,9 +4982,12 @@ export type ChatMessageResponse = {
|
|
|
4976
4982
|
avatarUrl: string | null;
|
|
4977
4983
|
equippedCosmetics?: {
|
|
4978
4984
|
avatarFrame: string | null;
|
|
4979
|
-
boardTheme: string | null;
|
|
4980
|
-
boardThemeKey: string | null;
|
|
4981
4985
|
badge: string | null;
|
|
4986
|
+
boardTheme: string | null;
|
|
4987
|
+
pitchTheme: string | null;
|
|
4988
|
+
victoryCelebration: string | null;
|
|
4989
|
+
tileAnimation: string | null;
|
|
4990
|
+
ownedEmotePacks: Array<string>;
|
|
4982
4991
|
};
|
|
4983
4992
|
} | null;
|
|
4984
4993
|
};
|
|
@@ -4998,9 +5007,12 @@ export type ChatHistoryResponse = {
|
|
|
4998
5007
|
avatarUrl: string | null;
|
|
4999
5008
|
equippedCosmetics: {
|
|
5000
5009
|
avatarFrame: string | null;
|
|
5001
|
-
boardTheme: string | null;
|
|
5002
|
-
boardThemeKey: string | null;
|
|
5003
5010
|
badge: string | null;
|
|
5011
|
+
boardTheme: string | null;
|
|
5012
|
+
pitchTheme: string | null;
|
|
5013
|
+
victoryCelebration: string | null;
|
|
5014
|
+
tileAnimation: string | null;
|
|
5015
|
+
ownedEmotePacks: Array<string>;
|
|
5004
5016
|
};
|
|
5005
5017
|
} | null;
|
|
5006
5018
|
}>;
|
|
@@ -5504,6 +5516,11 @@ export type MyCosmeticsResponse = {
|
|
|
5504
5516
|
export type EquippedCosmeticsForUser = {
|
|
5505
5517
|
avatarFrame: string | null;
|
|
5506
5518
|
badge: string | null;
|
|
5519
|
+
boardTheme: string | null;
|
|
5520
|
+
pitchTheme: string | null;
|
|
5521
|
+
victoryCelebration: string | null;
|
|
5522
|
+
tileAnimation: string | null;
|
|
5523
|
+
ownedEmotePacks: Array<string>;
|
|
5507
5524
|
};
|
|
5508
5525
|
export type BatchEquippedCosmeticsResponse = {
|
|
5509
5526
|
items: {
|