Update api spec (#231)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2024-06-21 18:46:02 -07:00
committed by GitHub
parent f80767454a
commit bf5e3e1839
3 changed files with 825 additions and 825 deletions

File diff suppressed because it is too large Load Diff

View File

@ -206,7 +206,7 @@ class default_camera_perspective_settings(BaseModel):
center: Point3d
fov_y: float
fov_y: Optional[float] = None
sequence: Optional[int] = None
@ -218,9 +218,9 @@ class default_camera_perspective_settings(BaseModel):
vantage: Point3d
z_far: float
z_far: Optional[float] = None
z_near: float
z_near: Optional[float] = None
model_config = ConfigDict(protected_namespaces=())

View File

@ -19139,6 +19139,7 @@
]
},
"fov_y": {
"nullable": true,
"description": "The field of view angle in the y direction, in degrees.",
"type": "number",
"format": "float"
@ -19173,11 +19174,13 @@
]
},
"z_far": {
"nullable": true,
"description": "The distance to the far clipping plane.",
"type": "number",
"format": "float"
},
"z_near": {
"nullable": true,
"description": "The distance to the near clipping plane.",
"type": "number",
"format": "float"
@ -19185,12 +19188,9 @@
},
"required": [
"center",
"fov_y",
"type",
"up",
"vantage",
"z_far",
"z_near"
"vantage"
]
},
{