fix(core): adopt pre-project sessions on directory resolution (#42100)

This commit is contained in:
Kit Langton
2026-08-12 16:47:55 -04:00
committed by GitHub
parent bc2251d6d8
commit 0d703d39e7
12 changed files with 290 additions and 24 deletions
@@ -837,6 +837,16 @@ export type ProjectDirectoriesUpdated = {
data: { projectID: string }
}
export type ProjectDirectoryResolved = {
id: string
created: number
metadata?: { [x: string]: any }
type: "project.directory.resolved"
durable: { aggregateID: string; seq: number; version: 1 }
location?: LocationRef
data: { projectID: string; directory: string; previous: string }
}
export type CommandUpdated = {
id: string
created: number
@@ -2093,6 +2103,7 @@ export type V2Event =
| PluginAdded
| PluginUpdated
| ProjectDirectoriesUpdated
| ProjectDirectoryResolved
| CommandUpdated
| ConfigUpdated
| SkillUpdated