Update api spec (#414)

* 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-04-03 20:02:50 -07:00
committed by GitHub
parent a7f6433735
commit ab4eebfdb1
5 changed files with 815 additions and 806 deletions

View File

@ -0,0 +1,9 @@
from pydantic import BaseModel, ConfigDict
class DeviceAuthConfirmParams(BaseModel):
"""The request parameters to confirm the `user_code` for the OAuth 2.0 Device Authorization Grant."""
user_code: str
model_config = ConfigDict(protected_namespaces=())