@pluno/product-agent-web 0.1.169 → 0.1.170
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 +2 -0
- package/dist/product-agent-sdk.js +588 -570
- package/dist/product-agent-widget.js +3209 -3118
- package/dist/taskPageTitle.d.ts +23 -0
- package/dist/turnStatusLabel.d.ts +3 -0
- package/dist/widget.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ProductAgentTaskStatus } from "./taskPageTitle";
|
|
1
2
|
export type ProductAgentModel = "gpt-5.4-nano" | "gpt-5.4-mini" | "gpt-5.4" | "gpt-5.6-luna" | "gpt-5.6-terra" | "gpt-5.6-sol";
|
|
2
3
|
export type ProductAgentEntrySurface = "extension_sidepanel" | "extension_widget" | "main_web_chat" | "whatsapp" | "automation" | "mcp" | "embedded_widget" | "embedded_custom_ui";
|
|
3
4
|
export type ProductAgentProductVariant = "personal" | "customer_embedded";
|
|
@@ -137,6 +138,7 @@ export type ProductAgentState = {
|
|
|
137
138
|
pendingMessageStatus: "sending" | "reconnecting" | null;
|
|
138
139
|
turnPhase: ProductAgentTurnPhase | null;
|
|
139
140
|
isThinking: boolean;
|
|
141
|
+
taskStatus: ProductAgentTaskStatus | null;
|
|
140
142
|
isRetrying: boolean;
|
|
141
143
|
lastError: string | null;
|
|
142
144
|
lastErrorCode: string | null;
|