@zero-library/chat-copilot 3.1.8 → 3.1.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.d.mts CHANGED
@@ -91,6 +91,7 @@ interface AgentInfo {
91
91
  tagIds?: string[];
92
92
  spec?: AgentSpec;
93
93
  config?: AgentConfig;
94
+ userInput?: Variable[];
94
95
  }
95
96
 
96
97
  /**
@@ -662,6 +663,8 @@ interface ChatLayout {
662
663
  chatHeader?: RenderControl<void, ChatLayoutHeader>;
663
664
  /** 免责声明渲染控制 */
664
665
  disclaimerNotice?: RenderControl<void, void>;
666
+ /** 用户输入渲染控制 */
667
+ userInput?: RenderControl<void, void>;
665
668
  }
666
669
 
667
670
  /**
package/dist/index.d.ts CHANGED
@@ -91,6 +91,7 @@ interface AgentInfo {
91
91
  tagIds?: string[];
92
92
  spec?: AgentSpec;
93
93
  config?: AgentConfig;
94
+ userInput?: Variable[];
94
95
  }
95
96
 
96
97
  /**
@@ -662,6 +663,8 @@ interface ChatLayout {
662
663
  chatHeader?: RenderControl<void, ChatLayoutHeader>;
663
664
  /** 免责声明渲染控制 */
664
665
  disclaimerNotice?: RenderControl<void, void>;
666
+ /** 用户输入渲染控制 */
667
+ userInput?: RenderControl<void, void>;
665
668
  }
666
669
 
667
670
  /**