@liveblocks/core 0.19.3 → 0.19.4

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 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -113,7 +113,7 @@ if (process.env.NODE_ENV !== "production" && typeof window !== "undefined") {
113
113
  var onMessageFromPanel = eventSource.observable;
114
114
 
115
115
  // src/devtools/index.ts
116
- var VERSION = true ? "0.19.3" : "dev";
116
+ var VERSION = true ? "0.19.4" : "dev";
117
117
  var _devtoolsSetupHasRun = false;
118
118
  function setupDevTools(getAllRooms) {
119
119
  if (process.env.NODE_ENV === "production" || typeof window === "undefined") {
@@ -4114,7 +4114,7 @@ function prepareCreateWebSocket(liveblocksServer, WebSocketPolyfill) {
4114
4114
  const ws = WebSocketPolyfill || WebSocket;
4115
4115
  return (token) => {
4116
4116
  return new ws(
4117
- `${liveblocksServer}/?token=${token}&version=${true ? "0.19.3" : "dev"}`
4117
+ `${liveblocksServer}/?token=${token}&version=${true ? "0.19.4" : "dev"}`
4118
4118
  );
4119
4119
  };
4120
4120
  }
@@ -4164,7 +4164,6 @@ function fetchAuthEndpoint(fetch2, endpoint, body) {
4164
4164
  headers: {
4165
4165
  "Content-Type": "application/json"
4166
4166
  },
4167
- credentials: "include",
4168
4167
  body: JSON.stringify(body)
4169
4168
  });
4170
4169
  if (!res.ok) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/core",
3
- "version": "0.19.3",
3
+ "version": "0.19.4",
4
4
  "description": "Shared code and foundational internals for Liveblocks",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",