@resolveio/client-lib-core 21.5.47 → 21.5.49
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
|
@@ -902,6 +902,7 @@ interface AiTerminalMethodNames {
|
|
|
902
902
|
runOpenAI?: string;
|
|
903
903
|
uploadOpenAI?: string;
|
|
904
904
|
runCodex?: string;
|
|
905
|
+
runStatus?: string;
|
|
905
906
|
uploadCodex?: string;
|
|
906
907
|
reportIssue?: string;
|
|
907
908
|
deployTest?: string;
|
|
@@ -1154,6 +1155,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1154
1155
|
favoritePromptEditValue: string;
|
|
1155
1156
|
issueReportOpen: boolean;
|
|
1156
1157
|
issueReportMessageId: string;
|
|
1158
|
+
issueReportRequestId: string;
|
|
1157
1159
|
issueReportConversationId: string;
|
|
1158
1160
|
issueReportReason: string;
|
|
1159
1161
|
issueReportExpected: string;
|
|
@@ -1175,6 +1177,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1175
1177
|
private expandedDebugIds;
|
|
1176
1178
|
private pendingProgressTimers;
|
|
1177
1179
|
private pendingServerRefreshTimers;
|
|
1180
|
+
private pendingRunStatusRequests;
|
|
1181
|
+
private runStatusMethodSupported;
|
|
1178
1182
|
private readonly supportTicketStorageKey;
|
|
1179
1183
|
private readonly promptFavoritesStorageKey;
|
|
1180
1184
|
private mongoReadCache;
|
|
@@ -1292,6 +1296,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1292
1296
|
private clearPendingProgressTimers;
|
|
1293
1297
|
private schedulePendingServerRefresh;
|
|
1294
1298
|
private clearPendingServerRefresh;
|
|
1299
|
+
private refreshPendingRunStatus;
|
|
1300
|
+
private applyPendingRunStatusResponse;
|
|
1295
1301
|
private applyServerMessageToLocal;
|
|
1296
1302
|
private ensureConversationId;
|
|
1297
1303
|
private ensureLocalConversationForSend;
|