@footballbingo/client 5.16.0 → 5.18.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.
@@ -1523,14 +1523,6 @@ export type GameBySessionCodeData = {
1523
1523
  completedLines: number;
1524
1524
  markedTiles?: number;
1525
1525
  hasFullHouse?: boolean;
1526
- equippedCosmetics: {
1527
- avatarFrame: string | null;
1528
- boardTheme: string | null;
1529
- pitchTheme: string | null;
1530
- victoryCelebration: string | null;
1531
- tileAnimation: string | null;
1532
- ownedEmotePacks: Array<string>;
1533
- };
1534
1526
  }>;
1535
1527
  hasJoined: boolean;
1536
1528
  yourParticipationId: string | null;
@@ -1841,14 +1833,6 @@ export type GameActivitiesData = {
1841
1833
  username: string;
1842
1834
  avatarUrl: string | null;
1843
1835
  level: number;
1844
- equippedCosmetics: {
1845
- avatarFrame: string | null;
1846
- boardTheme: string | null;
1847
- pitchTheme: string | null;
1848
- victoryCelebration: string | null;
1849
- tileAnimation: string | null;
1850
- ownedEmotePacks: Array<string>;
1851
- };
1852
1836
  } | null;
1853
1837
  participation: {
1854
1838
  id: string;
@@ -4968,6 +4952,7 @@ export type ChatMessageResponse = {
4968
4952
  instanceId?: string;
4969
4953
  userId?: string;
4970
4954
  message: string;
4955
+ messageType?: 'text' | 'sticker';
4971
4956
  isSystem: boolean;
4972
4957
  sentAt: string;
4973
4958
  createdAt: string;
@@ -4978,14 +4963,6 @@ export type ChatMessageResponse = {
4978
4963
  id: string;
4979
4964
  username: string;
4980
4965
  avatarUrl: string | null;
4981
- equippedCosmetics?: {
4982
- avatarFrame: string | null;
4983
- boardTheme: string | null;
4984
- pitchTheme: string | null;
4985
- victoryCelebration: string | null;
4986
- tileAnimation: string | null;
4987
- ownedEmotePacks: Array<string>;
4988
- };
4989
4966
  } | null;
4990
4967
  };
4991
4968
  export type SendMessageResponse = {
@@ -4996,20 +4973,13 @@ export type ChatHistoryResponse = {
4996
4973
  messages: Array<{
4997
4974
  id: string;
4998
4975
  message: string;
4976
+ messageType?: 'text' | 'sticker';
4999
4977
  isSystem: boolean;
5000
4978
  sentAt: string;
5001
4979
  user: {
5002
4980
  id: string;
5003
4981
  username: string;
5004
4982
  avatarUrl: string | null;
5005
- equippedCosmetics: {
5006
- avatarFrame: string | null;
5007
- boardTheme: string | null;
5008
- pitchTheme: string | null;
5009
- victoryCelebration: string | null;
5010
- tileAnimation: string | null;
5011
- ownedEmotePacks: Array<string>;
5012
- };
5013
4983
  } | null;
5014
4984
  }>;
5015
4985
  };
@@ -8258,6 +8228,7 @@ export type CreateReportInput = {
8258
8228
  };
8259
8229
  export type SendGameChatMessageInput = {
8260
8230
  message: string;
8231
+ messageType?: 'text' | 'sticker';
8261
8232
  };
8262
8233
  export type RegisterDeviceInput = {
8263
8234
  token: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@footballbingo/client",
3
- "version": "5.16.0",
3
+ "version": "5.18.0",
4
4
  "description": "Auto-generated TypeScript client for the Football Bingo API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",