@resolveio/client-lib-core 21.4.2 → 21.4.4

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.2",
3
+ "version": "21.4.4",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -1190,6 +1190,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1190
1190
  isSuperAdmin(): boolean;
1191
1191
  private resolveDebugPayload;
1192
1192
  showDebugForMessage(message: AiTerminalMessageModel): boolean;
1193
+ copyAssistantResponse(message: AiTerminalMessageModel): Promise<void>;
1194
+ private buildCopyText;
1195
+ private stringifyCopyDebug;
1196
+ private copyTextFallback;
1193
1197
  toggleDebug(message: AiTerminalMessageModel): void;
1194
1198
  isDebugCollapsed(message: AiTerminalMessageModel): boolean;
1195
1199
  debugText(message: AiTerminalMessageModel): string;
@@ -1220,9 +1224,6 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1220
1224
  private formatCollectionLabel;
1221
1225
  private formatMongoReadResult;
1222
1226
  private formatMongoAggregateResult;
1223
- private appendMongoDebugSection;
1224
- private formatMongoDebugSection;
1225
- private stringifyDebugValue;
1226
1227
  private formatMongoAggregateDocumentSummary;
1227
1228
  private formatMongoAggregateId;
1228
1229
  private formatMongoDocumentSummary;
@@ -2401,7 +2402,7 @@ interface CanComponentDeactivate {
2401
2402
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2402
2403
  }
2403
2404
  declare class CanDeactivateGuard {
2404
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2405
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2405
2406
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2406
2407
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2407
2408
  }