Update api spec (#261)

* 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-08-26 14:46:20 -07:00
committed by GitHub
parent f32a32d1bc
commit d2e9b0b865
7 changed files with 1092 additions and 830 deletions

View File

@ -35,6 +35,7 @@ from ..models.get_sketch_mode_plane import GetSketchModePlane
from ..models.highlight_set_entity import HighlightSetEntity
from ..models.import_files import ImportFiles
from ..models.imported_geometry import ImportedGeometry
from ..models.loft import Loft
from ..models.mass import Mass
from ..models.mouse_click import MouseClick
from ..models.path_get_curve_uuid import PathGetCurveUuid
@ -147,6 +148,16 @@ class entity_get_sketch_paths(BaseModel):
model_config = ConfigDict(protected_namespaces=())
class loft(BaseModel):
"""The response to the 'Loft' endpoint"""
data: Loft
type: Literal["loft"] = "loft"
model_config = ConfigDict(protected_namespaces=())
class close_path(BaseModel):
"""The response to the 'ClosePath' endpoint"""
@ -621,6 +632,7 @@ OkModelingCmdResponse = RootModel[
entity_get_parent_id,
entity_get_all_child_uuids,
entity_get_sketch_paths,
loft,
close_path,
camera_drag_move,
camera_drag_end,