teodor-new-chat-ui 4.3.480 → 4.3.481
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/messaging/components/chat/ChatInterface.d.ts +4 -3
- package/dist/features/messaging/components/message/MessageComponent.d.ts +2 -1
- package/dist/features/messaging/components/message/MessageList.d.ts +2 -1
- package/dist/features/messaging/components/message/MessageRow.d.ts +2 -1
- package/dist/features/messaging/components/message/index.d.ts +2 -3
- package/dist/features/messaging/components/message/renderers/MessageContent.d.ts +3 -2
- package/dist/features/messaging/components/message/tool/ToolComponent.d.ts +18 -7
- package/dist/index.esm.js +6639 -6788
- package/dist/index.umd.js +48 -48
- package/package.json +1 -1
- package/dist/features/messaging/components/message/artifacts/ResearchTaskArtifact.d.ts +0 -18
- package/dist/features/messaging/components/message/tool/renderers/IssuesPayloadRenderer.d.ts +0 -6
- /package/dist/features/messaging/components/message/{artifacts → tool/renderers/ArtifactTypes}/PlotArtifact.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Custom artifact renderer for research_task_info type
|
|
3
|
-
* Displays research task status with links and metadata
|
|
4
|
-
*/
|
|
5
|
-
export interface ResearchTaskInfo {
|
|
6
|
-
type: "research_task_info";
|
|
7
|
-
task_id: string;
|
|
8
|
-
task_url?: string;
|
|
9
|
-
query?: string;
|
|
10
|
-
status?: string;
|
|
11
|
-
createdAt?: string;
|
|
12
|
-
results?: string;
|
|
13
|
-
[key: string]: unknown;
|
|
14
|
-
}
|
|
15
|
-
export interface ResearchTaskArtifactProps {
|
|
16
|
-
artifact: ResearchTaskInfo;
|
|
17
|
-
}
|
|
18
|
-
export declare function ResearchTaskArtifact({ artifact }: ResearchTaskArtifactProps): import("react/jsx-runtime").JSX.Element;
|
package/dist/features/messaging/components/message/tool/renderers/IssuesPayloadRenderer.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { ToolIssue } from "@/features/messaging/components/message/hooks/useToolPayload";
|
|
2
|
-
interface IssuesPayloadRendererProps {
|
|
3
|
-
issues: ToolIssue[];
|
|
4
|
-
}
|
|
5
|
-
export declare function IssuesPayloadRenderer({ issues }: IssuesPayloadRendererProps): import("react/jsx-runtime").JSX.Element | null;
|
|
6
|
-
export {};
|
|
File without changes
|