@liveblocks/react 3.7.1 → 3.8.0-next2
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/_private.cjs +7 -7
- package/dist/_private.d.cts +2 -2
- package/dist/_private.d.ts +2 -2
- package/dist/_private.js +1 -1
- package/dist/{chunk-4GCS3365.cjs → chunk-45BFK66K.cjs} +63 -23
- package/dist/chunk-45BFK66K.cjs.map +1 -0
- package/dist/{chunk-W466HEJW.js → chunk-CJPXWLYB.js} +2 -2
- package/dist/{chunk-OKYUUXNY.js → chunk-GXPZZIB2.js} +41 -1
- package/dist/chunk-GXPZZIB2.js.map +1 -0
- package/dist/{chunk-MEL5UMNW.cjs → chunk-Z7VZZU63.cjs} +2 -2
- package/dist/{chunk-MEL5UMNW.cjs.map → chunk-Z7VZZU63.cjs.map} +1 -1
- package/dist/index.cjs +6 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/{room-BtcL74U0.d.cts → room-KGcJBLp4.d.cts} +93 -2
- package/dist/{room-BtcL74U0.d.ts → room-KGcJBLp4.d.ts} +93 -2
- package/dist/suspense.cjs +6 -4
- package/dist/suspense.cjs.map +1 -1
- package/dist/suspense.d.cts +1 -1
- package/dist/suspense.d.ts +1 -1
- package/dist/suspense.js +4 -2
- package/dist/suspense.js.map +1 -1
- package/package.json +3 -3
- package/dist/chunk-4GCS3365.cjs.map +0 -1
- package/dist/chunk-OKYUUXNY.js.map +0 -1
- /package/dist/{chunk-W466HEJW.js.map → chunk-CJPXWLYB.js.map} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/version.ts
|
|
2
2
|
var PKG_NAME = "@liveblocks/react";
|
|
3
|
-
var PKG_VERSION = "3.
|
|
3
|
+
var PKG_VERSION = "3.8.0-next2";
|
|
4
4
|
var PKG_FORMAT = "cjs";
|
|
5
5
|
|
|
6
6
|
// src/ClientSideSuspense.tsx
|
|
@@ -20,4 +20,4 @@ function ClientSideSuspense(props) {
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
exports.PKG_NAME = PKG_NAME; exports.PKG_VERSION = PKG_VERSION; exports.PKG_FORMAT = PKG_FORMAT; exports.ClientSideSuspense = ClientSideSuspense;
|
|
23
|
-
//# sourceMappingURL=chunk-
|
|
23
|
+
//# sourceMappingURL=chunk-Z7VZZU63.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/chunk-
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/chunk-Z7VZZU63.cjs","../src/version.ts","../src/ClientSideSuspense.tsx"],"names":[],"mappings":"AAAA;ACGO,IAAM,SAAA,EAAW,mBAAA;AACjB,IAAM,YAAA,EAAiD,aAAA;AACvD,IAAM,WAAA,EAAgD,KAAA;ADD7D;AACA;AEJA,8BAA8C;AAkC1C,+CAAA;AAVG,SAAS,kBAAA,CAAmB,KAAA,EAAc;AAC/C,EAAA,MAAM,CAAC,OAAA,EAAS,UAAU,EAAA,EAAI,6BAAA,KAAc,CAAA;AAE5C,EAAA,8BAAA,CAAU,EAAA,GAAM;AAGd,IAAA,UAAA,CAAW,IAAI,CAAA;AAAA,EACjB,CAAA,EAAG,CAAC,CAAC,CAAA;AAEL,EAAA,uBACE,6BAAA,eAAC,EAAA,EAAS,QAAA,EAAU,KAAA,CAAM,QAAA,EACvB,QAAA,EAAA,QAAA,EACG,OAAO,KAAA,CAAM,SAAA,IAAa,WAAA,EACxB,KAAA,CAAM,QAAA,CAAS,EAAA,EACf,KAAA,CAAM,SAAA,EACR,KAAA,CAAM,SAAA,CACZ,CAAA;AAEJ;AF5BA;AACA;AACE;AACA;AACA;AACA;AACF,iJAAC","file":"/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/chunk-Z7VZZU63.cjs","sourcesContent":[null,"declare const __VERSION__: string;\ndeclare const TSUP_FORMAT: string;\n\nexport const PKG_NAME = \"@liveblocks/react\";\nexport const PKG_VERSION = typeof __VERSION__ === \"string\" && __VERSION__;\nexport const PKG_FORMAT = typeof TSUP_FORMAT === \"string\" && TSUP_FORMAT;\n","import type { ReactNode } from \"react\";\nimport { Suspense, useEffect, useState } from \"react\";\n\ntype Props = {\n fallback: ReactNode;\n children: (() => ReactNode | undefined) | ReactNode | undefined;\n};\n\n/**\n * Almost like a normal <Suspense> component, except that for server-side\n * renders, the fallback will be used.\n *\n * The child props will have to be provided in a function, i.e. change:\n *\n * <Suspense fallback={<Loading />}>\n * <MyRealComponent a={1} />\n * </Suspense>\n *\n * To:\n *\n * <ClientSideSuspense fallback={<Loading />}>\n * <MyRealComponent a={1} />\n * </ClientSideSuspense>\n *\n */\nexport function ClientSideSuspense(props: Props) {\n const [mounted, setMounted] = useState(false);\n\n useEffect(() => {\n // Effects are never executed on the server side. The point of this is to\n // delay the flipping of this boolean until after hydration has happened.\n setMounted(true);\n }, []);\n\n return (\n <Suspense fallback={props.fallback}>\n {mounted\n ? typeof props.children === \"function\"\n ? props.children()\n : props.children\n : props.fallback}\n </Suspense>\n );\n}\n"]}
|
package/dist/index.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkZ7VZZU63cjs = require('./chunk-Z7VZZU63.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -77,12 +77,14 @@ var _chunkMEL5UMNWcjs = require('./chunk-MEL5UMNW.cjs');
|
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
|
|
81
|
+
var _chunk45BFK66Kcjs = require('./chunk-45BFK66K.cjs');
|
|
81
82
|
|
|
82
83
|
// src/index.ts
|
|
83
84
|
var _core = require('@liveblocks/core');
|
|
84
85
|
var _client = require('@liveblocks/client');
|
|
85
|
-
_core.detectDupes.call(void 0,
|
|
86
|
+
_core.detectDupes.call(void 0, _chunkZ7VZZU63cjs.PKG_NAME, _chunkZ7VZZU63cjs.PKG_VERSION, _chunkZ7VZZU63cjs.PKG_FORMAT);
|
|
87
|
+
|
|
86
88
|
|
|
87
89
|
|
|
88
90
|
|
|
@@ -159,5 +161,5 @@ _core.detectDupes.call(void 0, _chunkMEL5UMNWcjs.PKG_NAME, _chunkMEL5UMNWcjs.PKG
|
|
|
159
161
|
|
|
160
162
|
|
|
161
163
|
|
|
162
|
-
exports.ClientContext =
|
|
164
|
+
exports.ClientContext = _chunk45BFK66Kcjs.ClientContext; exports.ClientSideSuspense = _chunkZ7VZZU63cjs.ClientSideSuspense; exports.LiveblocksProvider = _chunk45BFK66Kcjs.LiveblocksProvider; exports.RegisterAiKnowledge = _chunk45BFK66Kcjs.RegisterAiKnowledge; exports.RegisterAiTool = _chunk45BFK66Kcjs.RegisterAiTool; exports.RoomContext = _chunk45BFK66Kcjs.RoomContext; exports.RoomProvider = _chunk45BFK66Kcjs._RoomProvider; exports.createLiveblocksContext = _chunk45BFK66Kcjs.createLiveblocksContext; exports.createRoomContext = _chunk45BFK66Kcjs.createRoomContext; exports.isNotificationChannelEnabled = _client.isNotificationChannelEnabled; exports.shallow = _client.shallow; exports.useAddReaction = _chunk45BFK66Kcjs._useAddReaction; exports.useAiChat = _chunk45BFK66Kcjs._useAiChat; exports.useAiChatMessages = _chunk45BFK66Kcjs._useAiChatMessages; exports.useAiChatStatus = _chunk45BFK66Kcjs.useAiChatStatus; exports.useAiChats = _chunk45BFK66Kcjs._useAiChats; exports.useAttachmentUrl = _chunk45BFK66Kcjs.useAttachmentUrl; exports.useBroadcastEvent = _chunk45BFK66Kcjs._useBroadcastEvent; exports.useCanRedo = _chunk45BFK66Kcjs.useCanRedo; exports.useCanUndo = _chunk45BFK66Kcjs.useCanUndo; exports.useClient = _chunk45BFK66Kcjs.useClient; exports.useCreateAiChat = _chunk45BFK66Kcjs.useCreateAiChat; exports.useCreateComment = _chunk45BFK66Kcjs.useCreateComment; exports.useCreateThread = _chunk45BFK66Kcjs._useCreateThread; exports.useDeleteAiChat = _chunk45BFK66Kcjs.useDeleteAiChat; exports.useDeleteAllInboxNotifications = _chunk45BFK66Kcjs.useDeleteAllInboxNotifications; exports.useDeleteComment = _chunk45BFK66Kcjs.useDeleteComment; exports.useDeleteInboxNotification = _chunk45BFK66Kcjs.useDeleteInboxNotification; exports.useDeleteThread = _chunk45BFK66Kcjs._useDeleteThread; exports.useEditComment = _chunk45BFK66Kcjs.useEditComment; exports.useEditThreadMetadata = _chunk45BFK66Kcjs._useEditThreadMetadata; exports.useErrorListener = _chunk45BFK66Kcjs.useErrorListener; exports.useEventListener = _chunk45BFK66Kcjs._useEventListener; exports.useGroupInfo = _chunk45BFK66Kcjs.useGroupInfo; exports.useHistory = _chunk45BFK66Kcjs.useHistory; exports.useHistoryVersionData = _chunk45BFK66Kcjs.useHistoryVersionData; exports.useHistoryVersions = _chunk45BFK66Kcjs._useHistoryVersions; exports.useInboxNotificationThread = _chunk45BFK66Kcjs._useInboxNotificationThread; exports.useInboxNotifications = _chunk45BFK66Kcjs.useInboxNotifications; exports.useIsInsideRoom = _chunk45BFK66Kcjs._useIsInsideRoom; exports.useLostConnectionListener = _chunk45BFK66Kcjs.useLostConnectionListener; exports.useMarkAllInboxNotificationsAsRead = _chunk45BFK66Kcjs.useMarkAllInboxNotificationsAsRead; exports.useMarkInboxNotificationAsRead = _chunk45BFK66Kcjs.useMarkInboxNotificationAsRead; exports.useMarkThreadAsRead = _chunk45BFK66Kcjs.useMarkThreadAsRead; exports.useMarkThreadAsResolved = _chunk45BFK66Kcjs.useMarkThreadAsResolved; exports.useMarkThreadAsUnresolved = _chunk45BFK66Kcjs.useMarkThreadAsUnresolved; exports.useMutation = _chunk45BFK66Kcjs._useMutation; exports.useMyPresence = _chunk45BFK66Kcjs._useMyPresence; exports.useNotificationSettings = _chunk45BFK66Kcjs.useNotificationSettings; exports.useOther = _chunk45BFK66Kcjs._useOther; exports.useOthers = _chunk45BFK66Kcjs._useOthers; exports.useOthersConnectionIds = _chunk45BFK66Kcjs.useOthersConnectionIds; exports.useOthersListener = _chunk45BFK66Kcjs._useOthersListener; exports.useOthersMapped = _chunk45BFK66Kcjs._useOthersMapped; exports.useRedo = _chunk45BFK66Kcjs.useRedo; exports.useRemoveReaction = _chunk45BFK66Kcjs.useRemoveReaction; exports.useRoom = _chunk45BFK66Kcjs._useRoom; exports.useRoomInfo = _chunk45BFK66Kcjs.useRoomInfo; exports.useRoomSubscriptionSettings = _chunk45BFK66Kcjs._useRoomSubscriptionSettings; exports.useSelf = _chunk45BFK66Kcjs._useSelf; exports.useSendAiMessage = _chunk45BFK66Kcjs.useSendAiMessage; exports.useStatus = _chunk45BFK66Kcjs.useStatus; exports.useStorage = _chunk45BFK66Kcjs._useStorage; exports.useStorageRoot = _chunk45BFK66Kcjs._useStorageRoot; exports.useSubscribeToThread = _chunk45BFK66Kcjs.useSubscribeToThread; exports.useSyncStatus = _chunk45BFK66Kcjs.useSyncStatus; exports.useThreadSubscription = _chunk45BFK66Kcjs.useThreadSubscription; exports.useThreads = _chunk45BFK66Kcjs._useThreads; exports.useUndo = _chunk45BFK66Kcjs.useUndo; exports.useUnreadInboxNotificationsCount = _chunk45BFK66Kcjs.useUnreadInboxNotificationsCount; exports.useUnsubscribeFromThread = _chunk45BFK66Kcjs.useUnsubscribeFromThread; exports.useUpdateMyPresence = _chunk45BFK66Kcjs._useUpdateMyPresence; exports.useUpdateNotificationSettings = _chunk45BFK66Kcjs.useUpdateNotificationSettings; exports.useUpdateRoomSubscriptionSettings = _chunk45BFK66Kcjs.useUpdateRoomSubscriptionSettings; exports.useUser = _chunk45BFK66Kcjs._useUser; exports.useUserThreads_experimental = _chunk45BFK66Kcjs._useUserThreads_experimental;
|
|
163
165
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/index.cjs","../src/index.ts"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACA;
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/index.cjs","../src/index.ts"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACA;ACjFA,wCAA4B;AAe5B,4CAAsD;AAZtD,+BAAA,0BAAY,EAAU,6BAAA,EAAa,4BAAU,CAAA;ADkF7C;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,u0JAAC","file":"/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/index.cjs","sourcesContent":[null,"/* eslint-disable simple-import-sort/exports */\nimport { detectDupes } from \"@liveblocks/core\";\n\nimport { PKG_FORMAT, PKG_NAME, PKG_VERSION } from \"./version\";\ndetectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);\n\nexport { ClientSideSuspense } from \"./ClientSideSuspense\";\nexport type {\n MutationContext,\n UseSendAiMessageOptions,\n UseThreadsOptions,\n SendAiMessageOptions,\n} from \"./types\";\n\n// Re-exports from @liveblocks/client, for convenience\nexport type { Json, JsonObject } from \"@liveblocks/client\";\nexport { shallow, isNotificationChannelEnabled } from \"@liveblocks/client\";\n\n// Export all the top-level hooks\nexport { RegisterAiKnowledge, RegisterAiTool } from \"./ai\";\nexport type {\n AiChatStatus,\n RegisterAiKnowledgeProps,\n RegisterAiToolProps,\n} from \"./types/ai\";\nexport { ClientContext, RoomContext, useClient } from \"./contexts\";\nexport {\n createLiveblocksContext,\n LiveblocksProvider,\n useDeleteAllInboxNotifications,\n useDeleteInboxNotification,\n useErrorListener,\n useInboxNotificationThread,\n useMarkAllInboxNotificationsAsRead,\n useMarkInboxNotificationAsRead,\n useSyncStatus,\n} from \"./liveblocks\";\nexport {\n createRoomContext,\n RoomProvider,\n useAddReaction,\n useBroadcastEvent,\n useCanRedo,\n useCanUndo,\n useCreateComment,\n useCreateThread,\n useDeleteComment,\n useDeleteThread,\n useEditComment,\n useEditThreadMetadata,\n useMarkThreadAsResolved,\n useMarkThreadAsUnresolved,\n useSubscribeToThread,\n useUnsubscribeFromThread,\n useEventListener,\n useHistory,\n useIsInsideRoom,\n useLostConnectionListener,\n useMarkThreadAsRead,\n useMutation,\n useMyPresence,\n useOthersListener,\n useRedo,\n useRemoveReaction,\n useRoom,\n useStatus,\n useStorageRoot,\n useThreadSubscription,\n useUndo,\n useUpdateMyPresence,\n useUpdateRoomSubscriptionSettings,\n useHistoryVersionData,\n} from \"./room\";\n\n// Export the classic (non-Suspense) versions of our hooks\n// (This part differs from src/suspense.ts)\nexport {\n useOther,\n useOthers,\n useOthersConnectionIds,\n useOthersMapped,\n useSelf,\n useStorage,\n useThreads,\n useAttachmentUrl,\n useHistoryVersions,\n useRoomSubscriptionSettings,\n} from \"./room\";\nexport {\n useInboxNotifications,\n useNotificationSettings,\n useUpdateNotificationSettings,\n useCreateAiChat,\n useDeleteAiChat,\n useSendAiMessage,\n useUserThreads_experimental as useUserThreads_experimental,\n useRoomInfo,\n useGroupInfo,\n useUnreadInboxNotificationsCount,\n useUser,\n useAiChat,\n useAiChats,\n useAiChatMessages,\n useAiChatStatus,\n} from \"./liveblocks\";\n"]}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { R as RegisterAiKnowledgeProps, w as RegisterAiToolProps } from './room-
|
|
2
|
-
export { C as ClientContext, L as LiveblocksProvider, M as MutationContext, y as RoomContext,
|
|
1
|
+
import { R as RegisterAiKnowledgeProps, w as RegisterAiToolProps } from './room-KGcJBLp4.cjs';
|
|
2
|
+
export { A as AiChatStatus, C as ClientContext, L as LiveblocksProvider, M as MutationContext, y as RoomContext, N as RoomProvider, S as SendAiMessageOptions, U as UseSendAiMessageOptions, x as UseThreadsOptions, B as createLiveblocksContext, K as createRoomContext, O as useAddReaction, aH as useAiChat, aJ as useAiChatMessages, aK as useAiChatStatus, aI as useAiChats, at as useAttachmentUrl, P as useBroadcastEvent, Q as useCanRedo, T as useCanUndo, z as useClient, az as useCreateAiChat, V as useCreateComment, W as useCreateThread, aA as useDeleteAiChat, D as useDeleteAllInboxNotifications, X as useDeleteComment, E as useDeleteInboxNotification, Y as useDeleteThread, Z as useEditComment, $ as useEditThreadMetadata, F as useErrorListener, a4 as useEventListener, aE as useGroupInfo, a5 as useHistory, al as useHistoryVersionData, au as useHistoryVersions, _ as useInboxNotificationThread, aw as useInboxNotifications, a6 as useIsInsideRoom, a7 as useLostConnectionListener, H as useMarkAllInboxNotificationsAsRead, I as useMarkInboxNotificationAsRead, a8 as useMarkThreadAsRead, a0 as useMarkThreadAsResolved, a1 as useMarkThreadAsUnresolved, a9 as useMutation, aa as useMyPresence, ax as useNotificationSettings, am as useOther, an as useOthers, ao as useOthersConnectionIds, ab as useOthersListener, ap as useOthersMapped, ac as useRedo, ad as useRemoveReaction, ae as useRoom, aD as useRoomInfo, av as useRoomSubscriptionSettings, aq as useSelf, aB as useSendAiMessage, af as useStatus, ar as useStorage, ag as useStorageRoot, a2 as useSubscribeToThread, J as useSyncStatus, ah as useThreadSubscription, as as useThreads, ai as useUndo, aF as useUnreadInboxNotificationsCount, a3 as useUnsubscribeFromThread, aj as useUpdateMyPresence, ay as useUpdateNotificationSettings, ak as useUpdateRoomSubscriptionSettings, aG as useUser, aC as useUserThreads_experimental } from './room-KGcJBLp4.cjs';
|
|
3
3
|
export { Json, JsonObject, isNotificationChannelEnabled, shallow } from '@liveblocks/client';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as react from 'react';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { R as RegisterAiKnowledgeProps, w as RegisterAiToolProps } from './room-
|
|
2
|
-
export { C as ClientContext, L as LiveblocksProvider, M as MutationContext, y as RoomContext,
|
|
1
|
+
import { R as RegisterAiKnowledgeProps, w as RegisterAiToolProps } from './room-KGcJBLp4.js';
|
|
2
|
+
export { A as AiChatStatus, C as ClientContext, L as LiveblocksProvider, M as MutationContext, y as RoomContext, N as RoomProvider, S as SendAiMessageOptions, U as UseSendAiMessageOptions, x as UseThreadsOptions, B as createLiveblocksContext, K as createRoomContext, O as useAddReaction, aH as useAiChat, aJ as useAiChatMessages, aK as useAiChatStatus, aI as useAiChats, at as useAttachmentUrl, P as useBroadcastEvent, Q as useCanRedo, T as useCanUndo, z as useClient, az as useCreateAiChat, V as useCreateComment, W as useCreateThread, aA as useDeleteAiChat, D as useDeleteAllInboxNotifications, X as useDeleteComment, E as useDeleteInboxNotification, Y as useDeleteThread, Z as useEditComment, $ as useEditThreadMetadata, F as useErrorListener, a4 as useEventListener, aE as useGroupInfo, a5 as useHistory, al as useHistoryVersionData, au as useHistoryVersions, _ as useInboxNotificationThread, aw as useInboxNotifications, a6 as useIsInsideRoom, a7 as useLostConnectionListener, H as useMarkAllInboxNotificationsAsRead, I as useMarkInboxNotificationAsRead, a8 as useMarkThreadAsRead, a0 as useMarkThreadAsResolved, a1 as useMarkThreadAsUnresolved, a9 as useMutation, aa as useMyPresence, ax as useNotificationSettings, am as useOther, an as useOthers, ao as useOthersConnectionIds, ab as useOthersListener, ap as useOthersMapped, ac as useRedo, ad as useRemoveReaction, ae as useRoom, aD as useRoomInfo, av as useRoomSubscriptionSettings, aq as useSelf, aB as useSendAiMessage, af as useStatus, ar as useStorage, ag as useStorageRoot, a2 as useSubscribeToThread, J as useSyncStatus, ah as useThreadSubscription, as as useThreads, ai as useUndo, aF as useUnreadInboxNotificationsCount, a3 as useUnsubscribeFromThread, aj as useUpdateMyPresence, ay as useUpdateNotificationSettings, ak as useUpdateRoomSubscriptionSettings, aG as useUser, aC as useUserThreads_experimental } from './room-KGcJBLp4.js';
|
|
3
3
|
export { Json, JsonObject, isNotificationChannelEnabled, shallow } from '@liveblocks/client';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as react from 'react';
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
PKG_FORMAT,
|
|
4
4
|
PKG_NAME,
|
|
5
5
|
PKG_VERSION
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-CJPXWLYB.js";
|
|
7
7
|
import {
|
|
8
8
|
ClientContext,
|
|
9
9
|
LiveblocksProvider,
|
|
@@ -40,6 +40,7 @@ import {
|
|
|
40
40
|
_useUserThreads_experimental,
|
|
41
41
|
createLiveblocksContext,
|
|
42
42
|
createRoomContext,
|
|
43
|
+
useAiChatStatus,
|
|
43
44
|
useAttachmentUrl,
|
|
44
45
|
useCanRedo,
|
|
45
46
|
useCanUndo,
|
|
@@ -77,7 +78,7 @@ import {
|
|
|
77
78
|
useUnsubscribeFromThread,
|
|
78
79
|
useUpdateNotificationSettings,
|
|
79
80
|
useUpdateRoomSubscriptionSettings
|
|
80
|
-
} from "./chunk-
|
|
81
|
+
} from "./chunk-GXPZZIB2.js";
|
|
81
82
|
|
|
82
83
|
// src/index.ts
|
|
83
84
|
import { detectDupes } from "@liveblocks/core";
|
|
@@ -98,6 +99,7 @@ export {
|
|
|
98
99
|
_useAddReaction as useAddReaction,
|
|
99
100
|
_useAiChat as useAiChat,
|
|
100
101
|
_useAiChatMessages as useAiChatMessages,
|
|
102
|
+
useAiChatStatus,
|
|
101
103
|
_useAiChats as useAiChats,
|
|
102
104
|
useAttachmentUrl,
|
|
103
105
|
_useBroadcastEvent as useBroadcastEvent,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["/* eslint-disable simple-import-sort/exports */\nimport { detectDupes } from \"@liveblocks/core\";\n\nimport { PKG_FORMAT, PKG_NAME, PKG_VERSION } from \"./version\";\ndetectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);\n\nexport { ClientSideSuspense } from \"./ClientSideSuspense\";\nexport type {\n MutationContext,\n UseSendAiMessageOptions,\n UseThreadsOptions,\n SendAiMessageOptions,\n} from \"./types\";\n\n// Re-exports from @liveblocks/client, for convenience\nexport type { Json, JsonObject } from \"@liveblocks/client\";\nexport { shallow, isNotificationChannelEnabled } from \"@liveblocks/client\";\n\n// Export all the top-level hooks\nexport { RegisterAiKnowledge, RegisterAiTool } from \"./ai\";\nexport type {
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["/* eslint-disable simple-import-sort/exports */\nimport { detectDupes } from \"@liveblocks/core\";\n\nimport { PKG_FORMAT, PKG_NAME, PKG_VERSION } from \"./version\";\ndetectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);\n\nexport { ClientSideSuspense } from \"./ClientSideSuspense\";\nexport type {\n MutationContext,\n UseSendAiMessageOptions,\n UseThreadsOptions,\n SendAiMessageOptions,\n} from \"./types\";\n\n// Re-exports from @liveblocks/client, for convenience\nexport type { Json, JsonObject } from \"@liveblocks/client\";\nexport { shallow, isNotificationChannelEnabled } from \"@liveblocks/client\";\n\n// Export all the top-level hooks\nexport { RegisterAiKnowledge, RegisterAiTool } from \"./ai\";\nexport type {\n AiChatStatus,\n RegisterAiKnowledgeProps,\n RegisterAiToolProps,\n} from \"./types/ai\";\nexport { ClientContext, RoomContext, useClient } from \"./contexts\";\nexport {\n createLiveblocksContext,\n LiveblocksProvider,\n useDeleteAllInboxNotifications,\n useDeleteInboxNotification,\n useErrorListener,\n useInboxNotificationThread,\n useMarkAllInboxNotificationsAsRead,\n useMarkInboxNotificationAsRead,\n useSyncStatus,\n} from \"./liveblocks\";\nexport {\n createRoomContext,\n RoomProvider,\n useAddReaction,\n useBroadcastEvent,\n useCanRedo,\n useCanUndo,\n useCreateComment,\n useCreateThread,\n useDeleteComment,\n useDeleteThread,\n useEditComment,\n useEditThreadMetadata,\n useMarkThreadAsResolved,\n useMarkThreadAsUnresolved,\n useSubscribeToThread,\n useUnsubscribeFromThread,\n useEventListener,\n useHistory,\n useIsInsideRoom,\n useLostConnectionListener,\n useMarkThreadAsRead,\n useMutation,\n useMyPresence,\n useOthersListener,\n useRedo,\n useRemoveReaction,\n useRoom,\n useStatus,\n useStorageRoot,\n useThreadSubscription,\n useUndo,\n useUpdateMyPresence,\n useUpdateRoomSubscriptionSettings,\n useHistoryVersionData,\n} from \"./room\";\n\n// Export the classic (non-Suspense) versions of our hooks\n// (This part differs from src/suspense.ts)\nexport {\n useOther,\n useOthers,\n useOthersConnectionIds,\n useOthersMapped,\n useSelf,\n useStorage,\n useThreads,\n useAttachmentUrl,\n useHistoryVersions,\n useRoomSubscriptionSettings,\n} from \"./room\";\nexport {\n useInboxNotifications,\n useNotificationSettings,\n useUpdateNotificationSettings,\n useCreateAiChat,\n useDeleteAiChat,\n useSendAiMessage,\n useUserThreads_experimental as useUserThreads_experimental,\n useRoomInfo,\n useGroupInfo,\n useUnreadInboxNotificationsCount,\n useUser,\n useAiChat,\n useAiChats,\n useAiChatMessages,\n useAiChatStatus,\n} from \"./liveblocks\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,SAAS,mBAAmB;AAe5B,SAAS,SAAS,oCAAoC;AAZtD,YAAY,UAAU,aAAa,UAAU;","names":[]}
|
|
@@ -2,7 +2,7 @@ import * as react from 'react';
|
|
|
2
2
|
import { ComponentType, Context, PropsWithChildren, ReactNode } from 'react';
|
|
3
3
|
import { BaseUserMeta, Client, JsonObject, LsonObject, LiveObject, User, Json, RoomSubscriptionSettings, Room, Status, BroadcastOptions, OthersEvent, LostConnectionEvent, History, BaseMetadata as BaseMetadata$1, ClientOptions, ThreadData as ThreadData$1, CommentData as CommentData$1 } from '@liveblocks/client';
|
|
4
4
|
import * as _liveblocks_core from '@liveblocks/core';
|
|
5
|
-
import { OpaqueClient, OpaqueRoom, AiKnowledgeSource, AiOpaqueToolDefinition, BaseMetadata, QueryMetadata, AsyncResult, DRI, AsyncSuccess, DGI, GroupData, Resolve, CommentBody, CommentAttachment, PartialUnless, Patchable, InboxNotificationData, NotificationSettings,
|
|
5
|
+
import { OpaqueClient, OpaqueRoom, AiKnowledgeSource, AiOpaqueToolDefinition, Relax, AiAssistantContentPart, BaseMetadata, QueryMetadata, AsyncResult, DRI, AsyncSuccess, DGI, GroupData, Resolve, CommentBody, CommentAttachment, PartialUnless, Patchable, InboxNotificationData, NotificationSettings, ToImmutable, MessageId, PartialNotificationSettings, AiChatsQuery, AsyncLoading, AsyncError, ThreadData, HistoryVersion, AiChat, Client as Client$1, LiveblocksError, SyncStatus, RoomEventMessage, CommentData, AiUserMessage, WithRequired, AiChatMessage, WithNavigation, MutableSignal, ThreadDataWithDeleteInfo, ThreadDeleteInfo, DerivedSignal, DefaultMap, SubscriptionData, SubscriptionKey, CommentUserReaction, InboxNotificationDeleteInfo, SubscriptionDeleteInfo, RoomSubscriptionSettings as RoomSubscriptionSettings$1, ISignal, Permission, BaseUserMeta as BaseUserMeta$1, DistributiveOmit, DU, DM, TextEditorType, IYjsProvider, MentionData, DP, DS, DE } from '@liveblocks/core';
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -53,6 +53,25 @@ type RegisterAiToolProps = {
|
|
|
53
53
|
*/
|
|
54
54
|
enabled?: boolean;
|
|
55
55
|
};
|
|
56
|
+
/**
|
|
57
|
+
* Simplified status for the requested chat.
|
|
58
|
+
* This hook offers a convenient way to update the UI while an AI chat
|
|
59
|
+
* generation is in progress.
|
|
60
|
+
*/
|
|
61
|
+
type AiChatStatus = Relax<{
|
|
62
|
+
status: "loading";
|
|
63
|
+
} | {
|
|
64
|
+
status: "idle";
|
|
65
|
+
} | {
|
|
66
|
+
status: "generating";
|
|
67
|
+
} | {
|
|
68
|
+
status: "generating";
|
|
69
|
+
partType: Exclude<AiAssistantContentPart["type"], "tool-invocation">;
|
|
70
|
+
} | {
|
|
71
|
+
status: "generating";
|
|
72
|
+
partType: "tool-invocation";
|
|
73
|
+
toolName: string;
|
|
74
|
+
}>;
|
|
56
75
|
|
|
57
76
|
type UiChatMessage = WithNavigation<AiChatMessage>;
|
|
58
77
|
type UseSyncStatusOptions = {
|
|
@@ -216,6 +235,7 @@ type AiChatAsyncSuccess = AsyncSuccess<AiChat, "chat">;
|
|
|
216
235
|
type AiChatAsyncResult = AsyncResult<AiChat, "chat">;
|
|
217
236
|
type AiChatMessagesAsyncSuccess = AsyncSuccess<readonly UiChatMessage[], "messages">;
|
|
218
237
|
type AiChatMessagesAsyncResult = AsyncResult<readonly UiChatMessage[], "messages">;
|
|
238
|
+
|
|
219
239
|
type RoomProviderProps<P extends JsonObject, S extends LsonObject> = Resolve<{
|
|
220
240
|
/**
|
|
221
241
|
* The id of the room you want to connect to
|
|
@@ -1236,6 +1256,29 @@ type LiveblocksContextBundle<U extends BaseUserMeta, M extends BaseMetadata> = R
|
|
|
1236
1256
|
* const { chat, error, isLoading } = useAiChat("my-chat");
|
|
1237
1257
|
*/
|
|
1238
1258
|
useAiChat(chatId: string): AiChatAsyncResult;
|
|
1259
|
+
/**
|
|
1260
|
+
* Returns the status of an AI chat, indicating whether it's idle or actively
|
|
1261
|
+
* generating content. This is a convenience hook that derives its state from
|
|
1262
|
+
* the latest assistant message in the chat.
|
|
1263
|
+
*
|
|
1264
|
+
* Re-renders whenever any of the relevant fields change.
|
|
1265
|
+
*
|
|
1266
|
+
* @param chatId - The ID of the chat to monitor
|
|
1267
|
+
* @returns The current status of the AI chat
|
|
1268
|
+
*
|
|
1269
|
+
* @example
|
|
1270
|
+
* ```tsx
|
|
1271
|
+
* import { useAiChatStatus } from "@liveblocks/react";
|
|
1272
|
+
*
|
|
1273
|
+
* function ChatStatus() {
|
|
1274
|
+
* const { status, partType, toolName } = useAiChatStatus("my-chat");
|
|
1275
|
+
* console.log(status); // "loading" | "idle" | "generating"
|
|
1276
|
+
* console.log(status.partType); // "text" | "tool-invocation" | ...
|
|
1277
|
+
* console.log(status.toolName); // string | undefined
|
|
1278
|
+
* }
|
|
1279
|
+
* ```
|
|
1280
|
+
*/
|
|
1281
|
+
useAiChatStatus(chatId: string, branchId?: MessageId): AiChatStatus;
|
|
1239
1282
|
suspense: Resolve<LiveblocksContextBundleCommon<M> & SharedContextBundle<U>["suspense"] & {
|
|
1240
1283
|
/**
|
|
1241
1284
|
* Returns the inbox notifications for the current user.
|
|
@@ -1289,6 +1332,29 @@ type LiveblocksContextBundle<U extends BaseUserMeta, M extends BaseMetadata> = R
|
|
|
1289
1332
|
* const { chat, error, isLoading } = useAiChat("my-chat");
|
|
1290
1333
|
*/
|
|
1291
1334
|
useAiChat(chatId: string): AiChatAsyncSuccess;
|
|
1335
|
+
/**
|
|
1336
|
+
* Returns the status of an AI chat, indicating whether it's idle or actively
|
|
1337
|
+
* generating content. This is a convenience hook that derives its state from
|
|
1338
|
+
* the latest assistant message in the chat.
|
|
1339
|
+
*
|
|
1340
|
+
* Re-renders whenever any of the relevant fields change.
|
|
1341
|
+
*
|
|
1342
|
+
* @param chatId - The ID of the chat to monitor
|
|
1343
|
+
* @returns The current status of the AI chat
|
|
1344
|
+
*
|
|
1345
|
+
* @example
|
|
1346
|
+
* ```tsx
|
|
1347
|
+
* import { useAiChatStatus } from "@liveblocks/react";
|
|
1348
|
+
*
|
|
1349
|
+
* function ChatStatus() {
|
|
1350
|
+
* const { status, partType, toolName } = useAiChatStatus("my-chat");
|
|
1351
|
+
* console.log(status); // "loading" | "idle" | "generating"
|
|
1352
|
+
* console.log(status.partType); // "text" | "tool-invocation" | ...
|
|
1353
|
+
* console.log(status.toolName); // string | undefined
|
|
1354
|
+
* }
|
|
1355
|
+
* ```
|
|
1356
|
+
*/
|
|
1357
|
+
useAiChatStatus(chatId: string, branchId?: MessageId): AiChatStatus;
|
|
1292
1358
|
}>;
|
|
1293
1359
|
}>;
|
|
1294
1360
|
|
|
@@ -1721,6 +1787,31 @@ declare function useCreateAiChat(): {
|
|
|
1721
1787
|
* deleteAiChat("ai-chat-id");
|
|
1722
1788
|
*/
|
|
1723
1789
|
declare function useDeleteAiChat(): (chatId: string) => void;
|
|
1790
|
+
/**
|
|
1791
|
+
* Returns the status of an AI chat, indicating whether it's idle or actively
|
|
1792
|
+
* generating content. This is a convenience hook that derives its state from
|
|
1793
|
+
* the latest assistant message in the chat.
|
|
1794
|
+
*
|
|
1795
|
+
* Re-renders whenever any of the relevant fields change.
|
|
1796
|
+
*
|
|
1797
|
+
* @param chatId - The ID of the chat to monitor
|
|
1798
|
+
* @returns The current status of the AI chat
|
|
1799
|
+
*
|
|
1800
|
+
* @example
|
|
1801
|
+
* ```tsx
|
|
1802
|
+
* import { useAiChatStatus } from "@liveblocks/react";
|
|
1803
|
+
*
|
|
1804
|
+
* function ChatStatus() {
|
|
1805
|
+
* const { status, partType, toolName } = useAiChatStatus("my-chat");
|
|
1806
|
+
* console.log(status); // "loading" | "idle" | "generating"
|
|
1807
|
+
* console.log(status.partType); // "text" | "tool-invocation" | ...
|
|
1808
|
+
* console.log(status.toolName); // string | undefined
|
|
1809
|
+
* }
|
|
1810
|
+
* ```
|
|
1811
|
+
*/
|
|
1812
|
+
declare function useAiChatStatus(chatId: string,
|
|
1813
|
+
/** @internal */
|
|
1814
|
+
branchId?: MessageId): AiChatStatus;
|
|
1724
1815
|
/**
|
|
1725
1816
|
* Returns a function to send a message in an AI chat.
|
|
1726
1817
|
*
|
|
@@ -2756,4 +2847,4 @@ declare const _useStorageRoot: TypedBundle["useStorageRoot"];
|
|
|
2756
2847
|
*/
|
|
2757
2848
|
declare const _useUpdateMyPresence: TypedBundle["useUpdateMyPresence"];
|
|
2758
2849
|
|
|
2759
|
-
export {
|
|
2850
|
+
export { _useEditThreadMetadata as $, type AiChatStatus as A, createLiveblocksContext as B, ClientContext as C, useDeleteAllInboxNotifications as D, useDeleteInboxNotification as E, useErrorListener as F, type GroupAsyncResult as G, useMarkAllInboxNotificationsAsRead as H, useMarkInboxNotificationAsRead as I, useSyncStatus as J, createRoomContext as K, LiveblocksProvider as L, type MutationContext as M, _RoomProvider as N, _useAddReaction as O, _useBroadcastEvent as P, useCanRedo as Q, type RegisterAiKnowledgeProps as R, type SendAiMessageOptions as S, useCanUndo as T, type UseSendAiMessageOptions as U, useCreateComment as V, _useCreateThread as W, useDeleteComment as X, _useDeleteThread as Y, useEditComment as Z, _useInboxNotificationThread as _, useAddRoomCommentReaction as a, _useUserThreadsSuspense_experimental as a$, useMarkThreadAsResolved as a0, useMarkThreadAsUnresolved as a1, useSubscribeToThread as a2, useUnsubscribeFromThread as a3, _useEventListener as a4, useHistory as a5, _useIsInsideRoom as a6, useLostConnectionListener as a7, useMarkThreadAsRead as a8, _useMutation as a9, useDeleteAiChat as aA, useSendAiMessage as aB, _useUserThreads_experimental as aC, useRoomInfo as aD, useGroupInfo as aE, useUnreadInboxNotificationsCount as aF, _useUser as aG, _useAiChat as aH, _useAiChats as aI, _useAiChatMessages as aJ, useAiChatStatus as aK, _useOtherSuspense as aL, _useOthersSuspense as aM, useOthersConnectionIdsSuspense as aN, _useOthersMappedSuspense as aO, _useSelfSuspense as aP, _useStorageSuspense as aQ, _useThreadsSuspense as aR, useAttachmentUrlSuspense as aS, _useHistoryVersionsSuspense as aT, _useRoomSubscriptionSettingsSuspense as aU, useInboxNotificationsSuspense as aV, useNotificationSettingsSuspense as aW, useRoomInfoSuspense as aX, useGroupInfoSuspense as aY, useUnreadInboxNotificationsCountSuspense as aZ, _useUserSuspense as a_, _useMyPresence as aa, _useOthersListener as ab, useRedo as ac, useRemoveReaction as ad, _useRoom as ae, useStatus as af, _useStorageRoot as ag, useThreadSubscription as ah, useUndo as ai, _useUpdateMyPresence as aj, useUpdateRoomSubscriptionSettings as ak, useHistoryVersionData as al, _useOther as am, _useOthers as an, useOthersConnectionIds as ao, _useOthersMapped as ap, _useSelf as aq, _useStorage as ar, _useThreads as as, useAttachmentUrl as at, _useHistoryVersions as au, _useRoomSubscriptionSettings as av, useInboxNotifications as aw, useNotificationSettings as ax, useUpdateNotificationSettings as ay, useCreateAiChat as az, useCreateRoomComment as b, _useAiChatsSuspense as b0, _useAiChatMessagesSuspense as b1, _useAiChatSuspense as b2, useCreateRoomThread as c, useCreateTextMention as d, useDeleteRoomComment as e, useDeleteRoomThread as f, getUmbrellaStoreForClient as g, useDeleteTextMention as h, useEditRoomComment as i, useEditRoomThreadMetadata as j, useMarkRoomThreadAsRead as k, useMarkRoomThreadAsResolved as l, useMarkRoomThreadAsUnresolved as m, useMentionSuggestionsCache as n, useRemoveRoomCommentReaction as o, useReportTextEditor as p, useResolveMentionSuggestions as q, useRoomAttachmentUrl as r, useRoomPermissions as s, useRoomThreadSubscription as t, useClientOrNull as u, useYjsProvider as v, type RegisterAiToolProps as w, type UseThreadsOptions as x, RoomContext as y, useClient as z };
|
|
@@ -2,7 +2,7 @@ import * as react from 'react';
|
|
|
2
2
|
import { ComponentType, Context, PropsWithChildren, ReactNode } from 'react';
|
|
3
3
|
import { BaseUserMeta, Client, JsonObject, LsonObject, LiveObject, User, Json, RoomSubscriptionSettings, Room, Status, BroadcastOptions, OthersEvent, LostConnectionEvent, History, BaseMetadata as BaseMetadata$1, ClientOptions, ThreadData as ThreadData$1, CommentData as CommentData$1 } from '@liveblocks/client';
|
|
4
4
|
import * as _liveblocks_core from '@liveblocks/core';
|
|
5
|
-
import { OpaqueClient, OpaqueRoom, AiKnowledgeSource, AiOpaqueToolDefinition, BaseMetadata, QueryMetadata, AsyncResult, DRI, AsyncSuccess, DGI, GroupData, Resolve, CommentBody, CommentAttachment, PartialUnless, Patchable, InboxNotificationData, NotificationSettings,
|
|
5
|
+
import { OpaqueClient, OpaqueRoom, AiKnowledgeSource, AiOpaqueToolDefinition, Relax, AiAssistantContentPart, BaseMetadata, QueryMetadata, AsyncResult, DRI, AsyncSuccess, DGI, GroupData, Resolve, CommentBody, CommentAttachment, PartialUnless, Patchable, InboxNotificationData, NotificationSettings, ToImmutable, MessageId, PartialNotificationSettings, AiChatsQuery, AsyncLoading, AsyncError, ThreadData, HistoryVersion, AiChat, Client as Client$1, LiveblocksError, SyncStatus, RoomEventMessage, CommentData, AiUserMessage, WithRequired, AiChatMessage, WithNavigation, MutableSignal, ThreadDataWithDeleteInfo, ThreadDeleteInfo, DerivedSignal, DefaultMap, SubscriptionData, SubscriptionKey, CommentUserReaction, InboxNotificationDeleteInfo, SubscriptionDeleteInfo, RoomSubscriptionSettings as RoomSubscriptionSettings$1, ISignal, Permission, BaseUserMeta as BaseUserMeta$1, DistributiveOmit, DU, DM, TextEditorType, IYjsProvider, MentionData, DP, DS, DE } from '@liveblocks/core';
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -53,6 +53,25 @@ type RegisterAiToolProps = {
|
|
|
53
53
|
*/
|
|
54
54
|
enabled?: boolean;
|
|
55
55
|
};
|
|
56
|
+
/**
|
|
57
|
+
* Simplified status for the requested chat.
|
|
58
|
+
* This hook offers a convenient way to update the UI while an AI chat
|
|
59
|
+
* generation is in progress.
|
|
60
|
+
*/
|
|
61
|
+
type AiChatStatus = Relax<{
|
|
62
|
+
status: "loading";
|
|
63
|
+
} | {
|
|
64
|
+
status: "idle";
|
|
65
|
+
} | {
|
|
66
|
+
status: "generating";
|
|
67
|
+
} | {
|
|
68
|
+
status: "generating";
|
|
69
|
+
partType: Exclude<AiAssistantContentPart["type"], "tool-invocation">;
|
|
70
|
+
} | {
|
|
71
|
+
status: "generating";
|
|
72
|
+
partType: "tool-invocation";
|
|
73
|
+
toolName: string;
|
|
74
|
+
}>;
|
|
56
75
|
|
|
57
76
|
type UiChatMessage = WithNavigation<AiChatMessage>;
|
|
58
77
|
type UseSyncStatusOptions = {
|
|
@@ -216,6 +235,7 @@ type AiChatAsyncSuccess = AsyncSuccess<AiChat, "chat">;
|
|
|
216
235
|
type AiChatAsyncResult = AsyncResult<AiChat, "chat">;
|
|
217
236
|
type AiChatMessagesAsyncSuccess = AsyncSuccess<readonly UiChatMessage[], "messages">;
|
|
218
237
|
type AiChatMessagesAsyncResult = AsyncResult<readonly UiChatMessage[], "messages">;
|
|
238
|
+
|
|
219
239
|
type RoomProviderProps<P extends JsonObject, S extends LsonObject> = Resolve<{
|
|
220
240
|
/**
|
|
221
241
|
* The id of the room you want to connect to
|
|
@@ -1236,6 +1256,29 @@ type LiveblocksContextBundle<U extends BaseUserMeta, M extends BaseMetadata> = R
|
|
|
1236
1256
|
* const { chat, error, isLoading } = useAiChat("my-chat");
|
|
1237
1257
|
*/
|
|
1238
1258
|
useAiChat(chatId: string): AiChatAsyncResult;
|
|
1259
|
+
/**
|
|
1260
|
+
* Returns the status of an AI chat, indicating whether it's idle or actively
|
|
1261
|
+
* generating content. This is a convenience hook that derives its state from
|
|
1262
|
+
* the latest assistant message in the chat.
|
|
1263
|
+
*
|
|
1264
|
+
* Re-renders whenever any of the relevant fields change.
|
|
1265
|
+
*
|
|
1266
|
+
* @param chatId - The ID of the chat to monitor
|
|
1267
|
+
* @returns The current status of the AI chat
|
|
1268
|
+
*
|
|
1269
|
+
* @example
|
|
1270
|
+
* ```tsx
|
|
1271
|
+
* import { useAiChatStatus } from "@liveblocks/react";
|
|
1272
|
+
*
|
|
1273
|
+
* function ChatStatus() {
|
|
1274
|
+
* const { status, partType, toolName } = useAiChatStatus("my-chat");
|
|
1275
|
+
* console.log(status); // "loading" | "idle" | "generating"
|
|
1276
|
+
* console.log(status.partType); // "text" | "tool-invocation" | ...
|
|
1277
|
+
* console.log(status.toolName); // string | undefined
|
|
1278
|
+
* }
|
|
1279
|
+
* ```
|
|
1280
|
+
*/
|
|
1281
|
+
useAiChatStatus(chatId: string, branchId?: MessageId): AiChatStatus;
|
|
1239
1282
|
suspense: Resolve<LiveblocksContextBundleCommon<M> & SharedContextBundle<U>["suspense"] & {
|
|
1240
1283
|
/**
|
|
1241
1284
|
* Returns the inbox notifications for the current user.
|
|
@@ -1289,6 +1332,29 @@ type LiveblocksContextBundle<U extends BaseUserMeta, M extends BaseMetadata> = R
|
|
|
1289
1332
|
* const { chat, error, isLoading } = useAiChat("my-chat");
|
|
1290
1333
|
*/
|
|
1291
1334
|
useAiChat(chatId: string): AiChatAsyncSuccess;
|
|
1335
|
+
/**
|
|
1336
|
+
* Returns the status of an AI chat, indicating whether it's idle or actively
|
|
1337
|
+
* generating content. This is a convenience hook that derives its state from
|
|
1338
|
+
* the latest assistant message in the chat.
|
|
1339
|
+
*
|
|
1340
|
+
* Re-renders whenever any of the relevant fields change.
|
|
1341
|
+
*
|
|
1342
|
+
* @param chatId - The ID of the chat to monitor
|
|
1343
|
+
* @returns The current status of the AI chat
|
|
1344
|
+
*
|
|
1345
|
+
* @example
|
|
1346
|
+
* ```tsx
|
|
1347
|
+
* import { useAiChatStatus } from "@liveblocks/react";
|
|
1348
|
+
*
|
|
1349
|
+
* function ChatStatus() {
|
|
1350
|
+
* const { status, partType, toolName } = useAiChatStatus("my-chat");
|
|
1351
|
+
* console.log(status); // "loading" | "idle" | "generating"
|
|
1352
|
+
* console.log(status.partType); // "text" | "tool-invocation" | ...
|
|
1353
|
+
* console.log(status.toolName); // string | undefined
|
|
1354
|
+
* }
|
|
1355
|
+
* ```
|
|
1356
|
+
*/
|
|
1357
|
+
useAiChatStatus(chatId: string, branchId?: MessageId): AiChatStatus;
|
|
1292
1358
|
}>;
|
|
1293
1359
|
}>;
|
|
1294
1360
|
|
|
@@ -1721,6 +1787,31 @@ declare function useCreateAiChat(): {
|
|
|
1721
1787
|
* deleteAiChat("ai-chat-id");
|
|
1722
1788
|
*/
|
|
1723
1789
|
declare function useDeleteAiChat(): (chatId: string) => void;
|
|
1790
|
+
/**
|
|
1791
|
+
* Returns the status of an AI chat, indicating whether it's idle or actively
|
|
1792
|
+
* generating content. This is a convenience hook that derives its state from
|
|
1793
|
+
* the latest assistant message in the chat.
|
|
1794
|
+
*
|
|
1795
|
+
* Re-renders whenever any of the relevant fields change.
|
|
1796
|
+
*
|
|
1797
|
+
* @param chatId - The ID of the chat to monitor
|
|
1798
|
+
* @returns The current status of the AI chat
|
|
1799
|
+
*
|
|
1800
|
+
* @example
|
|
1801
|
+
* ```tsx
|
|
1802
|
+
* import { useAiChatStatus } from "@liveblocks/react";
|
|
1803
|
+
*
|
|
1804
|
+
* function ChatStatus() {
|
|
1805
|
+
* const { status, partType, toolName } = useAiChatStatus("my-chat");
|
|
1806
|
+
* console.log(status); // "loading" | "idle" | "generating"
|
|
1807
|
+
* console.log(status.partType); // "text" | "tool-invocation" | ...
|
|
1808
|
+
* console.log(status.toolName); // string | undefined
|
|
1809
|
+
* }
|
|
1810
|
+
* ```
|
|
1811
|
+
*/
|
|
1812
|
+
declare function useAiChatStatus(chatId: string,
|
|
1813
|
+
/** @internal */
|
|
1814
|
+
branchId?: MessageId): AiChatStatus;
|
|
1724
1815
|
/**
|
|
1725
1816
|
* Returns a function to send a message in an AI chat.
|
|
1726
1817
|
*
|
|
@@ -2756,4 +2847,4 @@ declare const _useStorageRoot: TypedBundle["useStorageRoot"];
|
|
|
2756
2847
|
*/
|
|
2757
2848
|
declare const _useUpdateMyPresence: TypedBundle["useUpdateMyPresence"];
|
|
2758
2849
|
|
|
2759
|
-
export {
|
|
2850
|
+
export { _useEditThreadMetadata as $, type AiChatStatus as A, createLiveblocksContext as B, ClientContext as C, useDeleteAllInboxNotifications as D, useDeleteInboxNotification as E, useErrorListener as F, type GroupAsyncResult as G, useMarkAllInboxNotificationsAsRead as H, useMarkInboxNotificationAsRead as I, useSyncStatus as J, createRoomContext as K, LiveblocksProvider as L, type MutationContext as M, _RoomProvider as N, _useAddReaction as O, _useBroadcastEvent as P, useCanRedo as Q, type RegisterAiKnowledgeProps as R, type SendAiMessageOptions as S, useCanUndo as T, type UseSendAiMessageOptions as U, useCreateComment as V, _useCreateThread as W, useDeleteComment as X, _useDeleteThread as Y, useEditComment as Z, _useInboxNotificationThread as _, useAddRoomCommentReaction as a, _useUserThreadsSuspense_experimental as a$, useMarkThreadAsResolved as a0, useMarkThreadAsUnresolved as a1, useSubscribeToThread as a2, useUnsubscribeFromThread as a3, _useEventListener as a4, useHistory as a5, _useIsInsideRoom as a6, useLostConnectionListener as a7, useMarkThreadAsRead as a8, _useMutation as a9, useDeleteAiChat as aA, useSendAiMessage as aB, _useUserThreads_experimental as aC, useRoomInfo as aD, useGroupInfo as aE, useUnreadInboxNotificationsCount as aF, _useUser as aG, _useAiChat as aH, _useAiChats as aI, _useAiChatMessages as aJ, useAiChatStatus as aK, _useOtherSuspense as aL, _useOthersSuspense as aM, useOthersConnectionIdsSuspense as aN, _useOthersMappedSuspense as aO, _useSelfSuspense as aP, _useStorageSuspense as aQ, _useThreadsSuspense as aR, useAttachmentUrlSuspense as aS, _useHistoryVersionsSuspense as aT, _useRoomSubscriptionSettingsSuspense as aU, useInboxNotificationsSuspense as aV, useNotificationSettingsSuspense as aW, useRoomInfoSuspense as aX, useGroupInfoSuspense as aY, useUnreadInboxNotificationsCountSuspense as aZ, _useUserSuspense as a_, _useMyPresence as aa, _useOthersListener as ab, useRedo as ac, useRemoveReaction as ad, _useRoom as ae, useStatus as af, _useStorageRoot as ag, useThreadSubscription as ah, useUndo as ai, _useUpdateMyPresence as aj, useUpdateRoomSubscriptionSettings as ak, useHistoryVersionData as al, _useOther as am, _useOthers as an, useOthersConnectionIds as ao, _useOthersMapped as ap, _useSelf as aq, _useStorage as ar, _useThreads as as, useAttachmentUrl as at, _useHistoryVersions as au, _useRoomSubscriptionSettings as av, useInboxNotifications as aw, useNotificationSettings as ax, useUpdateNotificationSettings as ay, useCreateAiChat as az, useCreateRoomComment as b, _useAiChatsSuspense as b0, _useAiChatMessagesSuspense as b1, _useAiChatSuspense as b2, useCreateRoomThread as c, useCreateTextMention as d, useDeleteRoomComment as e, useDeleteRoomThread as f, getUmbrellaStoreForClient as g, useDeleteTextMention as h, useEditRoomComment as i, useEditRoomThreadMetadata as j, useMarkRoomThreadAsRead as k, useMarkRoomThreadAsResolved as l, useMarkRoomThreadAsUnresolved as m, useMentionSuggestionsCache as n, useRemoveRoomCommentReaction as o, useReportTextEditor as p, useResolveMentionSuggestions as q, useRoomAttachmentUrl as r, useRoomPermissions as s, useRoomThreadSubscription as t, useClientOrNull as u, useYjsProvider as v, type RegisterAiToolProps as w, type UseThreadsOptions as x, RoomContext as y, useClient as z };
|
package/dist/suspense.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkZ7VZZU63cjs = require('./chunk-Z7VZZU63.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -74,12 +74,14 @@ var _chunkMEL5UMNWcjs = require('./chunk-MEL5UMNW.cjs');
|
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
|
|
77
|
-
|
|
77
|
+
|
|
78
|
+
var _chunk45BFK66Kcjs = require('./chunk-45BFK66K.cjs');
|
|
78
79
|
|
|
79
80
|
// src/suspense.ts
|
|
80
81
|
var _core = require('@liveblocks/core');
|
|
81
82
|
var _client = require('@liveblocks/client');
|
|
82
|
-
_core.detectDupes.call(void 0,
|
|
83
|
+
_core.detectDupes.call(void 0, _chunkZ7VZZU63cjs.PKG_NAME, _chunkZ7VZZU63cjs.PKG_VERSION, _chunkZ7VZZU63cjs.PKG_FORMAT);
|
|
84
|
+
|
|
83
85
|
|
|
84
86
|
|
|
85
87
|
|
|
@@ -153,5 +155,5 @@ _core.detectDupes.call(void 0, _chunkMEL5UMNWcjs.PKG_NAME, _chunkMEL5UMNWcjs.PKG
|
|
|
153
155
|
|
|
154
156
|
|
|
155
157
|
|
|
156
|
-
exports.ClientContext =
|
|
158
|
+
exports.ClientContext = _chunk45BFK66Kcjs.ClientContext; exports.ClientSideSuspense = _chunkZ7VZZU63cjs.ClientSideSuspense; exports.LiveblocksProvider = _chunk45BFK66Kcjs.LiveblocksProvider; exports.RegisterAiKnowledge = _chunk45BFK66Kcjs.RegisterAiKnowledge; exports.RegisterAiTool = _chunk45BFK66Kcjs.RegisterAiTool; exports.RoomContext = _chunk45BFK66Kcjs.RoomContext; exports.RoomProvider = _chunk45BFK66Kcjs._RoomProvider; exports.isNotificationChannelEnabled = _client.isNotificationChannelEnabled; exports.shallow = _client.shallow; exports.useAddReaction = _chunk45BFK66Kcjs._useAddReaction; exports.useAiChat = _chunk45BFK66Kcjs._useAiChatSuspense; exports.useAiChatMessages = _chunk45BFK66Kcjs._useAiChatMessagesSuspense; exports.useAiChatStatus = _chunk45BFK66Kcjs.useAiChatStatus; exports.useAiChats = _chunk45BFK66Kcjs._useAiChatsSuspense; exports.useAttachmentUrl = _chunk45BFK66Kcjs.useAttachmentUrlSuspense; exports.useBroadcastEvent = _chunk45BFK66Kcjs._useBroadcastEvent; exports.useCanRedo = _chunk45BFK66Kcjs.useCanRedo; exports.useCanUndo = _chunk45BFK66Kcjs.useCanUndo; exports.useClient = _chunk45BFK66Kcjs.useClient; exports.useCreateAiChat = _chunk45BFK66Kcjs.useCreateAiChat; exports.useCreateComment = _chunk45BFK66Kcjs.useCreateComment; exports.useCreateThread = _chunk45BFK66Kcjs._useCreateThread; exports.useDeleteAiChat = _chunk45BFK66Kcjs.useDeleteAiChat; exports.useDeleteAllInboxNotifications = _chunk45BFK66Kcjs.useDeleteAllInboxNotifications; exports.useDeleteComment = _chunk45BFK66Kcjs.useDeleteComment; exports.useDeleteInboxNotification = _chunk45BFK66Kcjs.useDeleteInboxNotification; exports.useDeleteThread = _chunk45BFK66Kcjs._useDeleteThread; exports.useEditComment = _chunk45BFK66Kcjs.useEditComment; exports.useEditThreadMetadata = _chunk45BFK66Kcjs._useEditThreadMetadata; exports.useErrorListener = _chunk45BFK66Kcjs.useErrorListener; exports.useEventListener = _chunk45BFK66Kcjs._useEventListener; exports.useGroupInfo = _chunk45BFK66Kcjs.useGroupInfoSuspense; exports.useHistory = _chunk45BFK66Kcjs.useHistory; exports.useHistoryVersions = _chunk45BFK66Kcjs._useHistoryVersionsSuspense; exports.useInboxNotificationThread = _chunk45BFK66Kcjs._useInboxNotificationThread; exports.useInboxNotifications = _chunk45BFK66Kcjs.useInboxNotificationsSuspense; exports.useIsInsideRoom = _chunk45BFK66Kcjs._useIsInsideRoom; exports.useLostConnectionListener = _chunk45BFK66Kcjs.useLostConnectionListener; exports.useMarkAllInboxNotificationsAsRead = _chunk45BFK66Kcjs.useMarkAllInboxNotificationsAsRead; exports.useMarkInboxNotificationAsRead = _chunk45BFK66Kcjs.useMarkInboxNotificationAsRead; exports.useMarkThreadAsRead = _chunk45BFK66Kcjs.useMarkThreadAsRead; exports.useMarkThreadAsResolved = _chunk45BFK66Kcjs.useMarkThreadAsResolved; exports.useMarkThreadAsUnresolved = _chunk45BFK66Kcjs.useMarkThreadAsUnresolved; exports.useMutation = _chunk45BFK66Kcjs._useMutation; exports.useMyPresence = _chunk45BFK66Kcjs._useMyPresence; exports.useNotificationSettings = _chunk45BFK66Kcjs.useNotificationSettingsSuspense; exports.useOther = _chunk45BFK66Kcjs._useOtherSuspense; exports.useOthers = _chunk45BFK66Kcjs._useOthersSuspense; exports.useOthersConnectionIds = _chunk45BFK66Kcjs.useOthersConnectionIdsSuspense; exports.useOthersListener = _chunk45BFK66Kcjs._useOthersListener; exports.useOthersMapped = _chunk45BFK66Kcjs._useOthersMappedSuspense; exports.useRedo = _chunk45BFK66Kcjs.useRedo; exports.useRemoveReaction = _chunk45BFK66Kcjs.useRemoveReaction; exports.useRoom = _chunk45BFK66Kcjs._useRoom; exports.useRoomInfo = _chunk45BFK66Kcjs.useRoomInfoSuspense; exports.useRoomSubscriptionSettings = _chunk45BFK66Kcjs._useRoomSubscriptionSettingsSuspense; exports.useSelf = _chunk45BFK66Kcjs._useSelfSuspense; exports.useSendAiMessage = _chunk45BFK66Kcjs.useSendAiMessage; exports.useStatus = _chunk45BFK66Kcjs.useStatus; exports.useStorage = _chunk45BFK66Kcjs._useStorageSuspense; exports.useStorageRoot = _chunk45BFK66Kcjs._useStorageRoot; exports.useSubscribeToThread = _chunk45BFK66Kcjs.useSubscribeToThread; exports.useSyncStatus = _chunk45BFK66Kcjs.useSyncStatus; exports.useThreadSubscription = _chunk45BFK66Kcjs.useThreadSubscription; exports.useThreads = _chunk45BFK66Kcjs._useThreadsSuspense; exports.useUndo = _chunk45BFK66Kcjs.useUndo; exports.useUnreadInboxNotificationsCount = _chunk45BFK66Kcjs.useUnreadInboxNotificationsCountSuspense; exports.useUnsubscribeFromThread = _chunk45BFK66Kcjs.useUnsubscribeFromThread; exports.useUpdateMyPresence = _chunk45BFK66Kcjs._useUpdateMyPresence; exports.useUpdateNotificationSettings = _chunk45BFK66Kcjs.useUpdateNotificationSettings; exports.useUpdateRoomSubscriptionSettings = _chunk45BFK66Kcjs.useUpdateRoomSubscriptionSettings; exports.useUser = _chunk45BFK66Kcjs._useUserSuspense; exports.useUserThreads_experimental = _chunk45BFK66Kcjs._useUserThreadsSuspense_experimental;
|
|
157
159
|
//# sourceMappingURL=suspense.cjs.map
|
package/dist/suspense.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/suspense.cjs","../src/suspense.ts"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACA;
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/suspense.cjs","../src/suspense.ts"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACA;AC9EA,wCAA4B;AAe5B,4CAAsD;AAZtD,+BAAA,0BAAY,EAAU,6BAAA,EAAa,4BAAU,CAAA;AD+E7C;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,gxJAAC","file":"/home/runner/work/liveblocks/liveblocks/packages/liveblocks-react/dist/suspense.cjs","sourcesContent":[null,"/* eslint-disable simple-import-sort/exports */\nimport { detectDupes } from \"@liveblocks/core\";\n\nimport { PKG_FORMAT, PKG_NAME, PKG_VERSION } from \"./version\";\ndetectDupes(PKG_NAME, PKG_VERSION, PKG_FORMAT);\n\nexport { ClientSideSuspense } from \"./ClientSideSuspense\";\nexport type {\n MutationContext,\n UseSendAiMessageOptions,\n UseThreadsOptions,\n SendAiMessageOptions,\n} from \"./types\";\n\n// Re-exports from @liveblocks/client, for convenience\nexport type { Json, JsonObject } from \"@liveblocks/client\";\nexport { shallow, isNotificationChannelEnabled } from \"@liveblocks/client\";\n\n// Export all the top-level hooks\nexport { ClientContext, RoomContext, useClient } from \"./contexts\";\nexport { RegisterAiKnowledge, RegisterAiTool } from \"./ai\";\nexport type { AiChatStatus, RegisterAiKnowledgeProps, RegisterAiToolProps } from \"./types/ai\";\nexport {\n LiveblocksProvider,\n useInboxNotificationThread,\n useMarkAllInboxNotificationsAsRead,\n useMarkInboxNotificationAsRead,\n useDeleteAllInboxNotifications,\n useDeleteInboxNotification,\n useUpdateNotificationSettings,\n useCreateAiChat,\n useDeleteAiChat,\n useSendAiMessage,\n useSyncStatus,\n useErrorListener,\n} from \"./liveblocks\";\nexport {\n RoomProvider,\n useAddReaction,\n useBroadcastEvent,\n useCanRedo,\n useCanUndo,\n useCreateComment,\n useCreateThread,\n useDeleteComment,\n useDeleteThread,\n useEditComment,\n useEditThreadMetadata,\n useMarkThreadAsResolved,\n useMarkThreadAsUnresolved,\n useSubscribeToThread,\n useUnsubscribeFromThread,\n useEventListener,\n useHistory,\n useIsInsideRoom,\n useLostConnectionListener,\n useMarkThreadAsRead,\n useMutation,\n useMyPresence,\n useOthersListener,\n useRedo,\n useRemoveReaction,\n useRoom,\n useStatus,\n useStorageRoot,\n useThreadSubscription,\n useUndo,\n useUpdateMyPresence,\n useUpdateRoomSubscriptionSettings,\n} from \"./room\";\n\n// Export the Suspense versions of our hooks\n// (This part differs from src/index.ts)\nexport {\n useOtherSuspense as useOther,\n useOthersSuspense as useOthers,\n useOthersConnectionIdsSuspense as useOthersConnectionIds,\n useOthersMappedSuspense as useOthersMapped,\n useSelfSuspense as useSelf,\n useStorageSuspense as useStorage,\n useThreadsSuspense as useThreads,\n useAttachmentUrlSuspense as useAttachmentUrl,\n useHistoryVersionsSuspense as useHistoryVersions,\n useRoomSubscriptionSettingsSuspense as useRoomSubscriptionSettings,\n} from \"./room\";\nexport {\n useInboxNotificationsSuspense as useInboxNotifications,\n useNotificationSettingsSuspense as useNotificationSettings,\n useRoomInfoSuspense as useRoomInfo,\n useGroupInfoSuspense as useGroupInfo,\n useUnreadInboxNotificationsCountSuspense as useUnreadInboxNotificationsCount,\n useUserSuspense as useUser,\n useUserThreadsSuspense_experimental as useUserThreads_experimental,\n useAiChatsSuspense as useAiChats,\n useAiChatMessagesSuspense as useAiChatMessages,\n useAiChatSuspense as useAiChat,\n useAiChatStatus,\n} from \"./liveblocks\";\n"]}
|
package/dist/suspense.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { ClientSideSuspense, RegisterAiKnowledge, RegisterAiTool } from './index.cjs';
|
|
2
|
-
export { C as ClientContext, L as LiveblocksProvider, M as MutationContext, R as RegisterAiKnowledgeProps, w as RegisterAiToolProps, y as RoomContext,
|
|
2
|
+
export { A as AiChatStatus, C as ClientContext, L as LiveblocksProvider, M as MutationContext, R as RegisterAiKnowledgeProps, w as RegisterAiToolProps, y as RoomContext, N as RoomProvider, S as SendAiMessageOptions, U as UseSendAiMessageOptions, x as UseThreadsOptions, O as useAddReaction, b2 as useAiChat, b1 as useAiChatMessages, aK as useAiChatStatus, b0 as useAiChats, aS as useAttachmentUrl, P as useBroadcastEvent, Q as useCanRedo, T as useCanUndo, z as useClient, az as useCreateAiChat, V as useCreateComment, W as useCreateThread, aA as useDeleteAiChat, D as useDeleteAllInboxNotifications, X as useDeleteComment, E as useDeleteInboxNotification, Y as useDeleteThread, Z as useEditComment, $ as useEditThreadMetadata, F as useErrorListener, a4 as useEventListener, aY as useGroupInfo, a5 as useHistory, aT as useHistoryVersions, _ as useInboxNotificationThread, aV as useInboxNotifications, a6 as useIsInsideRoom, a7 as useLostConnectionListener, H as useMarkAllInboxNotificationsAsRead, I as useMarkInboxNotificationAsRead, a8 as useMarkThreadAsRead, a0 as useMarkThreadAsResolved, a1 as useMarkThreadAsUnresolved, a9 as useMutation, aa as useMyPresence, aW as useNotificationSettings, aL as useOther, aM as useOthers, aN as useOthersConnectionIds, ab as useOthersListener, aO as useOthersMapped, ac as useRedo, ad as useRemoveReaction, ae as useRoom, aX as useRoomInfo, aU as useRoomSubscriptionSettings, aP as useSelf, aB as useSendAiMessage, af as useStatus, aQ as useStorage, ag as useStorageRoot, a2 as useSubscribeToThread, J as useSyncStatus, ah as useThreadSubscription, aR as useThreads, ai as useUndo, aZ as useUnreadInboxNotificationsCount, a3 as useUnsubscribeFromThread, aj as useUpdateMyPresence, ay as useUpdateNotificationSettings, ak as useUpdateRoomSubscriptionSettings, a_ as useUser, a$ as useUserThreads_experimental } from './room-KGcJBLp4.cjs';
|
|
3
3
|
export { Json, JsonObject, isNotificationChannelEnabled, shallow } from '@liveblocks/client';
|
|
4
4
|
import 'react/jsx-runtime';
|
|
5
5
|
import 'react';
|