@resolveio/client-lib-core 21.5.47 → 21.5.48

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.5.47",
3
+ "version": "21.5.48",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -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;
@@ -1175,6 +1176,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1175
1176
  private expandedDebugIds;
1176
1177
  private pendingProgressTimers;
1177
1178
  private pendingServerRefreshTimers;
1179
+ private pendingRunStatusRequests;
1180
+ private runStatusMethodSupported;
1178
1181
  private readonly supportTicketStorageKey;
1179
1182
  private readonly promptFavoritesStorageKey;
1180
1183
  private mongoReadCache;
@@ -1292,6 +1295,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1292
1295
  private clearPendingProgressTimers;
1293
1296
  private schedulePendingServerRefresh;
1294
1297
  private clearPendingServerRefresh;
1298
+ private refreshPendingRunStatus;
1299
+ private applyPendingRunStatusResponse;
1295
1300
  private applyServerMessageToLocal;
1296
1301
  private ensureConversationId;
1297
1302
  private ensureLocalConversationForSend;