@liveblocks/client 0.17.11 → 0.18.0-beta2

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/internal.mjs CHANGED
@@ -6,12 +6,14 @@ export const CrdtType = mod.CrdtType;
6
6
  export const OpCode = mod.OpCode;
7
7
  export const ServerMsgCode = mod.ServerMsgCode;
8
8
  export const WebsocketCloseCodes = mod.WebsocketCloseCodes;
9
+ export const asArrayWithLegacyMethods = mod.asArrayWithLegacyMethods;
9
10
  export const assertNever = mod.assertNever;
10
11
  export const b64decode = mod.b64decode;
11
12
  export const comparePosition = mod.comparePosition;
12
13
  export const deprecate = mod.deprecate;
13
14
  export const deprecateIf = mod.deprecateIf;
14
15
  export const errorIf = mod.errorIf;
16
+ export const freeze = mod.freeze;
15
17
  export const isAppOnlyAuthToken = mod.isAppOnlyAuthToken;
16
18
  export const isAuthToken = mod.isAuthToken;
17
19
  export const isChildCrdt = mod.isChildCrdt;
@@ -22,10 +24,10 @@ export const isPlainObject = mod.isPlainObject;
22
24
  export const isRoomAuthToken = mod.isRoomAuthToken;
23
25
  export const isRootCrdt = mod.isRootCrdt;
24
26
  export const isScope = mod.isScope;
27
+ export const legacy_patchImmutableObject = mod.legacy_patchImmutableObject;
25
28
  export const lsonToJson = mod.lsonToJson;
26
29
  export const makePosition = mod.makePosition;
27
30
  export const nn = mod.nn;
28
- export const patchImmutableObject = mod.patchImmutableObject;
29
31
  export const patchLiveObjectKey = mod.patchLiveObjectKey;
30
32
  export const throwUsageError = mod.throwUsageError;
31
33
  export const tryParseJson = mod.tryParseJson;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/client",
3
- "version": "0.17.11",
3
+ "version": "0.18.0-beta2",
4
4
  "description": "A client that lets you interact with Liveblocks servers.",
5
5
  "main": "./index.js",
6
6
  "module": "./index.mjs",