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