@resolveio/client-lib-core 21.4.1 → 21.4.3
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/package.json
CHANGED
|
@@ -905,7 +905,9 @@ interface AiTerminalToolResult {
|
|
|
905
905
|
rowCount?: number;
|
|
906
906
|
columns?: string[];
|
|
907
907
|
truncated?: boolean;
|
|
908
|
+
debug?: Record<string, any>;
|
|
908
909
|
};
|
|
910
|
+
debug?: Record<string, any>;
|
|
909
911
|
}
|
|
910
912
|
interface AiTerminalMessageModel {
|
|
911
913
|
_id?: string;
|
|
@@ -1076,6 +1078,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1076
1078
|
private requestCounter;
|
|
1077
1079
|
private localConversationCounter;
|
|
1078
1080
|
private collapsedTableIds;
|
|
1081
|
+
private expandedDebugIds;
|
|
1079
1082
|
private pendingProgressTimers;
|
|
1080
1083
|
private readonly supportTicketStorageKey;
|
|
1081
1084
|
private mongoReadCache;
|
|
@@ -1184,6 +1187,16 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1184
1187
|
private isDateColumn;
|
|
1185
1188
|
private isLikelyDateValue;
|
|
1186
1189
|
private resolveDisplayTable;
|
|
1190
|
+
isSuperAdmin(): boolean;
|
|
1191
|
+
private resolveDebugPayload;
|
|
1192
|
+
showDebugForMessage(message: AiTerminalMessageModel): boolean;
|
|
1193
|
+
copyAssistantResponse(message: AiTerminalMessageModel): Promise<void>;
|
|
1194
|
+
private buildCopyText;
|
|
1195
|
+
private stringifyCopyDebug;
|
|
1196
|
+
private copyTextFallback;
|
|
1197
|
+
toggleDebug(message: AiTerminalMessageModel): void;
|
|
1198
|
+
isDebugCollapsed(message: AiTerminalMessageModel): boolean;
|
|
1199
|
+
debugText(message: AiTerminalMessageModel): string;
|
|
1187
1200
|
canExportMessage(message: AiTerminalMessageModel): boolean;
|
|
1188
1201
|
isExportingMessage(message: AiTerminalMessageModel): boolean;
|
|
1189
1202
|
exportMessageTable(message: AiTerminalMessageModel): Promise<void>;
|
|
@@ -1211,9 +1224,6 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1211
1224
|
private formatCollectionLabel;
|
|
1212
1225
|
private formatMongoReadResult;
|
|
1213
1226
|
private formatMongoAggregateResult;
|
|
1214
|
-
private appendMongoDebugSection;
|
|
1215
|
-
private formatMongoDebugSection;
|
|
1216
|
-
private stringifyDebugValue;
|
|
1217
1227
|
private formatMongoAggregateDocumentSummary;
|
|
1218
1228
|
private formatMongoAggregateId;
|
|
1219
1229
|
private formatMongoDocumentSummary;
|
|
@@ -1264,11 +1274,17 @@ declare class AiAssistantComponent implements OnChanges {
|
|
|
1264
1274
|
private hoverOpened;
|
|
1265
1275
|
panelWidthPx: number | null;
|
|
1266
1276
|
private isResizing;
|
|
1277
|
+
private resizeMinWidth;
|
|
1278
|
+
private resizeMaxWidth;
|
|
1279
|
+
private resizeStartWidth;
|
|
1280
|
+
private suppressRailClick;
|
|
1281
|
+
private resizeMoved;
|
|
1267
1282
|
constructor(router: Router, _account: AccountManagerService);
|
|
1268
1283
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1269
1284
|
get terminalConfig(): AiTerminalConfig;
|
|
1270
1285
|
closePanel(): void;
|
|
1271
1286
|
handleRailClick(event?: MouseEvent): void;
|
|
1287
|
+
handleRailMouseDown(event: MouseEvent): void;
|
|
1272
1288
|
handleRailEnter(): void;
|
|
1273
1289
|
handleRailLeave(): void;
|
|
1274
1290
|
setContextMode(mode: string): void;
|
|
@@ -1276,11 +1292,12 @@ declare class AiAssistantComponent implements OnChanges {
|
|
|
1276
1292
|
openSupportTicket(): void;
|
|
1277
1293
|
handleBackdropClick(event: MouseEvent): void;
|
|
1278
1294
|
get panelWidthStyle(): string;
|
|
1279
|
-
startResize(event: MouseEvent): void;
|
|
1295
|
+
startResize(event: MouseEvent, lockMinToCurrent?: boolean): void;
|
|
1280
1296
|
handleResizeMove(event: MouseEvent): void;
|
|
1281
1297
|
handleResizeEnd(): void;
|
|
1282
1298
|
private clampPanelWidth;
|
|
1283
1299
|
private defaultPanelWidth;
|
|
1300
|
+
private resolveMaxWidth;
|
|
1284
1301
|
private buildSystemPrompt;
|
|
1285
1302
|
private buildCustomerScopeLine;
|
|
1286
1303
|
private buildSupportTicketSummary;
|