@resolveio/client-lib-core 21.3.9 → 21.3.11
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
|
@@ -1050,6 +1050,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1050
1050
|
private readonly supportTicketStorageKey;
|
|
1051
1051
|
private mongoReadCache;
|
|
1052
1052
|
private mongoReadInFlight;
|
|
1053
|
+
private subscribedConversationId;
|
|
1053
1054
|
private conversationsSub?;
|
|
1054
1055
|
private messagesSub?;
|
|
1055
1056
|
constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService);
|
|
@@ -1098,8 +1099,13 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1098
1099
|
private buildPageRouterContext;
|
|
1099
1100
|
private refreshMergedMessages;
|
|
1100
1101
|
private mergeMessages;
|
|
1102
|
+
private syncLocalMessages;
|
|
1101
1103
|
private messageTimestamp;
|
|
1104
|
+
private isLocalMessage;
|
|
1105
|
+
private isPendingAssistantMessage;
|
|
1106
|
+
private normalizeMessageContent;
|
|
1102
1107
|
private appendLocalMessage;
|
|
1108
|
+
private removeLocalMessage;
|
|
1103
1109
|
private ensureConversationId;
|
|
1104
1110
|
private scrollToBottom;
|
|
1105
1111
|
private splitMessageContent;
|
|
@@ -1113,15 +1119,19 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1113
1119
|
private appendSupportTicketLink;
|
|
1114
1120
|
private createSupportTicketFromDirective;
|
|
1115
1121
|
private applyStoredMongoReadOverrides;
|
|
1116
|
-
private
|
|
1117
|
-
private
|
|
1122
|
+
private processMongoDirectives;
|
|
1123
|
+
private extractMongoDirective;
|
|
1118
1124
|
private resolveMongoCountIntent;
|
|
1119
1125
|
private findPreviousUserMessage;
|
|
1120
1126
|
private isMongoCountQuestion;
|
|
1121
1127
|
private createMongoReadFromDirective;
|
|
1128
|
+
private createMongoAggregateFromDirective;
|
|
1122
1129
|
private appendMongoReadResult;
|
|
1123
1130
|
private formatCollectionLabel;
|
|
1124
1131
|
private formatMongoReadResult;
|
|
1132
|
+
private formatMongoAggregateResult;
|
|
1133
|
+
private formatMongoAggregateDocumentSummary;
|
|
1134
|
+
private formatMongoAggregateId;
|
|
1125
1135
|
private formatMongoDocumentSummary;
|
|
1126
1136
|
private resolveSupportTicketIssue;
|
|
1127
1137
|
private buildSupportTicketPayload;
|
|
@@ -1705,7 +1715,7 @@ declare class AiTerminalModule {
|
|
|
1705
1715
|
}
|
|
1706
1716
|
|
|
1707
1717
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
1708
|
-
resolveFirstDayOfWeek: () => "
|
|
1718
|
+
resolveFirstDayOfWeek: () => "M" | "S";
|
|
1709
1719
|
resolveTimezone: () => any;
|
|
1710
1720
|
};
|
|
1711
1721
|
declare class CoreServicesModule {
|