@resolveio/client-lib-core 21.6.12 → 21.6.13

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.6.12",
3
+ "version": "21.6.13",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -1318,6 +1318,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1318
1318
  private readonly promptFavoritesStorageKey;
1319
1319
  private mongoReadCache;
1320
1320
  private mongoReadInFlight;
1321
+ private gitToolCache;
1321
1322
  private exportingMessageIds;
1322
1323
  private loadingAllRowsMessageIds;
1323
1324
  private fullDisplayPromises;
@@ -1524,9 +1525,13 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1524
1525
  private appendSupportTicketLink;
1525
1526
  private createSupportTicketFromDirective;
1526
1527
  private applyStoredMongoReadOverrides;
1528
+ private applyStoredGitToolOverrides;
1527
1529
  private processMongoDirectives;
1530
+ private processGitToolDirectives;
1528
1531
  private findLatestAssistantDirective;
1529
1532
  private extractMongoDirective;
1533
+ private extractGitToolDirective;
1534
+ private formatGitToolDirectiveInstructions;
1530
1535
  private resolveMongoCountIntent;
1531
1536
  private findPreviousUserMessage;
1532
1537
  private isMongoCountQuestion;
@@ -3185,7 +3190,7 @@ interface CanComponentDeactivate {
3185
3190
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
3186
3191
  }
3187
3192
  declare class CanDeactivateGuard {
3188
- canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
3193
+ canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
3189
3194
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
3190
3195
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
3191
3196
  }