@resolveio/client-lib-core 21.5.46 → 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
|
@@ -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;
|
|
@@ -1174,6 +1175,9 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1174
1175
|
private collapsedTableIds;
|
|
1175
1176
|
private expandedDebugIds;
|
|
1176
1177
|
private pendingProgressTimers;
|
|
1178
|
+
private pendingServerRefreshTimers;
|
|
1179
|
+
private pendingRunStatusRequests;
|
|
1180
|
+
private runStatusMethodSupported;
|
|
1177
1181
|
private readonly supportTicketStorageKey;
|
|
1178
1182
|
private readonly promptFavoritesStorageKey;
|
|
1179
1183
|
private mongoReadCache;
|
|
@@ -1289,6 +1293,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1289
1293
|
private findLocalMessageById;
|
|
1290
1294
|
private schedulePendingProgress;
|
|
1291
1295
|
private clearPendingProgressTimers;
|
|
1296
|
+
private schedulePendingServerRefresh;
|
|
1297
|
+
private clearPendingServerRefresh;
|
|
1298
|
+
private refreshPendingRunStatus;
|
|
1299
|
+
private applyPendingRunStatusResponse;
|
|
1292
1300
|
private applyServerMessageToLocal;
|
|
1293
1301
|
private ensureConversationId;
|
|
1294
1302
|
private ensureLocalConversationForSend;
|
|
@@ -2997,7 +3005,7 @@ interface CanComponentDeactivate {
|
|
|
2997
3005
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2998
3006
|
}
|
|
2999
3007
|
declare class CanDeactivateGuard {
|
|
3000
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3008
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
3001
3009
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3002
3010
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3003
3011
|
}
|