Update api spec (#275)

* 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-09-17 19:03:52 -07:00
committed by GitHub
parent a18b1565ff
commit 43bdb1ebdd
3 changed files with 733 additions and 726 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1232,6 +1232,8 @@ class OptionDefaultCameraSetPerspective(BaseModel):
class OptionZoomToFit(BaseModel):
"""Fit the view to the specified object(s)."""
animated: bool = False
object_ids: List[str] = []
padding: float

View File

@ -23458,6 +23458,11 @@
"description": "Fit the view to the specified object(s).",
"type": "object",
"properties": {
"animated": {
"description": "Whether or not to animate the camera movement.",
"default": false,
"type": "boolean"
},
"object_ids": {
"description": "Which objects to fit camera to; if empty, fit to all non-default objects. Defaults to empty vector.",
"default": [],