Update api spec (#370)

* 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-02-05 16:35:01 -05:00
committed by GitHub
parent 64befa5559
commit f232b907e1
7 changed files with 1080 additions and 864 deletions

View File

@ -0,0 +1,13 @@
from typing import List
from pydantic import BaseModel, ConfigDict
from ..models.point3d import Point3d
class ProjectEntityToPlane(BaseModel):
"""The response from the `ProjectEntityToPlane` command."""
projected_points: List[Point3d]
model_config = ConfigDict(protected_namespaces=())