@pluno/product-agent-web 0.1.274 → 0.1.276
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/conversationAdapters.d.ts +3 -2
- package/dist/core/conversation/contracts.d.ts +7 -0
- package/dist/core/conversation/deliveryContracts.d.ts +3 -1
- package/dist/core/conversation/selectors.d.ts +3 -0
- package/dist/core/conversation/state.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/operationTiming.d.ts +1 -1
- package/dist/product-agent-runtime.cjs +1 -1
- package/dist/product-agent-runtime.js +235 -185
- package/dist/product-agent-sdk.js +1488 -1418
- package/dist/product-agent-widget.js +2943 -2911
- package/dist/runtimeClient.d.ts +2 -0
- package/package.json +1 -1
package/dist/runtimeClient.d.ts
CHANGED
|
@@ -198,6 +198,7 @@ export declare class ProductAgentRemoteRuntimeClient implements ProductAgentRunt
|
|
|
198
198
|
private pendingStop;
|
|
199
199
|
private stopError;
|
|
200
200
|
private readonly stopPreviews;
|
|
201
|
+
private readonly durabilityWaiters;
|
|
201
202
|
private operationQueue;
|
|
202
203
|
private destroyed;
|
|
203
204
|
constructor(initialState: ProductAgentState, adapter: ProductAgentRuntimeClientAdapter, model?: ProductAgentModel);
|
|
@@ -228,6 +229,7 @@ export declare class ProductAgentRemoteRuntimeClient implements ProductAgentRunt
|
|
|
228
229
|
retryLastMessage(userMessageId?: string): Promise<boolean>;
|
|
229
230
|
createLocalAttachment(file: File): ProductAgentAttachment;
|
|
230
231
|
stop(): Promise<void>;
|
|
232
|
+
private waitForSubmissionDurability;
|
|
231
233
|
private cancelPendingSubmissions;
|
|
232
234
|
startNewSession(options?: {
|
|
233
235
|
notifyTransport?: boolean;
|
package/package.json
CHANGED