@usechat/react-native 1.0.11 → 1.0.12

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/index.d.mts CHANGED
@@ -7,7 +7,7 @@ interface Message$1 {
7
7
  text: string;
8
8
  isMe: boolean;
9
9
  timestamp: string;
10
- status?: 'sent' | 'delivered' | 'read';
10
+ status?: 'sent' | 'delivered' | 'read' | 'failed' | 'pending';
11
11
  senderName?: string;
12
12
  senderId?: string;
13
13
  replyTo?: ReplyToMessage$1;
@@ -211,7 +211,7 @@ interface Message {
211
211
  text: string;
212
212
  isMe: boolean;
213
213
  timestamp: string;
214
- status?: 'sent' | 'delivered' | 'read';
214
+ status?: 'sent' | 'delivered' | 'read' | 'failed' | 'pending';
215
215
  senderName?: string;
216
216
  replyTo?: ReplyToMessage;
217
217
  reactions?: MessageReaction[];
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@ interface Message$1 {
7
7
  text: string;
8
8
  isMe: boolean;
9
9
  timestamp: string;
10
- status?: 'sent' | 'delivered' | 'read';
10
+ status?: 'sent' | 'delivered' | 'read' | 'failed' | 'pending';
11
11
  senderName?: string;
12
12
  senderId?: string;
13
13
  replyTo?: ReplyToMessage$1;
@@ -211,7 +211,7 @@ interface Message {
211
211
  text: string;
212
212
  isMe: boolean;
213
213
  timestamp: string;
214
- status?: 'sent' | 'delivered' | 'read';
214
+ status?: 'sent' | 'delivered' | 'read' | 'failed' | 'pending';
215
215
  senderName?: string;
216
216
  replyTo?: ReplyToMessage;
217
217
  reactions?: MessageReaction[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usechat/react-native",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Modular React Native Chat UI SDK with keyboard handling, customizable components, and rich features",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Lukasz Ko <hello@usechat.dev>",