@liveblocks/core 0.19.3-beta2 → 0.19.3-beta3

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2659,7 +2659,7 @@ var WebsocketCloseCodes = /* @__PURE__ */ ((WebsocketCloseCodes2) => {
2659
2659
 
2660
2660
  // src/room.ts
2661
2661
  function isRoomEventName(value) {
2662
- return value === "my-presence" || value === "others" || value === "event" || value === "error" || value === "connection" || value === "history";
2662
+ return value === "my-presence" || value === "others" || value === "event" || value === "error" || value === "connection" || value === "history" || value === "pending-storage-modifications";
2663
2663
  }
2664
2664
  var BACKOFF_RETRY_DELAYS = [250, 500, 1e3, 2e3, 4e3, 8e3, 1e4];
2665
2665
  var BACKOFF_RETRY_DELAYS_SLOW = [2e3, 3e4, 6e4, 3e5];
@@ -3849,7 +3849,7 @@ function prepareCreateWebSocket(liveblocksServer, WebSocketPolyfill) {
3849
3849
  const ws = WebSocketPolyfill || WebSocket;
3850
3850
  return (token) => {
3851
3851
  return new ws(
3852
- `${liveblocksServer}/?token=${token}&version=${true ? "0.19.3-beta2" : "dev"}`
3852
+ `${liveblocksServer}/?token=${token}&version=${true ? "0.19.3-beta3" : "dev"}`
3853
3853
  );
3854
3854
  };
3855
3855
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/core",
3
- "version": "0.19.3-beta2",
3
+ "version": "0.19.3-beta3",
4
4
  "description": "Shared code and foundational internals for Liveblocks",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",