Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Commit 65cb1b6

Browse files
committed
PATCH: fix some open api fields (#401)
1 parent fa16b81 commit 65cb1b6

107 files changed

Lines changed: 603 additions & 184 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,8 @@ Class | Method | HTTP request | Description
452452
- [bimdata.Layer](docs/Layer.md)
453453
- [bimdata.LayerElement](docs/LayerElement.md)
454454
- [bimdata.Line](docs/Line.md)
455+
- [bimdata.MarketplaceApp](docs/MarketplaceApp.md)
456+
- [bimdata.MarketplaceAppImage](docs/MarketplaceAppImage.md)
455457
- [bimdata.Material](docs/Material.md)
456458
- [bimdata.MaterialListComponent](docs/MaterialListComponent.md)
457459
- [bimdata.MaterialOption](docs/MaterialOption.md)

docs/Cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**id** | **Number** | | [optional] [readonly]
88
**name** | **String** | Name of the cloud |
99
**features** | [**[Feature]**](Feature.md) | | [optional] [readonly]
10-
**marketplaceApps** | **String** | | [optional] [readonly]
10+
**marketplaceApps** | [**[MarketplaceApp]**](MarketplaceApp.md) | | [optional] [readonly]
1111
**organization** | [**Organization**](Organization.md) | | [optional]
1212
**organizationId** | **Number** | | [optional]
1313
**creator** | [**User**](User.md) | | [optional]

docs/Document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
1717
**createdAt** | **Date** | Creation date | [optional] [readonly]
1818
**updatedAt** | **Date** | Date of the last update | [optional] [readonly]
1919
**ifcSource** | **String** | Define the ifc.source field if the upload is an IFC | [optional]
20-
**ifcId** | **String** | | [optional] [readonly]
20+
**ifcId** | **Number** | | [optional] [readonly]
2121

2222

2323

docs/Ifc.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ Name | Type | Description | Notes
2121
**viewer360File** | **String** | | [optional] [readonly]
2222
**xktFile** | **String** | | [optional] [readonly]
2323
**projectId** | **String** | | [optional] [readonly]
24-
**worldPosition** | **[Number]** | | [optional]
25-
**errors** | **[String]** | | [optional] [readonly]
26-
**warnings** | **[String]** | | [optional] [readonly]
24+
**worldPosition** | **[Number]** | [x,y,z] array of the position of the local_placement in world coordinates | [optional]
25+
**errors** | **[String]** | List of errors that happened during IFC processing | [optional] [readonly]
26+
**warnings** | **[String]** | List of warnings that happened during IFC processing | [optional] [readonly]
2727
**archived** | **Boolean** | | [optional]
2828
**version** | **String** | This field is only for information. Updating it won't impact the export. | [optional]
29-
**northVector** | **[[Number]]** | | [optional]
29+
**northVector** | **[[Number]]** | This field is only for information. Updating it won't impact the export. | [optional]
3030

3131

3232

docs/IfcErrors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**errors** | **[String]** | | [optional]
8-
**warnings** | **[String]** | | [optional]
7+
**errors** | **[String]** | List of errors that happened during IFC processing | [optional]
8+
**warnings** | **[String]** | List of warnings that happened during IFC processing | [optional]
99

1010

docs/IfcExport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
1212
**materials** | **String** | Exported IFC will include materials from original IFC file (ORIGINAL), from latest API updates (UPDATED), or won't include materials(NONE) | [optional] [default to 'UPDATED']
1313
**attributes** | **String** | Exported IFC will include attributes from original IFC file (ORIGINAL), from latest API updates (UPDATED), or won't include attributes(NONE) | [optional] [default to 'UPDATED']
1414
**structure** | **String** | Exported IFC will include the structure from original IFC file (ORIGINAL), from latest API updates (UPDATED), or won't include structure(NONE) | [optional] [default to 'UPDATED']
15-
**uuids** | **[String]** | | [optional]
15+
**uuids** | **[String]** | Exported IFC will only have those elements. If omitted, all elements will be exported | [optional]
1616
**fileName** | **String** | The name of the exported IFC file. It MUST end with .ifc or the exported file won't be processed by BIMData |
1717

1818

docs/MarketplaceApp.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# bimdata.MarketplaceApp
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**id** | **Number** | | [optional] [readonly]
8+
**name** | **String** | |
9+
**shortDescription** | **String** | |
10+
**longDescription** | **String** | |
11+
**activationWebhookUrl** | **String** | | [optional]
12+
**postActivationRedirectUri** | **String** | | [optional]
13+
**viewerPluginsUrls** | **[String]** | | [optional]
14+
**webhookSecret** | **String** | | [optional]
15+
**creator** | [**User**](User.md) | | [optional]
16+
**scopes** | **[String]** | | [optional] [readonly]
17+
**settingsUrl** | **String** | this URL will be called with query params ?cloud_id= | [optional]
18+
**isPublic** | **Boolean** | | [optional]
19+
**tags** | **[String]** | | [optional]
20+
**logo** | **String** | | [optional] [readonly]
21+
**images** | [**[MarketplaceAppImage]**](MarketplaceAppImage.md) | | [optional] [readonly]
22+
**organizationId** | **String** | | [optional] [readonly]
23+
24+

docs/MarketplaceAppImage.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# bimdata.MarketplaceAppImage
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**id** | **Number** | | [optional] [readonly]
8+
**image** | **String** | | [optional] [readonly]
9+
**order** | **Number** | | [optional] [readonly]
10+
11+

docs/Material.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**id** | **Number** | | [optional] [readonly]
8-
**name** | **String** | |
9-
**category** | **String** | | [optional]
10-
**description** | **String** | | [optional]
8+
**name** | **String** | | [optional] [readonly]
9+
**category** | **String** | | [optional] [readonly]
10+
**description** | **String** | | [optional] [readonly]
1111
**propertySets** | [**[PropertySet]**](PropertySet.md) | |
1212

1313

docs/MaterialOption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**id** | **Number** | | [optional] [readonly]
8-
**thickness** | **Number** | | [optional]
9-
**listComponents** | **String** | | [optional] [readonly]
8+
**thickness** | **Number** | | [optional] [readonly]
9+
**listComponents** | **[{String: String}]** | | [optional] [readonly]
1010

1111

0 commit comments

Comments
 (0)