@liveblocks/node 3.15.1 → 3.15.2

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.d.cts CHANGED
@@ -327,9 +327,8 @@ type CreateRoomOptions = {
327
327
  tenantId?: string;
328
328
  organizationId?: string;
329
329
  /**
330
- * Preferred storage engine version to use when creating the room. Only takes
331
- * effect if the room doesn't exist yet. Version 2 can support larger
332
- * documents, is more performant, and will become the default in the future.
330
+ * @deprecated This flag no longer has any effect and will be removed in
331
+ * a future version. All rooms now use the v2 storage engine by default.
333
332
  */
334
333
  engine?: 1 | 2;
335
334
  };
package/dist/index.d.ts CHANGED
@@ -327,9 +327,8 @@ type CreateRoomOptions = {
327
327
  tenantId?: string;
328
328
  organizationId?: string;
329
329
  /**
330
- * Preferred storage engine version to use when creating the room. Only takes
331
- * effect if the room doesn't exist yet. Version 2 can support larger
332
- * documents, is more performant, and will become the default in the future.
330
+ * @deprecated This flag no longer has any effect and will be removed in
331
+ * a future version. All rooms now use the v2 storage engine by default.
333
332
  */
334
333
  engine?: 1 | 2;
335
334
  };
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.15.1";
6
+ var PKG_VERSION = "3.15.2";
7
7
  var PKG_FORMAT = "esm";
8
8
 
9
9
  // src/client.ts
@@ -601,16 +601,14 @@ var Liveblocks = class {
601
601
  usersAccesses,
602
602
  metadata,
603
603
  tenantId,
604
- organizationId,
605
- engine
604
+ organizationId
606
605
  } = params;
607
606
  const body = {
608
607
  id: roomId,
609
608
  defaultAccesses,
610
609
  groupsAccesses,
611
610
  usersAccesses,
612
- metadata,
613
- engine
611
+ metadata
614
612
  };
615
613
  if (organizationId !== void 0) {
616
614
  body.organizationId = organizationId;