@resolveio/client-lib-core 21.3.18 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.3.18",
3
+ "version": "21.4.1",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -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;
@@ -1150,6 +1152,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1150
1152
  private isLocalMessage;
1151
1153
  private isPendingAssistantMessage;
1152
1154
  private normalizeMessageContent;
1155
+ private mergeProgressLists;
1153
1156
  private appendLocalMessage;
1154
1157
  private removeLocalMessage;
1155
1158
  private updateLocalMessage;
@@ -1181,6 +1184,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1181
1184
  private isDateColumn;
1182
1185
  private isLikelyDateValue;
1183
1186
  private resolveDisplayTable;
1187
+ canExportMessage(message: AiTerminalMessageModel): boolean;
1188
+ isExportingMessage(message: AiTerminalMessageModel): boolean;
1189
+ exportMessageTable(message: AiTerminalMessageModel): Promise<void>;
1190
+ private buildExportFilename;
1184
1191
  private shouldHideDisplayColumn;
1185
1192
  private formatDisplayColumn;
1186
1193
  private containsMarkdownTable;
@@ -1252,8 +1259,11 @@ declare class AiAssistantComponent implements OnChanges {
1252
1259
  openRequested: EventEmitter<void>;
1253
1260
  closed: EventEmitter<void>;
1254
1261
  terminal?: AiTerminalComponent;
1262
+ panelRef?: ElementRef<HTMLDivElement>;
1255
1263
  contextMode: 'current' | 'all' | 'auto';
1256
1264
  private hoverOpened;
1265
+ panelWidthPx: number | null;
1266
+ private isResizing;
1257
1267
  constructor(router: Router, _account: AccountManagerService);
1258
1268
  ngOnChanges(changes: SimpleChanges): void;
1259
1269
  get terminalConfig(): AiTerminalConfig;
@@ -1265,6 +1275,12 @@ declare class AiAssistantComponent implements OnChanges {
1265
1275
  get contextRouteLabel(): string;
1266
1276
  openSupportTicket(): void;
1267
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;
1268
1284
  private buildSystemPrompt;
1269
1285
  private buildCustomerScopeLine;
1270
1286
  private buildSupportTicketSummary;