chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-22 15:31:46 +00:00
parent 5cf597d583
commit 00038027c8
3 changed files with 101 additions and 46 deletions
+30 -15
View File
@@ -1700,15 +1700,15 @@ export type McpServerNotFoundError = {
message: string
}
export type NotFoundError = {
name: "NotFoundError"
data: {
message: string
}
export type PtyNotFoundError = {
_tag: "PtyNotFoundError"
ptyID: string
message: string
}
export type EffectHttpApiErrorForbidden = {
_tag: "Forbidden"
export type PtyForbiddenError = {
_tag: "PtyForbiddenError"
message: string
}
export type QuestionNotFoundError = {
@@ -1777,6 +1777,13 @@ export type ProviderAuthError1 = {
}
}
export type NotFoundError = {
name: "NotFoundError"
data: {
message: string
}
}
export type TextPartInput = {
id?: string
type: "text"
@@ -1950,6 +1957,10 @@ export type WorkspaceWarpError = {
}
}
export type EffectHttpApiErrorForbidden = {
_tag: "Forbidden"
}
export type SyncEventMessageUpdated = {
type: "sync"
name: "message.updated.1"
@@ -5566,9 +5577,9 @@ export type PtyRemoveErrors = {
*/
400: BadRequestError
/**
* NotFoundError
* PtyNotFoundError
*/
404: NotFoundError
404: PtyNotFoundError
}
export type PtyRemoveError = PtyRemoveErrors[keyof PtyRemoveErrors]
@@ -5600,9 +5611,9 @@ export type PtyGetErrors = {
*/
400: BadRequestError
/**
* NotFoundError
* PtyNotFoundError
*/
404: NotFoundError
404: PtyNotFoundError
}
export type PtyGetError = PtyGetErrors[keyof PtyGetErrors]
@@ -5639,6 +5650,10 @@ export type PtyUpdateErrors = {
* BadRequest | InvalidRequestError
*/
400: EffectHttpApiErrorBadRequest | InvalidRequestError
/**
* PtyNotFoundError
*/
404: PtyNotFoundError
}
export type PtyUpdateError = PtyUpdateErrors[keyof PtyUpdateErrors]
@@ -5670,13 +5685,13 @@ export type PtyConnectTokenErrors = {
*/
400: BadRequestError
/**
* Forbidden
* PtyForbiddenError
*/
403: EffectHttpApiErrorForbidden
403: PtyForbiddenError
/**
* NotFoundError
* PtyNotFoundError
*/
404: NotFoundError
404: PtyNotFoundError
}
export type PtyConnectTokenError = PtyConnectTokenErrors[keyof PtyConnectTokenErrors]