feat(session): support directory moves from slash commands

This commit is contained in:
Dax Raad
2026-07-15 00:33:59 -04:00
parent e8964ce672
commit c1d2d7aba3
23 changed files with 521 additions and 206 deletions
+2
View File
@@ -21,6 +21,7 @@ import { Money } from "./money.js"
import { Snapshot } from "./snapshot.js"
import { TokenUsage } from "./token-usage.js"
import { SessionPending } from "./session-pending.js"
import { Project } from "./project.js"
export { FileAttachment }
@@ -69,6 +70,7 @@ export const Moved = Event.durable({
schema: {
...Base,
location: Location.Ref,
projectID: Project.ID.pipe(optional),
subpath: RelativePath.pipe(optional),
},
})