@resolveio/client-lib-core 21.5.51 → 21.6.0
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
|
@@ -1432,6 +1432,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1432
1432
|
|
|
1433
1433
|
type AiTerminalConfig = {
|
|
1434
1434
|
mode?: string;
|
|
1435
|
+
assistantMode?: 'resolveio' | 'aicoder';
|
|
1435
1436
|
model?: string;
|
|
1436
1437
|
fallbackModel?: string;
|
|
1437
1438
|
fallbackModels?: string[];
|
|
@@ -3025,7 +3026,7 @@ interface CanComponentDeactivate {
|
|
|
3025
3026
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
3026
3027
|
}
|
|
3027
3028
|
declare class CanDeactivateGuard {
|
|
3028
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3029
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
3029
3030
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3030
3031
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3031
3032
|
}
|