@resolveio/client-lib-core 21.4.17 → 21.4.19

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.4.17",
3
+ "version": "21.4.19",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -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;
@@ -2455,7 +2462,7 @@ interface CanComponentDeactivate {
2455
2462
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2456
2463
  }
2457
2464
  declare class CanDeactivateGuard {
2458
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2465
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2459
2466
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2460
2467
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2461
2468
  }