@footballbingo/client 5.13.0 → 5.14.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 +35 -8
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1525,9 +1525,14 @@ 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
|
+
profileBanner: string | null;
|
|
1532
|
+
victoryCelebration: string | null;
|
|
1533
|
+
tileAnimation: string | null;
|
|
1534
|
+
usernameColor: string | null;
|
|
1535
|
+
ownedEmotePacks: Array<string>;
|
|
1531
1536
|
};
|
|
1532
1537
|
}>;
|
|
1533
1538
|
hasJoined: boolean;
|
|
@@ -1841,9 +1846,14 @@ export type GameActivitiesData = {
|
|
|
1841
1846
|
level: number;
|
|
1842
1847
|
equippedCosmetics: {
|
|
1843
1848
|
avatarFrame: string | null;
|
|
1844
|
-
boardTheme: string | null;
|
|
1845
|
-
boardThemeKey: string | null;
|
|
1846
1849
|
badge: string | null;
|
|
1850
|
+
boardTheme: string | null;
|
|
1851
|
+
pitchTheme: string | null;
|
|
1852
|
+
profileBanner: string | null;
|
|
1853
|
+
victoryCelebration: string | null;
|
|
1854
|
+
tileAnimation: string | null;
|
|
1855
|
+
usernameColor: string | null;
|
|
1856
|
+
ownedEmotePacks: Array<string>;
|
|
1847
1857
|
};
|
|
1848
1858
|
} | null;
|
|
1849
1859
|
participation: {
|
|
@@ -4976,9 +4986,14 @@ export type ChatMessageResponse = {
|
|
|
4976
4986
|
avatarUrl: string | null;
|
|
4977
4987
|
equippedCosmetics?: {
|
|
4978
4988
|
avatarFrame: string | null;
|
|
4979
|
-
boardTheme: string | null;
|
|
4980
|
-
boardThemeKey: string | null;
|
|
4981
4989
|
badge: string | null;
|
|
4990
|
+
boardTheme: string | null;
|
|
4991
|
+
pitchTheme: string | null;
|
|
4992
|
+
profileBanner: string | null;
|
|
4993
|
+
victoryCelebration: string | null;
|
|
4994
|
+
tileAnimation: string | null;
|
|
4995
|
+
usernameColor: string | null;
|
|
4996
|
+
ownedEmotePacks: Array<string>;
|
|
4982
4997
|
};
|
|
4983
4998
|
} | null;
|
|
4984
4999
|
};
|
|
@@ -4998,9 +5013,14 @@ export type ChatHistoryResponse = {
|
|
|
4998
5013
|
avatarUrl: string | null;
|
|
4999
5014
|
equippedCosmetics: {
|
|
5000
5015
|
avatarFrame: string | null;
|
|
5001
|
-
boardTheme: string | null;
|
|
5002
|
-
boardThemeKey: string | null;
|
|
5003
5016
|
badge: string | null;
|
|
5017
|
+
boardTheme: string | null;
|
|
5018
|
+
pitchTheme: string | null;
|
|
5019
|
+
profileBanner: string | null;
|
|
5020
|
+
victoryCelebration: string | null;
|
|
5021
|
+
tileAnimation: string | null;
|
|
5022
|
+
usernameColor: string | null;
|
|
5023
|
+
ownedEmotePacks: Array<string>;
|
|
5004
5024
|
};
|
|
5005
5025
|
} | null;
|
|
5006
5026
|
}>;
|
|
@@ -5504,6 +5524,13 @@ export type MyCosmeticsResponse = {
|
|
|
5504
5524
|
export type EquippedCosmeticsForUser = {
|
|
5505
5525
|
avatarFrame: string | null;
|
|
5506
5526
|
badge: string | null;
|
|
5527
|
+
boardTheme: string | null;
|
|
5528
|
+
pitchTheme: string | null;
|
|
5529
|
+
profileBanner: string | null;
|
|
5530
|
+
victoryCelebration: string | null;
|
|
5531
|
+
tileAnimation: string | null;
|
|
5532
|
+
usernameColor: string | null;
|
|
5533
|
+
ownedEmotePacks: Array<string>;
|
|
5507
5534
|
};
|
|
5508
5535
|
export type BatchEquippedCosmeticsResponse = {
|
|
5509
5536
|
items: {
|