Update api spec (#458)

* 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-07-04 14:13:27 +02:00
committed by GitHub
parent b922adf749
commit bb2718fb25
6 changed files with 1246 additions and 916 deletions

View File

@ -0,0 +1,9 @@
from pydantic import BaseModel, ConfigDict
class AuthApiKeyResponse(BaseModel):
"""The response from the `/auth/api-key` endpoint."""
session_token: str
model_config = ConfigDict(protected_namespaces=())