@resolveio/client-lib-core 21.5.1 → 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;
|
|
@@ -1142,6 +1149,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1142
1149
|
private mongoReadCache;
|
|
1143
1150
|
private mongoReadInFlight;
|
|
1144
1151
|
private exportingMessageIds;
|
|
1152
|
+
private loadingAllRowsMessageIds;
|
|
1153
|
+
private fullDisplayPromises;
|
|
1154
|
+
private fullDisplayCache;
|
|
1155
|
+
private pulledAllMessageIds;
|
|
1145
1156
|
private subscribedConversationId;
|
|
1146
1157
|
private conversationsSub?;
|
|
1147
1158
|
private messagesSub?;
|
|
@@ -1268,20 +1279,36 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1268
1279
|
private resolveDebugPayload;
|
|
1269
1280
|
showDebugForMessage(message: AiTerminalMessageModel): boolean;
|
|
1270
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>;
|
|
1271
1287
|
canCopyConversation(): boolean;
|
|
1272
1288
|
copyConversation(): Promise<void>;
|
|
1273
1289
|
copyMessage(message: AiTerminalMessageModel): Promise<void>;
|
|
1274
1290
|
copyAssistantResponse(message: AiTerminalMessageModel): Promise<void>;
|
|
1275
1291
|
private buildConversationCopyText;
|
|
1276
1292
|
private buildCopyText;
|
|
1293
|
+
private buildDisplayTableMarkdown;
|
|
1294
|
+
private escapeMarkdownCell;
|
|
1277
1295
|
private stringifyCopyDebug;
|
|
1278
1296
|
private copyTextFallback;
|
|
1279
1297
|
toggleDebug(message: AiTerminalMessageModel): void;
|
|
1280
1298
|
isDebugCollapsed(message: AiTerminalMessageModel): boolean;
|
|
1281
1299
|
debugText(message: AiTerminalMessageModel): string;
|
|
1282
1300
|
canExportMessage(message: AiTerminalMessageModel): boolean;
|
|
1301
|
+
canPullAllMessage(message: AiTerminalMessageModel): boolean;
|
|
1283
1302
|
isExportingMessage(message: AiTerminalMessageModel): boolean;
|
|
1303
|
+
isPullingAllMessage(message: AiTerminalMessageModel): boolean;
|
|
1304
|
+
isAllRowsLoaded(message: AiTerminalMessageModel): boolean;
|
|
1305
|
+
pullAllMessageTable(message: AiTerminalMessageModel): Promise<void>;
|
|
1284
1306
|
exportMessageTable(message: AiTerminalMessageModel): Promise<void>;
|
|
1307
|
+
private resolveExportableToolResult;
|
|
1308
|
+
private buildFullFetchRequest;
|
|
1309
|
+
private removeAggregateLimitStages;
|
|
1310
|
+
private fetchFullDisplayForMessage;
|
|
1311
|
+
private formatExportCell;
|
|
1285
1312
|
private buildExportFilename;
|
|
1286
1313
|
private shouldHideDisplayColumn;
|
|
1287
1314
|
private formatDisplayColumn;
|
|
@@ -2543,7 +2570,7 @@ interface CanComponentDeactivate {
|
|
|
2543
2570
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2544
2571
|
}
|
|
2545
2572
|
declare class CanDeactivateGuard {
|
|
2546
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2573
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
2547
2574
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2548
2575
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2549
2576
|
}
|