Update api spec (#79)

* 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:
Jess Frazelle
2023-04-27 13:59:37 -07:00
committed by GitHub
parent b8d1f92872
commit 8877a3c146
30 changed files with 887 additions and 690 deletions

View File

@ -5,12 +5,12 @@ import httpx
from ...client import Client
from ...models.file_density import FileDensity
from ...models.error import Error
from ...models.file3_d_import_format import File3DImportFormat
from ...models.file_import_format import FileImportFormat
from ...types import Response
def _get_kwargs(
material_mass: float,
src_format: File3DImportFormat,
src_format: FileImportFormat,
body: bytes,
*,
client: Client,
@ -53,7 +53,7 @@ def _build_response(*, response: httpx.Response) -> Response[Union[Any, FileDens
def sync_detailed(
material_mass: float,
src_format: File3DImportFormat,
src_format: FileImportFormat,
body: bytes,
*,
client: Client,
@ -75,7 +75,7 @@ def sync_detailed(
def sync(
material_mass: float,
src_format: File3DImportFormat,
src_format: FileImportFormat,
body: bytes,
*,
client: Client,
@ -93,7 +93,7 @@ If the operation is performed asynchronously, the `id` of the operation will be
async def asyncio_detailed(
material_mass: float,
src_format: File3DImportFormat,
src_format: FileImportFormat,
body: bytes,
*,
client: Client,
@ -113,7 +113,7 @@ async def asyncio_detailed(
async def asyncio(
material_mass: float,
src_format: File3DImportFormat,
src_format: FileImportFormat,
body: bytes,
*,
client: Client,