bimdata-api-client 9.22.1__tar.gz → 9.22.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/PKG-INFO +18 -155
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/README.md +17 -150
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/api/bcf_api.py +173 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/api/collaboration_api.py +686 -22
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/api/model_api.py +823 -10
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/apis/__init__.py +0 -1
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/check_project_access.py +10 -0
- bimdata-api-client-9.22.1/bimdata_api_client/model/project_folder_tree.py → bimdata-api-client-9.22.2/bimdata_api_client/model/drawing.py +24 -23
- bimdata-api-client-9.22.2/bimdata_api_client/model/drawing_request.py +265 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/folder_tree.py +14 -8
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/folder_without_children_request.py +4 -0
- bimdata-api-client-9.22.2/bimdata_api_client/model/log_entry.py +303 -0
- bimdata-api-client-9.22.2/bimdata_api_client/model/patched_drawing_request.py +259 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_folder_without_children_request.py +4 -0
- bimdata-api-client-9.22.2/bimdata_api_client/model/patched_viewpoint_request.py +332 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_zone_request.py +7 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/visa.py +2 -2
- bimdata-api-client-9.22.2/bimdata_api_client/model/visa_attachment.py +256 -0
- bimdata-api-client-9.22.2/bimdata_api_client/model/visa_attachment_request.py +256 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/zone.py +4 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/zone_request.py +7 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/models/__init__.py +7 -1
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client.egg-info/PKG-INFO +18 -155
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client.egg-info/SOURCES.txt +14 -4
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/setup.py +1 -1
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_bcf_api.py +7 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_check_project_access.py +2 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_collaboration_api.py +17 -3
- bimdata-api-client-9.22.2/test/test_drawing.py +38 -0
- bimdata-api-client-9.22.2/test/test_drawing_request.py +36 -0
- bimdata-api-client-9.22.2/test/test_log_entry.py +36 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_model_api.py +35 -0
- bimdata-api-client-9.22.2/test/test_patched_drawing_request.py +36 -0
- bimdata-api-client-9.22.2/test/test_patched_viewpoint_request.py +50 -0
- bimdata-api-client-9.22.2/test/test_visa_attachment.py +36 -0
- bimdata-api-client-9.22.2/test/test_visa_attachment_request.py +36 -0
- bimdata-api-client-9.22.1/bimdata_api_client/api/ifc_api.py +0 -24825
- bimdata-api-client-9.22.1/test/test_ifc_api.py +0 -1065
- bimdata-api-client-9.22.1/test/test_project_folder_tree.py +0 -38
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/__init__.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/api/__init__.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/api/sso_api.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/api/webhook_api.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/api_client.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/configuration.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/exceptions.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/__init__.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/auth.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/bcf_project.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/bcf_project_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/building.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/building_model_plan_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/classification.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/classification_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/clipping_plane.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/clipping_plane_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/cloud.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/cloud_invitation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/cloud_invitation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/cloud_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/cloud_role.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/coloring.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/coloring_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/comment.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/comment_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/component.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/component_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/components_parent.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/components_parent_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/create_building_by_name_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/create_model_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/create_multi_page_model_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/create_user_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/detailed_extensions.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/direction.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/direction_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/document.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/document_preview_file.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/document_with_element_list.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/element.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/element_classification_relation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/element_classification_relation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/element_property_set_relation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/element_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/extensions.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/feature.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/feature_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/folder.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/folder_user_project.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/folder_without_children.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/full_topic.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/full_topic_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/geometry_point.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/geometry_point_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/group.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/group_folder.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/group_folder_read.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/group_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/ifc_access_token.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/ifc_access_token_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/ifc_export_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/ifc_merge_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/ifc_optimize_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/import_group_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/invitation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/label.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/label_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/layer.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/layer_element.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/layer_element_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/layer_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/line.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/line_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/marketplace_app_image.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/marketplace_app_light.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/marketplace_app_light_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/material.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/material_list_component.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/material_list_component_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/material_option.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/material_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/model.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/model_errors.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/model_errors_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/model_files.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/model_property.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/model_serializer_without_children.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/model_with_positioning_plan.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/organization.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/organization_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/orthogonal_camera.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/orthogonal_camera_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_bcf_project_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_classification_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_cloud_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_comment_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_document_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_element_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_full_topic_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_group_folder_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_group_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_ifc_access_token_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_label_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_layer_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_model_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_pin_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_positioning_plan_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_priority_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_processor_handler_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_project_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_property_definition_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_property_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_property_set_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_space_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_stage_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_storey_building_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_system_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_tag_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_topic_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_topic_status_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_topic_type_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_unit_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_user_cloud_update_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_user_project_update_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_visa_comment_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_visa_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_visa_validation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_web_hook_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/patched_zone_space_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/perspective_camera.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/perspective_camera_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/pin.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/pin_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/point.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/point_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/positioning_plan.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/priority.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/priority_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/processor_handler.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_access_token.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_access_token_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_import_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_invitation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_invitation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_role.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_size.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/project_with_children.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/property_definition.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/property_definition_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/property_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/property_set.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/property_set_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/public_organization.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/public_organization_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_classification.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_classification_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_definition.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_definition_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_element.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_element_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_elements.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_elements_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_layer.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_layer_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_material.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_material_list.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_material_list_components.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_material_list_components_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_material_list_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_material_options.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_material_options_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_material_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_property.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_property_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_property_set.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_property_set_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_system.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_system_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_unit.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/raw_unit_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/recursive_folder_children.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/select_user_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/self_bcf_user.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/self_user.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/short_user.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/simple_element.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/size.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/snapshot.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/snapshot_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/space.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/space_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/stage.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/stage_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/storey.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/storey_building_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/storey_model_plan_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/system.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/system_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/tag.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/tag_id_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/tag_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/topic.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/topic_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/topic_status.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/topic_status_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/topic_type.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/topic_type_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/unit.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/unit_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/user.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/user_invitation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/user_project.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/user_project_id_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/version.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/view_setup_hints.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/view_setup_hints_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/viewpoint.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/viewpoint_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/visa_comment.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/visa_comment_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/visa_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/visa_validation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/visa_validation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/visibility.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/visibility_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/web_hook.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/web_hook_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/write_folder_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/xkt_file.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/zone_space.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/zone_space_relation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model/zone_space_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/model_utils.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client/rest.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client.egg-info/dependency_links.txt +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client.egg-info/requires.txt +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/bimdata_api_client.egg-info/top_level.txt +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/setup.cfg +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/__init__.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_auth.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_bcf_project.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_bcf_project_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_building.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_building_model_plan_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_classification.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_classification_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_clipping_plane.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_clipping_plane_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_cloud.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_cloud_invitation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_cloud_invitation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_cloud_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_cloud_role.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_coloring.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_coloring_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_comment.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_comment_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_component.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_component_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_components_parent.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_components_parent_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_create_building_by_name_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_create_model_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_create_multi_page_model_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_create_user_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_detailed_extensions.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_direction.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_direction_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_document.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_document_preview_file.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_document_with_element_list.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_element.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_element_classification_relation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_element_classification_relation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_element_property_set_relation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_element_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_extensions.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_feature.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_feature_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_folder.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_folder_tree.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_folder_user_project.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_folder_without_children.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_folder_without_children_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_full_topic.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_full_topic_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_geometry_point.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_geometry_point_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_group.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_group_folder.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_group_folder_read.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_group_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_ifc_access_token.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_ifc_access_token_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_ifc_export_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_ifc_merge_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_ifc_optimize_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_import_group_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_invitation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_label.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_label_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_layer.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_layer_element.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_layer_element_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_layer_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_line.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_line_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_marketplace_app_image.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_marketplace_app_light.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_marketplace_app_light_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_material.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_material_list_component.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_material_list_component_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_material_option.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_material_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_model.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_model_errors.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_model_errors_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_model_files.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_model_property.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_model_serializer_without_children.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_model_with_positioning_plan.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_organization.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_organization_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_orthogonal_camera.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_orthogonal_camera_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_bcf_project_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_classification_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_cloud_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_comment_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_document_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_element_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_folder_without_children_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_full_topic_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_group_folder_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_group_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_ifc_access_token_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_label_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_layer_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_model_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_pin_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_positioning_plan_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_priority_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_processor_handler_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_project_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_property_definition_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_property_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_property_set_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_space_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_stage_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_storey_building_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_system_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_tag_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_topic_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_topic_status_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_topic_type_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_unit_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_user_cloud_update_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_user_project_update_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_visa_comment_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_visa_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_visa_validation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_web_hook_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_zone_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_patched_zone_space_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_perspective_camera.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_perspective_camera_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_pin.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_pin_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_point.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_point_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_positioning_plan.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_priority.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_priority_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_processor_handler.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_access_token.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_access_token_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_import_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_invitation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_invitation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_role.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_size.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_project_with_children.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_property_definition.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_property_definition_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_property_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_property_set.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_property_set_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_public_organization.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_public_organization_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_classification.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_classification_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_definition.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_definition_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_element.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_element_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_elements.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_elements_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_layer.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_layer_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_material.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_material_list.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_material_list_components.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_material_list_components_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_material_list_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_material_options.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_material_options_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_material_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_property.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_property_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_property_set.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_property_set_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_system.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_system_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_unit.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_raw_unit_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_recursive_folder_children.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_select_user_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_self_bcf_user.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_self_user.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_short_user.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_simple_element.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_size.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_snapshot.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_snapshot_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_space.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_space_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_sso_api.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_stage.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_stage_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_storey.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_storey_building_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_storey_model_plan_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_system.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_system_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_tag.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_tag_id_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_tag_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_topic.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_topic_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_topic_status.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_topic_status_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_topic_type.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_topic_type_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_unit.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_unit_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_user.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_user_invitation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_user_project.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_user_project_id_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_version.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_view_setup_hints.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_view_setup_hints_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_viewpoint.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_viewpoint_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_visa.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_visa_comment.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_visa_comment_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_visa_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_visa_validation.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_visa_validation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_visibility.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_visibility_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_web_hook.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_web_hook_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_webhook_api.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_write_folder_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_xkt_file.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_zone.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_zone_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_zone_space.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_zone_space_relation_request.py +0 -0
- {bimdata-api-client-9.22.1 → bimdata-api-client-9.22.2}/test/test_zone_space_request.py +0 -0
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bimdata-api-client
|
|
3
|
-
Version: 9.22.
|
|
3
|
+
Version: 9.22.2
|
|
4
4
|
Summary: BIMData API
|
|
5
5
|
Home-page: https://github.com/bimdata/python-api-client
|
|
6
6
|
Author: BIMData.io
|
|
7
7
|
Author-email: contact@bimdata.io
|
|
8
|
-
License: UNKNOWN
|
|
9
8
|
Keywords: Swagger,BIMData API
|
|
10
|
-
Platform: UNKNOWN
|
|
11
9
|
Description-Content-Type: text/markdown
|
|
12
10
|
|
|
13
11
|
# bimdata-api-client
|
|
@@ -87,6 +85,7 @@ from bimdata_api_client.model.patched_stage_request import PatchedStageRequest
|
|
|
87
85
|
from bimdata_api_client.model.patched_topic_request import PatchedTopicRequest
|
|
88
86
|
from bimdata_api_client.model.patched_topic_status_request import PatchedTopicStatusRequest
|
|
89
87
|
from bimdata_api_client.model.patched_topic_type_request import PatchedTopicTypeRequest
|
|
88
|
+
from bimdata_api_client.model.patched_viewpoint_request import PatchedViewpointRequest
|
|
90
89
|
from bimdata_api_client.model.pin import Pin
|
|
91
90
|
from bimdata_api_client.model.pin_request import PinRequest
|
|
92
91
|
from bimdata_api_client.model.priority import Priority
|
|
@@ -232,6 +231,7 @@ Class | Method | HTTP request | Description
|
|
|
232
231
|
*BcfApi* | [**update_full_topic**](docs/BcfApi.md#update_full_topic) | **PATCH** /bcf/2.1/projects/{projects_pk}/full-topic/{guid} | Update some fields of a topic
|
|
233
232
|
*BcfApi* | [**update_pin**](docs/BcfApi.md#update_pin) | **PATCH** /bcf/2.1/projects/{projects_pk}/topics/{topics_guid}/viewpoints/{viewpoints_guid}/pin/{guid} | Update some fields of a Pin
|
|
234
233
|
*BcfApi* | [**update_topic**](docs/BcfApi.md#update_topic) | **PATCH** /bcf/2.1/projects/{projects_pk}/topics/{guid} | Update some fields of a topic
|
|
234
|
+
*BcfApi* | [**update_viewpoint**](docs/BcfApi.md#update_viewpoint) | **PATCH** /bcf/2.1/projects/{projects_pk}/topics/{topics_guid}/viewpoints/{guid} | Update some fields of a Viewpoint
|
|
235
235
|
*CollaborationApi* | [**accept_user_invitation**](docs/CollaborationApi.md#accept_user_invitation) | **POST** /user/invitations/{id}/accept | Accept an invitation
|
|
236
236
|
*CollaborationApi* | [**accept_validation**](docs/CollaborationApi.md#accept_validation) | **POST** /cloud/{cloud_pk}/project/{project_pk}/document/{document_pk}/visa/{visa_pk}/validation/{id}/accept | Accept a validation
|
|
237
237
|
*CollaborationApi* | [**add_document_tag**](docs/CollaborationApi.md#add_document_tag) | **POST** /cloud/{cloud_pk}/project/{project_pk}/document/{document_pk}/tag | Add a tag to a document
|
|
@@ -284,10 +284,12 @@ Class | Method | HTTP request | Description
|
|
|
284
284
|
*CollaborationApi* | [**get_document_histories**](docs/CollaborationApi.md#get_document_histories) | **GET** /cloud/{cloud_pk}/project/{project_pk}/document/{document_pk}/history | Retrieve all document histories
|
|
285
285
|
*CollaborationApi* | [**get_documents**](docs/CollaborationApi.md#get_documents) | **GET** /cloud/{cloud_pk}/project/{project_pk}/document | Retrieve all documents
|
|
286
286
|
*CollaborationApi* | [**get_folder**](docs/CollaborationApi.md#get_folder) | **GET** /cloud/{cloud_pk}/project/{project_pk}/folder/{id} | Retrieve a folder
|
|
287
|
+
*CollaborationApi* | [**get_folder_documents**](docs/CollaborationApi.md#get_folder_documents) | **GET** /cloud/{cloud_pk}/project/{project_pk}/folder/{folder_pk}/document | Get all documents of a folder
|
|
287
288
|
*CollaborationApi* | [**get_folder_project_users**](docs/CollaborationApi.md#get_folder_project_users) | **GET** /cloud/{cloud_pk}/project/{project_pk}/folder/{folder_pk}/user | Retrieve all users in a project with the permission on the folder
|
|
288
289
|
*CollaborationApi* | [**get_folders**](docs/CollaborationApi.md#get_folders) | **GET** /cloud/{cloud_pk}/project/{project_pk}/folder | Retrieve all folders
|
|
289
290
|
*CollaborationApi* | [**get_group**](docs/CollaborationApi.md#get_group) | **GET** /cloud/{cloud_pk}/project/{project_pk}/me/group/{id} | Retrieve a group
|
|
290
291
|
*CollaborationApi* | [**get_groups**](docs/CollaborationApi.md#get_groups) | **GET** /cloud/{cloud_pk}/project/{project_pk}/me/group | Retrieve all groups
|
|
292
|
+
*CollaborationApi* | [**get_logs**](docs/CollaborationApi.md#get_logs) | **GET** /cloud/{cloud_pk}/project/{project_pk}/logs | Retrieve all logs of the project
|
|
291
293
|
*CollaborationApi* | [**get_manage_group**](docs/CollaborationApi.md#get_manage_group) | **GET** /cloud/{cloud_pk}/project/{project_pk}/group/{id} | Retrieve a group
|
|
292
294
|
*CollaborationApi* | [**get_manage_groups**](docs/CollaborationApi.md#get_manage_groups) | **GET** /cloud/{cloud_pk}/project/{project_pk}/group | Retrieve all groups
|
|
293
295
|
*CollaborationApi* | [**get_project**](docs/CollaborationApi.md#get_project) | **GET** /cloud/{cloud_pk}/project/{id} | Retrieve a project
|
|
@@ -295,7 +297,7 @@ Class | Method | HTTP request | Description
|
|
|
295
297
|
*CollaborationApi* | [**get_project_access_tokens**](docs/CollaborationApi.md#get_project_access_tokens) | **GET** /cloud/{cloud_pk}/project/{project_pk}/access-token | Retrieve all tokens created for this project
|
|
296
298
|
*CollaborationApi* | [**get_project_creator_visas**](docs/CollaborationApi.md#get_project_creator_visas) | **GET** /cloud/{cloud_pk}/project/{project_pk}/me/visa/creator | List visas created by user
|
|
297
299
|
*CollaborationApi* | [**get_project_dms_tree**](docs/CollaborationApi.md#get_project_dms_tree) | **GET** /cloud/{cloud_pk}/project/{id}/dms-tree | Retrieve the complete DMS tree
|
|
298
|
-
*CollaborationApi* | [**
|
|
300
|
+
*CollaborationApi* | [**get_project_folder_tree**](docs/CollaborationApi.md#get_project_folder_tree) | **GET** /cloud/{cloud_pk}/project/{id}/folder-tree | Retrieve folder tree of the project
|
|
299
301
|
*CollaborationApi* | [**get_project_invitations**](docs/CollaborationApi.md#get_project_invitations) | **GET** /cloud/{cloud_pk}/project/{project_pk}/invitation | Retrieve all pending invitations in the project
|
|
300
302
|
*CollaborationApi* | [**get_project_size**](docs/CollaborationApi.md#get_project_size) | **GET** /cloud/{cloud_pk}/project/{id}/size | Get size of all model files in the project
|
|
301
303
|
*CollaborationApi* | [**get_project_sub_tree**](docs/CollaborationApi.md#get_project_sub_tree) | **GET** /cloud/{cloud_pk}/project/subtree | Retrieve the complete projects tree of the cloud
|
|
@@ -339,154 +341,6 @@ Class | Method | HTTP request | Description
|
|
|
339
341
|
*CollaborationApi* | [**update_validation**](docs/CollaborationApi.md#update_validation) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/document/{document_pk}/visa/{visa_pk}/validation/{id} | Update the validator of validation
|
|
340
342
|
*CollaborationApi* | [**update_visa**](docs/CollaborationApi.md#update_visa) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/document/{document_pk}/visa/{id} | Update some fields of a visa
|
|
341
343
|
*CollaborationApi* | [**update_visa_comment**](docs/CollaborationApi.md#update_visa_comment) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/document/{document_pk}/visa/{visa_pk}/comment/{id} | Update some fields of a comment
|
|
342
|
-
*IfcApi* | [**add_ifc_errors_deprecated**](docs/IfcApi.md#add_ifc_errors_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/errors | Add errors to model
|
|
343
|
-
*IfcApi* | [**add_zone_space_deprecated**](docs/IfcApi.md#add_zone_space_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{zone_pk}/space/add | Add a space to a zone
|
|
344
|
-
*IfcApi* | [**bulk_delete_ifc_classifications_deprecated**](docs/IfcApi.md#bulk_delete_ifc_classifications_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification/list_destroy | Remove all classifications from model's elements
|
|
345
|
-
*IfcApi* | [**bulk_delete_ifc_properties_deprecated**](docs/IfcApi.md#bulk_delete_ifc_properties_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/bulk_destroy | Delete many Property of a model
|
|
346
|
-
*IfcApi* | [**bulk_delete_ifc_property_definitions_deprecated**](docs/IfcApi.md#bulk_delete_ifc_property_definitions_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertydefinition/bulk_destroy | Delete many PropertyDefinitions of a model
|
|
347
|
-
*IfcApi* | [**bulk_delete_ifc_units_deprecated**](docs/IfcApi.md#bulk_delete_ifc_units_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit/bulk_destroy | Delete many Units of a model
|
|
348
|
-
*IfcApi* | [**bulk_delete_property_set_deprecated**](docs/IfcApi.md#bulk_delete_property_set_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset/bulk_destroy | Delete many PropertySet of a model
|
|
349
|
-
*IfcApi* | [**bulk_full_update_elements_deprecated**](docs/IfcApi.md#bulk_full_update_elements_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/bulk_update | Update many elements at once (only changing fields may be defined)
|
|
350
|
-
*IfcApi* | [**bulk_full_update_ifc_property_deprecated**](docs/IfcApi.md#bulk_full_update_ifc_property_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/bulk_update | Update some fields of many properties of a model
|
|
351
|
-
*IfcApi* | [**bulk_remove_classifications_of_element_deprecated**](docs/IfcApi.md#bulk_remove_classifications_of_element_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/classification/bulk_destroy | Remove many classifications from an element
|
|
352
|
-
*IfcApi* | [**bulk_remove_documents_of_element_deprecated**](docs/IfcApi.md#bulk_remove_documents_of_element_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/documents/bulk_destroy | Remove many documents from an element
|
|
353
|
-
*IfcApi* | [**bulk_remove_elements_from_classification_deprecated**](docs/IfcApi.md#bulk_remove_elements_from_classification_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification/{model_classification_pk}/element/bulk_destroy | Remove the classifications from all elements
|
|
354
|
-
*IfcApi* | [**bulk_update_elements_deprecated**](docs/IfcApi.md#bulk_update_elements_deprecated) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/bulk_update | Update many elements at once (all field must be defined)
|
|
355
|
-
*IfcApi* | [**bulk_update_ifc_property_deprecated**](docs/IfcApi.md#bulk_update_ifc_property_deprecated) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/bulk_update | Update all fields of many properties of a model
|
|
356
|
-
*IfcApi* | [**create_access_token_deprecated**](docs/IfcApi.md#create_access_token_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/access_token | Create a token for this model
|
|
357
|
-
*IfcApi* | [**create_building_deprecated**](docs/IfcApi.md#create_building_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building | Create a building of a model
|
|
358
|
-
*IfcApi* | [**create_building_plan_deprecated**](docs/IfcApi.md#create_building_plan_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building/{building_uuid}/plan/add | Create a relation between a 2d model and a building
|
|
359
|
-
*IfcApi* | [**create_classification_element_relations_deprecated**](docs/IfcApi.md#create_classification_element_relations_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification-element | Create association between existing classification and existing element
|
|
360
|
-
*IfcApi* | [**create_classifications_of_element_deprecated**](docs/IfcApi.md#create_classifications_of_element_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/classification | Create one or many classifications to an element
|
|
361
|
-
*IfcApi* | [**create_element_deprecated**](docs/IfcApi.md#create_element_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element | Create an element in the model
|
|
362
|
-
*IfcApi* | [**create_element_property_set_deprecated**](docs/IfcApi.md#create_element_property_set_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset | Create a PropertySets to an element
|
|
363
|
-
*IfcApi* | [**create_element_property_set_property_definition_deprecated**](docs/IfcApi.md#create_element_property_set_property_definition_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{property_pk}/propertydefinition | Create a Definition to a Property
|
|
364
|
-
*IfcApi* | [**create_element_property_set_property_definition_unit_deprecated**](docs/IfcApi.md#create_element_property_set_property_definition_unit_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{property_pk}/propertydefinition/{propertydefinition_pk}/unit | Create a Unit to a Definition
|
|
365
|
-
*IfcApi* | [**create_element_property_set_property_deprecated**](docs/IfcApi.md#create_element_property_set_property_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property | Create a property to a PropertySet
|
|
366
|
-
*IfcApi* | [**create_ifc_deprecated**](docs/IfcApi.md#create_ifc_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/create-model | Make a PDF or Image file a Model
|
|
367
|
-
*IfcApi* | [**create_ifc_property_definition_deprecated**](docs/IfcApi.md#create_ifc_property_definition_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertydefinition | Create a PropertyDefinition on the model
|
|
368
|
-
*IfcApi* | [**create_ifc_unit_deprecated**](docs/IfcApi.md#create_ifc_unit_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit | Create a Unit on a model
|
|
369
|
-
*IfcApi* | [**create_layer_deprecated**](docs/IfcApi.md#create_layer_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/layer | Create a layer in the model
|
|
370
|
-
*IfcApi* | [**create_meta_building_deprecated**](docs/IfcApi.md#create_meta_building_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/create-metabuilding | Create an empty 3D Model
|
|
371
|
-
*IfcApi* | [**create_multi_page_ifc_deprecated**](docs/IfcApi.md#create_multi_page_ifc_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/create-multipage-model | Create a multi page model
|
|
372
|
-
*IfcApi* | [**create_property_set_deprecated**](docs/IfcApi.md#create_property_set_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset | Create one or many PropertySet
|
|
373
|
-
*IfcApi* | [**create_property_set_element_relations_deprecated**](docs/IfcApi.md#create_property_set_element_relations_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset-element | Create association between PropertySet and element
|
|
374
|
-
*IfcApi* | [**create_raw_elements_deprecated**](docs/IfcApi.md#create_raw_elements_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/raw | Create elements in an optimized format
|
|
375
|
-
*IfcApi* | [**create_space_deprecated**](docs/IfcApi.md#create_space_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/space | Create a space in the model
|
|
376
|
-
*IfcApi* | [**create_storey_deprecated**](docs/IfcApi.md#create_storey_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey | Create a storey of a model
|
|
377
|
-
*IfcApi* | [**create_storey_plan_deprecated**](docs/IfcApi.md#create_storey_plan_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/{storey_uuid}/plan/add | Create a relation between a 2d model and a storey
|
|
378
|
-
*IfcApi* | [**create_system_deprecated**](docs/IfcApi.md#create_system_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/system | Create a system in the model
|
|
379
|
-
*IfcApi* | [**create_tileset_deprecated**](docs/IfcApi.md#create_tileset_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/tileset | Create the tileset of the model and upload all files
|
|
380
|
-
*IfcApi* | [**create_xkt_file_deprecated**](docs/IfcApi.md#create_xkt_file_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/xkt-file | Create an xkt file for the model. Overrides existing file with same version
|
|
381
|
-
*IfcApi* | [**create_zone_deprecated**](docs/IfcApi.md#create_zone_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone | Create a zone in the model
|
|
382
|
-
*IfcApi* | [**create_zone_space_deprecated**](docs/IfcApi.md#create_zone_space_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{zone_pk}/space | Create a space in a zone
|
|
383
|
-
*IfcApi* | [**delete_access_token_deprecated**](docs/IfcApi.md#delete_access_token_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/access_token/{token} | Delete a token
|
|
384
|
-
*IfcApi* | [**delete_building_deprecated**](docs/IfcApi.md#delete_building_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building/{uuid} | Delete a building of a model
|
|
385
|
-
*IfcApi* | [**delete_building_plan_deprecated**](docs/IfcApi.md#delete_building_plan_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building/{building_uuid}/plan/{id} | Delete the relation between a 2d model and a building
|
|
386
|
-
*IfcApi* | [**delete_element_deprecated**](docs/IfcApi.md#delete_element_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{uuid} | Delete an element of a model
|
|
387
|
-
*IfcApi* | [**delete_ifc_deprecated**](docs/IfcApi.md#delete_ifc_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id} | Delete a model
|
|
388
|
-
*IfcApi* | [**delete_ifc_property_definition_deprecated**](docs/IfcApi.md#delete_ifc_property_definition_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertydefinition/{id} | Delete a PropertyDefinitions of a model
|
|
389
|
-
*IfcApi* | [**delete_ifc_property_deprecated**](docs/IfcApi.md#delete_ifc_property_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/{id} | Delete a Property of a model
|
|
390
|
-
*IfcApi* | [**delete_ifc_unit_deprecated**](docs/IfcApi.md#delete_ifc_unit_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit/{id} | Delete a Unit of a model
|
|
391
|
-
*IfcApi* | [**delete_ifc_without_doc_deprecated**](docs/IfcApi.md#delete_ifc_without_doc_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/delete-model | Delete the Model without deleting the related document
|
|
392
|
-
*IfcApi* | [**delete_layer_deprecated**](docs/IfcApi.md#delete_layer_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/layer/{id} | Delete a layer of a model
|
|
393
|
-
*IfcApi* | [**delete_property_set_deprecated**](docs/IfcApi.md#delete_property_set_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset/{id} | Delete a PropertySet of a model
|
|
394
|
-
*IfcApi* | [**delete_space_deprecated**](docs/IfcApi.md#delete_space_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/space/{id} | Delete a space
|
|
395
|
-
*IfcApi* | [**delete_storey_deprecated**](docs/IfcApi.md#delete_storey_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/{uuid} | Delete a storey of a model
|
|
396
|
-
*IfcApi* | [**delete_storey_plan_deprecated**](docs/IfcApi.md#delete_storey_plan_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/{storey_uuid}/plan/{id} | Delete the relation between a 2d model and a storey
|
|
397
|
-
*IfcApi* | [**delete_system_deprecated**](docs/IfcApi.md#delete_system_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/system/{uuid} | Delete a system of a model
|
|
398
|
-
*IfcApi* | [**delete_zone_deprecated**](docs/IfcApi.md#delete_zone_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{id} | Delete a zone of a model
|
|
399
|
-
*IfcApi* | [**delete_zone_space_deprecated**](docs/IfcApi.md#delete_zone_space_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{zone_pk}/space/{id} | Delete the relation between a space and a zone
|
|
400
|
-
*IfcApi* | [**export_ifc_deprecated**](docs/IfcApi.md#export_ifc_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/export | Export IFC
|
|
401
|
-
*IfcApi* | [**full_update_element_deprecated**](docs/IfcApi.md#full_update_element_deprecated) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{uuid} | Update all fields of an element
|
|
402
|
-
*IfcApi* | [**get_access_token_deprecated**](docs/IfcApi.md#get_access_token_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/access_token/{token} | Retrieve one token created for this model
|
|
403
|
-
*IfcApi* | [**get_access_tokens_deprecated**](docs/IfcApi.md#get_access_tokens_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/access_token | Retrieve all tokens created for this model
|
|
404
|
-
*IfcApi* | [**get_building_deprecated**](docs/IfcApi.md#get_building_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building/{uuid} | Retrieve a building of a model
|
|
405
|
-
*IfcApi* | [**get_building_plan_positioning_deprecated**](docs/IfcApi.md#get_building_plan_positioning_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building/{building_uuid}/plan/{id}/positioning | Retrieve the postioning of the plan in the building
|
|
406
|
-
*IfcApi* | [**get_buildings_deprecated**](docs/IfcApi.md#get_buildings_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building | Retrieve all buildings of a model
|
|
407
|
-
*IfcApi* | [**get_classifications_of_element_deprecated**](docs/IfcApi.md#get_classifications_of_element_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/classification | Retrieve all classifications of an element
|
|
408
|
-
*IfcApi* | [**get_documents_of_element_deprecated**](docs/IfcApi.md#get_documents_of_element_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/documents | Retrieve all documents of an element
|
|
409
|
-
*IfcApi* | [**get_element_deprecated**](docs/IfcApi.md#get_element_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{uuid} | Retrieve an element of a model
|
|
410
|
-
*IfcApi* | [**get_element_linked_documents_deprecated**](docs/IfcApi.md#get_element_linked_documents_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/documents | Retrieve all documents linked to any element
|
|
411
|
-
*IfcApi* | [**get_element_property_set_deprecated**](docs/IfcApi.md#get_element_property_set_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{id} | Retrieve a PropertySet of an element
|
|
412
|
-
*IfcApi* | [**get_element_property_set_properties_deprecated**](docs/IfcApi.md#get_element_property_set_properties_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property | Retrieve all Properties of a PropertySet
|
|
413
|
-
*IfcApi* | [**get_element_property_set_property_definition_deprecated**](docs/IfcApi.md#get_element_property_set_property_definition_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{property_pk}/propertydefinition/{id} | Retrieve a Definition of a Property
|
|
414
|
-
*IfcApi* | [**get_element_property_set_property_definition_unit_deprecated**](docs/IfcApi.md#get_element_property_set_property_definition_unit_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{property_pk}/propertydefinition/{propertydefinition_pk}/unit/{id} | Retrieve a Unit of a Definition
|
|
415
|
-
*IfcApi* | [**get_element_property_set_property_definition_units_deprecated**](docs/IfcApi.md#get_element_property_set_property_definition_units_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{property_pk}/propertydefinition/{propertydefinition_pk}/unit | Retrieve all Units of a Definition
|
|
416
|
-
*IfcApi* | [**get_element_property_set_property_definitions_deprecated**](docs/IfcApi.md#get_element_property_set_property_definitions_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{property_pk}/propertydefinition | Retrieve all Definitions of a PropertySet
|
|
417
|
-
*IfcApi* | [**get_element_property_set_property_deprecated**](docs/IfcApi.md#get_element_property_set_property_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{id} | Retrieve a Property of a PropertySet
|
|
418
|
-
*IfcApi* | [**get_element_property_sets_deprecated**](docs/IfcApi.md#get_element_property_sets_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset | Retrieve all PropertySets of an element
|
|
419
|
-
*IfcApi* | [**get_elements_deprecated**](docs/IfcApi.md#get_elements_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element | Retrieve all elements of a model
|
|
420
|
-
*IfcApi* | [**get_elements_from_classification_deprecated**](docs/IfcApi.md#get_elements_from_classification_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification/{model_classification_pk}/element | Retrieve all elements with the classification
|
|
421
|
-
*IfcApi* | [**get_ifc_classifications_deprecated**](docs/IfcApi.md#get_ifc_classifications_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification | Retrieve all classifications in a model
|
|
422
|
-
*IfcApi* | [**get_ifc_deprecated**](docs/IfcApi.md#get_ifc_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id} | Retrieve one model
|
|
423
|
-
*IfcApi* | [**get_ifc_material_deprecated**](docs/IfcApi.md#get_ifc_material_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/material/{id} | Retrieve a material of a model
|
|
424
|
-
*IfcApi* | [**get_ifc_materials_deprecated**](docs/IfcApi.md#get_ifc_materials_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/material | Retrieve all materials of a model
|
|
425
|
-
*IfcApi* | [**get_ifc_properties_deprecated**](docs/IfcApi.md#get_ifc_properties_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property | Retrieve all Properties of a model
|
|
426
|
-
*IfcApi* | [**get_ifc_property_definition_deprecated**](docs/IfcApi.md#get_ifc_property_definition_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertydefinition/{id} | Retrieve a PropertyDefinition of a model
|
|
427
|
-
*IfcApi* | [**get_ifc_property_definitions_deprecated**](docs/IfcApi.md#get_ifc_property_definitions_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertydefinition | Retrieve all PropertyDefinitions of a model
|
|
428
|
-
*IfcApi* | [**get_ifc_property_deprecated**](docs/IfcApi.md#get_ifc_property_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/{id} | Retrieve a Property of a model
|
|
429
|
-
*IfcApi* | [**get_ifc_unit_deprecated**](docs/IfcApi.md#get_ifc_unit_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit/{id} | Retrieve a Unit of a model
|
|
430
|
-
*IfcApi* | [**get_ifc_units_deprecated**](docs/IfcApi.md#get_ifc_units_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit | Retrieve all Units of a model
|
|
431
|
-
*IfcApi* | [**get_ifcs_deprecated**](docs/IfcApi.md#get_ifcs_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc | Retrieve all models
|
|
432
|
-
*IfcApi* | [**get_layer_deprecated**](docs/IfcApi.md#get_layer_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/layer/{id} | Retrieve a layer of a model
|
|
433
|
-
*IfcApi* | [**get_layers_deprecated**](docs/IfcApi.md#get_layers_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/layer | Retrieve all layers of a model
|
|
434
|
-
*IfcApi* | [**get_material_deprecated**](docs/IfcApi.md#get_material_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/material/{id} | Retrieve a material of a model
|
|
435
|
-
*IfcApi* | [**get_materials_deprecated**](docs/IfcApi.md#get_materials_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/material | Retrieve all materials of a model
|
|
436
|
-
*IfcApi* | [**get_processor_handler_deprecated**](docs/IfcApi.md#get_processor_handler_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/processorhandler/{id} | Retrieve a processor handler
|
|
437
|
-
*IfcApi* | [**get_processor_handlers_deprecated**](docs/IfcApi.md#get_processor_handlers_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/processorhandler | Get all processor handlers
|
|
438
|
-
*IfcApi* | [**get_property_set_deprecated**](docs/IfcApi.md#get_property_set_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset/{id} | Retrieve a PropertySet of a model
|
|
439
|
-
*IfcApi* | [**get_property_sets_deprecated**](docs/IfcApi.md#get_property_sets_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset | Retrieve all PropertySets of a model
|
|
440
|
-
*IfcApi* | [**get_raw_elements_deprecated**](docs/IfcApi.md#get_raw_elements_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/raw | Retrieve all elements in a optimized format
|
|
441
|
-
*IfcApi* | [**get_simple_element_deprecated**](docs/IfcApi.md#get_simple_element_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{uuid}/simple | Retrieve an element of a model with a simple value representation
|
|
442
|
-
*IfcApi* | [**get_simple_elements_deprecated**](docs/IfcApi.md#get_simple_elements_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/simple | Retrieve all elements of a model with a simple value representation
|
|
443
|
-
*IfcApi* | [**get_space_deprecated**](docs/IfcApi.md#get_space_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/space/{id} | Retrieve one space of the model
|
|
444
|
-
*IfcApi* | [**get_spaces_deprecated**](docs/IfcApi.md#get_spaces_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/space | Retrieve all spaces of the model
|
|
445
|
-
*IfcApi* | [**get_storey_deprecated**](docs/IfcApi.md#get_storey_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/{uuid} | Retrieve a storey of a model
|
|
446
|
-
*IfcApi* | [**get_storey_plan_positioning_deprecated**](docs/IfcApi.md#get_storey_plan_positioning_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/{storey_uuid}/plan/{id}/positioning | Retrieve the postioning of the plan in the storey
|
|
447
|
-
*IfcApi* | [**get_storeys_deprecated**](docs/IfcApi.md#get_storeys_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey | Retrieve all storeys of a model
|
|
448
|
-
*IfcApi* | [**get_system_deprecated**](docs/IfcApi.md#get_system_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/system/{uuid} | Retrieve a system of a model
|
|
449
|
-
*IfcApi* | [**get_systems_deprecated**](docs/IfcApi.md#get_systems_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/system | Retrieve all systems of a model
|
|
450
|
-
*IfcApi* | [**get_tileset_deprecated**](docs/IfcApi.md#get_tileset_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/tileset | Retrieve the tileset of the model
|
|
451
|
-
*IfcApi* | [**get_zone_deprecated**](docs/IfcApi.md#get_zone_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{id} | Retrieve one zone of a model
|
|
452
|
-
*IfcApi* | [**get_zone_space_deprecated**](docs/IfcApi.md#get_zone_space_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{zone_pk}/space/{id} | Retrieve one space of a zone
|
|
453
|
-
*IfcApi* | [**get_zone_spaces_deprecated**](docs/IfcApi.md#get_zone_spaces_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{zone_pk}/space | Retrieve all spaces of a zone
|
|
454
|
-
*IfcApi* | [**get_zones_deprecated**](docs/IfcApi.md#get_zones_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone | Retrieve zones of a model
|
|
455
|
-
*IfcApi* | [**link_documents_of_element_deprecated**](docs/IfcApi.md#link_documents_of_element_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/documents | Link one or many documents to an element
|
|
456
|
-
*IfcApi* | [**list_classification_element_relations_deprecated**](docs/IfcApi.md#list_classification_element_relations_deprecated) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification-element | List all associations between classifications and elements
|
|
457
|
-
*IfcApi* | [**merge_ifcs_deprecated**](docs/IfcApi.md#merge_ifcs_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/merge | Merge IFC files
|
|
458
|
-
*IfcApi* | [**optimize_ifc_deprecated**](docs/IfcApi.md#optimize_ifc_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/optimize | Optimize the IFC
|
|
459
|
-
*IfcApi* | [**remove_all_element_property_set_deprecated**](docs/IfcApi.md#remove_all_element_property_set_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/all | Remove all property sets from element
|
|
460
|
-
*IfcApi* | [**remove_classification_of_element_deprecated**](docs/IfcApi.md#remove_classification_of_element_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/classification/{id} | Remove a classification from an element
|
|
461
|
-
*IfcApi* | [**remove_document_of_element_deprecated**](docs/IfcApi.md#remove_document_of_element_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/documents/{id} | Remove a documents from an element
|
|
462
|
-
*IfcApi* | [**remove_element_property_set_deprecated**](docs/IfcApi.md#remove_element_property_set_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{id} | Remove a PropertySet from an element
|
|
463
|
-
*IfcApi* | [**remove_element_property_set_property_definition_deprecated**](docs/IfcApi.md#remove_element_property_set_property_definition_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{property_pk}/propertydefinition/{id} | Delete a Definition to a Property
|
|
464
|
-
*IfcApi* | [**remove_element_property_set_property_definition_unit_deprecated**](docs/IfcApi.md#remove_element_property_set_property_definition_unit_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{property_pk}/propertydefinition/{propertydefinition_pk}/unit/{id} | Remove a Unit from a Definition
|
|
465
|
-
*IfcApi* | [**remove_element_property_set_property_deprecated**](docs/IfcApi.md#remove_element_property_set_property_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{id} | Remove a property from a PropertySet
|
|
466
|
-
*IfcApi* | [**remove_elements_from_classification_deprecated**](docs/IfcApi.md#remove_elements_from_classification_deprecated) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification/{model_classification_pk}/element/{uuid} | Remove the classification from all elements
|
|
467
|
-
*IfcApi* | [**reprocess_ifc_deprecated**](docs/IfcApi.md#reprocess_ifc_deprecated) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/reprocess | Reprocess Model file
|
|
468
|
-
*IfcApi* | [**update_access_token_deprecated**](docs/IfcApi.md#update_access_token_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/access_token/{token} | Update some fields of a token
|
|
469
|
-
*IfcApi* | [**update_building_deprecated**](docs/IfcApi.md#update_building_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building/{uuid} | Update some fields of a building
|
|
470
|
-
*IfcApi* | [**update_building_plan_positioning_deprecated**](docs/IfcApi.md#update_building_plan_positioning_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building/{building_uuid}/plan/{id}/positioning | Update the postioning of the plan in the building
|
|
471
|
-
*IfcApi* | [**update_element_deprecated**](docs/IfcApi.md#update_element_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{uuid} | Update some fields of an element
|
|
472
|
-
*IfcApi* | [**update_element_property_set_property_deprecated**](docs/IfcApi.md#update_element_property_set_property_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{id} | Update a property from an element
|
|
473
|
-
*IfcApi* | [**update_ifc_deprecated**](docs/IfcApi.md#update_ifc_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id} | Update some fields of a model
|
|
474
|
-
*IfcApi* | [**update_ifc_files_deprecated**](docs/IfcApi.md#update_ifc_files_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/files | Update models file (gltf, svg, structure, etc)
|
|
475
|
-
*IfcApi* | [**update_ifc_property_definition_deprecated**](docs/IfcApi.md#update_ifc_property_definition_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertydefinition/{id} | Update some fields of many PropertyDefinitions of a model
|
|
476
|
-
*IfcApi* | [**update_ifc_property_deprecated**](docs/IfcApi.md#update_ifc_property_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/{id} | Update some fields of a Property
|
|
477
|
-
*IfcApi* | [**update_ifc_unit_deprecated**](docs/IfcApi.md#update_ifc_unit_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit/{id} | Update some fields of a Unit of a model
|
|
478
|
-
*IfcApi* | [**update_layer_deprecated**](docs/IfcApi.md#update_layer_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/layer/{id} | Update some fields of a layer
|
|
479
|
-
*IfcApi* | [**update_order_building_plan_deprecated**](docs/IfcApi.md#update_order_building_plan_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/building/{building_uuid}/plan/order | Update order of all plan of a building
|
|
480
|
-
*IfcApi* | [**update_order_storey_plan_deprecated**](docs/IfcApi.md#update_order_storey_plan_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/{storey_uuid}/plan/order | Update order of all plan of a storey
|
|
481
|
-
*IfcApi* | [**update_order_storeys_deprecated**](docs/IfcApi.md#update_order_storeys_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/order | Update order of all storey of a model
|
|
482
|
-
*IfcApi* | [**update_processor_handler_deprecated**](docs/IfcApi.md#update_processor_handler_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/processorhandler/{id} | Update the status of a processor handler
|
|
483
|
-
*IfcApi* | [**update_property_set_deprecated**](docs/IfcApi.md#update_property_set_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset/{id} | Update some fields of a PropertySet
|
|
484
|
-
*IfcApi* | [**update_space_deprecated**](docs/IfcApi.md#update_space_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/space/{id} | Update some fields of a space
|
|
485
|
-
*IfcApi* | [**update_storey_deprecated**](docs/IfcApi.md#update_storey_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/{uuid} | Update some fields of a storey
|
|
486
|
-
*IfcApi* | [**update_storey_plan_positioning_deprecated**](docs/IfcApi.md#update_storey_plan_positioning_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/storey/{storey_uuid}/plan/{id}/positioning | Update the postioning of the plan in the storey
|
|
487
|
-
*IfcApi* | [**update_system_deprecated**](docs/IfcApi.md#update_system_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/system/{uuid} | Update some fields of a system
|
|
488
|
-
*IfcApi* | [**update_zone_deprecated**](docs/IfcApi.md#update_zone_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{id} | Update some fields of a zone
|
|
489
|
-
*IfcApi* | [**update_zone_space_deprecated**](docs/IfcApi.md#update_zone_space_deprecated) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{zone_pk}/space/{id} | Update some fields of a space
|
|
490
344
|
*ModelApi* | [**add_model_errors**](docs/ModelApi.md#add_model_errors) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{id}/errors | Add errors to model
|
|
491
345
|
*ModelApi* | [**add_zone_space**](docs/ModelApi.md#add_zone_space) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/zone/{zone_pk}/space/add | Add a space to a zone
|
|
492
346
|
*ModelApi* | [**bulk_delete_model_classifications**](docs/ModelApi.md#bulk_delete_model_classifications) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/classification/list_destroy | Remove all classifications from model's elements
|
|
@@ -506,6 +360,7 @@ Class | Method | HTTP request | Description
|
|
|
506
360
|
*ModelApi* | [**create_building_plan**](docs/ModelApi.md#create_building_plan) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/building/{building_uuid}/plan/add | Create a relation between a 2d model and a building
|
|
507
361
|
*ModelApi* | [**create_classification_element_relations**](docs/ModelApi.md#create_classification_element_relations) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/classification-element | Create association between existing classification and existing element
|
|
508
362
|
*ModelApi* | [**create_classifications_of_element**](docs/ModelApi.md#create_classifications_of_element) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{element_uuid}/classification | Create one or many classifications to an element
|
|
363
|
+
*ModelApi* | [**create_drawing**](docs/ModelApi.md#create_drawing) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/drawing | Create a drawing in the model
|
|
509
364
|
*ModelApi* | [**create_element**](docs/ModelApi.md#create_element) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element | Create an element in the model
|
|
510
365
|
*ModelApi* | [**create_element_property_set**](docs/ModelApi.md#create_element_property_set) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{element_uuid}/propertyset | Create a PropertySets to an element
|
|
511
366
|
*ModelApi* | [**create_element_property_set_property**](docs/ModelApi.md#create_element_property_set_property) | **POST** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property | Create a property to a PropertySet
|
|
@@ -531,6 +386,7 @@ Class | Method | HTTP request | Description
|
|
|
531
386
|
*ModelApi* | [**delete_access_token**](docs/ModelApi.md#delete_access_token) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/access_token/{token} | Delete a token
|
|
532
387
|
*ModelApi* | [**delete_building**](docs/ModelApi.md#delete_building) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/building/{uuid} | Delete a building of a model
|
|
533
388
|
*ModelApi* | [**delete_building_plan**](docs/ModelApi.md#delete_building_plan) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/building/{building_uuid}/plan/{id} | Delete the relation between a 2d model and a building
|
|
389
|
+
*ModelApi* | [**delete_drawing**](docs/ModelApi.md#delete_drawing) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/drawing/{id} | Delete a drawing of a model
|
|
534
390
|
*ModelApi* | [**delete_element**](docs/ModelApi.md#delete_element) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{uuid} | Delete an element of a model
|
|
535
391
|
*ModelApi* | [**delete_layer**](docs/ModelApi.md#delete_layer) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/layer/{id} | Delete a layer of a model
|
|
536
392
|
*ModelApi* | [**delete_model**](docs/ModelApi.md#delete_model) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/model/{id} | Delete a model
|
|
@@ -554,6 +410,8 @@ Class | Method | HTTP request | Description
|
|
|
554
410
|
*ModelApi* | [**get_buildings**](docs/ModelApi.md#get_buildings) | **GET** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/building | Retrieve all buildings of a model
|
|
555
411
|
*ModelApi* | [**get_classifications_of_element**](docs/ModelApi.md#get_classifications_of_element) | **GET** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{element_uuid}/classification | Retrieve all classifications of an element
|
|
556
412
|
*ModelApi* | [**get_documents_of_element**](docs/ModelApi.md#get_documents_of_element) | **GET** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{element_uuid}/documents | Retrieve all documents of an element
|
|
413
|
+
*ModelApi* | [**get_drawing**](docs/ModelApi.md#get_drawing) | **GET** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/drawing/{id} | Retrieve a drawing of a model
|
|
414
|
+
*ModelApi* | [**get_drawings**](docs/ModelApi.md#get_drawings) | **GET** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/drawing | Retrieve all drawings of a model
|
|
557
415
|
*ModelApi* | [**get_element**](docs/ModelApi.md#get_element) | **GET** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{uuid} | Retrieve an element of a model
|
|
558
416
|
*ModelApi* | [**get_element_linked_documents**](docs/ModelApi.md#get_element_linked_documents) | **GET** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/documents | Retrieve all documents linked to any element
|
|
559
417
|
*ModelApi* | [**get_element_property_set**](docs/ModelApi.md#get_element_property_set) | **GET** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{element_uuid}/propertyset/{id} | Retrieve a PropertySet of an element
|
|
@@ -616,6 +474,7 @@ Class | Method | HTTP request | Description
|
|
|
616
474
|
*ModelApi* | [**update_access_token**](docs/ModelApi.md#update_access_token) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/access_token/{token} | Update some fields of a token
|
|
617
475
|
*ModelApi* | [**update_building**](docs/ModelApi.md#update_building) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/building/{uuid} | Update some fields of a building
|
|
618
476
|
*ModelApi* | [**update_building_plan_positioning**](docs/ModelApi.md#update_building_plan_positioning) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/building/{building_uuid}/plan/{id}/positioning | Update the postioning of the plan in the building
|
|
477
|
+
*ModelApi* | [**update_drawing**](docs/ModelApi.md#update_drawing) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/drawing/{id} | Update some fields of a drawing
|
|
619
478
|
*ModelApi* | [**update_element**](docs/ModelApi.md#update_element) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{uuid} | Update some fields of an element
|
|
620
479
|
*ModelApi* | [**update_element_property_set_property**](docs/ModelApi.md#update_element_property_set_property) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/element/{element_uuid}/propertyset/{propertyset_pk}/property/{id} | Update a property from an element
|
|
621
480
|
*ModelApi* | [**update_layer**](docs/ModelApi.md#update_layer) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/model/{model_pk}/layer/{id} | Update some fields of a layer
|
|
@@ -684,6 +543,8 @@ Class | Method | HTTP request | Description
|
|
|
684
543
|
- [Document](docs/Document.md)
|
|
685
544
|
- [DocumentPreviewFile](docs/DocumentPreviewFile.md)
|
|
686
545
|
- [DocumentWithElementList](docs/DocumentWithElementList.md)
|
|
546
|
+
- [Drawing](docs/Drawing.md)
|
|
547
|
+
- [DrawingRequest](docs/DrawingRequest.md)
|
|
687
548
|
- [Element](docs/Element.md)
|
|
688
549
|
- [ElementClassificationRelation](docs/ElementClassificationRelation.md)
|
|
689
550
|
- [ElementClassificationRelationRequest](docs/ElementClassificationRelationRequest.md)
|
|
@@ -720,6 +581,7 @@ Class | Method | HTTP request | Description
|
|
|
720
581
|
- [LayerRequest](docs/LayerRequest.md)
|
|
721
582
|
- [Line](docs/Line.md)
|
|
722
583
|
- [LineRequest](docs/LineRequest.md)
|
|
584
|
+
- [LogEntry](docs/LogEntry.md)
|
|
723
585
|
- [MarketplaceAppImage](docs/MarketplaceAppImage.md)
|
|
724
586
|
- [MarketplaceAppLight](docs/MarketplaceAppLight.md)
|
|
725
587
|
- [MarketplaceAppLightRequest](docs/MarketplaceAppLightRequest.md)
|
|
@@ -744,6 +606,7 @@ Class | Method | HTTP request | Description
|
|
|
744
606
|
- [PatchedCloudRequest](docs/PatchedCloudRequest.md)
|
|
745
607
|
- [PatchedCommentRequest](docs/PatchedCommentRequest.md)
|
|
746
608
|
- [PatchedDocumentRequest](docs/PatchedDocumentRequest.md)
|
|
609
|
+
- [PatchedDrawingRequest](docs/PatchedDrawingRequest.md)
|
|
747
610
|
- [PatchedElementRequest](docs/PatchedElementRequest.md)
|
|
748
611
|
- [PatchedFolderWithoutChildrenRequest](docs/PatchedFolderWithoutChildrenRequest.md)
|
|
749
612
|
- [PatchedFullTopicRequest](docs/PatchedFullTopicRequest.md)
|
|
@@ -772,6 +635,7 @@ Class | Method | HTTP request | Description
|
|
|
772
635
|
- [PatchedUnitRequest](docs/PatchedUnitRequest.md)
|
|
773
636
|
- [PatchedUserCloudUpdateRequest](docs/PatchedUserCloudUpdateRequest.md)
|
|
774
637
|
- [PatchedUserProjectUpdateRequest](docs/PatchedUserProjectUpdateRequest.md)
|
|
638
|
+
- [PatchedViewpointRequest](docs/PatchedViewpointRequest.md)
|
|
775
639
|
- [PatchedVisaCommentRequest](docs/PatchedVisaCommentRequest.md)
|
|
776
640
|
- [PatchedVisaRequest](docs/PatchedVisaRequest.md)
|
|
777
641
|
- [PatchedVisaValidationRequest](docs/PatchedVisaValidationRequest.md)
|
|
@@ -791,7 +655,6 @@ Class | Method | HTTP request | Description
|
|
|
791
655
|
- [Project](docs/Project.md)
|
|
792
656
|
- [ProjectAccessToken](docs/ProjectAccessToken.md)
|
|
793
657
|
- [ProjectAccessTokenRequest](docs/ProjectAccessTokenRequest.md)
|
|
794
|
-
- [ProjectFolderTree](docs/ProjectFolderTree.md)
|
|
795
658
|
- [ProjectImportRequest](docs/ProjectImportRequest.md)
|
|
796
659
|
- [ProjectInvitation](docs/ProjectInvitation.md)
|
|
797
660
|
- [ProjectInvitationRequest](docs/ProjectInvitationRequest.md)
|
|
@@ -871,6 +734,8 @@ Class | Method | HTTP request | Description
|
|
|
871
734
|
- [Viewpoint](docs/Viewpoint.md)
|
|
872
735
|
- [ViewpointRequest](docs/ViewpointRequest.md)
|
|
873
736
|
- [Visa](docs/Visa.md)
|
|
737
|
+
- [VisaAttachment](docs/VisaAttachment.md)
|
|
738
|
+
- [VisaAttachmentRequest](docs/VisaAttachmentRequest.md)
|
|
874
739
|
- [VisaComment](docs/VisaComment.md)
|
|
875
740
|
- [VisaCommentRequest](docs/VisaCommentRequest.md)
|
|
876
741
|
- [VisaRequest](docs/VisaRequest.md)
|
|
@@ -946,5 +811,3 @@ from bimdata_api_client.apis import *
|
|
|
946
811
|
from bimdata_api_client.models import *
|
|
947
812
|
```
|
|
948
813
|
|
|
949
|
-
|
|
950
|
-
|