json-patch-to-crdt 0.4.0 → 0.5.0

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 CHANGED
@@ -245,6 +245,11 @@ Advanced/internal helpers are available from:
245
245
  import { crdtToJsonPatch, applyPatchAsActor } from "json-patch-to-crdt/internals";
246
246
  ```
247
247
 
248
+ `docFromJsonWithDot(...)` remains available on `./internals` as a deprecated legacy
249
+ fixture helper. It reuses a single seed dot across object nodes and synthesizes
250
+ array child counters from that seed, so production code should prefer
251
+ `docFromJson(value, nextDot)`.
252
+
248
253
  ## Notes
249
254
 
250
255
  - Arrays use a CRDT sequence internally; concurrent inserts are preserved.