@liveblocks/node 3.9.2 → 3.10.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.js CHANGED
@@ -3,7 +3,7 @@ import { detectDupes } from "@liveblocks/core";
3
3
 
4
4
  // src/version.ts
5
5
  var PKG_NAME = "@liveblocks/node";
6
- var PKG_VERSION = "3.9.2";
6
+ var PKG_VERSION = "3.10.1";
7
7
  var PKG_FORMAT = "esm";
8
8
 
9
9
  // src/client.ts
@@ -142,7 +142,7 @@ function normalizeStatusCode(statusCode) {
142
142
  } else if (statusCode >= 500) {
143
143
  return 503;
144
144
  } else {
145
- return 403;
145
+ return statusCode;
146
146
  }
147
147
  }
148
148