chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-22 12:17:49 +00:00
parent 0beb4de3e8
commit 63f3e84792
4 changed files with 79 additions and 20 deletions

View File

@@ -1694,6 +1694,12 @@ export type McpUnsupportedOAuthError = {
error: string
}
export type McpServerNotFoundError = {
_tag: "McpServerNotFoundError"
name: string
message: string
}
export type NotFoundError = {
name: "NotFoundError"
data: {
@@ -5122,9 +5128,9 @@ export type McpAuthRemoveErrors = {
*/
400: BadRequestError
/**
* Not found
* McpServerNotFoundError
*/
404: NotFoundError
404: McpServerNotFoundError
}
export type McpAuthRemoveError = McpAuthRemoveErrors[keyof McpAuthRemoveErrors]
@@ -5158,9 +5164,9 @@ export type McpAuthStartErrors = {
*/
400: McpUnsupportedOAuthError | InvalidRequestError
/**
* Not found
* McpServerNotFoundError
*/
404: NotFoundError
404: McpServerNotFoundError
}
export type McpAuthStartError = McpAuthStartErrors[keyof McpAuthStartErrors]
@@ -5197,9 +5203,9 @@ export type McpAuthCallbackErrors = {
*/
400: EffectHttpApiErrorBadRequest | InvalidRequestError
/**
* Not found
* McpServerNotFoundError
*/
404: NotFoundError
404: McpServerNotFoundError
}
export type McpAuthCallbackError = McpAuthCallbackErrors[keyof McpAuthCallbackErrors]
@@ -5231,9 +5237,9 @@ export type McpAuthAuthenticateErrors = {
*/
400: McpUnsupportedOAuthError | InvalidRequestError
/**
* Not found
* McpServerNotFoundError
*/
404: NotFoundError
404: McpServerNotFoundError
}
export type McpAuthAuthenticateError = McpAuthAuthenticateErrors[keyof McpAuthAuthenticateErrors]
@@ -5264,6 +5270,10 @@ export type McpConnectErrors = {
* Bad request
*/
400: BadRequestError
/**
* McpServerNotFoundError
*/
404: McpServerNotFoundError
}
export type McpConnectError = McpConnectErrors[keyof McpConnectErrors]
@@ -5294,6 +5304,10 @@ export type McpDisconnectErrors = {
* Bad request
*/
400: BadRequestError
/**
* McpServerNotFoundError
*/
404: McpServerNotFoundError
}
export type McpDisconnectError = McpDisconnectErrors[keyof McpDisconnectErrors]