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:
committed by
GitHub
parent
aa1343af89
commit
8dc7cef38c
File diff suppressed because it is too large
Load Diff
@ -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=())
|
||||
|
12
spec.json
12
spec.json
@ -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": [
|
||||
|
Reference in New Issue
Block a user