@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.
- package/dist/product-agent-runtime.cjs +1 -1
- package/dist/product-agent-runtime.js +192 -175
- package/dist/product-agent-sdk.js +85 -68
- package/dist/product-agent-widget.js +1963 -1909
- package/dist/runtimeClient.d.ts +1 -0
- package/dist/uiInvariants.d.ts +4 -0
- package/package.json +1 -1
package/dist/runtimeClient.d.ts
CHANGED
|
@@ -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);
|
package/dist/uiInvariants.d.ts
CHANGED
|
@@ -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