@pluno/product-agent-web 0.1.276 → 0.1.278
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 +1 -1
- package/dist/core/conversation/contracts.d.ts +1 -0
- package/dist/core/conversation/deliveryContracts.d.ts +1 -0
- package/dist/product-agent-runtime.cjs +1 -1
- package/dist/product-agent-runtime.js +268 -250
- package/dist/product-agent-sdk.js +525 -490
- package/dist/product-agent-widget.js +968 -951
- package/dist/runtimeClient.d.ts +4 -0
- package/package.json +1 -1
package/dist/runtimeClient.d.ts
CHANGED
|
@@ -86,6 +86,8 @@ export type ProductAgentRuntimeCommand = {
|
|
|
86
86
|
clientMessageId: string;
|
|
87
87
|
} | {
|
|
88
88
|
type: "conversation.stage";
|
|
89
|
+
reconcileAcceptance?: boolean;
|
|
90
|
+
selectionKey?: string;
|
|
89
91
|
initiatedBy?: "pluno";
|
|
90
92
|
invocation?: ProductAgentInvocation | "pluno";
|
|
91
93
|
automationOnboarding?: boolean;
|
|
@@ -112,6 +114,7 @@ export type ProductAgentRuntimeCommand = {
|
|
|
112
114
|
attachments?: ProductAgentAttachment[];
|
|
113
115
|
};
|
|
114
116
|
export type ProductAgentRuntimeCommandResult = {
|
|
117
|
+
submissionAccepted?: boolean;
|
|
115
118
|
clientMessageId?: string | null;
|
|
116
119
|
sessionHistoryPage?: ProductAgentSessionHistoryPage;
|
|
117
120
|
};
|
|
@@ -194,6 +197,7 @@ export declare class ProductAgentRemoteRuntimeClient implements ProductAgentRunt
|
|
|
194
197
|
private stagedProactiveSuggestionClientMessageId;
|
|
195
198
|
private readonly pendingTransfers;
|
|
196
199
|
private readonly submissionPreviews;
|
|
200
|
+
private readonly submissionRetries;
|
|
197
201
|
private submissionGeneration;
|
|
198
202
|
private pendingStop;
|
|
199
203
|
private stopError;
|
package/package.json
CHANGED