@liveblocks/core 1.1.0-beta5 → 1.1.0-beta6

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 +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -157,7 +157,7 @@ var onMessageFromPanel = eventSource.observable;
157
157
  // src/devtools/index.ts
158
158
  var VERSION = true ? (
159
159
  /* istanbul ignore next */
160
- "1.1.0-beta5"
160
+ "1.1.0-beta6"
161
161
  ) : "dev";
162
162
  var _devtoolsSetupHasRun = false;
163
163
  function setupDevTools(getAllRooms) {
@@ -5294,7 +5294,7 @@ function makeClassicSubscribeFn(events) {
5294
5294
  return subscribe;
5295
5295
  }
5296
5296
  function isRoomEventName(value) {
5297
- return value === "my-presence" || value === "others" || value === "event" || value === "error" || value === "connection" || value === "history" || value === "status" || value === "storage-status";
5297
+ return value === "my-presence" || value === "others" || value === "event" || value === "error" || value === "history" || value === "status" || value === "storage-status" || value === "lost-connection" || value === "connection";
5298
5298
  }
5299
5299
  function makeCreateSocketDelegateForRoom(liveblocksServer, WebSocketPolyfill) {
5300
5300
  return (richToken) => {
@@ -5311,7 +5311,7 @@ function makeCreateSocketDelegateForRoom(liveblocksServer, WebSocketPolyfill) {
5311
5311
  // @ts-ignore (__PACKAGE_VERSION__ will be injected by the build script)
5312
5312
  true ? (
5313
5313
  /* istanbul ignore next */
5314
- "1.1.0-beta5"
5314
+ "1.1.0-beta6"
5315
5315
  ) : "dev"}`
5316
5316
  );
5317
5317
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/core",
3
- "version": "1.1.0-beta5",
3
+ "version": "1.1.0-beta6",
4
4
  "description": "Shared code and foundational internals for Liveblocks",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",