chore: generate
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user