This commit is contained in:
James Long 2026-06-11 10:06:41 -04:00
commit 78b7781ab9
18 changed files with 478 additions and 128 deletions

View file

@ -67,6 +67,7 @@ export type Event =
| EventQuestionV2Replied
| EventQuestionV2Rejected
| EventTodoUpdated
| EventProjectDirectoriesUpdated
| EventLspUpdated
| EventPermissionAsked
| EventPermissionReplied
@ -77,7 +78,6 @@ export type Event =
| EventMcpToolsChanged
| EventMcpBrowserOpenFailed
| EventCommandExecuted
| EventProjectDirectoriesUpdated
| EventProjectUpdated
| EventVcsBranchUpdated
| EventQuestionAsked
@ -1378,6 +1378,13 @@ export type GlobalEvent = {
todos: Array<Todo>
}
}
| {
id: string
type: "project.directories.updated"
properties: {
projectID: string
}
}
| {
id: string
type: "lsp.updated"
@ -1488,13 +1495,6 @@ export type GlobalEvent = {
messageID: string
}
}
| {
id: string
type: "project.directories.updated"
properties: {
projectID: string
}
}
| {
id: string
type: "project.updated"
@ -1937,6 +1937,10 @@ export type Config = {
watcher?: {
ignore?: Array<string>
}
projectCopy?: {
strategy?: "git_worktree"
directory?: string
}
snapshot?: boolean
plugin?: Array<
| string
@ -5005,6 +5009,14 @@ export type EventTodoUpdated = {
}
}
export type EventProjectDirectoriesUpdated = {
id: string
type: "project.directories.updated"
properties: {
projectID: string
}
}
export type EventLspUpdated = {
id: string
type: "lsp.updated"
@ -5070,14 +5082,6 @@ export type EventCommandExecuted = {
}
}
export type EventProjectDirectoriesUpdated = {
id: string
type: "project.directories.updated"
properties: {
projectID: string
}
}
export type EventProjectUpdated = {
id: string
type: "project.updated"
@ -7013,8 +7017,8 @@ export type ExperimentalProjectCopyRemoveResponse =
export type ExperimentalProjectCopyCreateData = {
body?: {
strategy: "git_worktree"
directory: string
strategy?: "git_worktree"
directory?: string
name?: string
context?: string
}