@resolveio/client-lib-core 21.4.15 → 21.4.17
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
|
@@ -790,6 +790,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
|
|
|
790
790
|
getAiAssistantTopOffset(): number;
|
|
791
791
|
getAiAssistantHeight(): number;
|
|
792
792
|
getAiAssistantReservedWidth(): number;
|
|
793
|
+
resolveAiAssistantClientId(): string;
|
|
793
794
|
private resolveAiAssistantAppId;
|
|
794
795
|
private resolveAiAssistantConfig;
|
|
795
796
|
private resolveEnvModelList;
|
|
@@ -1226,8 +1227,11 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1226
1227
|
private resolveDebugPayload;
|
|
1227
1228
|
showDebugForMessage(message: AiTerminalMessageModel): boolean;
|
|
1228
1229
|
canCopyMessage(message: AiTerminalMessageModel): boolean;
|
|
1230
|
+
canCopyConversation(): boolean;
|
|
1231
|
+
copyConversation(): Promise<void>;
|
|
1229
1232
|
copyMessage(message: AiTerminalMessageModel): Promise<void>;
|
|
1230
1233
|
copyAssistantResponse(message: AiTerminalMessageModel): Promise<void>;
|
|
1234
|
+
private buildConversationCopyText;
|
|
1231
1235
|
private buildCopyText;
|
|
1232
1236
|
private stringifyCopyDebug;
|
|
1233
1237
|
private copyTextFallback;
|
|
@@ -2451,7 +2455,7 @@ interface CanComponentDeactivate {
|
|
|
2451
2455
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2452
2456
|
}
|
|
2453
2457
|
declare class CanDeactivateGuard {
|
|
2454
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2458
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
2455
2459
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2456
2460
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2457
2461
|
}
|