Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-12-21 08:14:08 -08:00
parent 54d2ea373f
commit 6e170684d5
55 changed files with 802 additions and 797 deletions

View File

@ -78,9 +78,9 @@ def sync(
*,
client: Client,
) -> Optional[Union[ApiCallWithPrice, Error]]:
"""This endpoint requires authentication by any KittyCAD user. It returns details of the requested API call for the user.
"""This endpoint requires authentication by any Zoo user. It returns details of the requested API call for the user.
If the user is not authenticated to view the specified API call, then it is not returned.
Only KittyCAD employees can view API calls for other users.""" # noqa: E501
Only Zoo employees can view API calls for other users.""" # noqa: E501
return sync_detailed(
id=id,
@ -109,9 +109,9 @@ async def asyncio(
*,
client: Client,
) -> Optional[Union[ApiCallWithPrice, Error]]:
"""This endpoint requires authentication by any KittyCAD user. It returns details of the requested API call for the user.
"""This endpoint requires authentication by any Zoo user. It returns details of the requested API call for the user.
If the user is not authenticated to view the specified API call, then it is not returned.
Only KittyCAD employees can view API calls for other users.""" # noqa: E501
Only Zoo employees can view API calls for other users.""" # noqa: E501
return (
await asyncio_detailed(