@prodact.ai/sdk 0.0.9 → 0.0.10

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.js CHANGED
@@ -2069,11 +2069,13 @@ Check the Network tab in DevTools for more details.`
2069
2069
  role: "assistant",
2070
2070
  content: result.message?.content || result.response || "",
2071
2071
  visualFlows: result.flows || [],
2072
- images: result.images || []
2072
+ images: result.images || [],
2073
+ userFlows: result.userFlows || []
2073
2074
  };
2074
2075
  await this.log("info", "Chat response received", {
2075
2076
  hasFlows: (result.flows || []).length > 0,
2076
- hasImages: (result.images || []).length > 0
2077
+ hasImages: (result.images || []).length > 0,
2078
+ hasUserFlows: (result.userFlows || []).length > 0
2077
2079
  });
2078
2080
  this.emit("message", chatMessage);
2079
2081
  return chatMessage;