@antzsoft/chat-core 1.3.0 → 1.3.1

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.
@@ -467,14 +467,16 @@ interface CrossConversationSyncResponse {
467
467
  stale: boolean;
468
468
  messages: Message[];
469
469
  deletedForMe: SyncDeletedForMe[];
470
+ reactions: SyncReactions;
471
+ stars: SyncStarEntry[];
470
472
  participantChanges: SyncParticipantChange[];
471
473
  readReceipts: SyncReadReceipt[];
472
474
  }
473
475
  interface ConversationSyncResponse {
474
476
  syncedAt: string;
475
- /** Present when server supports seq-based sync. Use as afterSeq in next call. */
477
+ /** Cursor for the next page in the same direction — pass as afterSeq or beforeSeq matching what you sent. */
476
478
  nextSeq?: number;
477
- /** True when more pages are available — call again with updated afterSeq. */
479
+ /** True when more pages are available — call again with nextSeq as the same cursor type. */
478
480
  hasMore?: boolean;
479
481
  messages: Message[];
480
482
  deletedForMe: SyncDeletedForMe[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antzsoft/chat-core",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Platform-agnostic core for Antz Chat — API, socket, stores, types. Works in browser, React Native (Expo or bare), and Node.js.",
5
5
  "author": "Antz",
6
6
  "license": "MIT",