teodor-new-chat-ui 4.3.47 → 4.3.49
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/index.esm.js +4894 -5005
- package/dist/index.umd.js +39 -41
- package/dist/lib/message-utils.d.ts +0 -14
- package/package.json +1 -1
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Message utility functions for parsing, sanitizing, and rendering message content
|
|
3
3
|
*/
|
|
4
|
-
export type Issue = {
|
|
5
|
-
title: string;
|
|
6
|
-
description: string;
|
|
7
|
-
};
|
|
8
|
-
export type ParsedIssues = {
|
|
9
|
-
desirability: Issue[];
|
|
10
|
-
feasibility: Issue[];
|
|
11
|
-
viability: Issue[];
|
|
12
|
-
other: Issue[];
|
|
13
|
-
};
|
|
14
4
|
/**
|
|
15
5
|
* Try to parse a JSON object/array safely; returns null if invalid or too small to matter
|
|
16
6
|
*/
|
|
@@ -27,7 +17,3 @@ export declare function sanitizeForDisplay(x: any): any;
|
|
|
27
17
|
* Pretty print content for display
|
|
28
18
|
*/
|
|
29
19
|
export declare function pretty(x: any): string;
|
|
30
|
-
/**
|
|
31
|
-
* Parse get_issues tool output into structured format
|
|
32
|
-
*/
|
|
33
|
-
export declare function parseGetIssuesOutput(raw: any): ParsedIssues | null;
|
package/package.json
CHANGED