@pluno/product-agent-web 0.1.107 → 0.1.109

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/index.d.ts CHANGED
@@ -29,6 +29,7 @@ export declare const PLUNO_PRODUCT_AGENT_SDK_PREVIEW_HOST_SELECTOR = ".pluno-pa-
29
29
  export type ProductAgentMessage = {
30
30
  id: string;
31
31
  role: "user" | "assistant" | "tool" | "system";
32
+ phase?: "commentary" | "final_answer";
32
33
  content: string;
33
34
  createdAt: string;
34
35
  respondsToUserMessageId?: string;
@@ -107,6 +108,8 @@ export type ProductAgentState = {
107
108
  appearance: ProductAgentAppearance | null;
108
109
  messages: ProductAgentMessage[];
109
110
  assistantDraft: string;
111
+ assistantDraftItemId: string | null;
112
+ assistantDraftPhase: "commentary" | "final_answer" | null;
110
113
  assistantDraftRespondsToUserMessageId: string | null;
111
114
  assistantDraftRunId: string | null;
112
115
  isThinking: boolean;