@wacht/jsx 1.0.0-beta.35 → 1.0.0-beta.36
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.cjs.js +127 -127
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.es.js +2528 -2503
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ import { OrganizationMembership } from '@wacht/types';
|
|
|
56
56
|
import { OrganizationMembershipWithOrganization } from '@wacht/types';
|
|
57
57
|
import { OrganizationRole } from '@wacht/types';
|
|
58
58
|
import { OrganizationUpdate } from '@wacht/types';
|
|
59
|
+
import { PendingQuestion } from '@wacht/types';
|
|
59
60
|
import { ProfileCompletionData } from '@wacht/types';
|
|
60
61
|
import { ProfileCompletionProps } from '@wacht/types';
|
|
61
62
|
import { ProjectTaskBoardItem } from '@wacht/types';
|
|
@@ -1044,7 +1045,7 @@ export declare function useAgentThreadConversation({ threadId, initialThread, pl
|
|
|
1044
1045
|
executionStatus: FrontendStatus;
|
|
1045
1046
|
isWaitingForInput: boolean;
|
|
1046
1047
|
pendingApprovalRequest: ThreadPendingApprovalRequestState | null;
|
|
1047
|
-
|
|
1048
|
+
pendingClarificationRequest: PendingQuestion | null;
|
|
1048
1049
|
hasMoreMessages: boolean;
|
|
1049
1050
|
isLoadingMore: boolean;
|
|
1050
1051
|
messagesLoading: boolean;
|
|
@@ -1053,6 +1054,7 @@ export declare function useAgentThreadConversation({ threadId, initialThread, pl
|
|
|
1053
1054
|
refreshMessages: () => Promise<void>;
|
|
1054
1055
|
sendMessage: (message: string, files?: File[]) => Promise<void>;
|
|
1055
1056
|
submitApprovalResponse: (requestMessageId: string, approvals: ToolApprovalDecision[]) => Promise<boolean>;
|
|
1057
|
+
submitAnswer: (submission: AnswerSubmission) => Promise<boolean>;
|
|
1056
1058
|
clearMessages: () => void;
|
|
1057
1059
|
loadMoreMessages: () => Promise<void>;
|
|
1058
1060
|
cancelExecution: () => Promise<void>;
|