@pluno/product-agent-web 0.1.135 → 0.1.136
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 +2 -0
- package/dist/messageTimestamp.d.ts +1 -0
- package/dist/product-agent-sdk.js +748 -663
- package/dist/product-agent-widget.js +2478 -2298
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export type ProductAgentMessage = {
|
|
|
42
42
|
callId?: string;
|
|
43
43
|
attachments?: ProductAgentAttachment[];
|
|
44
44
|
loading?: boolean;
|
|
45
|
+
steered?: boolean;
|
|
45
46
|
retryable?: boolean;
|
|
46
47
|
integrationAuthRequest?: ProductAgentIntegrationAuthRequest;
|
|
47
48
|
securitySettingsUrl?: string;
|
|
@@ -275,6 +276,7 @@ export declare class PlunoProductAgent {
|
|
|
275
276
|
private scheduleThinkingWatchdog;
|
|
276
277
|
private clearThinkingWatchdog;
|
|
277
278
|
private handleRunAck;
|
|
279
|
+
private handleRunSteered;
|
|
278
280
|
private scheduleRunAckWatchdog;
|
|
279
281
|
private recoverMissedRunAck;
|
|
280
282
|
private scheduleRunAckResyncRetry;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function formatProductAgentMessageTimestamp(timestamp: string, now?: number, locales?: string | string[]): string;
|