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

Commit ff85586

Browse files
committed
PATCH: Fix System and Layers serialization in RawElements
1 parent 9ea9c47 commit ff85586

12 files changed

Lines changed: 21 additions & 31 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ api.createComment(projectsPk, topicsGuid, data).then(function(data) {
128128

129129
## Documentation for API Endpoints
130130

131-
All URIs are relative to *https://api-beta.bimdata.io*
131+
All URIs are relative to *https://api.bimdata.io*
132132

133133
Class | Method | HTTP request | Description
134134
------------ | ------------- | ------------- | -------------

docs/BcfApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bimdata.BcfApi
22

3-
All URIs are relative to *https://api-beta.bimdata.io*
3+
All URIs are relative to *https://api.bimdata.io*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/CheckerApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bimdata.CheckerApi
22

3-
All URIs are relative to *https://api-beta.bimdata.io*
3+
All URIs are relative to *https://api.bimdata.io*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/CollaborationApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bimdata.CollaborationApi
22

3-
All URIs are relative to *https://api-beta.bimdata.io*
3+
All URIs are relative to *https://api.bimdata.io*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/IfcApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bimdata.IfcApi
22

3-
All URIs are relative to *https://api-beta.bimdata.io*
3+
All URIs are relative to *https://api.bimdata.io*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/RawLayer.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
**name** | **String** | |
8-
**description** | **String** | |
9-
**identifier** | **String** | |
8+
**description** | **String** | | [optional]
9+
**identifier** | **String** | | [optional]
1010

1111

docs/RawSystem.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**uuid** | **String** | |
8-
**name** | **String** | |
9-
**description** | **String** | |
10-
**objectType** | **String** | |
8+
**name** | **String** | | [optional]
9+
**description** | **String** | | [optional]
10+
**objectType** | **String** | | [optional]
1111

1212

docs/SsoApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bimdata.SsoApi
22

3-
All URIs are relative to *https://api-beta.bimdata.io*
3+
All URIs are relative to *https://api.bimdata.io*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/WebhookApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bimdata.WebhookApi
22

3-
All URIs are relative to *https://api-beta.bimdata.io*
3+
All URIs are relative to *https://api.bimdata.io*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

src/ApiClient.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ class ApiClient {
3232
/**
3333
* The base URL against which to resolve every API call's (relative) path.
3434
* @type {String}
35-
* @default https://api-beta.bimdata.io
35+
* @default https://api.bimdata.io
3636
*/
37-
this.basePath = 'https://api-beta.bimdata.io'.replace(/\/+$/, '');
37+
this.basePath = 'https://api.bimdata.io'.replace(/\/+$/, '');
3838

3939
/**
4040
* The authentication methods to be included for all API calls.
@@ -556,7 +556,7 @@ class ApiClient {
556556
hostSettings() {
557557
return [
558558
{
559-
'url': "https://api-beta.bimdata.io/",
559+
'url': "https://api.bimdata.io/",
560560
'description': "No description provided",
561561
}
562562
];

0 commit comments

Comments
 (0)