@wacht/jsx 1.0.0-beta.53 → 1.0.0-beta.54

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
@@ -1054,7 +1054,7 @@ export declare function useAgentThreadAssignments(threadId?: string, options?: A
1054
1054
  refetch: () => Promise<void>;
1055
1055
  };
1056
1056
 
1057
- export declare function useAgentThreadConversation({ threadId, initialThread, platformAdapter, }: UseAgentThreadConversationProps): {
1057
+ export declare function useAgentThreadConversation({ threadId, initialThread, boardItemId, platformAdapter, }: UseAgentThreadConversationProps): {
1058
1058
  thread: AgentThread | null;
1059
1059
  threadState: AgentThread | null;
1060
1060
  threadStatus: string | undefined;
@@ -1090,6 +1090,8 @@ export declare function useAgentThreadConversation({ threadId, initialThread, pl
1090
1090
  declare interface UseAgentThreadConversationProps {
1091
1091
  threadId: string;
1092
1092
  initialThread?: AgentThread | null;
1093
+ /** Scope the conversation to a single task (board item). Omit = whole thread. */
1094
+ boardItemId?: string;
1093
1095
  platformAdapter?: {
1094
1096
  onPlatformEvent?: (eventName: string, eventData: unknown) => void;
1095
1097
  };