@footballbingo/client 4.18.0 → 4.19.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 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1524,6 +1524,11 @@ export type GameBySessionCodeData = {
|
|
|
1524
1524
|
completedLines: number;
|
|
1525
1525
|
markedTiles?: number;
|
|
1526
1526
|
hasFullHouse?: boolean;
|
|
1527
|
+
equippedCosmetics: {
|
|
1528
|
+
avatarFrame: string | null;
|
|
1529
|
+
boardTheme: string | null;
|
|
1530
|
+
badge: string | null;
|
|
1531
|
+
};
|
|
1527
1532
|
}>;
|
|
1528
1533
|
hasJoined: boolean;
|
|
1529
1534
|
yourParticipationId: string | null;
|
|
@@ -1814,6 +1819,11 @@ export type GameActivitiesData = {
|
|
|
1814
1819
|
username: string;
|
|
1815
1820
|
avatarUrl: string | null;
|
|
1816
1821
|
level: number;
|
|
1822
|
+
equippedCosmetics: {
|
|
1823
|
+
avatarFrame: string | null;
|
|
1824
|
+
boardTheme: string | null;
|
|
1825
|
+
badge: string | null;
|
|
1826
|
+
};
|
|
1817
1827
|
} | null;
|
|
1818
1828
|
participation: {
|
|
1819
1829
|
id: string;
|
|
@@ -4929,6 +4939,11 @@ export type ChatMessageResponse = {
|
|
|
4929
4939
|
id: string;
|
|
4930
4940
|
username: string;
|
|
4931
4941
|
avatarUrl: string | null;
|
|
4942
|
+
equippedCosmetics?: {
|
|
4943
|
+
avatarFrame: string | null;
|
|
4944
|
+
boardTheme: string | null;
|
|
4945
|
+
badge: string | null;
|
|
4946
|
+
};
|
|
4932
4947
|
} | null;
|
|
4933
4948
|
};
|
|
4934
4949
|
export type SendMessageResponse = {
|
|
@@ -4945,6 +4960,11 @@ export type ChatHistoryResponse = {
|
|
|
4945
4960
|
id: string;
|
|
4946
4961
|
username: string;
|
|
4947
4962
|
avatarUrl: string | null;
|
|
4963
|
+
equippedCosmetics: {
|
|
4964
|
+
avatarFrame: string | null;
|
|
4965
|
+
boardTheme: string | null;
|
|
4966
|
+
badge: string | null;
|
|
4967
|
+
};
|
|
4948
4968
|
} | null;
|
|
4949
4969
|
}>;
|
|
4950
4970
|
};
|
|
@@ -8231,7 +8251,9 @@ export type CreateCosmeticInput = {
|
|
|
8231
8251
|
description?: string;
|
|
8232
8252
|
category: string;
|
|
8233
8253
|
imageUrl: string;
|
|
8234
|
-
|
|
8254
|
+
pricingType?: 'coin' | 'iap';
|
|
8255
|
+
coinPrice?: number;
|
|
8256
|
+
iapProductId?: string;
|
|
8235
8257
|
isActive?: boolean;
|
|
8236
8258
|
};
|
|
8237
8259
|
export type UpdateCosmeticInput = {
|
|
@@ -8240,7 +8262,9 @@ export type UpdateCosmeticInput = {
|
|
|
8240
8262
|
description?: string;
|
|
8241
8263
|
category?: string;
|
|
8242
8264
|
imageUrl?: string;
|
|
8265
|
+
pricingType?: 'coin' | 'iap';
|
|
8243
8266
|
coinPrice?: number;
|
|
8267
|
+
iapProductId?: string;
|
|
8244
8268
|
isActive?: boolean;
|
|
8245
8269
|
};
|
|
8246
8270
|
export type DeleteCosmeticResponse = {
|