@resolveio/client-lib-core 21.4.12 → 21.4.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
|
@@ -1113,6 +1113,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1113
1113
|
private createConversationPromise;
|
|
1114
1114
|
private currencySymbol;
|
|
1115
1115
|
constructor(terminal: AiTerminalService, services: ProviderService, pageRouter: AiPageRouterService, _pageFormAdapter: AiPageFormAdapterService, locale: string);
|
|
1116
|
+
private get _services();
|
|
1116
1117
|
ngOnInit(): void;
|
|
1117
1118
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1118
1119
|
ngOnDestroy(): void;
|
|
@@ -1214,6 +1215,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1214
1215
|
isSuperAdmin(): boolean;
|
|
1215
1216
|
private resolveDebugPayload;
|
|
1216
1217
|
showDebugForMessage(message: AiTerminalMessageModel): boolean;
|
|
1218
|
+
canCopyMessage(message: AiTerminalMessageModel): boolean;
|
|
1219
|
+
copyMessage(message: AiTerminalMessageModel): Promise<void>;
|
|
1217
1220
|
copyAssistantResponse(message: AiTerminalMessageModel): Promise<void>;
|
|
1218
1221
|
private buildCopyText;
|
|
1219
1222
|
private stringifyCopyDebug;
|
|
@@ -2429,7 +2432,7 @@ interface CanComponentDeactivate {
|
|
|
2429
2432
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2430
2433
|
}
|
|
2431
2434
|
declare class CanDeactivateGuard {
|
|
2432
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2435
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
2433
2436
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2434
2437
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2435
2438
|
}
|