@tutti-os/workspace-issue-manager 0.0.7 → 0.0.8
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { WorkspaceFileReferenceAdapter, WorkspaceFileReference, WorkspaceFileReferenceDirectoryListing, WorkspaceFileReferencePrefetchReason, WorkspaceFileReferencePrefetchState, WorkspaceFileReferencePreview, WorkspaceFileReferencePreviewKind, WorkspaceFileReferenceTreeDirectory, WorkspaceFileReferenceTreeEntry, WorkspaceFileReferenceTreeSnapshot } from '@tutti-os/workspace-file-reference/contracts';
|
|
2
|
-
import { WorkspaceUserProjectApi,
|
|
2
|
+
import { WorkspaceUserProjectApi, WorkspaceUserProjectService, WorkspaceUserProject } from '@tutti-os/workspace-user-project/contracts';
|
|
3
3
|
|
|
4
4
|
type IssueManagerStatus = "not_started" | "running" | "in_progress" | "pending_acceptance" | "completed" | "failed" | "canceled" | (string & {});
|
|
5
5
|
type IssueManagerPriority = "high" | "medium" | "low" | (string & {});
|
|
@@ -396,8 +396,8 @@ interface IssueManagerAgentSessionOpener {
|
|
|
396
396
|
openSession(input: IssueManagerAgentSessionOpenInput): Promise<void> | void;
|
|
397
397
|
}
|
|
398
398
|
type IssueManagerExecutionDirectoryProject = WorkspaceUserProject;
|
|
399
|
-
type IssueManagerExecutionDirectoryPicker = Pick<WorkspaceUserProjectApi, "
|
|
400
|
-
service?:
|
|
399
|
+
type IssueManagerExecutionDirectoryPicker = Pick<WorkspaceUserProjectApi, "selectDirectory" | "use"> & {
|
|
400
|
+
service?: WorkspaceUserProjectService | null;
|
|
401
401
|
};
|
|
402
402
|
interface IssueManagerAgentBreakdownRequest extends IssueManagerScope {
|
|
403
403
|
executionDirectory?: string | null;
|
package/dist/ui/index.js
CHANGED
package/dist/workbench/index.js
CHANGED
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.8",
|
|
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.8",
|
|
58
|
+
"@tutti-os/ui-react-hooks": "0.0.8",
|
|
59
|
+
"@tutti-os/ui-rich-text": "0.0.8",
|
|
60
|
+
"@tutti-os/ui-system": "0.0.8",
|
|
61
|
+
"@tutti-os/workbench-surface": "0.0.8",
|
|
62
|
+
"@tutti-os/workspace-file-reference": "0.0.8",
|
|
63
|
+
"@tutti-os/workspace-file-preview": "0.0.8",
|
|
64
|
+
"@tutti-os/workspace-user-project": "0.0.8",
|
|
65
65
|
"valtio": "^2.3.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|