@pluno/product-agent-web 0.1.211 → 0.1.213

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.
@@ -149,6 +149,7 @@ export declare class ProductAgentRemoteRuntimeClient implements ProductAgentRunt
149
149
  private interactions;
150
150
  private account;
151
151
  private stagedProactiveSuggestionClientMessageId;
152
+ private readonly unacknowledgedSubmissions;
152
153
  private operationQueue;
153
154
  private destroyed;
154
155
  constructor(initialState: ProductAgentState, adapter: ProductAgentRuntimeClientAdapter, model?: ProductAgentModel);
@@ -9,6 +9,8 @@ export type UiInvariantSnapshot = {
9
9
  visibleSessionIds: string[];
10
10
  welcome?: boolean;
11
11
  runtimeItemCount?: number;
12
+ thinkingSequence?: ("user" | "thinking")[];
13
+ thinkingIdleMs?: number;
12
14
  };
13
15
  declare const INVARIANT_MESSAGES: {
14
16
  readonly "duplicate-message-item": "A canonical message rendered more than once.";
@@ -20,6 +22,8 @@ declare const INVARIANT_MESSAGES: {
20
22
  readonly "terminal-response-reactivated": "A terminal response became active again.";
21
23
  readonly "terminal-history-not-append-only": "An established terminal outcome disappeared or changed order.";
22
24
  readonly "runtime-transcript-not-rendered": "A nonempty runtime transcript is displaying starter prompts.";
25
+ readonly "thinking-groups-without-user-message": "Multiple thinking groups appeared without a user message between them.";
26
+ readonly "thinking-without-progress": "Thinking remained visible without progress for five minutes.";
23
27
  };
24
28
  export type UiInvariantFinding = {
25
29
  code: keyof typeof INVARIANT_MESSAGES;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pluno/product-agent-web",
3
- "version": "0.1.211",
3
+ "version": "0.1.213",
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",