@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.mjs CHANGED
@@ -2026,11 +2026,13 @@ Check the Network tab in DevTools for more details.`
2026
2026
  role: "assistant",
2027
2027
  content: result.message?.content || result.response || "",
2028
2028
  visualFlows: result.flows || [],
2029
- images: result.images || []
2029
+ images: result.images || [],
2030
+ userFlows: result.userFlows || []
2030
2031
  };
2031
2032
  await this.log("info", "Chat response received", {
2032
2033
  hasFlows: (result.flows || []).length > 0,
2033
- hasImages: (result.images || []).length > 0
2034
+ hasImages: (result.images || []).length > 0,
2035
+ hasUserFlows: (result.userFlows || []).length > 0
2034
2036
  });
2035
2037
  this.emit("message", chatMessage);
2036
2038
  return chatMessage;