Update api spec (#313)

* 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-10-29 17:42:26 -07:00
committed by GitHub
parent ee9f0029f4
commit 121575c8ae
8 changed files with 962 additions and 778 deletions

View File

@ -0,0 +1,13 @@
from enum import Enum
class CameraMovement(str, Enum):
"""A type of camera movement applied after certain camera operations""" # noqa: E501
"""# Adjusts the camera position during the camera operation """ # noqa: E501
VANTAGE = "vantage"
"""# Keeps the camera position in place """ # noqa: E501
NONE = "none"
def __str__(self) -> str:
return str(self.value)