@pluno/product-agent-web 0.1.81 → 0.1.83
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 +1 -0
- package/dist/markdown.d.ts +1 -0
- package/dist/product-agent-sdk.js +438 -471
- package/dist/product-agent-widget.js +746 -684
- package/dist/scheduledChatContinuations.d.ts +3 -11
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const SCHEDULED_CHAT_CONTINUATION_STORAGE_KEY_PREFIX = "pluno.productAgent.scheduledChatContinuation.";
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const SCHEDULED_CHAT_CONTINUATION_CHANGED_EVENT = "pluno:scheduled-chat-continuation-changed";
|
|
3
3
|
export declare const SCHEDULED_CHAT_CONTINUATION_EXPIRY_AFTER_DUE_MS: number;
|
|
4
4
|
export type ScheduledChatContinuationTask = {
|
|
5
5
|
id: string;
|
|
@@ -29,19 +29,11 @@ export type ScheduledChatContinuationScheduler = {
|
|
|
29
29
|
isAvailable: () => boolean;
|
|
30
30
|
destroy: () => void;
|
|
31
31
|
};
|
|
32
|
-
export declare function withScheduledChatContinuationContext(javascript: string, { callId }: {
|
|
33
|
-
callId: string;
|
|
34
|
-
}): string;
|
|
35
|
-
export declare function persistScheduledChatContinuationFromToolResult(rawOutput: unknown, { clientId, sessionId, callId, }: {
|
|
36
|
-
clientId: string;
|
|
37
|
-
sessionId: string;
|
|
38
|
-
callId: string;
|
|
39
|
-
}, persistTask: (task: ScheduledChatContinuationTask) => Promise<boolean>): Promise<unknown>;
|
|
40
|
-
export declare function extractScheduledChatContinuationTask(rawOutput: unknown, { clientId, sessionId, callId, }: {
|
|
32
|
+
export declare function withScheduledChatContinuationContext(javascript: string, { clientId, sessionId, callId, }: {
|
|
41
33
|
clientId: string;
|
|
42
34
|
sessionId: string;
|
|
43
35
|
callId: string;
|
|
44
|
-
}):
|
|
36
|
+
}): string;
|
|
45
37
|
export declare function createScheduledChatContinuationScheduler(options: ScheduledChatContinuationSchedulerOptions): ScheduledChatContinuationScheduler;
|
|
46
38
|
export declare function isScheduledChatContinuationTask(value: unknown): value is ScheduledChatContinuationTask;
|
|
47
39
|
export {};
|
package/package.json
CHANGED