@pluno/product-agent-web 0.1.148 → 0.1.150

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/dist/index.d.ts CHANGED
@@ -45,6 +45,7 @@ export type ProductAgentMessage = {
45
45
  steered?: boolean;
46
46
  retryable?: boolean;
47
47
  integrationAuthRequest?: ProductAgentIntegrationAuthRequest;
48
+ scheduledCheckInAt?: string;
48
49
  securitySettingsUrl?: string;
49
50
  };
50
51
  export type ProductAgentIntegrationAuthRequest = {
@@ -217,6 +218,9 @@ export declare class PlunoProductAgent {
217
218
  private retryAttemptsByClientMessageId;
218
219
  private retryTimersByClientMessageId;
219
220
  private readonly clientMessageIdsByUserMessageItemId;
221
+ private readonly backgroundSessionIds;
222
+ private readonly backgroundClientMessageIds;
223
+ private readonly deferredSessionUpdatedSessionIds;
220
224
  private readonly retryableFailureRunIdsAwaitingDone;
221
225
  private thinkingWatchdogTimer;
222
226
  private runAckWatchdogTimer;
@@ -286,6 +290,8 @@ export declare class PlunoProductAgent {
286
290
  private flushQueuedClientEvents;
287
291
  private flushPendingWarmupEvent;
288
292
  private handleServerEvent;
293
+ private shouldIgnoreBackgroundSessionEvent;
294
+ private rememberCurrentRunAsBackground;
289
295
  private retryAfterRetryableError;
290
296
  private retryAfterInterruptedRun;
291
297
  private clearRetryTimers;