feat(tui): show project copy in session list (#31421)
This commit is contained in:
@@ -3743,7 +3743,10 @@ export type ConfigV2ExperimentalPolicy = {
|
||||
resource: string
|
||||
}
|
||||
|
||||
export type ProjectDirectories = Array<string>
|
||||
export type ProjectDirectories = Array<{
|
||||
directory: string
|
||||
type: "main" | "root" | "git_worktree"
|
||||
}>
|
||||
|
||||
export type ProjectCopyCopy = {
|
||||
directory: string
|
||||
|
||||
@@ -23864,7 +23864,18 @@
|
||||
"ProjectDirectories": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"directory": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["main", "root", "git_worktree"]
|
||||
}
|
||||
},
|
||||
"required": ["directory", "type"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"ProjectCopyCopy": {
|
||||
|
||||
Reference in New Issue
Block a user