Update api spec (#396)

* 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]
2025-03-13 17:22:14 -07:00
committed by GitHub
parent aa1343af89
commit 8dc7cef38c
3 changed files with 907 additions and 890 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,5 @@
from typing import Literal, Union
import datetime
from typing import Literal, Optional, Union
from pydantic import BaseModel, ConfigDict, Field, RootModel
from typing_extensions import Annotated
@ -16,6 +17,8 @@ from ..models.unit_length import UnitLength
class OptionFbx(BaseModel):
"""Autodesk Filmbox (FBX) format."""
created: Optional[datetime.datetime] = None
storage: FbxStorage
type: Literal["fbx"] = "fbx"
@ -68,6 +71,8 @@ class OptionStep(BaseModel):
coords: System
created: Optional[datetime.datetime] = None
type: Literal["step"] = "step"
model_config = ConfigDict(protected_namespaces=())

View File

@ -28978,6 +28978,12 @@
"description": "Autodesk Filmbox (FBX) format.",
"type": "object",
"properties": {
"created": {
"nullable": true,
"description": "Timestamp override.",
"type": "string",
"format": "date-time"
},
"storage": {
"description": "Specifies which kind of FBX will be exported.",
"allOf": [
@ -29127,6 +29133,12 @@
}
]
},
"created": {
"nullable": true,
"description": "Timestamp override.",
"type": "string",
"format": "date-time"
},
"type": {
"type": "string",
"enum": [