@tutti-os/workspace-issue-manager 0.0.4 → 0.0.5
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/{chunk-RJX54QWL.js → chunk-UXVTGSOH.js} +443 -345
- package/dist/chunk-UXVTGSOH.js.map +1 -0
- package/dist/contracts/index.d.ts +2 -0
- package/dist/ui/index.js +1 -1
- package/dist/workbench/index.js +1 -1
- package/openapi/issue-manager.v1.yaml +4 -0
- package/package.json +9 -9
- package/dist/chunk-RJX54QWL.js.map +0 -1
|
@@ -11,6 +11,7 @@ interface IssueManagerStatusCounts {
|
|
|
11
11
|
all: number;
|
|
12
12
|
notStarted: number;
|
|
13
13
|
running: number;
|
|
14
|
+
inProgress: number;
|
|
14
15
|
pendingAcceptance: number;
|
|
15
16
|
completed: number;
|
|
16
17
|
failed: number;
|
|
@@ -399,6 +400,7 @@ type IssueManagerExecutionDirectoryPicker = Pick<WorkspaceUserProjectApi, "list"
|
|
|
399
400
|
service?: WorkspaceUserProjectServiceLike | null;
|
|
400
401
|
};
|
|
401
402
|
interface IssueManagerAgentBreakdownRequest extends IssueManagerScope {
|
|
403
|
+
executionDirectory?: string | null;
|
|
402
404
|
issueDetail: {
|
|
403
405
|
contextRefs: readonly IssueManagerContextRef[];
|
|
404
406
|
issue: IssueManagerIssueSummary;
|
package/dist/ui/index.js
CHANGED
package/dist/workbench/index.js
CHANGED
|
@@ -934,6 +934,7 @@ components:
|
|
|
934
934
|
- all
|
|
935
935
|
- notStarted
|
|
936
936
|
- running
|
|
937
|
+
- inProgress
|
|
937
938
|
- pendingAcceptance
|
|
938
939
|
- completed
|
|
939
940
|
- failed
|
|
@@ -948,6 +949,9 @@ components:
|
|
|
948
949
|
running:
|
|
949
950
|
type: integer
|
|
950
951
|
minimum: 0
|
|
952
|
+
inProgress:
|
|
953
|
+
type: integer
|
|
954
|
+
minimum: 0
|
|
951
955
|
pendingAcceptance:
|
|
952
956
|
type: integer
|
|
953
957
|
minimum: 0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tutti-os/workspace-issue-manager",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -54,14 +54,14 @@
|
|
|
54
54
|
"directory": "packages/workspace/issue-manager"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@tutti-os/ui-i18n-runtime": "0.0.
|
|
58
|
-
"@tutti-os/ui-react-hooks": "0.0.
|
|
59
|
-
"@tutti-os/ui-rich-text": "0.0.
|
|
60
|
-
"@tutti-os/ui-system": "0.0.
|
|
61
|
-
"@tutti-os/workbench-surface": "0.0.
|
|
62
|
-
"@tutti-os/workspace-file-reference": "0.0.
|
|
63
|
-
"@tutti-os/workspace-file-preview": "0.0.
|
|
64
|
-
"@tutti-os/workspace-user-project": "0.0.
|
|
57
|
+
"@tutti-os/ui-i18n-runtime": "0.0.5",
|
|
58
|
+
"@tutti-os/ui-react-hooks": "0.0.5",
|
|
59
|
+
"@tutti-os/ui-rich-text": "0.0.5",
|
|
60
|
+
"@tutti-os/ui-system": "0.0.5",
|
|
61
|
+
"@tutti-os/workbench-surface": "0.0.5",
|
|
62
|
+
"@tutti-os/workspace-file-reference": "0.0.5",
|
|
63
|
+
"@tutti-os/workspace-file-preview": "0.0.5",
|
|
64
|
+
"@tutti-os/workspace-user-project": "0.0.5",
|
|
65
65
|
"valtio": "^2.3.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|