chore: generate

This commit is contained in:
opencode-agent[bot] 2026-05-22 16:37:46 +00:00
commit a3430db73a
2 changed files with 27 additions and 4 deletions

View file

@ -1700,6 +1700,12 @@ export type McpServerNotFoundError = {
message: string
}
export type ProjectNotFoundError = {
_tag: "ProjectNotFoundError"
projectID: string
message: string
}
export type PtyNotFoundError = {
_tag: "PtyNotFoundError"
ptyID: string
@ -5447,9 +5453,9 @@ export type ProjectUpdateErrors = {
*/
400: EffectHttpApiErrorBadRequest | InvalidRequestError
/**
* Not found
* ProjectNotFoundError
*/
404: NotFoundError
404: ProjectNotFoundError
}
export type ProjectUpdateError = ProjectUpdateErrors[keyof ProjectUpdateErrors]