@pluno/product-agent-web 0.1.60 → 0.1.62
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 +7 -0
- package/dist/product-agent-sdk.js +402 -359
- package/dist/product-agent-widget.js +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -160,6 +160,9 @@ export declare class PlunoProductAgent {
|
|
|
160
160
|
private sessionUserFilesApiCleanup;
|
|
161
161
|
private transientStarterPromptsRequestInFlight;
|
|
162
162
|
private transientStarterPromptsRequestAttempted;
|
|
163
|
+
private locationChangeCleanup;
|
|
164
|
+
private starterPromptUrlRefreshTimer;
|
|
165
|
+
private lastStarterPromptPageUrl;
|
|
163
166
|
private state;
|
|
164
167
|
private constructor();
|
|
165
168
|
static init(options: ProductAgentInitOptions): Promise<PlunoProductAgent>;
|
|
@@ -190,6 +193,10 @@ export declare class PlunoProductAgent {
|
|
|
190
193
|
private getUploadToken;
|
|
191
194
|
private sendNow;
|
|
192
195
|
private requestTransientStarterPrompts;
|
|
196
|
+
private startStarterPromptUrlWatcher;
|
|
197
|
+
private handleStarterPromptUrlChange;
|
|
198
|
+
private refreshStarterPromptsForCurrentUrl;
|
|
199
|
+
private clearStarterPromptUrlRefreshTimer;
|
|
193
200
|
private flushQueuedClientEvents;
|
|
194
201
|
private handleServerEvent;
|
|
195
202
|
private retryAfterRetryableError;
|