@liveblocks/core 0.19.3-beta4 → 0.19.3-beta5
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.js +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" || value === "
|
|
2662
|
+
return value === "my-presence" || value === "others" || value === "event" || value === "error" || value === "connection" || value === "history" || value === "storage-status";
|
|
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];
|
|
@@ -3855,7 +3855,7 @@ function prepareCreateWebSocket(liveblocksServer, WebSocketPolyfill) {
|
|
|
3855
3855
|
const ws = WebSocketPolyfill || WebSocket;
|
|
3856
3856
|
return (token) => {
|
|
3857
3857
|
return new ws(
|
|
3858
|
-
`${liveblocksServer}/?token=${token}&version=${true ? "0.19.3-
|
|
3858
|
+
`${liveblocksServer}/?token=${token}&version=${true ? "0.19.3-beta5" : "dev"}`
|
|
3859
3859
|
);
|
|
3860
3860
|
};
|
|
3861
3861
|
}
|