@resolveio/client-lib-core 21.5.2 → 21.5.3
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
|
@@ -876,6 +876,7 @@ interface AiTerminalMethodNames {
|
|
|
876
876
|
uploadOpenAI?: string;
|
|
877
877
|
runCodex?: string;
|
|
878
878
|
uploadCodex?: string;
|
|
879
|
+
reportIssue?: string;
|
|
879
880
|
deployTest?: string;
|
|
880
881
|
conversationsPublication?: string;
|
|
881
882
|
messagesPublication?: string;
|
|
@@ -1123,6 +1124,12 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1123
1124
|
favoritePromptEditOpen: boolean;
|
|
1124
1125
|
favoritePromptEditOriginal: string;
|
|
1125
1126
|
favoritePromptEditValue: string;
|
|
1127
|
+
issueReportOpen: boolean;
|
|
1128
|
+
issueReportMessageId: string;
|
|
1129
|
+
issueReportConversationId: string;
|
|
1130
|
+
issueReportReason: string;
|
|
1131
|
+
issueReportExpected: string;
|
|
1132
|
+
isSubmittingIssueReport: boolean;
|
|
1126
1133
|
private messagePartsCache;
|
|
1127
1134
|
private messageMarkdownCache;
|
|
1128
1135
|
private messageContentOverrides;
|
|
@@ -1272,6 +1279,11 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1272
1279
|
private resolveDebugPayload;
|
|
1273
1280
|
showDebugForMessage(message: AiTerminalMessageModel): boolean;
|
|
1274
1281
|
canCopyMessage(message: AiTerminalMessageModel): boolean;
|
|
1282
|
+
canReportIssue(message: AiTerminalMessageModel): boolean;
|
|
1283
|
+
openIssueReport(message: AiTerminalMessageModel, event?: Event): void;
|
|
1284
|
+
cancelIssueReport(): void;
|
|
1285
|
+
canSubmitIssueReport(): boolean;
|
|
1286
|
+
submitIssueReport(): Promise<void>;
|
|
1275
1287
|
canCopyConversation(): boolean;
|
|
1276
1288
|
copyConversation(): Promise<void>;
|
|
1277
1289
|
copyMessage(message: AiTerminalMessageModel): Promise<void>;
|
|
@@ -2558,7 +2570,7 @@ interface CanComponentDeactivate {
|
|
|
2558
2570
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2559
2571
|
}
|
|
2560
2572
|
declare class CanDeactivateGuard {
|
|
2561
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2573
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
2562
2574
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2563
2575
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2564
2576
|
}
|