@antzsoft/chat-core 1.4.2 → 1.4.3

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.
@@ -1,4 +1,4 @@
1
- export { at as uploadBatchWithSlots } from './storage-BqygfDAK.cjs';
1
+ export { at as uploadBatchWithSlots } from './storage-D7GPq-Mm.cjs';
2
2
 
3
3
  declare function generateUUID(): string;
4
4
 
@@ -1,4 +1,4 @@
1
- export { at as uploadBatchWithSlots } from './storage-BqygfDAK.js';
1
+ export { at as uploadBatchWithSlots } from './storage-D7GPq-Mm.js';
2
2
 
3
3
  declare function generateUUID(): string;
4
4
 
@@ -136,7 +136,9 @@ interface MessageReplyReference {
136
136
  * back (the message actually forwarded), never the root of a longer forward chain — the
137
137
  * true original author/conversation is intentionally not reconstructable after more than
138
138
  * one hop, matching WhatsApp's forwarding privacy model. `forwardDepth` still accumulates
139
- * across the whole chain, so "Forwarded many times" (depth >= 4) keeps working.
139
+ * across the whole chain, so "Forwarded many times" (depth >= HIGHLY_FORWARDED_DEPTH_THRESHOLD,
140
+ * exported from '../api/messages.js', currently 5 — the same value that triggers the
141
+ * server's fan-out-to-1 cap) keeps working.
140
142
  */
141
143
  interface MessageForwardReference {
142
144
  originalMessageId: string;
@@ -136,7 +136,9 @@ interface MessageReplyReference {
136
136
  * back (the message actually forwarded), never the root of a longer forward chain — the
137
137
  * true original author/conversation is intentionally not reconstructable after more than
138
138
  * one hop, matching WhatsApp's forwarding privacy model. `forwardDepth` still accumulates
139
- * across the whole chain, so "Forwarded many times" (depth >= 4) keeps working.
139
+ * across the whole chain, so "Forwarded many times" (depth >= HIGHLY_FORWARDED_DEPTH_THRESHOLD,
140
+ * exported from '../api/messages.js', currently 5 — the same value that triggers the
141
+ * server's fan-out-to-1 cap) keeps working.
140
142
  */
141
143
  interface MessageForwardReference {
142
144
  originalMessageId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antzsoft/chat-core",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
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",