@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.
- package/README.md +9 -3
- package/dist/index.cjs +10 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -5
- package/dist/index.d.ts +17 -5
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/dist/internal.d.cts +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/{storage-BqygfDAK.d.cts → storage-D7GPq-Mm.d.cts} +3 -1
- package/dist/{storage-BqygfDAK.d.ts → storage-D7GPq-Mm.d.ts} +3 -1
- package/package.json +1 -1
package/dist/internal.d.cts
CHANGED
package/dist/internal.d.ts
CHANGED
|
@@ -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 >=
|
|
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 >=
|
|
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