@resolveio/client-lib-core 21.4.0 → 21.4.1
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
|
@@ -1080,6 +1080,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1080
1080
|
private readonly supportTicketStorageKey;
|
|
1081
1081
|
private mongoReadCache;
|
|
1082
1082
|
private mongoReadInFlight;
|
|
1083
|
+
private exportingMessageIds;
|
|
1083
1084
|
private subscribedConversationId;
|
|
1084
1085
|
private conversationsSub?;
|
|
1085
1086
|
private messagesSub?;
|
|
@@ -1088,6 +1089,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1088
1089
|
private pendingConversationId;
|
|
1089
1090
|
private pendingConversation;
|
|
1090
1091
|
private createConversationPromise;
|
|
1092
|
+
private currencySymbol;
|
|
1091
1093
|
constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService, locale: string);
|
|
1092
1094
|
ngOnInit(): void;
|
|
1093
1095
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1182,6 +1184,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1182
1184
|
private isDateColumn;
|
|
1183
1185
|
private isLikelyDateValue;
|
|
1184
1186
|
private resolveDisplayTable;
|
|
1187
|
+
canExportMessage(message: AiTerminalMessageModel): boolean;
|
|
1188
|
+
isExportingMessage(message: AiTerminalMessageModel): boolean;
|
|
1189
|
+
exportMessageTable(message: AiTerminalMessageModel): Promise<void>;
|
|
1190
|
+
private buildExportFilename;
|
|
1185
1191
|
private shouldHideDisplayColumn;
|
|
1186
1192
|
private formatDisplayColumn;
|
|
1187
1193
|
private containsMarkdownTable;
|
|
@@ -1253,8 +1259,11 @@ declare class AiAssistantComponent implements OnChanges {
|
|
|
1253
1259
|
openRequested: EventEmitter<void>;
|
|
1254
1260
|
closed: EventEmitter<void>;
|
|
1255
1261
|
terminal?: AiTerminalComponent;
|
|
1262
|
+
panelRef?: ElementRef<HTMLDivElement>;
|
|
1256
1263
|
contextMode: 'current' | 'all' | 'auto';
|
|
1257
1264
|
private hoverOpened;
|
|
1265
|
+
panelWidthPx: number | null;
|
|
1266
|
+
private isResizing;
|
|
1258
1267
|
constructor(router: Router, _account: AccountManagerService);
|
|
1259
1268
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1260
1269
|
get terminalConfig(): AiTerminalConfig;
|
|
@@ -1266,6 +1275,12 @@ declare class AiAssistantComponent implements OnChanges {
|
|
|
1266
1275
|
get contextRouteLabel(): string;
|
|
1267
1276
|
openSupportTicket(): void;
|
|
1268
1277
|
handleBackdropClick(event: MouseEvent): void;
|
|
1278
|
+
get panelWidthStyle(): string;
|
|
1279
|
+
startResize(event: MouseEvent): void;
|
|
1280
|
+
handleResizeMove(event: MouseEvent): void;
|
|
1281
|
+
handleResizeEnd(): void;
|
|
1282
|
+
private clampPanelWidth;
|
|
1283
|
+
private defaultPanelWidth;
|
|
1269
1284
|
private buildSystemPrompt;
|
|
1270
1285
|
private buildCustomerScopeLine;
|
|
1271
1286
|
private buildSupportTicketSummary;
|