diff --git a/docs/CollaborationApi.md b/docs/CollaborationApi.md index ac2de17..0465e25 100644 --- a/docs/CollaborationApi.md +++ b/docs/CollaborationApi.md @@ -961,7 +961,7 @@ Name | Type | Description | Notes Create a document -Create a document. If the document is one of {'POINT_CLOUD', 'DXF', 'DWG', 'GLTF', 'OBJ', 'IFC'}, a model will be created and attached to this document Required scopes: document:write +Create a document. If the document is one of {'OBJ', 'IFC', 'DXF', 'GLTF', 'DWG', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write ### Example diff --git a/docs/FullTopic.md b/docs/FullTopic.md index 8c83b02..dda700b 100644 --- a/docs/FullTopic.md +++ b/docs/FullTopic.md @@ -26,5 +26,6 @@ Name | Type | Description | Notes **comments** | [**[Comment]**](Comment.md) | | [optional] **viewpoints** | [**[Viewpoint]**](Viewpoint.md) | | [optional] **project** | **Number** | | +**bimdataViewerLayout** | **{String: Object}** | Non standard field. JSON describing bimdataViewerLayout. | [optional] diff --git a/docs/FullTopicRequest.md b/docs/FullTopicRequest.md index 4d45178..ae78468 100644 --- a/docs/FullTopicRequest.md +++ b/docs/FullTopicRequest.md @@ -25,5 +25,6 @@ Name | Type | Description | Notes **comments** | [**[CommentRequest]**](CommentRequest.md) | | [optional] **viewpoints** | [**[ViewpointRequest]**](ViewpointRequest.md) | | [optional] **project** | **Number** | | +**bimdataViewerLayout** | **{String: Object}** | Non standard field. JSON describing bimdataViewerLayout. | [optional] diff --git a/docs/PatchedFullTopicRequest.md b/docs/PatchedFullTopicRequest.md index 375f523..52ff586 100644 --- a/docs/PatchedFullTopicRequest.md +++ b/docs/PatchedFullTopicRequest.md @@ -25,5 +25,6 @@ Name | Type | Description | Notes **comments** | [**[CommentRequest]**](CommentRequest.md) | | [optional] **viewpoints** | [**[ViewpointRequest]**](ViewpointRequest.md) | | [optional] **project** | **Number** | | [optional] +**bimdataViewerLayout** | **{String: Object}** | Non standard field. JSON describing bimdataViewerLayout. | [optional] diff --git a/docs/PatchedTopicRequest.md b/docs/PatchedTopicRequest.md index 1d66592..4570114 100644 --- a/docs/PatchedTopicRequest.md +++ b/docs/PatchedTopicRequest.md @@ -23,5 +23,6 @@ Name | Type | Description | Notes **format** | **String** | The BCF data structure may be used for other purposes than BCF Topics. (Storing coordinates, a viewpoint, a list of objecs, etc) The default value is \"standard\". If you want to use the BCF routes to store custom data not related to a BCF Topic, you must set this value to something else. You must add a query string filter if you want to fetch topics with a non \"standard\" format. | [optional] **index** | **Number** | | [optional] **project** | **Number** | | [optional] +**bimdataViewerLayout** | **{String: Object}** | Non standard field. JSON describing bimdataViewerLayout. | [optional] diff --git a/docs/Topic.md b/docs/Topic.md index 94048f0..a41c30b 100644 --- a/docs/Topic.md +++ b/docs/Topic.md @@ -24,5 +24,6 @@ Name | Type | Description | Notes **format** | **String** | The BCF data structure may be used for other purposes than BCF Topics. (Storing coordinates, a viewpoint, a list of objecs, etc) The default value is \"standard\". If you want to use the BCF routes to store custom data not related to a BCF Topic, you must set this value to something else. You must add a query string filter if you want to fetch topics with a non \"standard\" format. | [optional] **index** | **Number** | | [optional] **project** | **Number** | | +**bimdataViewerLayout** | **{String: Object}** | Non standard field. JSON describing bimdataViewerLayout. | [optional] diff --git a/docs/TopicRequest.md b/docs/TopicRequest.md index 23ae384..3bde4a6 100644 --- a/docs/TopicRequest.md +++ b/docs/TopicRequest.md @@ -23,5 +23,6 @@ Name | Type | Description | Notes **format** | **String** | The BCF data structure may be used for other purposes than BCF Topics. (Storing coordinates, a viewpoint, a list of objecs, etc) The default value is \"standard\". If you want to use the BCF routes to store custom data not related to a BCF Topic, you must set this value to something else. You must add a query string filter if you want to fetch topics with a non \"standard\" format. | [optional] **index** | **Number** | | [optional] **project** | **Number** | | +**bimdataViewerLayout** | **{String: Object}** | Non standard field. JSON describing bimdataViewerLayout. | [optional] diff --git a/src/api/CollaborationApi.js b/src/api/CollaborationApi.js index 7f84462..5834fd8 100644 --- a/src/api/CollaborationApi.js +++ b/src/api/CollaborationApi.js @@ -866,7 +866,7 @@ export default class CollaborationApi { /** * Create a document - * Create a document. If the document is one of {'POINT_CLOUD', 'DXF', 'DWG', 'GLTF', 'OBJ', 'IFC'}, a model will be created and attached to this document Required scopes: document:write + * Create a document. If the document is one of {'OBJ', 'IFC', 'DXF', 'GLTF', 'DWG', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write * @param {Number} cloudPk A unique integer value identifying this cloud. * @param {Number} projectPk A unique integer value identifying this project. * @param {String} name Shown name of the file @@ -932,7 +932,7 @@ export default class CollaborationApi { /** * Create a document - * Create a document. If the document is one of {'POINT_CLOUD', 'DXF', 'DWG', 'GLTF', 'OBJ', 'IFC'}, a model will be created and attached to this document Required scopes: document:write + * Create a document. If the document is one of {'OBJ', 'IFC', 'DXF', 'GLTF', 'DWG', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write * @param {Number} cloudPk A unique integer value identifying this cloud. * @param {Number} projectPk A unique integer value identifying this project. * @param {String} name Shown name of the file diff --git a/src/model/FullTopic.js b/src/model/FullTopic.js index b9b669a..f17cc6b 100644 --- a/src/model/FullTopic.js +++ b/src/model/FullTopic.js @@ -121,6 +121,9 @@ class FullTopic { if (data.hasOwnProperty('project')) { obj['project'] = ApiClient.convertToType(data['project'], 'Number'); } + if (data.hasOwnProperty('bimdata_viewer_layout')) { + obj['bimdata_viewer_layout'] = ApiClient.convertToType(data['bimdata_viewer_layout'], {'String': Object}); + } } return obj; } @@ -240,6 +243,12 @@ FullTopic.prototype['viewpoints'] = undefined; */ FullTopic.prototype['project'] = undefined; +/** + * Non standard field. JSON describing bimdataViewerLayout. + * @member {Object.} bimdata_viewer_layout + */ +FullTopic.prototype['bimdata_viewer_layout'] = undefined; + diff --git a/src/model/FullTopicRequest.js b/src/model/FullTopicRequest.js index f7994b1..d2e1bdb 100644 --- a/src/model/FullTopicRequest.js +++ b/src/model/FullTopicRequest.js @@ -116,6 +116,9 @@ class FullTopicRequest { if (data.hasOwnProperty('project')) { obj['project'] = ApiClient.convertToType(data['project'], 'Number'); } + if (data.hasOwnProperty('bimdata_viewer_layout')) { + obj['bimdata_viewer_layout'] = ApiClient.convertToType(data['bimdata_viewer_layout'], {'String': Object}); + } } return obj; } @@ -230,6 +233,12 @@ FullTopicRequest.prototype['viewpoints'] = undefined; */ FullTopicRequest.prototype['project'] = undefined; +/** + * Non standard field. JSON describing bimdataViewerLayout. + * @member {Object.} bimdata_viewer_layout + */ +FullTopicRequest.prototype['bimdata_viewer_layout'] = undefined; + diff --git a/src/model/PatchedFullTopicRequest.js b/src/model/PatchedFullTopicRequest.js index 75bf6ba..1273a53 100644 --- a/src/model/PatchedFullTopicRequest.js +++ b/src/model/PatchedFullTopicRequest.js @@ -112,6 +112,9 @@ class PatchedFullTopicRequest { if (data.hasOwnProperty('project')) { obj['project'] = ApiClient.convertToType(data['project'], 'Number'); } + if (data.hasOwnProperty('bimdata_viewer_layout')) { + obj['bimdata_viewer_layout'] = ApiClient.convertToType(data['bimdata_viewer_layout'], {'String': Object}); + } } return obj; } @@ -226,6 +229,12 @@ PatchedFullTopicRequest.prototype['viewpoints'] = undefined; */ PatchedFullTopicRequest.prototype['project'] = undefined; +/** + * Non standard field. JSON describing bimdataViewerLayout. + * @member {Object.} bimdata_viewer_layout + */ +PatchedFullTopicRequest.prototype['bimdata_viewer_layout'] = undefined; + diff --git a/src/model/PatchedTopicRequest.js b/src/model/PatchedTopicRequest.js index 8a36806..00d959d 100644 --- a/src/model/PatchedTopicRequest.js +++ b/src/model/PatchedTopicRequest.js @@ -104,6 +104,9 @@ class PatchedTopicRequest { if (data.hasOwnProperty('project')) { obj['project'] = ApiClient.convertToType(data['project'], 'Number'); } + if (data.hasOwnProperty('bimdata_viewer_layout')) { + obj['bimdata_viewer_layout'] = ApiClient.convertToType(data['bimdata_viewer_layout'], {'String': Object}); + } } return obj; } @@ -208,6 +211,12 @@ PatchedTopicRequest.prototype['index'] = undefined; */ PatchedTopicRequest.prototype['project'] = undefined; +/** + * Non standard field. JSON describing bimdataViewerLayout. + * @member {Object.} bimdata_viewer_layout + */ +PatchedTopicRequest.prototype['bimdata_viewer_layout'] = undefined; + diff --git a/src/model/Topic.js b/src/model/Topic.js index 676de00..561fab2 100644 --- a/src/model/Topic.js +++ b/src/model/Topic.js @@ -113,6 +113,9 @@ class Topic { if (data.hasOwnProperty('project')) { obj['project'] = ApiClient.convertToType(data['project'], 'Number'); } + if (data.hasOwnProperty('bimdata_viewer_layout')) { + obj['bimdata_viewer_layout'] = ApiClient.convertToType(data['bimdata_viewer_layout'], {'String': Object}); + } } return obj; } @@ -222,6 +225,12 @@ Topic.prototype['index'] = undefined; */ Topic.prototype['project'] = undefined; +/** + * Non standard field. JSON describing bimdataViewerLayout. + * @member {Object.} bimdata_viewer_layout + */ +Topic.prototype['bimdata_viewer_layout'] = undefined; + diff --git a/src/model/TopicRequest.js b/src/model/TopicRequest.js index bd8f021..3178876 100644 --- a/src/model/TopicRequest.js +++ b/src/model/TopicRequest.js @@ -108,6 +108,9 @@ class TopicRequest { if (data.hasOwnProperty('project')) { obj['project'] = ApiClient.convertToType(data['project'], 'Number'); } + if (data.hasOwnProperty('bimdata_viewer_layout')) { + obj['bimdata_viewer_layout'] = ApiClient.convertToType(data['bimdata_viewer_layout'], {'String': Object}); + } } return obj; } @@ -212,6 +215,12 @@ TopicRequest.prototype['index'] = undefined; */ TopicRequest.prototype['project'] = undefined; +/** + * Non standard field. JSON describing bimdataViewerLayout. + * @member {Object.} bimdata_viewer_layout + */ +TopicRequest.prototype['bimdata_viewer_layout'] = undefined; + diff --git a/test/model/FullTopic.spec.js b/test/model/FullTopic.spec.js index 0dbab92..95eaff0 100644 --- a/test/model/FullTopic.spec.js +++ b/test/model/FullTopic.spec.js @@ -186,6 +186,12 @@ //expect(instance).to.be(); }); + it('should have the property bimdataViewerLayout (base name: "bimdata_viewer_layout")', function() { + // uncomment below and update the code to test the property bimdataViewerLayout + //var instance = new bimdata.FullTopic(); + //expect(instance).to.be(); + }); + }); })); diff --git a/test/model/FullTopicRequest.spec.js b/test/model/FullTopicRequest.spec.js index 55b7e2f..9018e16 100644 --- a/test/model/FullTopicRequest.spec.js +++ b/test/model/FullTopicRequest.spec.js @@ -180,6 +180,12 @@ //expect(instance).to.be(); }); + it('should have the property bimdataViewerLayout (base name: "bimdata_viewer_layout")', function() { + // uncomment below and update the code to test the property bimdataViewerLayout + //var instance = new bimdata.FullTopicRequest(); + //expect(instance).to.be(); + }); + }); })); diff --git a/test/model/PatchedFullTopicRequest.spec.js b/test/model/PatchedFullTopicRequest.spec.js index 315ec41..bd8c393 100644 --- a/test/model/PatchedFullTopicRequest.spec.js +++ b/test/model/PatchedFullTopicRequest.spec.js @@ -180,6 +180,12 @@ //expect(instance).to.be(); }); + it('should have the property bimdataViewerLayout (base name: "bimdata_viewer_layout")', function() { + // uncomment below and update the code to test the property bimdataViewerLayout + //var instance = new bimdata.PatchedFullTopicRequest(); + //expect(instance).to.be(); + }); + }); })); diff --git a/test/model/PatchedTopicRequest.spec.js b/test/model/PatchedTopicRequest.spec.js index e19bae4..e09e664 100644 --- a/test/model/PatchedTopicRequest.spec.js +++ b/test/model/PatchedTopicRequest.spec.js @@ -168,6 +168,12 @@ //expect(instance).to.be(); }); + it('should have the property bimdataViewerLayout (base name: "bimdata_viewer_layout")', function() { + // uncomment below and update the code to test the property bimdataViewerLayout + //var instance = new bimdata.PatchedTopicRequest(); + //expect(instance).to.be(); + }); + }); })); diff --git a/test/model/Topic.spec.js b/test/model/Topic.spec.js index bf37391..bbe963e 100644 --- a/test/model/Topic.spec.js +++ b/test/model/Topic.spec.js @@ -174,6 +174,12 @@ //expect(instance).to.be(); }); + it('should have the property bimdataViewerLayout (base name: "bimdata_viewer_layout")', function() { + // uncomment below and update the code to test the property bimdataViewerLayout + //var instance = new bimdata.Topic(); + //expect(instance).to.be(); + }); + }); })); diff --git a/test/model/TopicRequest.spec.js b/test/model/TopicRequest.spec.js index 6cb7a8a..8ce2c43 100644 --- a/test/model/TopicRequest.spec.js +++ b/test/model/TopicRequest.spec.js @@ -168,6 +168,12 @@ //expect(instance).to.be(); }); + it('should have the property bimdataViewerLayout (base name: "bimdata_viewer_layout")', function() { + // uncomment below and update the code to test the property bimdataViewerLayout + //var instance = new bimdata.TopicRequest(); + //expect(instance).to.be(); + }); + }); }));