@resolveio/client-lib-core 21.3.6 → 21.3.7
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
|
@@ -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;
|
|
@@ -2271,7 +2275,7 @@ interface CanComponentDeactivate {
|
|
|
2271
2275
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2272
2276
|
}
|
|
2273
2277
|
declare class CanDeactivateGuard {
|
|
2274
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2278
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
2275
2279
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2276
2280
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2277
2281
|
}
|