@teodorruskvi/chat-core 0.1.2
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/features/conversation/contexts/ChatUIContext.d.ts +41 -0
- package/dist/features/conversation/contexts/ThreadStateProvider.d.ts +24 -0
- package/dist/features/conversation/contexts/ThreadsProvider.d.ts +10 -0
- package/dist/features/conversation/contexts/index.d.ts +3 -0
- package/dist/features/conversation/contexts/reducers/MessageReducer.d.ts +22 -0
- package/dist/features/conversation/contexts/reducers/utils/reducerUtils.d.ts +21 -0
- package/dist/features/conversation/hooks/index.d.ts +7 -0
- package/dist/features/conversation/hooks/useChatController.d.ts +50 -0
- package/dist/features/conversation/hooks/useChatSession.d.ts +49 -0
- package/dist/features/conversation/hooks/useFilePreview.d.ts +15 -0
- package/dist/features/conversation/hooks/useParsedMessageContent.d.ts +12 -0
- package/dist/features/conversation/hooks/useThreadHistoryState.d.ts +44 -0
- package/dist/features/conversation/hooks/useThreadsState.d.ts +40 -0
- package/dist/features/conversation/messages/components/MessageBubble.d.ts +25 -0
- package/dist/features/conversation/messages/hooks/index.d.ts +2 -0
- package/dist/features/conversation/messages/hooks/useMessageContent.d.ts +13 -0
- package/dist/features/conversation/messages/hooks/useStreamingMarkdownBuffer.d.ts +3 -0
- package/dist/features/conversation/messages/hooks/useToolPayload.d.ts +15 -0
- package/dist/features/conversation/messages/renderers/tooling/ToolContent.d.ts +27 -0
- package/dist/features/conversation/messages/renderers/tooling/artifacts/ArtifactProgress.d.ts +13 -0
- package/dist/features/conversation/messages/utils/artifactUtils.d.ts +51 -0
- package/dist/features/conversation/messages/utils/index.d.ts +6 -0
- package/dist/features/conversation/messages/utils/messageUtils.d.ts +32 -0
- package/dist/features/persistence/checkpoints/hooks/index.d.ts +1 -0
- package/dist/features/persistence/checkpoints/hooks/useCheckpointIndex.d.ts +2 -0
- package/dist/features/persistence/checkpoints/types/index.d.ts +33 -0
- package/dist/features/persistence/checkpoints/utils/checkpointIndex.d.ts +18 -0
- package/dist/features/persistence/checkpoints/utils/editUtils.d.ts +11 -0
- package/dist/features/persistence/checkpoints/utils/historyUtils.d.ts +8 -0
- package/dist/features/persistence/checkpoints/utils/messagePreviews.d.ts +8 -0
- package/dist/features/persistence/checkpoints/utils/schemaUtils.d.ts +6 -0
- package/dist/features/streaming/contexts/StreamingProvider.d.ts +19 -0
- package/dist/features/streaming/contexts/index.d.ts +1 -0
- package/dist/features/streaming/contexts/types.d.ts +76 -0
- package/dist/features/streaming/hooks/types.d.ts +50 -0
- package/dist/features/streaming/hooks/use-stream.d.ts +2 -0
- package/dist/features/streaming/index.d.ts +5 -0
- package/dist/features/streaming/utils/index.d.ts +1 -0
- package/dist/features/streaming/utils/toolHandlers.d.ts +14 -0
- package/dist/features/thread/contexts/index.d.ts +1 -0
- package/dist/features/thread/contexts/reducers/MessageReducer.d.ts +1 -0
- package/dist/features/thread/hooks/useThreadHistoryState.d.ts +1 -0
- package/dist/features/thread/hooks/useThreadsState.d.ts +1 -0
- package/dist/index.esm.js +5344 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.umd.js +9 -0
- package/dist/index.umd.js.map +1 -0
- package/dist/lib/core.d.ts +26 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/shared/core/api/clients/authClient.d.ts +13 -0
- package/dist/shared/core/api/clients/chatClient.d.ts +50 -0
- package/dist/shared/core/api/clients/fileClient.d.ts +12 -0
- package/dist/shared/core/api/clients/index.d.ts +2 -0
- package/dist/shared/core/api/index.d.ts +2 -0
- package/dist/shared/core/api/utils/http.d.ts +20 -0
- package/dist/shared/core/api/utils/index.d.ts +1 -0
- package/dist/shared/core/constants/env.d.ts +39 -0
- package/dist/shared/core/constants/index.d.ts +2 -0
- package/dist/shared/core/constants/storage.d.ts +14 -0
- package/dist/shared/core/contexts/index.d.ts +4 -0
- package/dist/shared/core/contexts/providers/ApiProvider.d.ts +11 -0
- package/dist/shared/core/contexts/providers/ChatProviders.d.ts +25 -0
- package/dist/shared/core/contexts/providers/index.d.ts +2 -0
- package/dist/shared/core/hooks/index.d.ts +2 -0
- package/dist/shared/core/hooks/useApi.d.ts +1 -0
- package/dist/shared/core/hooks/useShallowStableValue.d.ts +1 -0
- package/dist/shared/core/index.d.ts +6 -0
- package/dist/shared/core/types/index.d.ts +1 -0
- package/dist/shared/core/utils/caseUtils.d.ts +1 -0
- package/dist/shared/core/utils/chatUtils.d.ts +10 -0
- package/dist/shared/core/utils/guards.d.ts +8 -0
- package/dist/shared/core/utils/index.d.ts +8 -0
- package/dist/shared/core/utils/messageFactory.d.ts +14 -0
- package/dist/shared/core/utils/metaUtils.d.ts +22 -0
- package/dist/shared/core/utils/normalizationUtils.d.ts +20 -0
- package/dist/shared/core/utils/parsers.d.ts +22 -0
- package/dist/shared/core/utils/toolCallUtils.d.ts +14 -0
- package/dist/shared/core/utils/toolFormatting.d.ts +8 -0
- package/dist/shared/ui/components/toast.d.ts +15 -0
- package/dist/shared/ui/hooks/use-toast.d.ts +44 -0
- package/dist/shared/ui/utils/cn.d.ts +2 -0
- package/dist/shared/ui/utils/index.d.ts +1 -0
- package/dist/shared/utils/jsonUtils.d.ts +18 -0
- package/dist/types/api/auth.d.ts +15 -0
- package/dist/types/api/common.d.ts +9 -0
- package/dist/types/api/files.d.ts +7 -0
- package/dist/types/api/runs.d.ts +104 -0
- package/dist/types/api.d.ts +7 -0
- package/dist/types/core/context.d.ts +5 -0
- package/dist/types/core/models.d.ts +6 -0
- package/dist/types/core.d.ts +97 -0
- package/dist/types/domain/artifacts.d.ts +94 -0
- package/dist/types/domain/chat.d.ts +80 -0
- package/dist/types/domain/index.d.ts +10 -0
- package/dist/types/domain/messages.d.ts +54 -0
- package/dist/types/domain/persistence.d.ts +67 -0
- package/dist/types/domain/primitives.d.ts +39 -0
- package/dist/types/domain/streaming.d.ts +231 -0
- package/dist/types/domain/tools.d.ts +66 -0
- package/dist/types/index.d.ts +13 -0
- package/dist/types/shared/common.d.ts +19 -0
- package/package.json +42 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.