@footballbingo/client 5.17.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.
@@ -4952,6 +4952,7 @@ export type ChatMessageResponse = {
4952
4952
  instanceId?: string;
4953
4953
  userId?: string;
4954
4954
  message: string;
4955
+ messageType?: 'text' | 'sticker';
4955
4956
  isSystem: boolean;
4956
4957
  sentAt: string;
4957
4958
  createdAt: string;
@@ -4972,6 +4973,7 @@ export type ChatHistoryResponse = {
4972
4973
  messages: Array<{
4973
4974
  id: string;
4974
4975
  message: string;
4976
+ messageType?: 'text' | 'sticker';
4975
4977
  isSystem: boolean;
4976
4978
  sentAt: string;
4977
4979
  user: {
@@ -8226,6 +8228,7 @@ export type CreateReportInput = {
8226
8228
  };
8227
8229
  export type SendGameChatMessageInput = {
8228
8230
  message: string;
8231
+ messageType?: 'text' | 'sticker';
8229
8232
  };
8230
8233
  export type RegisterDeviceInput = {
8231
8234
  token: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@footballbingo/client",
3
- "version": "5.17.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",