@pluno/product-agent-web 0.1.277 → 0.1.279

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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pluno/product-agent-web",
3
- "version": "0.1.277",
3
+ "version": "0.1.279",
4
4
  "description": "Browser SDK and default widget for embedding Pluno Product Agent into customer web apps.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",