@parhelia/core 0.1.12393 → 0.1.12397
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/editor/PictureCropper.js +9 -4
- package/dist/editor/PictureCropper.js.map +1 -1
- package/dist/editor/PictureEditor.js +12 -13
- package/dist/editor/PictureEditor.js.map +1 -1
- package/dist/editor/ai/dialogs/agentDialogTypes.d.ts +1 -1
- package/dist/editor/client/editContext.d.ts +4 -0
- package/dist/editor/client/editContext.js.map +1 -1
- package/dist/editor/pictureRawValue.d.ts +3 -0
- package/dist/editor/pictureRawValue.js +30 -0
- package/dist/editor/pictureRawValue.js.map +1 -0
- package/dist/editor/settings/panels/AgentProfileEditorPanel.d.ts +14 -0
- package/dist/editor/settings/panels/AgentProfileEditorPanel.js +7 -0
- package/dist/editor/settings/panels/AgentProfileEditorPanel.js.map +1 -0
- package/dist/editor/settings/panels/AgentsPanel.js +2 -2
- package/dist/editor/settings/panels/AgentsPanel.js.map +1 -1
- package/dist/editor/settings/panels/ProjectTemplatesPanel.js +146 -8
- package/dist/editor/settings/panels/ProjectTemplatesPanel.js.map +1 -1
- package/dist/revision.d.ts +2 -2
- package/dist/revision.js +2 -2
- package/dist/task-board/TaskBoardWorkspace.js +3 -2
- package/dist/task-board/TaskBoardWorkspace.js.map +1 -1
- package/dist/task-board/components/ProjectDashboard.d.ts +4 -0
- package/dist/task-board/components/ProjectDashboard.js +1 -1
- package/dist/task-board/components/ProjectDashboard.js.map +1 -1
- package/dist/task-board/components/ProjectListContent.d.ts +1 -1
- package/dist/task-board/components/ProjectListContent.js +4 -1
- package/dist/task-board/components/ProjectListContent.js.map +1 -1
- package/dist/task-board/components/ProjectOverviewContent.d.ts +17 -0
- package/dist/task-board/components/ProjectOverviewContent.js +134 -0
- package/dist/task-board/components/ProjectOverviewContent.js.map +1 -0
- package/dist/task-board/components/ProjectSelector.d.ts +1 -1
- package/dist/task-board/components/ProjectSelector.js +1 -1
- package/dist/task-board/components/ProjectSelector.js.map +1 -1
- package/dist/task-board/components/TaskDetailPanel.js +59 -9
- package/dist/task-board/components/TaskDetailPanel.js.map +1 -1
- package/dist/task-board/services/taskService.d.ts +4 -1
- package/dist/task-board/services/taskService.js +3 -0
- package/dist/task-board/services/taskService.js.map +1 -1
- package/dist/task-board/taskBoardNavStore.d.ts +3 -1
- package/dist/task-board/taskBoardNavStore.js.map +1 -1
- package/dist/task-board/types.d.ts +30 -0
- package/package.json +1 -1
|
@@ -21,9 +21,33 @@ export type Project = {
|
|
|
21
21
|
createdAt: string;
|
|
22
22
|
updatedAt: string;
|
|
23
23
|
};
|
|
24
|
+
export type ProjectTaskCounts = {
|
|
25
|
+
total: number;
|
|
26
|
+
todo: number;
|
|
27
|
+
waiting: number;
|
|
28
|
+
inProgress: number;
|
|
29
|
+
review: number;
|
|
30
|
+
done: number;
|
|
31
|
+
};
|
|
32
|
+
export type ProjectAttentionSummary = {
|
|
33
|
+
total: number;
|
|
34
|
+
blocked: number;
|
|
35
|
+
approval: number;
|
|
36
|
+
input: number;
|
|
37
|
+
failed: number;
|
|
38
|
+
budget: number;
|
|
39
|
+
/** Waiting for a free agent slot (project concurrency) */
|
|
40
|
+
capacity?: number;
|
|
41
|
+
};
|
|
42
|
+
export type ProjectOverviewSummary = {
|
|
43
|
+
taskCounts: ProjectTaskCounts;
|
|
44
|
+
attention: ProjectAttentionSummary;
|
|
45
|
+
directSubprojectCount: number;
|
|
46
|
+
};
|
|
24
47
|
export type ProjectWithPermission = {
|
|
25
48
|
project: Project;
|
|
26
49
|
permission: ProjectPermission;
|
|
50
|
+
overview?: ProjectOverviewSummary | null;
|
|
27
51
|
};
|
|
28
52
|
export type ProjectTemplate = {
|
|
29
53
|
id: string;
|
|
@@ -298,6 +322,12 @@ export type AddTaskDependencyRequest = {
|
|
|
298
322
|
dependsOnTaskId: string;
|
|
299
323
|
dependencyType?: TaskDependencyType;
|
|
300
324
|
};
|
|
325
|
+
export type RemoveTaskDependencyRequest = {
|
|
326
|
+
dependencyId?: string;
|
|
327
|
+
taskId?: string;
|
|
328
|
+
dependsOnTaskId?: string;
|
|
329
|
+
dependencyType?: TaskDependencyType;
|
|
330
|
+
};
|
|
301
331
|
export type UploadTaskAttachmentRequest = {
|
|
302
332
|
taskId: string;
|
|
303
333
|
fileName: string;
|