@liveblocks/react 1.4.7-test1 → 1.4.7

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.mts CHANGED
@@ -89,9 +89,9 @@ declare type ResolveUsersArgs = {
89
89
  */
90
90
  roomId: string;
91
91
  /**
92
- * The ID of the users to resolve.
92
+ * The IDs of the users to resolve.
93
93
  */
94
- userIds: string;
94
+ userIds: string[];
95
95
  };
96
96
  declare type ResolveMentionSuggestionsArgs = {
97
97
  /**
package/dist/index.d.ts CHANGED
@@ -89,9 +89,9 @@ declare type ResolveUsersArgs = {
89
89
  */
90
90
  roomId: string;
91
91
  /**
92
- * The ID of the users to resolve.
92
+ * The IDs of the users to resolve.
93
93
  */
94
- userIds: string;
94
+ userIds: string[];
95
95
  };
96
96
  declare type ResolveMentionSuggestionsArgs = {
97
97
  /**
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ var _core = require('@liveblocks/core');
5
5
 
6
6
  // src/version.ts
7
7
  var PKG_NAME = "@liveblocks/react";
8
- var PKG_VERSION = "1.4.7-test1";
8
+ var PKG_VERSION = "1.4.7";
9
9
  var PKG_FORMAT = "cjs";
10
10
 
11
11
  // src/ClientSideSuspense.tsx
package/dist/index.mjs CHANGED
@@ -5,7 +5,7 @@ import { detectDupes } from "@liveblocks/core";
5
5
 
6
6
  // src/version.ts
7
7
  var PKG_NAME = "@liveblocks/react";
8
- var PKG_VERSION = "1.4.7-test1";
8
+ var PKG_VERSION = "1.4.7";
9
9
  var PKG_FORMAT = "esm";
10
10
 
11
11
  // src/ClientSideSuspense.tsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/react",
3
- "version": "1.4.7-test1",
3
+ "version": "1.4.7",
4
4
  "description": "A set of React hooks and providers to use Liveblocks declaratively. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.js",
@@ -33,8 +33,8 @@
33
33
  "test:watch": "jest --silent --verbose --color=always --watch"
34
34
  },
35
35
  "dependencies": {
36
- "@liveblocks/client": "1.4.7-test1",
37
- "@liveblocks/core": "1.4.7-test1",
36
+ "@liveblocks/client": "1.4.7",
37
+ "@liveblocks/core": "1.4.7",
38
38
  "nanoid": "^3",
39
39
  "use-sync-external-store": "^1.2.0"
40
40
  },