@resolveio/client-lib-core 21.3.16 → 21.3.17
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
|
@@ -1079,6 +1079,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1079
1079
|
private conversationsSub?;
|
|
1080
1080
|
private messagesSub?;
|
|
1081
1081
|
private subscriptionsPaused;
|
|
1082
|
+
private pauseTimer;
|
|
1083
|
+
private pendingConversationId;
|
|
1084
|
+
private pendingConversation;
|
|
1085
|
+
private createConversationPromise;
|
|
1082
1086
|
constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService);
|
|
1083
1087
|
ngOnInit(): void;
|
|
1084
1088
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1131,6 +1135,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1131
1135
|
private uploadPendingFiles;
|
|
1132
1136
|
private readFileAsBase64;
|
|
1133
1137
|
private afterRunResponse;
|
|
1138
|
+
handleComposerKeydown(event: KeyboardEvent): void;
|
|
1134
1139
|
private buildMessageContext;
|
|
1135
1140
|
private buildPageRouterContext;
|
|
1136
1141
|
private refreshMergedMessages;
|
|
@@ -1184,6 +1189,11 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1184
1189
|
private truncateText;
|
|
1185
1190
|
private shouldLinkRoute;
|
|
1186
1191
|
private unsubscribeAll;
|
|
1192
|
+
private schedulePause;
|
|
1193
|
+
private cancelPause;
|
|
1194
|
+
private createNewConversation;
|
|
1195
|
+
private createConversationInternal;
|
|
1196
|
+
private mergePendingConversation;
|
|
1187
1197
|
static ɵfac: i0.ɵɵFactoryDeclaration<AiTerminalComponent, never>;
|
|
1188
1198
|
static ɵcmp: i0.ɵɵComponentDeclaration<AiTerminalComponent, "rio-ai-terminal", never, { "idClient": { "alias": "idClient"; "required": false; }; "idApp": { "alias": "idApp"; "required": false; }; "title": { "alias": "title"; "required": false; }; "config": { "alias": "config"; "required": false; }; "conversationStatus": { "alias": "conversationStatus"; "required": false; }; "messageLimit": { "alias": "messageLimit"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "singleConversation": { "alias": "singleConversation"; "required": false; }; "contextMode": { "alias": "contextMode"; "required": false; }; "contextRoute": { "alias": "contextRoute"; "required": false; }; "paused": { "alias": "paused"; "required": false; }; }, {}, never, never, false, never>;
|
|
1189
1199
|
}
|