@liveblocks/node 3.20.0-perm2 → 3.20.0-perm4

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.20.0-perm2";
6
+ var PKG_VERSION = "3.20.0-perm4";
7
7
  var PKG_FORMAT = "esm";
8
8
 
9
9
  // src/client.ts
@@ -110,7 +110,6 @@ function xwarn(resp, method, path) {
110
110
 
111
111
  // src/Session.ts
112
112
  import {
113
- getRoomPermissionConflicts,
114
113
  normalizeRoomPermissionInput,
115
114
  Permission,
116
115
  url
@@ -223,9 +222,6 @@ var Session = class {
223
222
  }
224
223
  const existingPerms = this.#getOrCreate(roomIdOrPattern);
225
224
  for (const perm of normalizedPermissions) {
226
- for (const conflictingPerm of getRoomPermissionConflicts(perm)) {
227
- existingPerms.delete(conflictingPerm);
228
- }
229
225
  existingPerms.add(perm);
230
226
  }
231
227
  return this;