@pluno/product-agent-web 0.1.161 → 0.1.163
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 +10 -2
- package/dist/product-agent-sdk.js +828 -769
- package/dist/product-agent-widget.js +1604 -1543
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -217,13 +217,18 @@ export declare class PlunoProductAgent {
|
|
|
217
217
|
private networkBatchTimer;
|
|
218
218
|
private queuedNetworkEvents;
|
|
219
219
|
private queuedClientEvents;
|
|
220
|
-
private
|
|
220
|
+
private pendingPassiveWarmupEvent;
|
|
221
|
+
private pendingComposerWarmup;
|
|
222
|
+
private activeComposerWarmupId;
|
|
223
|
+
private activeComposerWarmupScope;
|
|
224
|
+
private pendingWarmupAckTimer;
|
|
221
225
|
private pendingSessionHistoryRequests;
|
|
222
226
|
private pendingSessionPinRequests;
|
|
223
227
|
private pendingSessionRenameRequests;
|
|
224
228
|
private readonly transportIdentity;
|
|
225
229
|
private retryAttemptsByClientMessageId;
|
|
226
230
|
private retryTimersByClientMessageId;
|
|
231
|
+
private readonly reportedHealthSignalKeys;
|
|
227
232
|
private readonly clientMessageIdsByUserMessageItemId;
|
|
228
233
|
private readonly backgroundSessionIds;
|
|
229
234
|
private readonly backgroundClientMessageIds;
|
|
@@ -303,7 +308,8 @@ export declare class PlunoProductAgent {
|
|
|
303
308
|
private refreshStarterPromptsForCurrentUrl;
|
|
304
309
|
private clearStarterPromptUrlRefreshTimer;
|
|
305
310
|
private flushQueuedClientEvents;
|
|
306
|
-
private
|
|
311
|
+
private flushPendingPassiveWarmup;
|
|
312
|
+
private flushPendingComposerWarmup;
|
|
307
313
|
private handleServerEvent;
|
|
308
314
|
private shouldIgnoreBackgroundSessionEvent;
|
|
309
315
|
private rememberCurrentRunAsBackground;
|
|
@@ -345,6 +351,8 @@ export declare class PlunoProductAgent {
|
|
|
345
351
|
private startHeartbeat;
|
|
346
352
|
private stopHeartbeat;
|
|
347
353
|
private clearHeartbeatAckTimer;
|
|
354
|
+
private clearPendingWarmupAckTimer;
|
|
355
|
+
private clearPendingComposerWarmup;
|
|
348
356
|
private clearSocketConnectTimer;
|
|
349
357
|
private clearSocketAuthTimer;
|
|
350
358
|
private clearSocketPhaseTimers;
|