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

Commit 2fb55e1

Browse files
committed
PATCH: fix swagger.json
1 parent be7fda4 commit 2fb55e1

32 files changed

+1153
-175
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ Class | Method | HTTP request | Description
372372
## Documentation for Models
373373

374374
- [bimdata.BcfProject](docs/BcfProject.md)
375+
- [bimdata.BcfUser](docs/BcfUser.md)
375376
- [bimdata.CheckPlan](docs/CheckPlan.md)
376377
- [bimdata.CheckerResult](docs/CheckerResult.md)
377378
- [bimdata.Classification](docs/Classification.md)
@@ -397,11 +398,13 @@ Class | Method | HTTP request | Description
397398
- [bimdata.IfcFiles](docs/IfcFiles.md)
398399
- [bimdata.InviteUser](docs/InviteUser.md)
399400
- [bimdata.InvitedSignUpUser](docs/InvitedSignUpUser.md)
401+
- [bimdata.Label](docs/Label.md)
400402
- [bimdata.LineSeriaizer](docs/LineSeriaizer.md)
401403
- [bimdata.Notification](docs/Notification.md)
402404
- [bimdata.OrthogonalCamera](docs/OrthogonalCamera.md)
403405
- [bimdata.PerspectiveCamera](docs/PerspectiveCamera.md)
404406
- [bimdata.Point](docs/Point.md)
407+
- [bimdata.Priority](docs/Priority.md)
405408
- [bimdata.Project](docs/Project.md)
406409
- [bimdata.Property](docs/Property.md)
407410
- [bimdata.PropertyDefinition](docs/PropertyDefinition.md)
@@ -421,7 +424,10 @@ Class | Method | HTTP request | Description
421424
- [bimdata.SingleJsonTopic](docs/SingleJsonTopic.md)
422425
- [bimdata.Snapshot](docs/Snapshot.md)
423426
- [bimdata.Space](docs/Space.md)
427+
- [bimdata.Stage](docs/Stage.md)
424428
- [bimdata.Topic](docs/Topic.md)
429+
- [bimdata.TopicStatus](docs/TopicStatus.md)
430+
- [bimdata.TopicType](docs/TopicType.md)
425431
- [bimdata.Unit](docs/Unit.md)
426432
- [bimdata.User](docs/User.md)
427433
- [bimdata.ViewSetupHints](docs/ViewSetupHints.md)

docs/BcfApi.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ Bearer.apiKey = 'YOUR API KEY';
716716
//Bearer.apiKeyPrefix = 'Token';
717717

718718
var apiInstance = new bimdata.BcfApi();
719-
var id = "id_example"; // String |
719+
var id = 56; // Number | A unique integer value identifying this project.
720720
var bcfProject = new bimdata.BcfProject(); // BcfProject |
721721
apiInstance.fullUpdateBcfProject(id, bcfProject).then(function(data) {
722722
console.log('API called successfully. Returned data: ' + data);
@@ -730,7 +730,7 @@ apiInstance.fullUpdateBcfProject(id, bcfProject).then(function(data) {
730730

731731
Name | Type | Description | Notes
732732
------------- | ------------- | ------------- | -------------
733-
**id** | **String**| |
733+
**id** | **Number**| A unique integer value identifying this project. |
734734
**bcfProject** | [**BcfProject**](BcfProject.md)| |
735735

736736
### Return type
@@ -1122,7 +1122,7 @@ Bearer.apiKey = 'YOUR API KEY';
11221122
//Bearer.apiKeyPrefix = 'Token';
11231123

11241124
var apiInstance = new bimdata.BcfApi();
1125-
var id = "id_example"; // String |
1125+
var id = 56; // Number | A unique integer value identifying this project.
11261126
apiInstance.getBcfProject(id).then(function(data) {
11271127
console.log('API called successfully. Returned data: ' + data);
11281128
}, function(error) {
@@ -1135,7 +1135,7 @@ apiInstance.getBcfProject(id).then(function(data) {
11351135

11361136
Name | Type | Description | Notes
11371137
------------- | ------------- | ------------- | -------------
1138-
**id** | **String**| |
1138+
**id** | **Number**| A unique integer value identifying this project. |
11391139

11401140
### Return type
11411141

@@ -2080,7 +2080,7 @@ Bearer.apiKey = 'YOUR API KEY';
20802080
//Bearer.apiKeyPrefix = 'Token';
20812081

20822082
var apiInstance = new bimdata.BcfApi();
2083-
var id = "id_example"; // String |
2083+
var id = 56; // Number | A unique integer value identifying this project.
20842084
var bcfProject = new bimdata.BcfProject(); // BcfProject |
20852085
apiInstance.updateBcfProject(id, bcfProject).then(function(data) {
20862086
console.log('API called successfully. Returned data: ' + data);
@@ -2094,7 +2094,7 @@ apiInstance.updateBcfProject(id, bcfProject).then(function(data) {
20942094

20952095
Name | Type | Description | Notes
20962096
------------- | ------------- | ------------- | -------------
2097-
**id** | **String**| |
2097+
**id** | **Number**| A unique integer value identifying this project. |
20982098
**bcfProject** | [**BcfProject**](BcfProject.md)| |
20992099

21002100
### Return type

docs/BcfUser.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# bimdata.BcfUser
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**email** | **String** | |
7+
8+

docs/CloudApi.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Bearer.apiKey = 'YOUR API KEY';
130130
//Bearer.apiKeyPrefix = 'Token';
131131

132132
var apiInstance = new bimdata.CloudApi();
133-
var id = "id_example"; // String |
133+
var id = 56; // Number | A unique integer value identifying this cloud.
134134
apiInstance.createDemo(id).then(function(data) {
135135
console.log('API called successfully. Returned data: ' + data);
136136
}, function(error) {
@@ -143,7 +143,7 @@ apiInstance.createDemo(id).then(function(data) {
143143

144144
Name | Type | Description | Notes
145145
------------- | ------------- | ------------- | -------------
146-
**id** | **String**| |
146+
**id** | **Number**| A unique integer value identifying this cloud. |
147147

148148
### Return type
149149

@@ -222,7 +222,7 @@ Bearer.apiKey = 'YOUR API KEY';
222222
//Bearer.apiKeyPrefix = 'Token';
223223

224224
var apiInstance = new bimdata.CloudApi();
225-
var id = "id_example"; // String |
225+
var id = 56; // Number | A unique integer value identifying this cloud.
226226
var cloud = new bimdata.Cloud(); // Cloud |
227227
apiInstance.fullUpdateCloud(id, cloud).then(function(data) {
228228
console.log('API called successfully. Returned data: ' + data);
@@ -236,7 +236,7 @@ apiInstance.fullUpdateCloud(id, cloud).then(function(data) {
236236

237237
Name | Type | Description | Notes
238238
------------- | ------------- | ------------- | -------------
239-
**id** | **String**| |
239+
**id** | **Number**| A unique integer value identifying this cloud. |
240240
**cloud** | [**Cloud**](Cloud.md)| |
241241

242242
### Return type
@@ -318,7 +318,7 @@ Bearer.apiKey = 'YOUR API KEY';
318318
//Bearer.apiKeyPrefix = 'Token';
319319

320320
var apiInstance = new bimdata.CloudApi();
321-
var id = "id_example"; // String |
321+
var id = 56; // Number | A unique integer value identifying this cloud.
322322
apiInstance.getCloud(id).then(function(data) {
323323
console.log('API called successfully. Returned data: ' + data);
324324
}, function(error) {
@@ -331,7 +331,7 @@ apiInstance.getCloud(id).then(function(data) {
331331

332332
Name | Type | Description | Notes
333333
------------- | ------------- | ------------- | -------------
334-
**id** | **String**| |
334+
**id** | **Number**| A unique integer value identifying this cloud. |
335335

336336
### Return type
337337

@@ -365,7 +365,7 @@ Bearer.apiKey = 'YOUR API KEY';
365365
//Bearer.apiKeyPrefix = 'Token';
366366

367367
var apiInstance = new bimdata.CloudApi();
368-
var id = "id_example"; // String |
368+
var id = 56; // Number | A unique integer value identifying this cloud.
369369
apiInstance.getCloudSize(id).then(function(data) {
370370
console.log('API called successfully. Returned data: ' + data);
371371
}, function(error) {
@@ -378,7 +378,7 @@ apiInstance.getCloudSize(id).then(function(data) {
378378

379379
Name | Type | Description | Notes
380380
------------- | ------------- | ------------- | -------------
381-
**id** | **String**| |
381+
**id** | **Number**| A unique integer value identifying this cloud. |
382382

383383
### Return type
384384

@@ -545,7 +545,7 @@ Bearer.apiKey = 'YOUR API KEY';
545545
//Bearer.apiKeyPrefix = 'Token';
546546

547547
var apiInstance = new bimdata.CloudApi();
548-
var id = "id_example"; // String |
548+
var id = 56; // Number | A unique integer value identifying this cloud.
549549
var cloud = new bimdata.Cloud(); // Cloud |
550550
apiInstance.updateCloud(id, cloud).then(function(data) {
551551
console.log('API called successfully. Returned data: ' + data);
@@ -559,7 +559,7 @@ apiInstance.updateCloud(id, cloud).then(function(data) {
559559

560560
Name | Type | Description | Notes
561561
------------- | ------------- | ------------- | -------------
562-
**id** | **String**| |
562+
**id** | **Number**| A unique integer value identifying this cloud. |
563563
**cloud** | [**Cloud**](Cloud.md)| |
564564

565565
### Return type

docs/Extensions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**topicType** | **[String]** | |
7-
**topicStatus** | **[String]** | |
8-
**topicLabel** | **[String]** | |
9-
**priority** | **[String]** | |
6+
**topicType** | [**[TopicType]**](TopicType.md) | |
7+
**topicStatus** | [**[TopicStatus]**](TopicStatus.md) | |
8+
**topicLabel** | [**[Label]**](Label.md) | |
9+
**priority** | [**[Priority]**](Priority.md) | |
1010
**userIdType** | **[String]** | | [optional]
11-
**stage** | **[String]** | |
11+
**stage** | [**[Stage]**](Stage.md) | |
1212

1313

0 commit comments

Comments
 (0)