@liveblocks/node 3.13.3-rc1 → 3.14.0-pre1
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -72,6 +72,8 @@ type LiveblocksOptions = {
|
|
|
72
72
|
* Get it from https://liveblocks.io/dashboard/apikeys
|
|
73
73
|
*/
|
|
74
74
|
secret: string;
|
|
75
|
+
/** Point the client to an alternative Liveblocks server. */
|
|
76
|
+
baseUrl?: string;
|
|
75
77
|
};
|
|
76
78
|
type CreateSessionOptions<U extends BaseUserMeta = DU> = PartialUnless<U["info"], {
|
|
77
79
|
userInfo: U["info"];
|
package/dist/index.d.ts
CHANGED
|
@@ -72,6 +72,8 @@ type LiveblocksOptions = {
|
|
|
72
72
|
* Get it from https://liveblocks.io/dashboard/apikeys
|
|
73
73
|
*/
|
|
74
74
|
secret: string;
|
|
75
|
+
/** Point the client to an alternative Liveblocks server. */
|
|
76
|
+
baseUrl?: string;
|
|
75
77
|
};
|
|
76
78
|
type CreateSessionOptions<U extends BaseUserMeta = DU> = PartialUnless<U["info"], {
|
|
77
79
|
userInfo: U["info"];
|