@pluno/product-agent-web 0.1.243 → 0.1.245
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/adapters/web/conversationPresentation.d.ts +1 -1
- package/dist/core/conversation/contracts.d.ts +1 -0
- package/dist/core/conversation/display.d.ts +1 -1
- package/dist/core/conversation/selectors.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/operationTiming.d.ts +1 -1
- package/dist/product-agent-runtime.cjs +1 -1
- package/dist/product-agent-runtime.js +2 -2
- package/dist/product-agent-sdk.js +5 -4
- package/dist/product-agent-widget.js +3422 -3407
- package/dist/runtimeClient.d.ts +2 -2
- package/package.json +1 -1
package/dist/runtimeClient.d.ts
CHANGED
|
@@ -135,7 +135,7 @@ export type ProductAgentRuntimeClient = {
|
|
|
135
135
|
}): Promise<string | null>;
|
|
136
136
|
getModel(): ProductAgentModel | undefined;
|
|
137
137
|
setModel(model: ProductAgentModel): void;
|
|
138
|
-
retryLastMessage(): boolean
|
|
138
|
+
retryLastMessage(): boolean | Promise<boolean>;
|
|
139
139
|
createLocalAttachment(file: File): ProductAgentAttachment;
|
|
140
140
|
stop(): void;
|
|
141
141
|
startNewSession(options?: {
|
|
@@ -209,7 +209,7 @@ export declare class ProductAgentRemoteRuntimeClient implements ProductAgentRunt
|
|
|
209
209
|
private sendMessageNow;
|
|
210
210
|
getModel(): ProductAgentModel | undefined;
|
|
211
211
|
setModel(model: ProductAgentModel): Promise<void>;
|
|
212
|
-
retryLastMessage(): boolean
|
|
212
|
+
retryLastMessage(): Promise<boolean>;
|
|
213
213
|
createLocalAttachment(file: File): ProductAgentAttachment;
|
|
214
214
|
stop(): Promise<void>;
|
|
215
215
|
private cancelPendingSubmissions;
|
package/package.json
CHANGED