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

Commit cd99889

Browse files
committed
PATCH: fix create building and storey doc serializer
1 parent 4fb76c4 commit cd99889

36 files changed

Lines changed: 837 additions & 145 deletions

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,10 @@ Class | Method | HTTP request | Description
656656
- [bimdata.InlineObject1](docs/InlineObject1.md)
657657
- [bimdata.InlineObject10](docs/InlineObject10.md)
658658
- [bimdata.InlineObject11](docs/InlineObject11.md)
659+
- [bimdata.InlineObject12](docs/InlineObject12.md)
660+
- [bimdata.InlineObject13](docs/InlineObject13.md)
661+
- [bimdata.InlineObject14](docs/InlineObject14.md)
662+
- [bimdata.InlineObject15](docs/InlineObject15.md)
659663
- [bimdata.InlineObject2](docs/InlineObject2.md)
660664
- [bimdata.InlineObject3](docs/InlineObject3.md)
661665
- [bimdata.InlineObject4](docs/InlineObject4.md)
@@ -666,7 +670,7 @@ Class | Method | HTTP request | Description
666670
- [bimdata.InlineObject9](docs/InlineObject9.md)
667671
- [bimdata.InlineResponse200](docs/InlineResponse200.md)
668672
- [bimdata.InlineResponse2001](docs/InlineResponse2001.md)
669-
- [bimdata.InlineResponse2002](docs/InlineResponse2002.md)
673+
- [bimdata.InlineResponse201](docs/InlineResponse201.md)
670674
- [bimdata.Invitation](docs/Invitation.md)
671675
- [bimdata.Label](docs/Label.md)
672676
- [bimdata.LabelRead](docs/LabelRead.md)

docs/IfcApi.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ Name | Type | Description | Notes
10351035

10361036
## createBuildingDeprecated
10371037

1038-
> Building createBuildingDeprecated(cloudPk, ifcPk, projectPk, data)
1038+
> InlineResponse201 createBuildingDeprecated(cloudPk, ifcPk, projectPk, data)
10391039
10401040
Create a building of a model
10411041

@@ -1062,7 +1062,7 @@ let apiInstance = new bimdata.IfcApi();
10621062
let cloudPk = "cloudPk_example"; // String |
10631063
let ifcPk = "ifcPk_example"; // String |
10641064
let projectPk = "projectPk_example"; // String |
1065-
let data = new bimdata.Building(); // Building |
1065+
let data = new bimdata.InlineObject4(); // InlineObject4 |
10661066
apiInstance.createBuildingDeprecated(cloudPk, ifcPk, projectPk, data).then((data) => {
10671067
console.log('API called successfully. Returned data: ' + data);
10681068
}, (error) => {
@@ -1079,11 +1079,11 @@ Name | Type | Description | Notes
10791079
**cloudPk** | **String**| |
10801080
**ifcPk** | **String**| |
10811081
**projectPk** | **String**| |
1082-
**data** | [**Building**](Building.md)| |
1082+
**data** | [**InlineObject4**](InlineObject4.md)| |
10831083

10841084
### Return type
10851085

1086-
[**Building**](Building.md)
1086+
[**InlineResponse201**](InlineResponse201.md)
10871087

10881088
### Authorization
10891089

@@ -1125,7 +1125,7 @@ let buildingUuid = "buildingUuid_example"; // String |
11251125
let cloudPk = "cloudPk_example"; // String |
11261126
let ifcPk = "ifcPk_example"; // String |
11271127
let projectPk = "projectPk_example"; // String |
1128-
let data = new bimdata.InlineObject4(); // InlineObject4 |
1128+
let data = new bimdata.InlineObject5(); // InlineObject5 |
11291129
apiInstance.createBuildingPlanDeprecated(buildingUuid, cloudPk, ifcPk, projectPk, data).then((data) => {
11301130
console.log('API called successfully. Returned data: ' + data);
11311131
}, (error) => {
@@ -1143,7 +1143,7 @@ Name | Type | Description | Notes
11431143
**cloudPk** | **String**| |
11441144
**ifcPk** | **String**| |
11451145
**projectPk** | **String**| |
1146-
**data** | [**InlineObject4**](InlineObject4.md)| |
1146+
**data** | [**InlineObject5**](InlineObject5.md)| |
11471147

11481148
### Return type
11491149

@@ -2297,7 +2297,7 @@ Name | Type | Description | Notes
22972297

22982298
## createStoreyDeprecated
22992299

2300-
> Storey createStoreyDeprecated(cloudPk, ifcPk, projectPk, data)
2300+
> InlineResponse201 createStoreyDeprecated(cloudPk, ifcPk, projectPk, data)
23012301
23022302
Create a storey of a model
23032303

@@ -2324,7 +2324,7 @@ let apiInstance = new bimdata.IfcApi();
23242324
let cloudPk = "cloudPk_example"; // String |
23252325
let ifcPk = "ifcPk_example"; // String |
23262326
let projectPk = "projectPk_example"; // String |
2327-
let data = new bimdata.Storey(); // Storey |
2327+
let data = new bimdata.InlineObject7(); // InlineObject7 |
23282328
apiInstance.createStoreyDeprecated(cloudPk, ifcPk, projectPk, data).then((data) => {
23292329
console.log('API called successfully. Returned data: ' + data);
23302330
}, (error) => {
@@ -2341,11 +2341,11 @@ Name | Type | Description | Notes
23412341
**cloudPk** | **String**| |
23422342
**ifcPk** | **String**| |
23432343
**projectPk** | **String**| |
2344-
**data** | [**Storey**](Storey.md)| |
2344+
**data** | [**InlineObject7**](InlineObject7.md)| |
23452345

23462346
### Return type
23472347

2348-
[**Storey**](Storey.md)
2348+
[**InlineResponse201**](InlineResponse201.md)
23492349

23502350
### Authorization
23512351

@@ -2387,7 +2387,7 @@ let cloudPk = "cloudPk_example"; // String |
23872387
let ifcPk = "ifcPk_example"; // String |
23882388
let projectPk = "projectPk_example"; // String |
23892389
let storeyUuid = "storeyUuid_example"; // String |
2390-
let data = new bimdata.InlineObject6(); // InlineObject6 |
2390+
let data = new bimdata.InlineObject8(); // InlineObject8 |
23912391
apiInstance.createStoreyPlanDeprecated(cloudPk, ifcPk, projectPk, storeyUuid, data).then((data) => {
23922392
console.log('API called successfully. Returned data: ' + data);
23932393
}, (error) => {
@@ -2405,7 +2405,7 @@ Name | Type | Description | Notes
24052405
**ifcPk** | **String**| |
24062406
**projectPk** | **String**| |
24072407
**storeyUuid** | **String**| |
2408-
**data** | [**InlineObject6**](InlineObject6.md)| |
2408+
**data** | [**InlineObject8**](InlineObject8.md)| |
24092409

24102410
### Return type
24112411

@@ -8389,7 +8389,7 @@ Name | Type | Description | Notes
83898389

83908390
## updateBuildingDeprecated
83918391

8392-
> InlineResponse2002 updateBuildingDeprecated(cloudPk, ifcPk, projectPk, uuid, data)
8392+
> InlineResponse201 updateBuildingDeprecated(cloudPk, ifcPk, projectPk, uuid, data)
83938393
83948394
Update some fields of a building
83958395

@@ -8417,7 +8417,7 @@ let cloudPk = "cloudPk_example"; // String |
84178417
let ifcPk = "ifcPk_example"; // String |
84188418
let projectPk = "projectPk_example"; // String |
84198419
let uuid = "uuid_example"; // String | IFC element or element type UUID
8420-
let data = new bimdata.InlineObject5(); // InlineObject5 |
8420+
let data = new bimdata.InlineObject6(); // InlineObject6 |
84218421
apiInstance.updateBuildingDeprecated(cloudPk, ifcPk, projectPk, uuid, data).then((data) => {
84228422
console.log('API called successfully. Returned data: ' + data);
84238423
}, (error) => {
@@ -8435,11 +8435,11 @@ Name | Type | Description | Notes
84358435
**ifcPk** | **String**| |
84368436
**projectPk** | **String**| |
84378437
**uuid** | **String**| IFC element or element type UUID |
8438-
**data** | [**InlineObject5**](InlineObject5.md)| |
8438+
**data** | [**InlineObject6**](InlineObject6.md)| |
84398439

84408440
### Return type
84418441

8442-
[**InlineResponse2002**](InlineResponse2002.md)
8442+
[**InlineResponse201**](InlineResponse201.md)
84438443

84448444
### Authorization
84458445

@@ -9559,7 +9559,7 @@ Name | Type | Description | Notes
95599559

95609560
## updateStoreyDeprecated
95619561

9562-
> InlineResponse2002 updateStoreyDeprecated(cloudPk, ifcPk, projectPk, uuid, data)
9562+
> InlineResponse201 updateStoreyDeprecated(cloudPk, ifcPk, projectPk, uuid, data)
95639563
95649564
Update some fields of a storey
95659565

@@ -9587,7 +9587,7 @@ let cloudPk = "cloudPk_example"; // String |
95879587
let ifcPk = "ifcPk_example"; // String |
95889588
let projectPk = "projectPk_example"; // String |
95899589
let uuid = "uuid_example"; // String | IFC element or element type UUID
9590-
let data = new bimdata.InlineObject7(); // InlineObject7 |
9590+
let data = new bimdata.InlineObject9(); // InlineObject9 |
95919591
apiInstance.updateStoreyDeprecated(cloudPk, ifcPk, projectPk, uuid, data).then((data) => {
95929592
console.log('API called successfully. Returned data: ' + data);
95939593
}, (error) => {
@@ -9605,11 +9605,11 @@ Name | Type | Description | Notes
96059605
**ifcPk** | **String**| |
96069606
**projectPk** | **String**| |
96079607
**uuid** | **String**| IFC element or element type UUID |
9608-
**data** | [**InlineObject7**](InlineObject7.md)| |
9608+
**data** | [**InlineObject9**](InlineObject9.md)| |
96099609

96109610
### Return type
96119611

9612-
[**InlineResponse2002**](InlineResponse2002.md)
9612+
[**InlineResponse201**](InlineResponse201.md)
96139613

96149614
### Authorization
96159615

docs/InlineObject10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**id** | **Number** | model id | [optional]
7+
**name** | **String** | name of storey/building | [optional]
88

99

docs/InlineObject11.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**name** | **String** | name of storey/building | [optional]
7+
**id** | **Number** | model id | [optional]
88

99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# bimdata.InlineResponse2002
1+
# bimdata.InlineObject12
22

33
## Properties
44

docs/InlineObject13.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# bimdata.InlineObject13
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**name** | **String** | name of storey/building | [optional]
8+
9+

docs/InlineObject14.md

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

docs/InlineObject15.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# bimdata.InlineObject15
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**name** | **String** | name of storey/building | [optional]
8+
9+

docs/InlineObject4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**id** | **Number** | model id | [optional]
7+
**name** | **String** | name of storey/building | [optional]
88

99

docs/InlineObject5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**name** | **String** | name of storey/building | [optional]
7+
**id** | **Number** | model id | [optional]
88

99

0 commit comments

Comments
 (0)