Update api spec (#220)

* 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-05-16 12:09:12 -07:00
committed by GitHub
parent dd2e3848cc
commit ca84069e9a
8 changed files with 948 additions and 805 deletions

View File

@ -1,3 +1,4 @@
from typing import Optional
from pydantic import BaseModel, ConfigDict
@ -6,7 +7,7 @@ from pydantic import BaseModel, ConfigDict
class Error(BaseModel):
"""Error information from a response."""
error_code: str
error_code: Optional[str] = None
message: str