@resolveio/client-lib-core 21.3.6 → 21.3.8

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.3.6",
3
+ "version": "21.3.8",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -1115,8 +1115,12 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1115
1115
  private applyStoredMongoReadOverrides;
1116
1116
  private processMongoReadDirectives;
1117
1117
  private extractMongoReadDirective;
1118
+ private resolveMongoCountIntent;
1119
+ private findPreviousUserMessage;
1120
+ private isMongoCountQuestion;
1118
1121
  private createMongoReadFromDirective;
1119
1122
  private appendMongoReadResult;
1123
+ private formatCollectionLabel;
1120
1124
  private formatMongoReadResult;
1121
1125
  private formatMongoDocumentSummary;
1122
1126
  private resolveSupportTicketIssue;
@@ -1141,6 +1145,7 @@ type AiTerminalConfig = {
1141
1145
  };
1142
1146
  declare class AiAssistantComponent implements OnChanges {
1143
1147
  private router;
1148
+ private _account;
1144
1149
  idClient: string;
1145
1150
  idApp: string;
1146
1151
  title: string;
@@ -1157,7 +1162,7 @@ declare class AiAssistantComponent implements OnChanges {
1157
1162
  terminal?: AiTerminalComponent;
1158
1163
  contextMode: 'current' | 'all' | 'auto';
1159
1164
  private hoverOpened;
1160
- constructor(router: Router);
1165
+ constructor(router: Router, _account: AccountManagerService);
1161
1166
  ngOnChanges(changes: SimpleChanges): void;
1162
1167
  get terminalConfig(): AiTerminalConfig;
1163
1168
  closePanel(): void;
@@ -1169,6 +1174,7 @@ declare class AiAssistantComponent implements OnChanges {
1169
1174
  openSupportTicket(): void;
1170
1175
  handleBackdropClick(event: MouseEvent): void;
1171
1176
  private buildSystemPrompt;
1177
+ private buildCustomerScopeLine;
1172
1178
  private buildSupportTicketSummary;
1173
1179
  private sanitizeSummary;
1174
1180
  private truncate;
@@ -2271,7 +2277,7 @@ interface CanComponentDeactivate {
2271
2277
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
2272
2278
  }
2273
2279
  declare class CanDeactivateGuard {
2274
- canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
2280
+ canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
2275
2281
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
2276
2282
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
2277
2283
  }