Skip to content

Commit 6b706ce

Browse files
committed
PATCH: Fix/inline serializer fields (#560)
Fix CreateStoreyPlan and BuildingStoreyPlan
1 parent fedd2e5 commit 6b706ce

21 files changed

Lines changed: 1554 additions & 50 deletions

.openapi-generator/FILES

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ bimdata_api_client/model/__init__.py
1919
bimdata_api_client/model/bcf_project.py
2020
bimdata_api_client/model/bcf_project_request.py
2121
bimdata_api_client/model/building.py
22+
bimdata_api_client/model/building_model_plan_request.py
2223
bimdata_api_client/model/check_plan.py
2324
bimdata_api_client/model/check_plan_request.py
2425
bimdata_api_client/model/checker_result.py
@@ -134,6 +135,7 @@ bimdata_api_client/model/patched_rule_request.py
134135
bimdata_api_client/model/patched_ruleset_request.py
135136
bimdata_api_client/model/patched_space_request.py
136137
bimdata_api_client/model/patched_stage_request.py
138+
bimdata_api_client/model/patched_storey_building_request.py
137139
bimdata_api_client/model/patched_system_request.py
138140
bimdata_api_client/model/patched_tag_request.py
139141
bimdata_api_client/model/patched_topic_request.py
@@ -220,6 +222,8 @@ bimdata_api_client/model/space_request.py
220222
bimdata_api_client/model/stage.py
221223
bimdata_api_client/model/stage_request.py
222224
bimdata_api_client/model/storey.py
225+
bimdata_api_client/model/storey_building_request.py
226+
bimdata_api_client/model/storey_model_plan_request.py
223227
bimdata_api_client/model/system.py
224228
bimdata_api_client/model/system_request.py
225229
bimdata_api_client/model/tag.py
@@ -262,6 +266,7 @@ docs/BcfApi.md
262266
docs/BcfProject.md
263267
docs/BcfProjectRequest.md
264268
docs/Building.md
269+
docs/BuildingModelPlanRequest.md
265270
docs/CheckPlan.md
266271
docs/CheckPlanRequest.md
267272
docs/CheckerApi.md
@@ -381,6 +386,7 @@ docs/PatchedRuleRequest.md
381386
docs/PatchedRulesetRequest.md
382387
docs/PatchedSpaceRequest.md
383388
docs/PatchedStageRequest.md
389+
docs/PatchedStoreyBuildingRequest.md
384390
docs/PatchedSystemRequest.md
385391
docs/PatchedTagRequest.md
386392
docs/PatchedTopicRequest.md
@@ -468,6 +474,8 @@ docs/SsoApi.md
468474
docs/Stage.md
469475
docs/StageRequest.md
470476
docs/Storey.md
477+
docs/StoreyBuildingRequest.md
478+
docs/StoreyModelPlanRequest.md
471479
docs/System.md
472480
docs/SystemRequest.md
473481
docs/Tag.md
@@ -512,6 +520,7 @@ test/test_bcf_api.py
512520
test/test_bcf_project.py
513521
test/test_bcf_project_request.py
514522
test/test_building.py
523+
test/test_building_model_plan_request.py
515524
test/test_check_plan.py
516525
test/test_check_plan_request.py
517526
test/test_checker_api.py
@@ -631,6 +640,7 @@ test/test_patched_rule_request.py
631640
test/test_patched_ruleset_request.py
632641
test/test_patched_space_request.py
633642
test/test_patched_stage_request.py
643+
test/test_patched_storey_building_request.py
634644
test/test_patched_system_request.py
635645
test/test_patched_tag_request.py
636646
test/test_patched_topic_request.py
@@ -718,6 +728,8 @@ test/test_sso_api.py
718728
test/test_stage.py
719729
test/test_stage_request.py
720730
test/test_storey.py
731+
test/test_storey_building_request.py
732+
test/test_storey_model_plan_request.py
721733
test/test_system.py
722734
test/test_system_request.py
723735
test/test_tag.py

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,7 @@ Class | Method | HTTP request | Description
653653
- [BcfProject](docs/BcfProject.md)
654654
- [BcfProjectRequest](docs/BcfProjectRequest.md)
655655
- [Building](docs/Building.md)
656+
- [BuildingModelPlanRequest](docs/BuildingModelPlanRequest.md)
656657
- [CheckPlan](docs/CheckPlan.md)
657658
- [CheckPlanRequest](docs/CheckPlanRequest.md)
658659
- [CheckerResult](docs/CheckerResult.md)
@@ -768,6 +769,7 @@ Class | Method | HTTP request | Description
768769
- [PatchedRulesetRequest](docs/PatchedRulesetRequest.md)
769770
- [PatchedSpaceRequest](docs/PatchedSpaceRequest.md)
770771
- [PatchedStageRequest](docs/PatchedStageRequest.md)
772+
- [PatchedStoreyBuildingRequest](docs/PatchedStoreyBuildingRequest.md)
771773
- [PatchedSystemRequest](docs/PatchedSystemRequest.md)
772774
- [PatchedTagRequest](docs/PatchedTagRequest.md)
773775
- [PatchedTopicRequest](docs/PatchedTopicRequest.md)
@@ -854,6 +856,8 @@ Class | Method | HTTP request | Description
854856
- [Stage](docs/Stage.md)
855857
- [StageRequest](docs/StageRequest.md)
856858
- [Storey](docs/Storey.md)
859+
- [StoreyBuildingRequest](docs/StoreyBuildingRequest.md)
860+
- [StoreyModelPlanRequest](docs/StoreyModelPlanRequest.md)
857861
- [System](docs/System.md)
858862
- [SystemRequest](docs/SystemRequest.md)
859863
- [Tag](docs/Tag.md)

bimdata_api_client/api/collaboration_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7743,7 +7743,7 @@ def create_document(
77437743
):
77447744
"""Create a document # noqa: E501
77457745

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

0 commit comments

Comments
 (0)