@mxmweb/rtext 1.1.42 → 1.1.51
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/adopters/ChatMessageAdapter.d.ts +1 -0
- package/assets/style.css +1 -1
- package/core/UnifiedRichText.d.ts +1 -0
- package/index.js +12171 -11995
- package/mockserverdata.d.ts +67 -2
- package/package.json +1 -1
- package/stats.html +1 -1
- package/TestTemplateDesigner.d.ts +0 -7
package/mockserverdata.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export declare const mockServerData: {
|
|
|
27
27
|
type: string;
|
|
28
28
|
reference: string;
|
|
29
29
|
webReference: string;
|
|
30
|
+
graphReference: string;
|
|
30
31
|
queryId: string;
|
|
31
32
|
feedbackResult: null;
|
|
32
33
|
feedbackId: null;
|
|
@@ -60,11 +61,42 @@ export declare const mockServerData: {
|
|
|
60
61
|
feedbackResult: null;
|
|
61
62
|
feedbackId: null;
|
|
62
63
|
parsedFilePaths: null;
|
|
63
|
-
recommendQuestion:
|
|
64
|
+
recommendQuestion: null;
|
|
64
65
|
llmType: number;
|
|
65
66
|
resultType: number;
|
|
66
67
|
respTime: number;
|
|
68
|
+
tokens: number;
|
|
69
|
+
graphReference?: undefined;
|
|
70
|
+
databaseReference?: undefined;
|
|
71
|
+
};
|
|
72
|
+
} | {
|
|
73
|
+
query: {
|
|
74
|
+
queryId: string;
|
|
75
|
+
content: string;
|
|
76
|
+
type: string;
|
|
77
|
+
audioUrl: string;
|
|
78
|
+
filePaths: null;
|
|
79
|
+
currentFiles: null;
|
|
80
|
+
gmtCreate: string;
|
|
81
|
+
id: number;
|
|
82
|
+
};
|
|
83
|
+
reply: {
|
|
84
|
+
queryId: string;
|
|
85
|
+
content: string;
|
|
86
|
+
type: string;
|
|
87
|
+
reference: string;
|
|
88
|
+
webReference: string;
|
|
67
89
|
databaseReference: string;
|
|
90
|
+
graphReference: string;
|
|
91
|
+
gmtCreate: string;
|
|
92
|
+
id: number;
|
|
93
|
+
feedbackResult: null;
|
|
94
|
+
feedbackId: null;
|
|
95
|
+
parsedFilePaths: null;
|
|
96
|
+
recommendQuestion: null;
|
|
97
|
+
llmType: number;
|
|
98
|
+
resultType: number;
|
|
99
|
+
respTime: number;
|
|
68
100
|
tokens: number;
|
|
69
101
|
};
|
|
70
102
|
} | {
|
|
@@ -89,13 +121,44 @@ export declare const mockServerData: {
|
|
|
89
121
|
feedbackResult: null;
|
|
90
122
|
feedbackId: null;
|
|
91
123
|
parsedFilePaths: null;
|
|
92
|
-
recommendQuestion:
|
|
124
|
+
recommendQuestion: string;
|
|
93
125
|
llmType: number;
|
|
94
126
|
resultType: number;
|
|
95
127
|
respTime: number;
|
|
96
128
|
tokens: number;
|
|
129
|
+
graphReference?: undefined;
|
|
97
130
|
databaseReference?: undefined;
|
|
98
131
|
};
|
|
132
|
+
} | {
|
|
133
|
+
query: {
|
|
134
|
+
id: number;
|
|
135
|
+
gmtCreate: string;
|
|
136
|
+
content: string;
|
|
137
|
+
type: string;
|
|
138
|
+
queryId: string;
|
|
139
|
+
audioUrl: string;
|
|
140
|
+
filePaths: null;
|
|
141
|
+
currentFiles: null;
|
|
142
|
+
};
|
|
143
|
+
reply: {
|
|
144
|
+
id: number;
|
|
145
|
+
gmtCreate: string;
|
|
146
|
+
content: string;
|
|
147
|
+
type: string;
|
|
148
|
+
reference: string;
|
|
149
|
+
webReference: string;
|
|
150
|
+
queryId: string;
|
|
151
|
+
feedbackResult: null;
|
|
152
|
+
feedbackId: null;
|
|
153
|
+
parsedFilePaths: null;
|
|
154
|
+
recommendQuestion: string;
|
|
155
|
+
llmType: number;
|
|
156
|
+
resultType: number;
|
|
157
|
+
respTime: number;
|
|
158
|
+
databaseReference: string;
|
|
159
|
+
tokens: number;
|
|
160
|
+
graphReference?: undefined;
|
|
161
|
+
};
|
|
99
162
|
} | {
|
|
100
163
|
query: {
|
|
101
164
|
id: number;
|
|
@@ -124,6 +187,7 @@ export declare const mockServerData: {
|
|
|
124
187
|
respTime: number;
|
|
125
188
|
databaseReference: null;
|
|
126
189
|
tokens: number;
|
|
190
|
+
graphReference?: undefined;
|
|
127
191
|
};
|
|
128
192
|
} | {
|
|
129
193
|
query: {
|
|
@@ -153,6 +217,7 @@ export declare const mockServerData: {
|
|
|
153
217
|
resultType: number;
|
|
154
218
|
respTime: number;
|
|
155
219
|
tokens: number;
|
|
220
|
+
graphReference?: undefined;
|
|
156
221
|
};
|
|
157
222
|
})[];
|
|
158
223
|
searchConfigDTO: {
|