Update api spec (#232)

* 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-07-01 11:23:48 -07:00
committed by GitHub
parent 5011954847
commit a008a9d1aa
3 changed files with 718 additions and 719 deletions

View File

@ -1,3 +1,4 @@
from typing import Optional
from pydantic import BaseModel, ConfigDict
@ -6,10 +7,10 @@ from pydantic import BaseModel, ConfigDict
class PerspectiveCameraParameters(BaseModel):
"""Defines a perspective view."""
fov_y: float
fov_y: Optional[float] = None
z_far: float
z_far: Optional[float] = None
z_near: float
z_near: Optional[float] = None
model_config = ConfigDict(protected_namespaces=())