@pluno/product-agent-web 0.1.71 → 0.1.72
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 +3 -2
- package/dist/product-agent-sdk.js +669 -557
- package/dist/product-agent-widget.js +638 -617
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -177,9 +177,8 @@ export declare class PlunoProductAgent {
|
|
|
177
177
|
private activeClientMessageId;
|
|
178
178
|
private activeUserMessageEvent;
|
|
179
179
|
private latestRecoverableClientMessageId;
|
|
180
|
-
private runAckRecoveryRetryAttemptsByClientMessageId;
|
|
181
180
|
private thinkingWatchdogResyncAttemptsByClientMessageId;
|
|
182
|
-
private
|
|
181
|
+
private retryableClientMessageId;
|
|
183
182
|
private runtimeHelperJavascript;
|
|
184
183
|
private readonly attachmentFiles;
|
|
185
184
|
private readonly attachmentBlobCache;
|
|
@@ -202,6 +201,7 @@ export declare class PlunoProductAgent {
|
|
|
202
201
|
sendMessage(content: string, options?: {
|
|
203
202
|
attachments?: ProductAgentAttachment[];
|
|
204
203
|
}): string | null;
|
|
204
|
+
retryLastMessage(): boolean;
|
|
205
205
|
createLocalAttachment(file: File): ProductAgentAttachment;
|
|
206
206
|
uploadAttachment(file: File): Promise<ProductAgentAttachment>;
|
|
207
207
|
private startBackgroundAttachmentUploads;
|
|
@@ -230,6 +230,7 @@ export declare class PlunoProductAgent {
|
|
|
230
230
|
private flushQueuedClientEvents;
|
|
231
231
|
private handleServerEvent;
|
|
232
232
|
private retryAfterRetryableError;
|
|
233
|
+
private retryAfterInterruptedRun;
|
|
233
234
|
private clearRetryTimers;
|
|
234
235
|
private rejectPendingSessionHistoryRequests;
|
|
235
236
|
private markThinkingProgress;
|