@pylonsync/sync 0.2.5 → 0.2.8
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/package.json +1 -1
- package/src/index.ts +5 -4
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
// ---------------------------------------------------------------------------
|
|
2
2
|
// pylon sync client
|
|
3
3
|
//
|
|
4
|
-
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
4
|
+
// JSON live-query sync with optimistic mutations and an offline write queue.
|
|
5
|
+
// CRDT-mode rows travel through the same WebSocket as binary Loro frames,
|
|
6
|
+
// but this package intentionally keeps binary payloads opaque and routes
|
|
7
|
+
// them to consumers such as @pylonsync/loro. See docs/SYNC.md for the full
|
|
8
|
+
// projection + convergence model.
|
|
8
9
|
// ---------------------------------------------------------------------------
|
|
9
10
|
|
|
10
11
|
export { IndexedDBPersistence, persistChange } from "./persistence";
|