refactor(protocol): extract server contracts (#33708)

This commit is contained in:
Kit Langton 2026-06-25 04:15:31 +02:00 committed by GitHub
commit 56a37c3640
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
77 changed files with 1070 additions and 878 deletions

View file

@ -9,7 +9,9 @@ export { LLM } from "./llm"
export { Location } from "./location"
export { Model } from "./model"
export { Permission } from "./permission"
export { PermissionSaved } from "./permission-saved"
export { Project } from "./project"
export { ProjectCopy } from "./project-copy"
export { Provider } from "./provider"
export { Reference } from "./reference"
export { Revert } from "./revert"
@ -17,6 +19,9 @@ export { Session } from "./session"
export { SessionInput } from "./session-input"
export { SessionMessage } from "./session-message"
export { Skill } from "./skill"
export { Pty } from "./pty"
export { PtyTicket } from "./pty-ticket"
export { Question } from "./question"
export { Workspace } from "./workspace"
export { Prompt, Source, FileAttachment, AgentAttachment } from "./prompt"
export * from "./schema"