@ -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(
|
||||
|
||||
@ -78,7 +78,7 @@ 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.""" # noqa: E501
|
||||
"""This endpoint requires authentication by any Zoo user. It returns details of the requested API call for the user.""" # noqa: E501
|
||||
|
||||
return sync_detailed(
|
||||
id=id,
|
||||
@ -107,7 +107,7 @@ 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.""" # noqa: E501
|
||||
"""This endpoint requires authentication by any Zoo user. It returns details of the requested API call for the user.""" # noqa: E501
|
||||
|
||||
return (
|
||||
await asyncio_detailed(
|
||||
|
||||
@ -84,7 +84,7 @@ def sync(
|
||||
*,
|
||||
client: Client,
|
||||
) -> Optional[Union[List[ApiCallQueryGroup], Error]]:
|
||||
"""This endpoint requires authentication by a KittyCAD employee. The API calls are grouped by the parameter passed.""" # noqa: E501
|
||||
"""This endpoint requires authentication by a Zoo employee. The API calls are grouped by the parameter passed.""" # noqa: E501
|
||||
|
||||
return sync_detailed(
|
||||
group_by=group_by,
|
||||
@ -113,7 +113,7 @@ async def asyncio(
|
||||
*,
|
||||
client: Client,
|
||||
) -> Optional[Union[List[ApiCallQueryGroup], Error]]:
|
||||
"""This endpoint requires authentication by a KittyCAD employee. The API calls are grouped by the parameter passed.""" # noqa: E501
|
||||
"""This endpoint requires authentication by a Zoo employee. The API calls are grouped by the parameter passed.""" # noqa: E501
|
||||
|
||||
return (
|
||||
await asyncio_detailed(
|
||||
|
||||
@ -195,9 +195,9 @@ def sync(
|
||||
]
|
||||
]:
|
||||
"""Get the status and output of an async operation.
|
||||
This endpoint requires authentication by any KittyCAD user. It returns details of the requested async operation for the user.
|
||||
This endpoint requires authentication by any Zoo user. It returns details of the requested async operation for the user.
|
||||
If the user is not authenticated to view the specified async operation, then it is not returned.
|
||||
Only KittyCAD employees with the proper access can view async operations for other users.
|
||||
Only Zoo employees with the proper access can view async operations for other users.
|
||||
""" # noqa: E501
|
||||
|
||||
return sync_detailed(
|
||||
@ -252,9 +252,9 @@ async def asyncio(
|
||||
]
|
||||
]:
|
||||
"""Get the status and output of an async operation.
|
||||
This endpoint requires authentication by any KittyCAD user. It returns details of the requested async operation for the user.
|
||||
This endpoint requires authentication by any Zoo user. It returns details of the requested async operation for the user.
|
||||
If the user is not authenticated to view the specified async operation, then it is not returned.
|
||||
Only KittyCAD employees with the proper access can view async operations for other users.
|
||||
Only Zoo employees with the proper access can view async operations for other users.
|
||||
""" # noqa: E501
|
||||
|
||||
return (
|
||||
|
||||
@ -104,7 +104,7 @@ def sync(
|
||||
limit: Optional[int] = None,
|
||||
page_token: Optional[str] = None,
|
||||
) -> Optional[Union[ApiCallWithPriceResultsPage, Error]]:
|
||||
"""This endpoint requires authentication by a KittyCAD employee. The API calls are returned in order of creation, with the most recently created API calls first.""" # noqa: E501
|
||||
"""This endpoint requires authentication by a Zoo employee. The API calls are returned in order of creation, with the most recently created API calls first.""" # noqa: E501
|
||||
|
||||
return sync_detailed(
|
||||
limit=limit,
|
||||
@ -141,7 +141,7 @@ async def asyncio(
|
||||
limit: Optional[int] = None,
|
||||
page_token: Optional[str] = None,
|
||||
) -> Optional[Union[ApiCallWithPriceResultsPage, Error]]:
|
||||
"""This endpoint requires authentication by a KittyCAD employee. The API calls are returned in order of creation, with the most recently created API calls first.""" # noqa: E501
|
||||
"""This endpoint requires authentication by a Zoo employee. The API calls are returned in order of creation, with the most recently created API calls first.""" # noqa: E501
|
||||
|
||||
return (
|
||||
await asyncio_detailed(
|
||||
|
||||
@ -109,9 +109,9 @@ def sync(
|
||||
limit: Optional[int] = None,
|
||||
page_token: Optional[str] = None,
|
||||
) -> Optional[Union[ApiCallWithPriceResultsPage, Error]]:
|
||||
"""This endpoint requires authentication by any KittyCAD user. It returns the API calls for the authenticated user if "me" is passed as the user id.
|
||||
"""This endpoint requires authentication by any Zoo user. It returns the API calls for the authenticated user if "me" is passed as the user id.
|
||||
Alternatively, you can use the `/user/api-calls` endpoint to get the API calls for your user.
|
||||
If the authenticated user is a KittyCAD employee, then the API calls are returned for the user specified by the user id.
|
||||
If the authenticated user is a Zoo employee, then the API calls are returned for the user specified by the user id.
|
||||
The API calls are returned in order of creation, with the most recently created API calls first.
|
||||
""" # noqa: E501
|
||||
|
||||
@ -154,9 +154,9 @@ async def asyncio(
|
||||
limit: Optional[int] = None,
|
||||
page_token: Optional[str] = None,
|
||||
) -> Optional[Union[ApiCallWithPriceResultsPage, Error]]:
|
||||
"""This endpoint requires authentication by any KittyCAD user. It returns the API calls for the authenticated user if "me" is passed as the user id.
|
||||
"""This endpoint requires authentication by any Zoo user. It returns the API calls for the authenticated user if "me" is passed as the user id.
|
||||
Alternatively, you can use the `/user/api-calls` endpoint to get the API calls for your user.
|
||||
If the authenticated user is a KittyCAD employee, then the API calls are returned for the user specified by the user id.
|
||||
If the authenticated user is a Zoo employee, then the API calls are returned for the user specified by the user id.
|
||||
The API calls are returned in order of creation, with the most recently created API calls first.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
@ -116,7 +116,7 @@ def sync(
|
||||
page_token: Optional[str] = None,
|
||||
) -> Optional[Union[AsyncApiCallResultsPage, Error]]:
|
||||
"""For async file conversion operations, this endpoint does not return the contents of converted files (`output`). To get the contents use the `/async/operations/{id}` endpoint.
|
||||
This endpoint requires authentication by a KittyCAD employee.""" # noqa: E501
|
||||
This endpoint requires authentication by a Zoo employee.""" # noqa: E501
|
||||
|
||||
return sync_detailed(
|
||||
limit=limit,
|
||||
@ -158,7 +158,7 @@ async def asyncio(
|
||||
page_token: Optional[str] = None,
|
||||
) -> Optional[Union[AsyncApiCallResultsPage, Error]]:
|
||||
"""For async file conversion operations, this endpoint does not return the contents of converted files (`output`). To get the contents use the `/async/operations/{id}` endpoint.
|
||||
This endpoint requires authentication by a KittyCAD employee.""" # noqa: E501
|
||||
This endpoint requires authentication by a Zoo employee.""" # noqa: E501
|
||||
|
||||
return (
|
||||
await asyncio_detailed(
|
||||
|
||||
@ -104,7 +104,7 @@ def sync(
|
||||
limit: Optional[int] = None,
|
||||
page_token: Optional[str] = None,
|
||||
) -> Optional[Union[ApiCallWithPriceResultsPage, Error]]:
|
||||
"""This endpoint requires authentication by any KittyCAD user. It returns the API calls for the authenticated user.
|
||||
"""This endpoint requires authentication by any Zoo user. It returns the API calls for the authenticated user.
|
||||
The API calls are returned in order of creation, with the most recently created API calls first.
|
||||
""" # noqa: E501
|
||||
|
||||
@ -143,7 +143,7 @@ async def asyncio(
|
||||
limit: Optional[int] = None,
|
||||
page_token: Optional[str] = None,
|
||||
) -> Optional[Union[ApiCallWithPriceResultsPage, Error]]:
|
||||
"""This endpoint requires authentication by any KittyCAD user. It returns the API calls for the authenticated user.
|
||||
"""This endpoint requires authentication by any Zoo user. It returns the API calls for the authenticated user.
|
||||
The API calls are returned in order of creation, with the most recently created API calls first.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
Reference in New Issue
Block a user