@liveblocks/react 2.12.1-test1 → 2.12.1-test3

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.
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } }// src/version.ts
2
2
  var PKG_NAME = "@liveblocks/react";
3
- var PKG_VERSION = "2.12.1-test1";
3
+ var PKG_VERSION = "2.12.1-test3";
4
4
  var PKG_FORMAT = "cjs";
5
5
 
6
6
  // src/ClientSideSuspense.tsx
@@ -19,4 +19,4 @@ function ClientSideSuspense(props) {
19
19
 
20
20
 
21
21
  exports.PKG_NAME = PKG_NAME; exports.PKG_VERSION = PKG_VERSION; exports.PKG_FORMAT = PKG_FORMAT; exports.ClientSideSuspense = ClientSideSuspense;
22
- //# sourceMappingURL=chunk-QIL7LU4H.js.map
22
+ //# sourceMappingURL=chunk-SXLOEVWR.js.map
@@ -1,6 +1,6 @@
1
1
  // src/version.ts
2
2
  var PKG_NAME = "@liveblocks/react";
3
- var PKG_VERSION = "2.12.1-test1";
3
+ var PKG_VERSION = "2.12.1-test3";
4
4
  var PKG_FORMAT = "esm";
5
5
 
6
6
  // src/ClientSideSuspense.tsx
@@ -19,4 +19,4 @@ export {
19
19
  PKG_FORMAT,
20
20
  ClientSideSuspense
21
21
  };
22
- //# sourceMappingURL=chunk-JORFBIBS.mjs.map
22
+ //# sourceMappingURL=chunk-T5FESK7Z.mjs.map
package/dist/index.d.mts CHANGED
@@ -1,5 +1,30 @@
1
- export { C as ClientSideSuspense, R as RoomContext, _ as RoomProvider, c as createRoomContext, a as useAddReaction, S as useAttachmentUrl, u as useBatch, b as useBroadcastEvent, d as useCanRedo, e as useCanUndo, I as useCommentsErrorListener, f as useCreateComment, g as useCreateThread, h as useDeleteComment, i as useDeleteThread, j as useEditComment, k as useEditThreadMetadata, n as useErrorListener, o as useEventListener, p as useHistory, H as useHistoryVersionData, T as useHistoryVersions, q as useIsInsideRoom, r as useLostConnectionListener, s as useMarkThreadAsRead, l as useMarkThreadAsResolved, m as useMarkThreadAsUnresolved, t as useMutation, v as useMyPresence, J as useOther, K as useOthers, L as useOthersConnectionIds, w as useOthersListener, M as useOthersMapped, x as useRedo, y as useRemoveReaction, z as useRoom, U as useRoomNotificationSettings, N as useSelf, A as useStatus, O as useStorage, B as useStorageRoot, P as useStorageStatus, D as useThreadSubscription, Q as useThreads, E as useUndo, F as useUpdateMyPresence, G as useUpdateRoomNotificationSettings } from './suspense-TeBnnKGw.mjs';
2
- export { e as ClientContext, L as LiveblocksProvider, M as MutationContext, U as UseStorageStatusOptions, d as UseThreadsOptions, f as createLiveblocksContext, u as useClient, h as useDeleteAllInboxNotifications, i as useDeleteInboxNotification, _ as useInboxNotificationThread, m as useInboxNotifications, j as useMarkAllInboxNotificationsAsRead, k as useMarkInboxNotificationAsRead, o as useRoomInfo, l as useSyncStatus, p as useUnreadInboxNotificationsCount, q as useUser, n as useUserThreads_experimental } from './liveblocks-1ujmr05d.mjs';
1
+ export { p as ClientContext, L as LiveblocksProvider, M as MutationContext, R as RoomContext, z as RoomProvider, U as UseStorageStatusOptions, o as UseThreadsOptions, q as createLiveblocksContext, y as createRoomContext, A as useAddReaction, aj as useAttachmentUrl, B as useBatch, D as useBroadcastEvent, E as useCanRedo, F as useCanUndo, r as useClient, aa as useCommentsErrorListener, G as useCreateComment, H as useCreateThread, s as useDeleteAllInboxNotifications, I as useDeleteComment, t as useDeleteInboxNotification, J as useDeleteThread, K as useEditComment, N as useEditThreadMetadata, Q as useErrorListener, S as useEventListener, T as useHistory, a9 as useHistoryVersionData, ak as useHistoryVersions, _ as useInboxNotificationThread, am as useInboxNotifications, V as useIsInsideRoom, W as useLostConnectionListener, v as useMarkAllInboxNotificationsAsRead, w as useMarkInboxNotificationAsRead, X as useMarkThreadAsRead, O as useMarkThreadAsResolved, P as useMarkThreadAsUnresolved, Y as useMutation, Z as useMyPresence, ab as useOther, ac as useOthers, ad as useOthersConnectionIds, $ as useOthersListener, ae as useOthersMapped, a0 as useRedo, a1 as useRemoveReaction, a2 as useRoom, ao as useRoomInfo, al as useRoomNotificationSettings, af as useSelf, a3 as useStatus, ag as useStorage, a4 as useStorageRoot, ah as useStorageStatus, x as useSyncStatus, a5 as useThreadSubscription, ai as useThreads, a6 as useUndo, ap as useUnreadInboxNotificationsCount, a7 as useUpdateMyPresence, a8 as useUpdateRoomNotificationSettings, aq as useUser, an as useUserThreads_experimental } from './room-t_BUxm1-.mjs';
3
2
  export { Json, JsonObject, shallow } from '@liveblocks/client';
4
- import 'react';
3
+ import * as React from 'react';
4
+ import { ReactNode } from 'react';
5
5
  import '@liveblocks/core';
6
+
7
+ declare type Props = {
8
+ fallback: ReactNode;
9
+ children: (() => ReactNode | undefined) | ReactNode | undefined;
10
+ };
11
+ /**
12
+ * Almost like a normal <Suspense> component, except that for server-side
13
+ * renders, the fallback will be used.
14
+ *
15
+ * The child props will have to be provided in a function, i.e. change:
16
+ *
17
+ * <Suspense fallback={<Loading />}>
18
+ * <MyRealComponent a={1} />
19
+ * </Suspense>
20
+ *
21
+ * To:
22
+ *
23
+ * <ClientSideSuspense fallback={<Loading />}>
24
+ * <MyRealComponent a={1} />
25
+ * </ClientSideSuspense>
26
+ *
27
+ */
28
+ declare function ClientSideSuspense(props: Props): React.JSX.Element;
29
+
30
+ export { ClientSideSuspense };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,30 @@
1
- export { C as ClientSideSuspense, R as RoomContext, _ as RoomProvider, c as createRoomContext, a as useAddReaction, S as useAttachmentUrl, u as useBatch, b as useBroadcastEvent, d as useCanRedo, e as useCanUndo, I as useCommentsErrorListener, f as useCreateComment, g as useCreateThread, h as useDeleteComment, i as useDeleteThread, j as useEditComment, k as useEditThreadMetadata, n as useErrorListener, o as useEventListener, p as useHistory, H as useHistoryVersionData, T as useHistoryVersions, q as useIsInsideRoom, r as useLostConnectionListener, s as useMarkThreadAsRead, l as useMarkThreadAsResolved, m as useMarkThreadAsUnresolved, t as useMutation, v as useMyPresence, J as useOther, K as useOthers, L as useOthersConnectionIds, w as useOthersListener, M as useOthersMapped, x as useRedo, y as useRemoveReaction, z as useRoom, U as useRoomNotificationSettings, N as useSelf, A as useStatus, O as useStorage, B as useStorageRoot, P as useStorageStatus, D as useThreadSubscription, Q as useThreads, E as useUndo, F as useUpdateMyPresence, G as useUpdateRoomNotificationSettings } from './suspense-560_K0iP.js';
2
- export { e as ClientContext, L as LiveblocksProvider, M as MutationContext, U as UseStorageStatusOptions, d as UseThreadsOptions, f as createLiveblocksContext, u as useClient, h as useDeleteAllInboxNotifications, i as useDeleteInboxNotification, _ as useInboxNotificationThread, m as useInboxNotifications, j as useMarkAllInboxNotificationsAsRead, k as useMarkInboxNotificationAsRead, o as useRoomInfo, l as useSyncStatus, p as useUnreadInboxNotificationsCount, q as useUser, n as useUserThreads_experimental } from './liveblocks-1ujmr05d.js';
1
+ export { p as ClientContext, L as LiveblocksProvider, M as MutationContext, R as RoomContext, z as RoomProvider, U as UseStorageStatusOptions, o as UseThreadsOptions, q as createLiveblocksContext, y as createRoomContext, A as useAddReaction, aj as useAttachmentUrl, B as useBatch, D as useBroadcastEvent, E as useCanRedo, F as useCanUndo, r as useClient, aa as useCommentsErrorListener, G as useCreateComment, H as useCreateThread, s as useDeleteAllInboxNotifications, I as useDeleteComment, t as useDeleteInboxNotification, J as useDeleteThread, K as useEditComment, N as useEditThreadMetadata, Q as useErrorListener, S as useEventListener, T as useHistory, a9 as useHistoryVersionData, ak as useHistoryVersions, _ as useInboxNotificationThread, am as useInboxNotifications, V as useIsInsideRoom, W as useLostConnectionListener, v as useMarkAllInboxNotificationsAsRead, w as useMarkInboxNotificationAsRead, X as useMarkThreadAsRead, O as useMarkThreadAsResolved, P as useMarkThreadAsUnresolved, Y as useMutation, Z as useMyPresence, ab as useOther, ac as useOthers, ad as useOthersConnectionIds, $ as useOthersListener, ae as useOthersMapped, a0 as useRedo, a1 as useRemoveReaction, a2 as useRoom, ao as useRoomInfo, al as useRoomNotificationSettings, af as useSelf, a3 as useStatus, ag as useStorage, a4 as useStorageRoot, ah as useStorageStatus, x as useSyncStatus, a5 as useThreadSubscription, ai as useThreads, a6 as useUndo, ap as useUnreadInboxNotificationsCount, a7 as useUpdateMyPresence, a8 as useUpdateRoomNotificationSettings, aq as useUser, an as useUserThreads_experimental } from './room-t_BUxm1-.js';
3
2
  export { Json, JsonObject, shallow } from '@liveblocks/client';
4
- import 'react';
3
+ import * as React from 'react';
4
+ import { ReactNode } from 'react';
5
5
  import '@liveblocks/core';
6
+
7
+ declare type Props = {
8
+ fallback: ReactNode;
9
+ children: (() => ReactNode | undefined) | ReactNode | undefined;
10
+ };
11
+ /**
12
+ * Almost like a normal <Suspense> component, except that for server-side
13
+ * renders, the fallback will be used.
14
+ *
15
+ * The child props will have to be provided in a function, i.e. change:
16
+ *
17
+ * <Suspense fallback={<Loading />}>
18
+ * <MyRealComponent a={1} />
19
+ * </Suspense>
20
+ *
21
+ * To:
22
+ *
23
+ * <ClientSideSuspense fallback={<Loading />}>
24
+ * <MyRealComponent a={1} />
25
+ * </ClientSideSuspense>
26
+ *
27
+ */
28
+ declare function ClientSideSuspense(props: Props): React.JSX.Element;
29
+
30
+ export { ClientSideSuspense };
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkQIL7LU4Hjs = require('./chunk-QIL7LU4H.js');
6
+ var _chunkSXLOEVWRjs = require('./chunk-SXLOEVWR.js');
7
7
 
8
8
 
9
9
 
@@ -67,12 +67,12 @@ var _chunkQIL7LU4Hjs = require('./chunk-QIL7LU4H.js');
67
67
 
68
68
 
69
69
 
70
- var _chunkIACZPXTYjs = require('./chunk-IACZPXTY.js');
70
+ var _chunkHVOJBD7Xjs = require('./chunk-HVOJBD7X.js');
71
71
 
72
72
  // src/index.ts
73
73
  var _core = require('@liveblocks/core');
74
74
  var _client = require('@liveblocks/client');
75
- _core.detectDupes.call(void 0, _chunkQIL7LU4Hjs.PKG_NAME, _chunkQIL7LU4Hjs.PKG_VERSION, _chunkQIL7LU4Hjs.PKG_FORMAT);
75
+ _core.detectDupes.call(void 0, _chunkSXLOEVWRjs.PKG_NAME, _chunkSXLOEVWRjs.PKG_VERSION, _chunkSXLOEVWRjs.PKG_FORMAT);
76
76
 
77
77
 
78
78
 
@@ -138,5 +138,5 @@ _core.detectDupes.call(void 0, _chunkQIL7LU4Hjs.PKG_NAME, _chunkQIL7LU4Hjs.PKG_V
138
138
 
139
139
 
140
140
 
141
- exports.ClientContext = _chunkIACZPXTYjs.ClientContext; exports.ClientSideSuspense = _chunkQIL7LU4Hjs.ClientSideSuspense; exports.LiveblocksProvider = _chunkIACZPXTYjs.LiveblocksProvider; exports.RoomContext = _chunkIACZPXTYjs.RoomContext; exports.RoomProvider = _chunkIACZPXTYjs._RoomProvider; exports.createLiveblocksContext = _chunkIACZPXTYjs.createLiveblocksContext; exports.createRoomContext = _chunkIACZPXTYjs.createRoomContext; exports.shallow = _client.shallow; exports.useAddReaction = _chunkIACZPXTYjs._useAddReaction; exports.useAttachmentUrl = _chunkIACZPXTYjs.useAttachmentUrl; exports.useBatch = _chunkIACZPXTYjs.useBatch; exports.useBroadcastEvent = _chunkIACZPXTYjs._useBroadcastEvent; exports.useCanRedo = _chunkIACZPXTYjs.useCanRedo; exports.useCanUndo = _chunkIACZPXTYjs.useCanUndo; exports.useClient = _chunkIACZPXTYjs.useClient; exports.useCommentsErrorListener = _chunkIACZPXTYjs.useCommentsErrorListener; exports.useCreateComment = _chunkIACZPXTYjs.useCreateComment; exports.useCreateThread = _chunkIACZPXTYjs._useCreateThread; exports.useDeleteAllInboxNotifications = _chunkIACZPXTYjs.useDeleteAllInboxNotifications; exports.useDeleteComment = _chunkIACZPXTYjs.useDeleteComment; exports.useDeleteInboxNotification = _chunkIACZPXTYjs.useDeleteInboxNotification; exports.useDeleteThread = _chunkIACZPXTYjs._useDeleteThread; exports.useEditComment = _chunkIACZPXTYjs.useEditComment; exports.useEditThreadMetadata = _chunkIACZPXTYjs._useEditThreadMetadata; exports.useErrorListener = _chunkIACZPXTYjs.useErrorListener; exports.useEventListener = _chunkIACZPXTYjs._useEventListener; exports.useHistory = _chunkIACZPXTYjs.useHistory; exports.useHistoryVersionData = _chunkIACZPXTYjs.useHistoryVersionData; exports.useHistoryVersions = _chunkIACZPXTYjs._useHistoryVersions; exports.useInboxNotificationThread = _chunkIACZPXTYjs._useInboxNotificationThread; exports.useInboxNotifications = _chunkIACZPXTYjs.useInboxNotifications; exports.useIsInsideRoom = _chunkIACZPXTYjs._useIsInsideRoom; exports.useLostConnectionListener = _chunkIACZPXTYjs.useLostConnectionListener; exports.useMarkAllInboxNotificationsAsRead = _chunkIACZPXTYjs.useMarkAllInboxNotificationsAsRead; exports.useMarkInboxNotificationAsRead = _chunkIACZPXTYjs.useMarkInboxNotificationAsRead; exports.useMarkThreadAsRead = _chunkIACZPXTYjs.useMarkThreadAsRead; exports.useMarkThreadAsResolved = _chunkIACZPXTYjs.useMarkThreadAsResolved; exports.useMarkThreadAsUnresolved = _chunkIACZPXTYjs.useMarkThreadAsUnresolved; exports.useMutation = _chunkIACZPXTYjs._useMutation; exports.useMyPresence = _chunkIACZPXTYjs._useMyPresence; exports.useOther = _chunkIACZPXTYjs._useOther; exports.useOthers = _chunkIACZPXTYjs._useOthers; exports.useOthersConnectionIds = _chunkIACZPXTYjs.useOthersConnectionIds; exports.useOthersListener = _chunkIACZPXTYjs._useOthersListener; exports.useOthersMapped = _chunkIACZPXTYjs._useOthersMapped; exports.useRedo = _chunkIACZPXTYjs.useRedo; exports.useRemoveReaction = _chunkIACZPXTYjs.useRemoveReaction; exports.useRoom = _chunkIACZPXTYjs._useRoom; exports.useRoomInfo = _chunkIACZPXTYjs.useRoomInfo; exports.useRoomNotificationSettings = _chunkIACZPXTYjs._useRoomNotificationSettings; exports.useSelf = _chunkIACZPXTYjs._useSelf; exports.useStatus = _chunkIACZPXTYjs.useStatus; exports.useStorage = _chunkIACZPXTYjs._useStorage; exports.useStorageRoot = _chunkIACZPXTYjs._useStorageRoot; exports.useStorageStatus = _chunkIACZPXTYjs.useStorageStatus; exports.useSyncStatus = _chunkIACZPXTYjs.useSyncStatus; exports.useThreadSubscription = _chunkIACZPXTYjs.useThreadSubscription; exports.useThreads = _chunkIACZPXTYjs._useThreads; exports.useUndo = _chunkIACZPXTYjs.useUndo; exports.useUnreadInboxNotificationsCount = _chunkIACZPXTYjs.useUnreadInboxNotificationsCount; exports.useUpdateMyPresence = _chunkIACZPXTYjs._useUpdateMyPresence; exports.useUpdateRoomNotificationSettings = _chunkIACZPXTYjs.useUpdateRoomNotificationSettings; exports.useUser = _chunkIACZPXTYjs._useUser; exports.useUserThreads_experimental = _chunkIACZPXTYjs._useUserThreads_experimental;
141
+ exports.ClientContext = _chunkHVOJBD7Xjs.ClientContext; exports.ClientSideSuspense = _chunkSXLOEVWRjs.ClientSideSuspense; exports.LiveblocksProvider = _chunkHVOJBD7Xjs.LiveblocksProvider; exports.RoomContext = _chunkHVOJBD7Xjs.RoomContext; exports.RoomProvider = _chunkHVOJBD7Xjs._RoomProvider; exports.createLiveblocksContext = _chunkHVOJBD7Xjs.createLiveblocksContext; exports.createRoomContext = _chunkHVOJBD7Xjs.createRoomContext; exports.shallow = _client.shallow; exports.useAddReaction = _chunkHVOJBD7Xjs._useAddReaction; exports.useAttachmentUrl = _chunkHVOJBD7Xjs.useAttachmentUrl; exports.useBatch = _chunkHVOJBD7Xjs.useBatch; exports.useBroadcastEvent = _chunkHVOJBD7Xjs._useBroadcastEvent; exports.useCanRedo = _chunkHVOJBD7Xjs.useCanRedo; exports.useCanUndo = _chunkHVOJBD7Xjs.useCanUndo; exports.useClient = _chunkHVOJBD7Xjs.useClient; exports.useCommentsErrorListener = _chunkHVOJBD7Xjs.useCommentsErrorListener; exports.useCreateComment = _chunkHVOJBD7Xjs.useCreateComment; exports.useCreateThread = _chunkHVOJBD7Xjs._useCreateThread; exports.useDeleteAllInboxNotifications = _chunkHVOJBD7Xjs.useDeleteAllInboxNotifications; exports.useDeleteComment = _chunkHVOJBD7Xjs.useDeleteComment; exports.useDeleteInboxNotification = _chunkHVOJBD7Xjs.useDeleteInboxNotification; exports.useDeleteThread = _chunkHVOJBD7Xjs._useDeleteThread; exports.useEditComment = _chunkHVOJBD7Xjs.useEditComment; exports.useEditThreadMetadata = _chunkHVOJBD7Xjs._useEditThreadMetadata; exports.useErrorListener = _chunkHVOJBD7Xjs.useErrorListener; exports.useEventListener = _chunkHVOJBD7Xjs._useEventListener; exports.useHistory = _chunkHVOJBD7Xjs.useHistory; exports.useHistoryVersionData = _chunkHVOJBD7Xjs.useHistoryVersionData; exports.useHistoryVersions = _chunkHVOJBD7Xjs._useHistoryVersions; exports.useInboxNotificationThread = _chunkHVOJBD7Xjs._useInboxNotificationThread; exports.useInboxNotifications = _chunkHVOJBD7Xjs.useInboxNotifications; exports.useIsInsideRoom = _chunkHVOJBD7Xjs._useIsInsideRoom; exports.useLostConnectionListener = _chunkHVOJBD7Xjs.useLostConnectionListener; exports.useMarkAllInboxNotificationsAsRead = _chunkHVOJBD7Xjs.useMarkAllInboxNotificationsAsRead; exports.useMarkInboxNotificationAsRead = _chunkHVOJBD7Xjs.useMarkInboxNotificationAsRead; exports.useMarkThreadAsRead = _chunkHVOJBD7Xjs.useMarkThreadAsRead; exports.useMarkThreadAsResolved = _chunkHVOJBD7Xjs.useMarkThreadAsResolved; exports.useMarkThreadAsUnresolved = _chunkHVOJBD7Xjs.useMarkThreadAsUnresolved; exports.useMutation = _chunkHVOJBD7Xjs._useMutation; exports.useMyPresence = _chunkHVOJBD7Xjs._useMyPresence; exports.useOther = _chunkHVOJBD7Xjs._useOther; exports.useOthers = _chunkHVOJBD7Xjs._useOthers; exports.useOthersConnectionIds = _chunkHVOJBD7Xjs.useOthersConnectionIds; exports.useOthersListener = _chunkHVOJBD7Xjs._useOthersListener; exports.useOthersMapped = _chunkHVOJBD7Xjs._useOthersMapped; exports.useRedo = _chunkHVOJBD7Xjs.useRedo; exports.useRemoveReaction = _chunkHVOJBD7Xjs.useRemoveReaction; exports.useRoom = _chunkHVOJBD7Xjs._useRoom; exports.useRoomInfo = _chunkHVOJBD7Xjs.useRoomInfo; exports.useRoomNotificationSettings = _chunkHVOJBD7Xjs._useRoomNotificationSettings; exports.useSelf = _chunkHVOJBD7Xjs._useSelf; exports.useStatus = _chunkHVOJBD7Xjs.useStatus; exports.useStorage = _chunkHVOJBD7Xjs._useStorage; exports.useStorageRoot = _chunkHVOJBD7Xjs._useStorageRoot; exports.useStorageStatus = _chunkHVOJBD7Xjs.useStorageStatus; exports.useSyncStatus = _chunkHVOJBD7Xjs.useSyncStatus; exports.useThreadSubscription = _chunkHVOJBD7Xjs.useThreadSubscription; exports.useThreads = _chunkHVOJBD7Xjs._useThreads; exports.useUndo = _chunkHVOJBD7Xjs.useUndo; exports.useUnreadInboxNotificationsCount = _chunkHVOJBD7Xjs.useUnreadInboxNotificationsCount; exports.useUpdateMyPresence = _chunkHVOJBD7Xjs._useUpdateMyPresence; exports.useUpdateRoomNotificationSettings = _chunkHVOJBD7Xjs.useUpdateRoomNotificationSettings; exports.useUser = _chunkHVOJBD7Xjs._useUser; exports.useUserThreads_experimental = _chunkHVOJBD7Xjs._useUserThreads_experimental;
142
142
  //# sourceMappingURL=index.js.map
package/dist/index.mjs CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  PKG_FORMAT,
4
4
  PKG_NAME,
5
5
  PKG_VERSION
6
- } from "./chunk-JORFBIBS.mjs";
6
+ } from "./chunk-T5FESK7Z.mjs";
7
7
  import {
8
8
  ClientContext,
9
9
  LiveblocksProvider,
@@ -67,7 +67,7 @@ import {
67
67
  useUndo,
68
68
  useUnreadInboxNotificationsCount,
69
69
  useUpdateRoomNotificationSettings
70
- } from "./chunk-CX62YECU.mjs";
70
+ } from "./chunk-SEMVNYPJ.mjs";
71
71
 
72
72
  // src/index.ts
73
73
  import { detectDupes } from "@liveblocks/core";