Skip to content

Commit

Permalink
PATCH: fix swagger with project children
Browse files Browse the repository at this point in the history
  • Loading branch information
Bimdata-io committed Oct 24, 2024
1 parent 5608679 commit f6ec7a8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 380 deletions.
3 changes: 0 additions & 3 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ bimdata_api_client/model/project_invitation_request.py
bimdata_api_client/model/project_request.py
bimdata_api_client/model/project_role.py
bimdata_api_client/model/project_size.py
bimdata_api_client/model/project_with_children.py
bimdata_api_client/model/property_definition.py
bimdata_api_client/model/property_definition_request.py
bimdata_api_client/model/property_request.py
Expand Down Expand Up @@ -416,7 +415,6 @@ docs/ProjectInvitationRequest.md
docs/ProjectRequest.md
docs/ProjectRole.md
docs/ProjectSize.md
docs/ProjectWithChildren.md
docs/PropertyDefinition.md
docs/PropertyDefinitionRequest.md
docs/PropertyRequest.md
Expand Down Expand Up @@ -669,7 +667,6 @@ test/test_project_invitation_request.py
test/test_project_request.py
test/test_project_role.py
test/test_project_size.py
test/test_project_with_children.py
test/test_property_definition.py
test/test_property_definition_request.py
test/test_property_request.py
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,6 @@ Class | Method | HTTP request | Description
- [ProjectRequest](docs/ProjectRequest.md)
- [ProjectRole](docs/ProjectRole.md)
- [ProjectSize](docs/ProjectSize.md)
- [ProjectWithChildren](docs/ProjectWithChildren.md)
- [PropertyDefinition](docs/PropertyDefinition.md)
- [PropertyDefinitionRequest](docs/PropertyDefinitionRequest.md)
- [PropertyRequest](docs/PropertyRequest.md)
Expand Down
7 changes: 3 additions & 4 deletions bimdata_api_client/api/collaboration_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
from bimdata_api_client.model.project_invitation_request import ProjectInvitationRequest
from bimdata_api_client.model.project_request import ProjectRequest
from bimdata_api_client.model.project_size import ProjectSize
from bimdata_api_client.model.project_with_children import ProjectWithChildren
from bimdata_api_client.model.self_user import SelfUser
from bimdata_api_client.model.size import Size
from bimdata_api_client.model.tag import Tag
Expand Down Expand Up @@ -4399,7 +4398,7 @@ def __init__(self, api_client=None):
)
self.get_project_endpoint = _Endpoint(
settings={
'response_type': (ProjectWithChildren,),
'response_type': (Project,),
'auth': [
'ApiKey',
'BIMData_Connect',
Expand Down Expand Up @@ -8806,7 +8805,7 @@ def create_document(
):
"""Create a document # noqa: E501

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

Expand Down Expand Up @@ -12906,7 +12905,7 @@ def get_project(
async_req (bool): execute request asynchronously

Returns:
ProjectWithChildren
Project
If the method is called asynchronously, returns the request
thread.
"""
Expand Down
309 changes: 0 additions & 309 deletions bimdata_api_client/model/project_with_children.py

This file was deleted.

1 change: 0 additions & 1 deletion bimdata_api_client/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@
from bimdata_api_client.model.project_request import ProjectRequest
from bimdata_api_client.model.project_role import ProjectRole
from bimdata_api_client.model.project_size import ProjectSize
from bimdata_api_client.model.project_with_children import ProjectWithChildren
from bimdata_api_client.model.property_definition import PropertyDefinition
from bimdata_api_client.model.property_definition_request import PropertyDefinitionRequest
from bimdata_api_client.model.property_request import PropertyRequest
Expand Down
Loading

0 comments on commit f6ec7a8

Please sign in to comment.