Skip to content

Commit d35212c

Browse files
committed
MINOR: Add log for cloud invitations (#746)
* Add cloud invitation logs. * Add log for canceled invitations. * Add migration to delete unwanted UserProject. * Fix typo. * Better log action naming. * Fix migration. * Rename log decorators.
1 parent 983d34b commit d35212c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

bimdata_api_client/api/collaboration_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8741,7 +8741,7 @@ def create_document(
87418741
):
87428742
"""Create a document # noqa: E501
87438743

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

docs/CollaborationApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1482,8 +1482,8 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
14821482
id = 1 # int | A unique integer value identifying this project.
14831483
write_folder_request = [
14841484
WriteFolderRequest(
1485-
default_permission=1,
14861485
name="name_example",
1486+
default_permission=1,
14871487
parent_id=1,
14881488
children=[
14891489
WriteFolderRequest(),
@@ -1541,7 +1541,7 @@ Name | Type | Description | Notes
15411541
15421542
Create a document
15431543

1544-
Create a document. If the document is one of {'OBJ', 'POINT_CLOUD', 'DXF', 'DWG', 'GLTF', 'IFC'}, a model will be created and attached to this document Required scopes: document:write
1544+
Create a document. If the document is one of {'POINT_CLOUD', 'DWG', 'IFC', 'DXF', 'GLTF', 'OBJ'}, a model will be created and attached to this document Required scopes: document:write
15451545

15461546
### Example
15471547

0 commit comments

Comments
 (0)