@resolveio/client-lib-core 21.5.48 → 21.5.50
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
|
@@ -1155,6 +1155,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1155
1155
|
favoritePromptEditValue: string;
|
|
1156
1156
|
issueReportOpen: boolean;
|
|
1157
1157
|
issueReportMessageId: string;
|
|
1158
|
+
issueReportRequestId: string;
|
|
1158
1159
|
issueReportConversationId: string;
|
|
1159
1160
|
issueReportReason: string;
|
|
1160
1161
|
issueReportExpected: string;
|
|
@@ -2295,6 +2296,7 @@ declare class DialogRegisterContent implements OnInit {
|
|
|
2295
2296
|
declare class DialogSelectWithButtonsURLContent implements AfterViewInit, OnInit {
|
|
2296
2297
|
_activeModal: NgbActiveModal;
|
|
2297
2298
|
private _account;
|
|
2299
|
+
private _router;
|
|
2298
2300
|
url: string;
|
|
2299
2301
|
close: any;
|
|
2300
2302
|
allElements: any;
|
|
@@ -2304,13 +2306,14 @@ declare class DialogSelectWithButtonsURLContent implements AfterViewInit, OnInit
|
|
|
2304
2306
|
value: string;
|
|
2305
2307
|
text: string;
|
|
2306
2308
|
}[];
|
|
2307
|
-
constructor(_activeModal: NgbActiveModal, _account: AccountManagerService);
|
|
2309
|
+
constructor(_activeModal: NgbActiveModal, _account: AccountManagerService, _router: Router);
|
|
2308
2310
|
ngOnInit(): void;
|
|
2309
2311
|
private resolveRoutingPreference;
|
|
2310
2312
|
ngAfterViewInit(): void;
|
|
2311
2313
|
recursiveFindFirstElement(element: any): any;
|
|
2312
2314
|
onSelectType(type: any): void;
|
|
2313
2315
|
submit(): void;
|
|
2316
|
+
private openInSameTab;
|
|
2314
2317
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogSelectWithButtonsURLContent, never>;
|
|
2315
2318
|
static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectWithButtonsURLContent, "resolveio-dialog.select-with-buttons-url", never, { "url": { "alias": "url"; "required": false; }; }, {}, never, never, false, never>;
|
|
2316
2319
|
}
|