@resolveio/client-lib-core 21.4.16 → 21.4.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
|
@@ -1086,6 +1086,9 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1086
1086
|
infoMessage: string;
|
|
1087
1087
|
editingConversationId: string;
|
|
1088
1088
|
editingTitle: string;
|
|
1089
|
+
favoritePromptEditOpen: boolean;
|
|
1090
|
+
favoritePromptEditOriginal: string;
|
|
1091
|
+
favoritePromptEditValue: string;
|
|
1089
1092
|
private messagePartsCache;
|
|
1090
1093
|
private messageMarkdownCache;
|
|
1091
1094
|
private messageContentOverrides;
|
|
@@ -1161,6 +1164,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1161
1164
|
togglePromptFavorite(): void;
|
|
1162
1165
|
runFavoritePrompt(prompt: string): Promise<void>;
|
|
1163
1166
|
removeFavoritePrompt(prompt: string, event?: Event): void;
|
|
1167
|
+
startFavoritePromptEdit(prompt: string, event?: Event): void;
|
|
1168
|
+
cancelFavoritePromptEdit(): void;
|
|
1169
|
+
canSaveFavoritePromptEdit(): boolean;
|
|
1170
|
+
saveFavoritePromptEdit(): void;
|
|
1164
1171
|
canToggleFavoriteForMessage(message: AiTerminalMessageModel): boolean;
|
|
1165
1172
|
isMessagePromptFavorited(message: AiTerminalMessageModel): boolean;
|
|
1166
1173
|
toggleMessagePromptFavorite(message: AiTerminalMessageModel, event?: Event): void;
|
|
@@ -1227,8 +1234,11 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1227
1234
|
private resolveDebugPayload;
|
|
1228
1235
|
showDebugForMessage(message: AiTerminalMessageModel): boolean;
|
|
1229
1236
|
canCopyMessage(message: AiTerminalMessageModel): boolean;
|
|
1237
|
+
canCopyConversation(): boolean;
|
|
1238
|
+
copyConversation(): Promise<void>;
|
|
1230
1239
|
copyMessage(message: AiTerminalMessageModel): Promise<void>;
|
|
1231
1240
|
copyAssistantResponse(message: AiTerminalMessageModel): Promise<void>;
|
|
1241
|
+
private buildConversationCopyText;
|
|
1232
1242
|
private buildCopyText;
|
|
1233
1243
|
private stringifyCopyDebug;
|
|
1234
1244
|
private copyTextFallback;
|