Skip to content

Commit

Permalink
MINOR: Add filters and document and some utility routes (#710)
Browse files Browse the repository at this point in the history
* add folder:id/document route and visa validation attachment

* add filter on first level

* add document advanced filters and folder-tree route

* remove uselesss unpacking operator
  • Loading branch information
Bimdata-io committed Dec 13, 2023
1 parent 81c1d8e commit 1c43bba
Show file tree
Hide file tree
Showing 13 changed files with 1,378 additions and 38 deletions.
3 changes: 3 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ bimdata_api_client/model/view_setup_hints_request.py
bimdata_api_client/model/viewpoint.py
bimdata_api_client/model/viewpoint_request.py
bimdata_api_client/model/visa.py
bimdata_api_client/model/visa_attachment.py
bimdata_api_client/model/visa_comment.py
bimdata_api_client/model/visa_comment_request.py
bimdata_api_client/model/visa_request.py
Expand Down Expand Up @@ -487,6 +488,7 @@ docs/ViewSetupHintsRequest.md
docs/Viewpoint.md
docs/ViewpointRequest.md
docs/Visa.md
docs/VisaAttachment.md
docs/VisaComment.md
docs/VisaCommentRequest.md
docs/VisaRequest.md
Expand Down Expand Up @@ -737,6 +739,7 @@ test/test_view_setup_hints_request.py
test/test_viewpoint.py
test/test_viewpoint_request.py
test/test_visa.py
test/test_visa_attachment.py
test/test_visa_comment.py
test/test_visa_comment_request.py
test/test_visa_request.py
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ Class | Method | HTTP request | Description
*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
*CollaborationApi* | [**get_documents**](docs/CollaborationApi.md#get_documents) | **GET** /cloud/{cloud_pk}/project/{project_pk}/document | Retrieve all documents
*CollaborationApi* | [**get_folder**](docs/CollaborationApi.md#get_folder) | **GET** /cloud/{cloud_pk}/project/{project_pk}/folder/{id} | Retrieve a folder
*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
*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
*CollaborationApi* | [**get_folders**](docs/CollaborationApi.md#get_folders) | **GET** /cloud/{cloud_pk}/project/{project_pk}/folder | Retrieve all folders
*CollaborationApi* | [**get_group**](docs/CollaborationApi.md#get_group) | **GET** /cloud/{cloud_pk}/project/{project_pk}/me/group/{id} | Retrieve a group
Expand All @@ -285,6 +286,7 @@ Class | Method | HTTP request | Description
*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
*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
*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
*CollaborationApi* | [**get_project_folder_tree**](docs/CollaborationApi.md#get_project_folder_tree) | **GET** /cloud/{cloud_pk}/project/{id}/folder-trees | Retrieve folder tree of the project
*CollaborationApi* | [**get_project_folder_tree_serializers**](docs/CollaborationApi.md#get_project_folder_tree_serializers) | **GET** /cloud/{cloud_pk}/project/folder-trees | Retrieve folder tree for all projects
*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
*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
Expand Down Expand Up @@ -875,6 +877,7 @@ Class | Method | HTTP request | Description
- [Viewpoint](docs/Viewpoint.md)
- [ViewpointRequest](docs/ViewpointRequest.md)
- [Visa](docs/Visa.md)
- [VisaAttachment](docs/VisaAttachment.md)
- [VisaComment](docs/VisaComment.md)
- [VisaCommentRequest](docs/VisaCommentRequest.md)
- [VisaRequest](docs/VisaRequest.md)
Expand Down
Loading

0 comments on commit 1c43bba

Please sign in to comment.