chore: generate
This commit is contained in:
parent
9d5f3c1833
commit
b2a06351b5
2 changed files with 34 additions and 3 deletions
|
|
@ -1960,6 +1960,13 @@ export type Workspace = {
|
|||
timeUsed: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN"
|
||||
}
|
||||
|
||||
export type WorkspaceCreateError = {
|
||||
name: "WorkspaceCreateError"
|
||||
data: {
|
||||
message: string
|
||||
}
|
||||
}
|
||||
|
||||
export type WorkspaceWarpError = {
|
||||
name: "WorkspaceWarpError"
|
||||
data: {
|
||||
|
|
@ -8042,9 +8049,9 @@ export type ExperimentalWorkspaceCreateData = {
|
|||
|
||||
export type ExperimentalWorkspaceCreateErrors = {
|
||||
/**
|
||||
* BadRequest | InvalidRequestError
|
||||
* WorkspaceCreateError | BadRequest | InvalidRequestError
|
||||
*/
|
||||
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
||||
400: WorkspaceCreateError | EffectHttpApiErrorBadRequest | InvalidRequestError
|
||||
}
|
||||
|
||||
export type ExperimentalWorkspaceCreateError =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue