@footballbingo/client 4.18.0 → 4.20.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.
@@ -1524,6 +1524,12 @@ 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
+ boardThemeKey: string | null;
1531
+ badge: string | null;
1532
+ };
1527
1533
  }>;
1528
1534
  hasJoined: boolean;
1529
1535
  yourParticipationId: string | null;
@@ -1814,6 +1820,12 @@ export type GameActivitiesData = {
1814
1820
  username: string;
1815
1821
  avatarUrl: string | null;
1816
1822
  level: number;
1823
+ equippedCosmetics: {
1824
+ avatarFrame: string | null;
1825
+ boardTheme: string | null;
1826
+ boardThemeKey: string | null;
1827
+ badge: string | null;
1828
+ };
1817
1829
  } | null;
1818
1830
  participation: {
1819
1831
  id: string;
@@ -4929,6 +4941,12 @@ export type ChatMessageResponse = {
4929
4941
  id: string;
4930
4942
  username: string;
4931
4943
  avatarUrl: string | null;
4944
+ equippedCosmetics?: {
4945
+ avatarFrame: string | null;
4946
+ boardTheme: string | null;
4947
+ boardThemeKey: string | null;
4948
+ badge: string | null;
4949
+ };
4932
4950
  } | null;
4933
4951
  };
4934
4952
  export type SendMessageResponse = {
@@ -4945,6 +4963,12 @@ export type ChatHistoryResponse = {
4945
4963
  id: string;
4946
4964
  username: string;
4947
4965
  avatarUrl: string | null;
4966
+ equippedCosmetics: {
4967
+ avatarFrame: string | null;
4968
+ boardTheme: string | null;
4969
+ boardThemeKey: string | null;
4970
+ badge: string | null;
4971
+ };
4948
4972
  } | null;
4949
4973
  }>;
4950
4974
  };
@@ -8231,7 +8255,9 @@ export type CreateCosmeticInput = {
8231
8255
  description?: string;
8232
8256
  category: string;
8233
8257
  imageUrl: string;
8234
- coinPrice: number;
8258
+ pricingType?: 'coin' | 'iap';
8259
+ coinPrice?: number;
8260
+ iapProductId?: string;
8235
8261
  isActive?: boolean;
8236
8262
  };
8237
8263
  export type UpdateCosmeticInput = {
@@ -8240,7 +8266,9 @@ export type UpdateCosmeticInput = {
8240
8266
  description?: string;
8241
8267
  category?: string;
8242
8268
  imageUrl?: string;
8269
+ pricingType?: 'coin' | 'iap';
8243
8270
  coinPrice?: number;
8271
+ iapProductId?: string;
8244
8272
  isActive?: boolean;
8245
8273
  };
8246
8274
  export type DeleteCosmeticResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@footballbingo/client",
3
- "version": "4.18.0",
3
+ "version": "4.20.0",
4
4
  "description": "Auto-generated TypeScript client for the Football Bingo API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",