@liveblocks/core 3.2.0 → 3.2.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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2485,6 +2485,7 @@ type YDocUpdateServerMsg = {
|
|
|
2485
2485
|
readonly stateVector: string | null;
|
|
2486
2486
|
readonly guid?: string;
|
|
2487
2487
|
readonly v2?: boolean;
|
|
2488
|
+
readonly remoteSnapshotHash: string;
|
|
2488
2489
|
};
|
|
2489
2490
|
/**
|
|
2490
2491
|
* Sent by the WebSocket server and broadcasted to all clients to announce that
|
package/dist/index.d.ts
CHANGED
|
@@ -2485,6 +2485,7 @@ type YDocUpdateServerMsg = {
|
|
|
2485
2485
|
readonly stateVector: string | null;
|
|
2486
2486
|
readonly guid?: string;
|
|
2487
2487
|
readonly v2?: boolean;
|
|
2488
|
+
readonly remoteSnapshotHash: string;
|
|
2488
2489
|
};
|
|
2489
2490
|
/**
|
|
2490
2491
|
* Sent by the WebSocket server and broadcasted to all clients to announce that
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ var __export = (target, all) => {
|
|
|
6
6
|
|
|
7
7
|
// src/version.ts
|
|
8
8
|
var PKG_NAME = "@liveblocks/core";
|
|
9
|
-
var PKG_VERSION = "3.2.
|
|
9
|
+
var PKG_VERSION = "3.2.1";
|
|
10
10
|
var PKG_FORMAT = "esm";
|
|
11
11
|
|
|
12
12
|
// src/dupe-detection.ts
|
|
@@ -9219,7 +9219,7 @@ ${Array.from(traces).join("\n\n")}`
|
|
|
9219
9219
|
const syncSourceForYjs = config.createSyncSource();
|
|
9220
9220
|
function yjsStatusDidChange(status) {
|
|
9221
9221
|
return syncSourceForYjs.setSyncStatus(
|
|
9222
|
-
status === "synchronizing" ? "synchronizing" : "synchronized"
|
|
9222
|
+
status === "synchronizing" || status === "loading" ? "synchronizing" : "synchronized"
|
|
9223
9223
|
);
|
|
9224
9224
|
}
|
|
9225
9225
|
return Object.defineProperty(
|