@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.
- package/dist/index.cjs +9 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -6
- package/dist/index.d.ts +10 -6
- package/dist/index.js +9 -4
- package/dist/index.js.map +1 -1
- package/dist/internal.d.cts +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/{storage-C7amvVjk.d.cts → storage-Df9ya7um.d.cts} +4 -2
- package/dist/{storage-C7amvVjk.d.ts → storage-Df9ya7um.d.ts} +4 -2
- package/package.json +1 -1
|
@@ -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
|
-
/**
|
|
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
|
|
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