@wacht/jsx 1.0.0-beta.7 → 1.0.0-beta.9
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 +563 -571
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +11 -11
- package/dist/index.es.js +5648 -5593
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1002,16 +1002,6 @@ export declare function useActorProjectSearch(options?: AgentSearchOptions): {
|
|
|
1002
1002
|
refetch: () => Promise<void>;
|
|
1003
1003
|
};
|
|
1004
1004
|
|
|
1005
|
-
export declare function useActors(options?: {
|
|
1006
|
-
includeArchived?: boolean;
|
|
1007
|
-
enabled?: boolean;
|
|
1008
|
-
}): {
|
|
1009
|
-
actors: Actor[];
|
|
1010
|
-
loading: boolean;
|
|
1011
|
-
error: any;
|
|
1012
|
-
refetch: () => Promise<void>;
|
|
1013
|
-
};
|
|
1014
|
-
|
|
1015
1005
|
export declare function useActorThreadSearch(options?: AgentSearchOptions): {
|
|
1016
1006
|
threads: AgentThread[];
|
|
1017
1007
|
loading: boolean;
|
|
@@ -1349,10 +1339,16 @@ export declare const useOrganizationMemberships: () => {
|
|
|
1349
1339
|
refetch: () => Promise<void>;
|
|
1350
1340
|
};
|
|
1351
1341
|
|
|
1352
|
-
export declare function useProjectTaskBoardItem(itemId?: string, enabled?: boolean, options?: ProjectTaskDetailOptions): {
|
|
1342
|
+
export declare function useProjectTaskBoardItem(projectId?: string, itemId?: string, enabled?: boolean, options?: ProjectTaskDetailOptions): {
|
|
1353
1343
|
item: ProjectTaskBoardItem | null;
|
|
1354
1344
|
events: ProjectTaskBoardItemEvent[];
|
|
1355
1345
|
assignments: ProjectTaskBoardItemAssignment[];
|
|
1346
|
+
eventsHasMore: boolean;
|
|
1347
|
+
eventsLoadingMore: boolean;
|
|
1348
|
+
loadMoreEvents: () => Promise<void>;
|
|
1349
|
+
assignmentsHasMore: boolean;
|
|
1350
|
+
assignmentsLoadingMore: boolean;
|
|
1351
|
+
loadMoreAssignments: () => Promise<void>;
|
|
1356
1352
|
taskWorkspace: ProjectTaskWorkspaceListing;
|
|
1357
1353
|
taskWorkspaceLoading: boolean;
|
|
1358
1354
|
taskWorkspaceError: any;
|
|
@@ -1365,6 +1361,8 @@ export declare function useProjectTaskBoardItem(itemId?: string, enabled?: boole
|
|
|
1365
1361
|
listTaskWorkspaceDirectory: (path?: string) => Promise<ProjectTaskWorkspaceListing>;
|
|
1366
1362
|
appendJournal: (request: AppendProjectTaskBoardItemJournalRequest, files?: File[]) => Promise<ProjectTaskBoardItemEvent>;
|
|
1367
1363
|
refetch: () => Promise<void>;
|
|
1364
|
+
refetchEvents: () => Promise<void>;
|
|
1365
|
+
refetchAssignments: () => Promise<void>;
|
|
1368
1366
|
refetchTaskWorkspace: () => Promise<void>;
|
|
1369
1367
|
};
|
|
1370
1368
|
|
|
@@ -1404,6 +1402,8 @@ export declare function useProjectThreads(projectId?: string, options?: {
|
|
|
1404
1402
|
threads: AgentThread[];
|
|
1405
1403
|
loading: boolean;
|
|
1406
1404
|
error: any;
|
|
1405
|
+
hasMore: boolean;
|
|
1406
|
+
nextCursor: string;
|
|
1407
1407
|
createThread: (request: CreateAgentThreadRequest) => Promise<AgentThread>;
|
|
1408
1408
|
createThreadForProject: (targetProjectId: string, request: CreateAgentThreadRequest) => Promise<AgentThread>;
|
|
1409
1409
|
updateThread: (threadId: string, request: UpdateAgentThreadRequest) => Promise<AgentThread>;
|