Skip to content

Commit aa8fbfd

Browse files
committed
PATCH: fix model export doc response
1 parent 7348d9e commit aa8fbfd

12 files changed

Lines changed: 18 additions & 431 deletions

File tree

.openapi-generator/FILES

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ bimdata_api_client/model/ifc_access_token.py
7272
bimdata_api_client/model/ifc_access_token_request.py
7373
bimdata_api_client/model/ifc_checker.py
7474
bimdata_api_client/model/ifc_checker_request.py
75-
bimdata_api_client/model/ifc_export.py
7675
bimdata_api_client/model/ifc_export_request.py
7776
bimdata_api_client/model/ifc_merge_request.py
7877
bimdata_api_client/model/ifc_optimize_request.py
@@ -323,7 +322,6 @@ docs/IfcAccessTokenRequest.md
323322
docs/IfcApi.md
324323
docs/IfcChecker.md
325324
docs/IfcCheckerRequest.md
326-
docs/IfcExport.md
327325
docs/IfcExportRequest.md
328326
docs/IfcMergeRequest.md
329327
docs/IfcOptimizeRequest.md
@@ -578,7 +576,6 @@ test/test_ifc_access_token_request.py
578576
test/test_ifc_api.py
579577
test/test_ifc_checker.py
580578
test/test_ifc_checker_request.py
581-
test/test_ifc_export.py
582579
test/test_ifc_export_request.py
583580
test/test_ifc_merge_request.py
584581
test/test_ifc_optimize_request.py

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,6 @@ Class | Method | HTTP request | Description
714714
- [IfcAccessTokenRequest](docs/IfcAccessTokenRequest.md)
715715
- [IfcChecker](docs/IfcChecker.md)
716716
- [IfcCheckerRequest](docs/IfcCheckerRequest.md)
717-
- [IfcExport](docs/IfcExport.md)
718717
- [IfcExportRequest](docs/IfcExportRequest.md)
719718
- [IfcMergeRequest](docs/IfcMergeRequest.md)
720719
- [IfcOptimizeRequest](docs/IfcOptimizeRequest.md)

bimdata_api_client/api/collaboration_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8027,7 +8027,7 @@ def create_document(
80278027
):
80288028
"""Create a document # noqa: E501
80298029

8030-
Create a document. If the document is one of {'GLTF', 'DWG', 'DXF', 'DAE', 'OBJ', 'POINT_CLOUD', 'BFX', 'IFC'}, a model will be created and attached to this document Required scopes: document:write # noqa: E501
8030+
Create a document. If the document is one of {'POINT_CLOUD', 'DAE', 'DXF', 'GLTF', 'BFX', 'DWG', 'IFC', 'OBJ'}, a model will be created and attached to this document Required scopes: document:write # noqa: E501
80318031
This method makes a synchronous HTTP request by default. To make an
80328032
asynchronous HTTP request, please pass async_req=True
80338033

bimdata_api_client/api/ifc_api.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
from bimdata_api_client.model.ifc_access_token_request import IfcAccessTokenRequest
4242
from bimdata_api_client.model.ifc_checker import IfcChecker
4343
from bimdata_api_client.model.ifc_checker_request import IfcCheckerRequest
44-
from bimdata_api_client.model.ifc_export import IfcExport
4544
from bimdata_api_client.model.ifc_export_request import IfcExportRequest
4645
from bimdata_api_client.model.ifc_merge_request import IfcMergeRequest
4746
from bimdata_api_client.model.ifc_optimize_request import IfcOptimizeRequest
@@ -4485,7 +4484,7 @@ def __init__(self, api_client=None):
44854484
)
44864485
self.export_ifc_deprecated_endpoint = _Endpoint(
44874486
settings={
4488-
'response_type': (IfcExport,),
4487+
'response_type': None,
44894488
'auth': [
44904489
'ApiKey',
44914490
'BIMData_Connect',
@@ -4547,9 +4546,7 @@ def __init__(self, api_client=None):
45474546
}
45484547
},
45494548
headers_map={
4550-
'accept': [
4551-
'application/json'
4552-
],
4549+
'accept': [],
45534550
'content_type': [
45544551
'application/json',
45554552
'application/x-www-form-urlencoded',
@@ -17269,7 +17266,7 @@ def export_ifc_deprecated(
1726917266
async_req (bool): execute request asynchronously
1727017267

1727117268
Returns:
17272-
IfcExport
17269+
None
1727317270
If the method is called asynchronously, returns the request
1727417271
thread.
1727517272
"""

bimdata_api_client/api/model_api.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
from bimdata_api_client.model.element_request import ElementRequest
3838
from bimdata_api_client.model.ifc_access_token import IfcAccessToken
3939
from bimdata_api_client.model.ifc_access_token_request import IfcAccessTokenRequest
40-
from bimdata_api_client.model.ifc_export import IfcExport
4140
from bimdata_api_client.model.ifc_export_request import IfcExportRequest
4241
from bimdata_api_client.model.ifc_merge_request import IfcMergeRequest
4342
from bimdata_api_client.model.ifc_optimize_request import IfcOptimizeRequest
@@ -4179,7 +4178,7 @@ def __init__(self, api_client=None):
41794178
)
41804179
self.export_ifc_endpoint = _Endpoint(
41814180
settings={
4182-
'response_type': (IfcExport,),
4181+
'response_type': None,
41834182
'auth': [
41844183
'ApiKey',
41854184
'BIMData_Connect',
@@ -4241,9 +4240,7 @@ def __init__(self, api_client=None):
42414240
}
42424241
},
42434242
headers_map={
4244-
'accept': [
4245-
'application/json'
4246-
],
4243+
'accept': [],
42474244
'content_type': [
42484245
'application/json',
42494246
'application/x-www-form-urlencoded',
@@ -16069,7 +16066,7 @@ def export_ifc(
1606916066
async_req (bool): execute request asynchronously
1607016067

1607116068
Returns:
16072-
IfcExport
16069+
None
1607316070
If the method is called asynchronously, returns the request
1607416071
thread.
1607516072
"""

0 commit comments

Comments
 (0)