Update api spec (#240)

* 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-07-26 18:08:45 -07:00
committed by GitHub
parent 40e278a550
commit 552c647240
7 changed files with 948 additions and 767 deletions

View File

@ -0,0 +1,12 @@
from typing import Optional
from pydantic import BaseModel, ConfigDict
class PathGetSketchTargetUuid(BaseModel):
"""The response from the `PathGetSketchTargetUuid` command."""
target_id: Optional[str] = None
model_config = ConfigDict(protected_namespaces=())