You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* allow many model types
* add tests
* fix document name
* more cleanup
* update ci poetry version
* do not reprocess on file update
* fix export,merge and optimize queues
* add types.py
* more contants
Export IFC as requested in parameters. When the export is finished, a new IFC file with will be created in the same folder than the original IFC. You can query the folder or subscribe to the new document webhook to retrieve the result Required scopes: ifc:write # noqa: E501
6260
+
Only works for IFC files. Export IFC as requested in parameters. When the export is finished, a new IFC file with will be created in the same folder than the original IFC. You can query the folder or subscribe to the new document webhook to retrieve the result Required scopes: ifc:write # noqa: E501
6261
6261
This method makes a synchronous HTTP request by default. To make an
Export IFC as requested in parameters. When the export is finished, a new IFC file with will be created in the same folder than the original IFC. You can query the folder or subscribe to the new document webhook to retrieve the result Required scopes: ifc:write # noqa: E501
6288
+
Only works for IFC files. Export IFC as requested in parameters. When the export is finished, a new IFC file with will be created in the same folder than the original IFC. You can query the folder or subscribe to the new document webhook to retrieve the result Required scopes: ifc:write # noqa: E501
6289
6289
This method makes a synchronous HTTP request by default. To make an
Retrieve all models Required scopes: ifc:read # noqa: E501
10318
+
Retrieve all models. For legacy reasons, this route is named IFC but now handle all models types (DWG, PDF, IFC, etc). The field `type` allows you to discriminate which kind of model it is. Required scopes: ifc:read # noqa: E501
10319
10319
This method makes a synchronous HTTP request by default. To make an
Retrieve all models Required scopes: ifc:read # noqa: E501
10347
+
Retrieve all models. For legacy reasons, this route is named IFC but now handle all models types (DWG, PDF, IFC, etc). The field `type` allows you to discriminate which kind of model it is. Required scopes: ifc:read # noqa: E501
10347
10348
This method makes a synchronous HTTP request by default. To make an
Merge IFC files. The merged IFC file will be put in the same folder that the first IFC of the list Required scopes: ifc:write # noqa: E501
13402
+
Only works for IFC files. Merge IFC files. The merged IFC file will be put in the same folder that the first IFC of the list Required scopes: ifc:write # noqa: E501
13398
13403
This method makes a synchronous HTTP request by default. To make an
Merge IFC files. The merged IFC file will be put in the same folder that the first IFC of the list Required scopes: ifc:write # noqa: E501
13429
+
Only works for IFC files. Merge IFC files. The merged IFC file will be put in the same folder that the first IFC of the list Required scopes: ifc:write # noqa: E501
13425
13430
This method makes a synchronous HTTP request by default. To make an
Optimize the IFC. A new optimized IFC file will be put in the same folder that the original IFC Required scopes: ifc:write # noqa: E501
13534
+
Only works for IFC files. Optimize the IFC. A new optimized IFC file will be put in the same folder that the original IFC Required scopes: ifc:write # noqa: E501
13530
13535
This method makes a synchronous HTTP request by default. To make an
Optimize the IFC. A new optimized IFC file will be put in the same folder that the original IFC Required scopes: ifc:write # noqa: E501
13562
+
Only works for IFC files. Optimize the IFC. A new optimized IFC file will be put in the same folder that the original IFC Required scopes: ifc:write # noqa: E501
13558
13563
This method makes a synchronous HTTP request by default. To make an
Copy file name to clipboardExpand all lines: docs/IfcApi.md
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9320,7 +9320,7 @@ void (empty response body)
9320
9320
9321
9321
Export IFC
9322
9322
9323
-
Export IFC as requested in parameters. When the export is finished, a new IFC file with will be created in the same folder than the original IFC. You can query the folder or subscribe to the new document webhook to retrieve the result Required scopes: ifc:write
9323
+
Only works for IFC files. Export IFC as requested in parameters. When the export is finished, a new IFC file with will be created in the same folder than the original IFC. You can query the folder or subscribe to the new document webhook to retrieve the result Required scopes: ifc:write
9324
9324
9325
9325
### Example
9326
9326
@@ -15364,11 +15364,11 @@ Name | Type | Description | Notes
15364
15364
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
Retrieve all models. For legacy reasons, this route is named IFC but now handle all models types (DWG, PDF, IFC, etc). The field `type` allows you to discriminate which kind of model it is. Required scopes: ifc:read
15372
15372
15373
15373
### Example
15374
15374
@@ -15420,10 +15420,11 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
15420
15420
project_pk = 'project_pk_example' # str |
15421
15421
status = 'status_example' # str | Filter the returned list by status (optional)
15422
15422
source = 'source_example' # str | Filter the returned list by source (optional)
15423
+
type = 'type_example' # str | Filter the returned list by type (optional)
print("Exception when calling IfcApi->get_ifcs: %s\n" % e)
@@ -15551,6 +15554,7 @@ Name | Type | Description | Notes
15551
15554
**project_pk** | **str**| |
15552
15555
**status** | **str**| Filter the returned list by status | [optional]
15553
15556
**source** | **str**| Filter the returned list by source | [optional]
15557
+
**type** | **str**| Filter the returned list by type | [optional]
15554
15558
15555
15559
### Return type
15556
15560
@@ -20080,7 +20084,7 @@ Name | Type | Description | Notes
20080
20084
20081
20085
Merge IFC files
20082
20086
20083
-
Merge IFC files. The merged IFC file will be put in the same folder that the first IFC of the list Required scopes: ifc:write
20087
+
Only works for IFC files. Merge IFC files. The merged IFC file will be put in the same folder that the first IFC of the list Required scopes: ifc:write
0 commit comments