@resolveio/client-lib-core 21.3.17 → 21.4.0
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;
|
|
@@ -1145,20 +1150,42 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1145
1150
|
private isLocalMessage;
|
|
1146
1151
|
private isPendingAssistantMessage;
|
|
1147
1152
|
private normalizeMessageContent;
|
|
1153
|
+
private mergeProgressLists;
|
|
1148
1154
|
private appendLocalMessage;
|
|
1149
1155
|
private removeLocalMessage;
|
|
1156
|
+
private updateLocalMessage;
|
|
1157
|
+
private findLocalMessageById;
|
|
1158
|
+
private schedulePendingProgress;
|
|
1159
|
+
private clearPendingProgressTimers;
|
|
1160
|
+
private applyServerMessageToLocal;
|
|
1150
1161
|
private ensureConversationId;
|
|
1162
|
+
private ensureLocalConversationForSend;
|
|
1163
|
+
private isLocalConversationId;
|
|
1164
|
+
private reparentLocalConversation;
|
|
1165
|
+
private generateRequestId;
|
|
1151
1166
|
private scrollToBottom;
|
|
1152
1167
|
private splitMessageContent;
|
|
1153
1168
|
private isRouteBoundary;
|
|
1154
1169
|
private getMessageContent;
|
|
1155
1170
|
displayTableForMessage(message: AiTerminalMessageModel): AiTerminalDisplayTable | null;
|
|
1171
|
+
isTableCollapsed(message: AiTerminalMessageModel): boolean;
|
|
1172
|
+
toggleTable(message: AiTerminalMessageModel): void;
|
|
1173
|
+
get timeZoneLabel(): string;
|
|
1156
1174
|
pendingProgress(message: AiTerminalMessageModel): string[] | null;
|
|
1157
|
-
|
|
1175
|
+
private resolvePendingElapsed;
|
|
1176
|
+
private ensureMessageSubscription;
|
|
1177
|
+
formatDisplayCell(value: any, column?: string): string;
|
|
1178
|
+
private formatScalarValue;
|
|
1179
|
+
private resolveNumericValue;
|
|
1180
|
+
private isPercentColumn;
|
|
1181
|
+
private isCurrencyColumn;
|
|
1182
|
+
private isDateColumn;
|
|
1183
|
+
private isLikelyDateValue;
|
|
1158
1184
|
private resolveDisplayTable;
|
|
1159
1185
|
private shouldHideDisplayColumn;
|
|
1160
1186
|
private formatDisplayColumn;
|
|
1161
1187
|
private containsMarkdownTable;
|
|
1188
|
+
private stripMarkdownTables;
|
|
1162
1189
|
private loadSupportTicketMap;
|
|
1163
1190
|
private saveSupportTicketMap;
|
|
1164
1191
|
private applyStoredSupportTicketOverrides;
|