@resolveio/client-lib-core 21.3.17 → 21.3.18
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
|
@@ -1038,6 +1038,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1038
1038
|
private services;
|
|
1039
1039
|
private pageRouter;
|
|
1040
1040
|
private _pageFormAdapter;
|
|
1041
|
+
private locale;
|
|
1041
1042
|
idClient: string;
|
|
1042
1043
|
idApp: string;
|
|
1043
1044
|
title: string;
|
|
@@ -1072,6 +1073,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1072
1073
|
private serverMessages;
|
|
1073
1074
|
private localMessagesByConversation;
|
|
1074
1075
|
private localMessageCounter;
|
|
1076
|
+
private requestCounter;
|
|
1077
|
+
private localConversationCounter;
|
|
1078
|
+
private collapsedTableIds;
|
|
1079
|
+
private pendingProgressTimers;
|
|
1075
1080
|
private readonly supportTicketStorageKey;
|
|
1076
1081
|
private mongoReadCache;
|
|
1077
1082
|
private mongoReadInFlight;
|
|
@@ -1083,7 +1088,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1083
1088
|
private pendingConversationId;
|
|
1084
1089
|
private pendingConversation;
|
|
1085
1090
|
private createConversationPromise;
|
|
1086
|
-
constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService);
|
|
1091
|
+
constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService, locale: string);
|
|
1087
1092
|
ngOnInit(): void;
|
|
1088
1093
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1089
1094
|
ngOnDestroy(): void;
|
|
@@ -1147,18 +1152,39 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1147
1152
|
private normalizeMessageContent;
|
|
1148
1153
|
private appendLocalMessage;
|
|
1149
1154
|
private removeLocalMessage;
|
|
1155
|
+
private updateLocalMessage;
|
|
1156
|
+
private findLocalMessageById;
|
|
1157
|
+
private schedulePendingProgress;
|
|
1158
|
+
private clearPendingProgressTimers;
|
|
1159
|
+
private applyServerMessageToLocal;
|
|
1150
1160
|
private ensureConversationId;
|
|
1161
|
+
private ensureLocalConversationForSend;
|
|
1162
|
+
private isLocalConversationId;
|
|
1163
|
+
private reparentLocalConversation;
|
|
1164
|
+
private generateRequestId;
|
|
1151
1165
|
private scrollToBottom;
|
|
1152
1166
|
private splitMessageContent;
|
|
1153
1167
|
private isRouteBoundary;
|
|
1154
1168
|
private getMessageContent;
|
|
1155
1169
|
displayTableForMessage(message: AiTerminalMessageModel): AiTerminalDisplayTable | null;
|
|
1170
|
+
isTableCollapsed(message: AiTerminalMessageModel): boolean;
|
|
1171
|
+
toggleTable(message: AiTerminalMessageModel): void;
|
|
1172
|
+
get timeZoneLabel(): string;
|
|
1156
1173
|
pendingProgress(message: AiTerminalMessageModel): string[] | null;
|
|
1157
|
-
|
|
1174
|
+
private resolvePendingElapsed;
|
|
1175
|
+
private ensureMessageSubscription;
|
|
1176
|
+
formatDisplayCell(value: any, column?: string): string;
|
|
1177
|
+
private formatScalarValue;
|
|
1178
|
+
private resolveNumericValue;
|
|
1179
|
+
private isPercentColumn;
|
|
1180
|
+
private isCurrencyColumn;
|
|
1181
|
+
private isDateColumn;
|
|
1182
|
+
private isLikelyDateValue;
|
|
1158
1183
|
private resolveDisplayTable;
|
|
1159
1184
|
private shouldHideDisplayColumn;
|
|
1160
1185
|
private formatDisplayColumn;
|
|
1161
1186
|
private containsMarkdownTable;
|
|
1187
|
+
private stripMarkdownTables;
|
|
1162
1188
|
private loadSupportTicketMap;
|
|
1163
1189
|
private saveSupportTicketMap;
|
|
1164
1190
|
private applyStoredSupportTicketOverrides;
|