Update api spec (#299)

* 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-10-09 12:24:27 -07:00
committed by GitHub
parent 75827098b2
commit 3799b7eefe
10 changed files with 976 additions and 951 deletions

View File

@ -5,11 +5,12 @@ import httpx
from ...client import Client
from ...models.error import Error
from ...models.extended_user import ExtendedUser
from ...models.user_identifier import UserIdentifier
from ...types import Response
def _get_kwargs(
id: str,
id: UserIdentifier,
*,
client: Client,
) -> Dict[str, Any]:
@ -56,7 +57,7 @@ def _build_response(
def sync_detailed(
id: str,
id: UserIdentifier,
*,
client: Client,
) -> Response[Optional[Union[ExtendedUser, Error]]]:
@ -74,7 +75,7 @@ def sync_detailed(
def sync(
id: str,
id: UserIdentifier,
*,
client: Client,
) -> Optional[Union[ExtendedUser, Error]]:
@ -91,7 +92,7 @@ def sync(
async def asyncio_detailed(
id: str,
id: UserIdentifier,
*,
client: Client,
) -> Response[Optional[Union[ExtendedUser, Error]]]:
@ -107,7 +108,7 @@ async def asyncio_detailed(
async def asyncio(
id: str,
id: UserIdentifier,
*,
client: Client,
) -> Optional[Union[ExtendedUser, Error]]: