@resolveio/client-lib-core 21.4.0 → 21.4.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/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,10 +1078,12 @@ 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;
|
|
1082
1085
|
private mongoReadInFlight;
|
|
1086
|
+
private exportingMessageIds;
|
|
1083
1087
|
private subscribedConversationId;
|
|
1084
1088
|
private conversationsSub?;
|
|
1085
1089
|
private messagesSub?;
|
|
@@ -1088,6 +1092,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1088
1092
|
private pendingConversationId;
|
|
1089
1093
|
private pendingConversation;
|
|
1090
1094
|
private createConversationPromise;
|
|
1095
|
+
private currencySymbol;
|
|
1091
1096
|
constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService, locale: string);
|
|
1092
1097
|
ngOnInit(): void;
|
|
1093
1098
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1182,6 +1187,16 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1182
1187
|
private isDateColumn;
|
|
1183
1188
|
private isLikelyDateValue;
|
|
1184
1189
|
private resolveDisplayTable;
|
|
1190
|
+
isSuperAdmin(): boolean;
|
|
1191
|
+
private resolveDebugPayload;
|
|
1192
|
+
showDebugForMessage(message: AiTerminalMessageModel): boolean;
|
|
1193
|
+
toggleDebug(message: AiTerminalMessageModel): void;
|
|
1194
|
+
isDebugCollapsed(message: AiTerminalMessageModel): boolean;
|
|
1195
|
+
debugText(message: AiTerminalMessageModel): string;
|
|
1196
|
+
canExportMessage(message: AiTerminalMessageModel): boolean;
|
|
1197
|
+
isExportingMessage(message: AiTerminalMessageModel): boolean;
|
|
1198
|
+
exportMessageTable(message: AiTerminalMessageModel): Promise<void>;
|
|
1199
|
+
private buildExportFilename;
|
|
1185
1200
|
private shouldHideDisplayColumn;
|
|
1186
1201
|
private formatDisplayColumn;
|
|
1187
1202
|
private containsMarkdownTable;
|
|
@@ -1253,19 +1268,35 @@ declare class AiAssistantComponent implements OnChanges {
|
|
|
1253
1268
|
openRequested: EventEmitter<void>;
|
|
1254
1269
|
closed: EventEmitter<void>;
|
|
1255
1270
|
terminal?: AiTerminalComponent;
|
|
1271
|
+
panelRef?: ElementRef<HTMLDivElement>;
|
|
1256
1272
|
contextMode: 'current' | 'all' | 'auto';
|
|
1257
1273
|
private hoverOpened;
|
|
1274
|
+
panelWidthPx: number | null;
|
|
1275
|
+
private isResizing;
|
|
1276
|
+
private resizeMinWidth;
|
|
1277
|
+
private resizeMaxWidth;
|
|
1278
|
+
private resizeStartWidth;
|
|
1279
|
+
private suppressRailClick;
|
|
1280
|
+
private resizeMoved;
|
|
1258
1281
|
constructor(router: Router, _account: AccountManagerService);
|
|
1259
1282
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1260
1283
|
get terminalConfig(): AiTerminalConfig;
|
|
1261
1284
|
closePanel(): void;
|
|
1262
1285
|
handleRailClick(event?: MouseEvent): void;
|
|
1286
|
+
handleRailMouseDown(event: MouseEvent): void;
|
|
1263
1287
|
handleRailEnter(): void;
|
|
1264
1288
|
handleRailLeave(): void;
|
|
1265
1289
|
setContextMode(mode: string): void;
|
|
1266
1290
|
get contextRouteLabel(): string;
|
|
1267
1291
|
openSupportTicket(): void;
|
|
1268
1292
|
handleBackdropClick(event: MouseEvent): void;
|
|
1293
|
+
get panelWidthStyle(): string;
|
|
1294
|
+
startResize(event: MouseEvent, lockMinToCurrent?: boolean): void;
|
|
1295
|
+
handleResizeMove(event: MouseEvent): void;
|
|
1296
|
+
handleResizeEnd(): void;
|
|
1297
|
+
private clampPanelWidth;
|
|
1298
|
+
private defaultPanelWidth;
|
|
1299
|
+
private resolveMaxWidth;
|
|
1269
1300
|
private buildSystemPrompt;
|
|
1270
1301
|
private buildCustomerScopeLine;
|
|
1271
1302
|
private buildSupportTicketSummary;
|