@pluno/product-agent-web 0.1.149 → 0.1.151
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 +4 -0
- package/dist/product-agent-sdk.js +554 -518
- package/dist/product-agent-widget.js +3206 -3061
- package/dist/scheduledCheckIn.d.ts +6 -0
- package/package.json +1 -1
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 = {
|
|
@@ -226,6 +227,7 @@ export declare class PlunoProductAgent {
|
|
|
226
227
|
private runAckResyncRetryTimer;
|
|
227
228
|
private activeClientMessageId;
|
|
228
229
|
private activeUserMessageEvent;
|
|
230
|
+
private readonly browserConnectionInterruptedClientMessageIds;
|
|
229
231
|
private latestRecoverableClientMessageId;
|
|
230
232
|
private lastUserMessagePageUrl;
|
|
231
233
|
private thinkingWatchdogResyncAttemptsByClientMessageId;
|
|
@@ -330,6 +332,8 @@ export declare class PlunoProductAgent {
|
|
|
330
332
|
private replaceTimedOutSocket;
|
|
331
333
|
private setState;
|
|
332
334
|
private setReconnectingState;
|
|
335
|
+
private rememberBrowserConnectionInterruptionForActiveRun;
|
|
336
|
+
private getRunRecoveryExhaustedErrorMessage;
|
|
333
337
|
private emit;
|
|
334
338
|
}
|
|
335
339
|
declare global {
|