feat(core): generalize session input inbox (#36005)

This commit is contained in:
Kit Langton 2026-07-08 22:07:45 -04:00 committed by GitHub
commit 984cab7938
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
47 changed files with 1590 additions and 767 deletions

View file

@ -16,7 +16,7 @@ export type PastedText = {
}
}
export type PromptInfo = Types.DeepMutable<SessionPromptInput["prompt"]> & {
export type PromptInfo = Types.DeepMutable<Pick<SessionPromptInput, "text" | "files" | "agents">> & {
pasted: PastedText[]
mode?: "normal" | "shell"
}