Update api spec (#289)

* 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-01 14:51:05 -07:00
committed by GitHub
parent 8a8cb0ca41
commit 846ed0303c
11 changed files with 910 additions and 910 deletions

View File

@ -5,12 +5,12 @@ import httpx
from ...client import Client
from ...models.error import Error
from ...models.session import Session
from ...models.session_token_uuid import SessionTokenUuid
from ...models.session_uuid import SessionUuid
from ...types import Response
def _get_kwargs(
token: SessionTokenUuid,
token: SessionUuid,
*,
client: Client,
) -> Dict[str, Any]:
@ -55,7 +55,7 @@ def _build_response(
def sync_detailed(
token: SessionTokenUuid,
token: SessionUuid,
*,
client: Client,
) -> Response[Optional[Union[Session, Error]]]:
@ -73,7 +73,7 @@ def sync_detailed(
def sync(
token: SessionTokenUuid,
token: SessionUuid,
*,
client: Client,
) -> Optional[Union[Session, Error]]:
@ -86,7 +86,7 @@ def sync(
async def asyncio_detailed(
token: SessionTokenUuid,
token: SessionUuid,
*,
client: Client,
) -> Response[Optional[Union[Session, Error]]]:
@ -102,7 +102,7 @@ async def asyncio_detailed(
async def asyncio(
token: SessionTokenUuid,
token: SessionUuid,
*,
client: Client,
) -> Optional[Union[Session, Error]]: