Skip to content

Commit 7d29aa4

Browse files
committed
MINOR: add project description (#659)
1 parent c7e492e commit 7d29aa4

File tree

84 files changed

+199
-177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+199
-177
lines changed

bimdata_api_client/api/collaboration_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8303,7 +8303,7 @@ def create_document(
83038303
):
83048304
"""Create a document # noqa: E501
83058305

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

@@ -8320,8 +8320,8 @@ def create_document(
83208320
parent_id (int, none_type): [optional]
83218321
file_name (str): Full name of the file. [optional]
83228322
description (str, none_type): Description of the file. [optional]
8323-
model_source (str): Define the model.source field if the upload is a Model (IFC, PDF, DWG...). [optional]
8324-
ifc_source (str): DEPRECATED: Use 'model_source' instead. Define the model.source field if the upload is a Model (IFC, PDF, DWG...). [optional]
8323+
model_source (str): Define the model.source field if the upload is a Model (IFC, PDF, DWG...) * `UPLOAD` - UPLOAD * `SPLIT` - SPLIT * `MERGE` - MERGE * `EXPORT` - EXPORT * `OPTIMIZED` - OPTIMIZED. [optional]
8324+
ifc_source (str): DEPRECATED: Use 'model_source' instead. Define the model.source field if the upload is a Model (IFC, PDF, DWG...) * `UPLOAD` - UPLOAD * `SPLIT` - SPLIT * `MERGE` - MERGE * `EXPORT` - EXPORT * `OPTIMIZED` - OPTIMIZED. [optional]
83258325
successor_of (int): Old document version to replace. Only for create. [optional]
83268326
_return_http_data_only (bool): response data without head status
83278327
code and headers. Default is True.

bimdata_api_client/api/ifc_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20862,9 +20862,9 @@ def get_ifcs_deprecated(
2086220862
project_pk (int):
2086320863

2086420864
Keyword Args:
20865-
source (str): [optional]
20866-
status ([str]): [optional]
20867-
type ([str]): [optional]
20865+
source (str): * `UPLOAD` - UPLOAD * `SPLIT` - SPLIT * `MERGE` - MERGE * `EXPORT` - EXPORT * `OPTIMIZED` - OPTIMIZED * `UPLOAD` - UPLOAD * `SPLIT` - SPLIT * `MERGE` - MERGE * `EXPORT` - EXPORT * `OPTIMIZED` - OPTIMIZED. [optional]
20866+
status ([str]): * `C` - completed * `D` - deleted * `P` - pending * `W` - waiting * `I` - in process * `E` - errored * `X` - won't fix * `C` - completed * `D` - deleted * `P` - pending * `W` - waiting * `I` - in process * `E` - errored * `X` - won't fix. [optional]
20867+
type ([str]): * `IFC` - IFC * `DWG` - DWG * `DXF` - DXF * `GLTF` - GLTF * `PDF` - PDF * `JPEG` - JPEG * `PNG` - PNG * `OBJ` - OBJ * `POINT_CLOUD` - POINT_CLOUD * `METABUILDING` - METABUILDING * `IFC` - IFC * `DWG` - DWG * `DXF` - DXF * `GLTF` - GLTF * `PDF` - PDF * `JPEG` - JPEG * `PNG` - PNG * `OBJ` - OBJ * `POINT_CLOUD` - POINT_CLOUD * `METABUILDING` - METABUILDING. [optional]
2086820868
_return_http_data_only (bool): response data without head status
2086920869
code and headers. Default is True.
2087020870
_preload_content (bool): if False, the urllib3.HTTPResponse object

bimdata_api_client/api/model_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19692,9 +19692,9 @@ def get_models(
1969219692
project_pk (int):
1969319693

1969419694
Keyword Args:
19695-
source (str): [optional]
19696-
status ([str]): [optional]
19697-
type ([str]): [optional]
19695+
source (str): * `UPLOAD` - UPLOAD * `SPLIT` - SPLIT * `MERGE` - MERGE * `EXPORT` - EXPORT * `OPTIMIZED` - OPTIMIZED * `UPLOAD` - UPLOAD * `SPLIT` - SPLIT * `MERGE` - MERGE * `EXPORT` - EXPORT * `OPTIMIZED` - OPTIMIZED. [optional]
19696+
status ([str]): * `C` - completed * `D` - deleted * `P` - pending * `W` - waiting * `I` - in process * `E` - errored * `X` - won't fix * `C` - completed * `D` - deleted * `P` - pending * `W` - waiting * `I` - in process * `E` - errored * `X` - won't fix. [optional]
19697+
type ([str]): * `IFC` - IFC * `DWG` - DWG * `DXF` - DXF * `GLTF` - GLTF * `PDF` - PDF * `JPEG` - JPEG * `PNG` - PNG * `OBJ` - OBJ * `POINT_CLOUD` - POINT_CLOUD * `METABUILDING` - METABUILDING * `IFC` - IFC * `DWG` - DWG * `DXF` - DXF * `GLTF` - GLTF * `PDF` - PDF * `JPEG` - JPEG * `PNG` - PNG * `OBJ` - OBJ * `POINT_CLOUD` - POINT_CLOUD * `METABUILDING` - METABUILDING. [optional]
1969819698
_return_http_data_only (bool): response data without head status
1969919699
code and headers. Default is True.
1970019700
_preload_content (bool): if False, the urllib3.HTTPResponse object

bimdata_api_client/api/sso_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ def get_invitations(
621621
622622
623623
Keyword Args:
624-
status (str): A: Accepted D: Denied P: Pending . [optional]
624+
status (str): A: Accepted D: Denied P: Pending * `A` - accepted * `D` - denied * `P` - pending. [optional]
625625
_return_http_data_only (bool): response data without head status
626626
code and headers. Default is True.
627627
_preload_content (bool): if False, the urllib3.HTTPResponse object

bimdata_api_client/model/check_project_access.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def _from_openapi_data(cls, has_read_permission, has_write_permission, has_admin
157157
Animal class but this time we won't travel
158158
through its discriminator because we passed in
159159
_visited_composed_classes = (Animal,)
160-
user_role (int): [optional] # noqa: E501
160+
user_role (int): * `100` - admin * `50` - user * `25` - guest. [optional] # noqa: E501
161161
"""
162162

163163
_check_type = kwargs.pop('_check_type', True)
@@ -251,7 +251,7 @@ def __init__(self, has_read_permission, has_write_permission, has_admin_permissi
251251
Animal class but this time we won't travel
252252
through its discriminator because we passed in
253253
_visited_composed_classes = (Animal,)
254-
user_role (int): [optional] # noqa: E501
254+
user_role (int): * `100` - admin * `50` - user * `25` - guest. [optional] # noqa: E501
255255
"""
256256

257257
_check_type = kwargs.pop('_check_type', True)

bimdata_api_client/model/checker_result.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def _from_openapi_data(cls, id, created_at, updated_at, *args, **kwargs): # noq
158158
Animal class but this time we won't travel
159159
through its discriminator because we passed in
160160
_visited_composed_classes = (Animal,)
161-
status (str): [optional] # noqa: E501
161+
status (str): * `C` - completed * `P` - pending * `E` - errored. [optional] # noqa: E501
162162
result (str, none_type): [optional] # noqa: E501
163163
collisions (str, none_type): [optional] # noqa: E501
164164
"""
@@ -245,7 +245,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
245245
Animal class but this time we won't travel
246246
through its discriminator because we passed in
247247
_visited_composed_classes = (Animal,)
248-
status (str): [optional] # noqa: E501
248+
status (str): * `C` - completed * `P` - pending * `E` - errored. [optional] # noqa: E501
249249
result (str, none_type): [optional] # noqa: E501
250250
collisions (str, none_type): [optional] # noqa: E501
251251
"""

bimdata_api_client/model/checker_result_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
149149
Animal class but this time we won't travel
150150
through its discriminator because we passed in
151151
_visited_composed_classes = (Animal,)
152-
status (str): [optional] # noqa: E501
152+
status (str): * `C` - completed * `P` - pending * `E` - errored. [optional] # noqa: E501
153153
result (str, none_type): [optional] # noqa: E501
154154
collisions (str, none_type): [optional] # noqa: E501
155155
error_detail (str): [optional] # noqa: E501
@@ -234,7 +234,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
234234
Animal class but this time we won't travel
235235
through its discriminator because we passed in
236236
_visited_composed_classes = (Animal,)
237-
status (str): [optional] # noqa: E501
237+
status (str): * `C` - completed * `P` - pending * `E` - errored. [optional] # noqa: E501
238238
result (str, none_type): [optional] # noqa: E501
239239
collisions (str, none_type): [optional] # noqa: E501
240240
error_detail (str): [optional] # noqa: E501

bimdata_api_client/model/cloud_invitation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def _from_openapi_data(cls, id, email, redirect_uri, role, *args, **kwargs): #
126126
id (int):
127127
email (str): email of the user to invite
128128
redirect_uri (str): User will be redirected to this uri when they accept the invitation
129-
role (int):
129+
role (int): * `100` - admin * `50` - user
130130
131131
Keyword Args:
132132
_check_type (bool): if True, values for parameters in openapi_types

bimdata_api_client/model/cloud_role.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def _from_openapi_data(cls, cloud, *args, **kwargs): # noqa: E501
148148
Animal class but this time we won't travel
149149
through its discriminator because we passed in
150150
_visited_composed_classes = (Animal,)
151-
role (int): Role of the user in the cloud. [optional] # noqa: E501
151+
role (int): Role of the user in the cloud * `100` - admin * `50` - user. [optional] # noqa: E501
152152
"""
153153

154154
_check_type = kwargs.pop('_check_type', True)
@@ -234,7 +234,7 @@ def __init__(self, cloud, *args, **kwargs): # noqa: E501
234234
Animal class but this time we won't travel
235235
through its discriminator because we passed in
236236
_visited_composed_classes = (Animal,)
237-
role (int): Role of the user in the cloud. [optional] # noqa: E501
237+
role (int): Role of the user in the cloud * `100` - admin * `50` - user. [optional] # noqa: E501
238238
"""
239239

240240
_check_type = kwargs.pop('_check_type', True)

bimdata_api_client/model/folder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def _from_openapi_data(cls, id, type, nature, name, created_at, updated_at, crea
206206
through its discriminator because we passed in
207207
_visited_composed_classes = (Animal,)
208208
parent_id (int, none_type): [optional] # noqa: E501
209-
default_permission (int): Permission for a Folder. [optional] # noqa: E501
209+
default_permission (int): Permission for a Folder * `1` - denied * `50` - read_only * `100` - read_write. [optional] # noqa: E501
210210
"""
211211

212212
_check_type = kwargs.pop('_check_type', True)
@@ -300,7 +300,7 @@ def __init__(self, name, *args, **kwargs): # noqa: E501
300300
through its discriminator because we passed in
301301
_visited_composed_classes = (Animal,)
302302
parent_id (int, none_type): [optional] # noqa: E501
303-
default_permission (int): Permission for a Folder. [optional] # noqa: E501
303+
default_permission (int): Permission for a Folder * `1` - denied * `50` - read_only * `100` - read_write. [optional] # noqa: E501
304304
"""
305305

306306
_check_type = kwargs.pop('_check_type', True)

0 commit comments

Comments
 (0)