@resolveio/client-lib-core 21.4.16 → 21.4.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.4.16",
3
+ "version": "21.4.17",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -1227,8 +1227,11 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1227
1227
  private resolveDebugPayload;
1228
1228
  showDebugForMessage(message: AiTerminalMessageModel): boolean;
1229
1229
  canCopyMessage(message: AiTerminalMessageModel): boolean;
1230
+ canCopyConversation(): boolean;
1231
+ copyConversation(): Promise<void>;
1230
1232
  copyMessage(message: AiTerminalMessageModel): Promise<void>;
1231
1233
  copyAssistantResponse(message: AiTerminalMessageModel): Promise<void>;
1234
+ private buildConversationCopyText;
1232
1235
  private buildCopyText;
1233
1236
  private stringifyCopyDebug;
1234
1237
  private copyTextFallback;
@@ -2452,7 +2455,7 @@ interface CanComponentDeactivate {
2452
2455
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2453
2456
  }
2454
2457
  declare class CanDeactivateGuard {
2455
- canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2458
+ canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2456
2459
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2457
2460
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2458
2461
  }