Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-07-05 15:33:51 -07:00
parent 30db5097ff
commit 67a03bdd03
43 changed files with 11163 additions and 8262 deletions

View File

@ -6,14 +6,14 @@ from ...client import Client
from ...models.async_api_call_results_page import AsyncApiCallResultsPage
from ...models.error import Error
from ...models.created_at_sort_mode import CreatedAtSortMode
from ...models.api_call_status import APICallStatus
from ...models.api_call_status import ApiCallStatus
from ...types import Response
def _get_kwargs(
limit: int,
page_token: str,
sort_by: CreatedAtSortMode,
status: APICallStatus,
status: ApiCallStatus,
*,
client: Client,
) -> Dict[str, Any]:
@ -56,7 +56,7 @@ def sync_detailed(
limit: int,
page_token: str,
sort_by: CreatedAtSortMode,
status: APICallStatus,
status: ApiCallStatus,
*,
client: Client,
) -> Response[Union[Any, AsyncApiCallResultsPage, Error]]:
@ -80,7 +80,7 @@ def sync(
limit: int,
page_token: str,
sort_by: CreatedAtSortMode,
status: APICallStatus,
status: ApiCallStatus,
*,
client: Client,
) -> Optional[Union[Any, AsyncApiCallResultsPage, Error]]:
@ -100,7 +100,7 @@ async def asyncio_detailed(
limit: int,
page_token: str,
sort_by: CreatedAtSortMode,
status: APICallStatus,
status: ApiCallStatus,
*,
client: Client,
) -> Response[Union[Any, AsyncApiCallResultsPage, Error]]:
@ -122,7 +122,7 @@ async def asyncio(
limit: int,
page_token: str,
sort_by: CreatedAtSortMode,
status: APICallStatus,
status: ApiCallStatus,
*,
client: Client,
) -> Optional[Union[Any, AsyncApiCallResultsPage, Error]]: