@wacht/jsx 1.0.0-beta.34 → 1.0.0-beta.35
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 +38 -38
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.es.js +1297 -1280
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { ActorMcpServerSummary } from '@wacht/types';
|
|
|
3
3
|
import { ActorProject } from '@wacht/types';
|
|
4
4
|
import { Agent } from '@wacht/types';
|
|
5
5
|
import { AgentThread } from '@wacht/types';
|
|
6
|
+
import { AnswerSubmission } from '@wacht/types';
|
|
6
7
|
import { ApiAuditAnalyticsResponse } from '@wacht/types';
|
|
7
8
|
import { ApiAuditLogsResponse } from '@wacht/types';
|
|
8
9
|
import { ApiAuditTimeseriesResponse } from '@wacht/types';
|
|
@@ -1013,6 +1014,7 @@ export declare function useAgentThread(threadId?: string, enabled?: boolean): {
|
|
|
1013
1014
|
updateThread: (request: UpdateAgentThreadRequest) => Promise<ApiResult<AgentThread>>;
|
|
1014
1015
|
archiveThread: () => Promise<ApiResult<AgentThread>>;
|
|
1015
1016
|
unarchiveThread: () => Promise<ApiResult<AgentThread>>;
|
|
1017
|
+
submitAnswer: (submission: AnswerSubmission) => Promise<void>;
|
|
1016
1018
|
refetch: () => Promise<void>;
|
|
1017
1019
|
};
|
|
1018
1020
|
|
|
@@ -1342,6 +1344,7 @@ export declare function useProjectTaskBoardItem(projectId?: string, itemId?: str
|
|
|
1342
1344
|
archiveItem: () => Promise<ApiResult<ProjectTaskBoardItem>>;
|
|
1343
1345
|
unarchiveItem: () => Promise<ApiResult<ProjectTaskBoardItem>>;
|
|
1344
1346
|
cancelItem: () => Promise<ApiResult<ProjectTaskBoardItem>>;
|
|
1347
|
+
submitAnswer: (submission: AnswerSubmission) => Promise<ApiResult<ProjectTaskBoardItem>>;
|
|
1345
1348
|
getTaskWorkspaceFile: (path: string) => Promise<ApiResult<ProjectTaskWorkspaceFileContent>>;
|
|
1346
1349
|
listTaskWorkspaceDirectory: (path?: string) => Promise<ApiResult<ProjectTaskWorkspaceListing>>;
|
|
1347
1350
|
refetch: () => Promise<void>;
|