You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 18, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/CollaborationApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -954,7 +954,7 @@ Name | Type | Description | Notes
954
954
955
955
Create a document
956
956
957
-
Create a document. If the document is one of {'OBJ', 'DAE', 'GLTF', 'IFC', 'BFX', 'POINT_CLOUD', 'DWG', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
957
+
Create a document. If the document is one of {'POINT_CLOUD', 'BFX', 'DWG', 'DAE', 'GLTF', 'OBJ', 'DXF', 'IFC'}, a model will be created and attached to this document Required scopes: document:write
Copy file name to clipboardExpand all lines: src/api/BcfApi.js
+32-32Lines changed: 32 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -1886,10 +1886,10 @@ export default class BcfApi {
1886
1886
* This is not a standard route. It responds with all topics, their viewpoints and their comments Required scopes: bcf:read
1887
1887
* @param {Number} projectsPk
1888
1888
* @param {Object} opts Optional parameters
1889
-
* @param {String} opts.format
1890
-
* @param {Array.<Number>} opts.ifcs
1889
+
* @param {String} opts.format format
1890
+
* @param {String} opts.ifcs ifcs
1891
1891
* @param {module:model/String} opts.imgFormat All snapshot_data will be returned as url instead of base64
1892
-
* @param {Array.<Number>} opts.models
1892
+
* @param {String} opts.models models
1893
1893
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/FullTopic>} and HTTP response
1894
1894
*/
1895
1895
getFullTopicsWithHttpInfo(projectsPk,opts){
@@ -1905,9 +1905,9 @@ export default class BcfApi {
@@ -2244,9 +2244,9 @@ export default class BcfApi {
2244
2244
* @param {String} guid
2245
2245
* @param {Number} projectsPk
2246
2246
* @param {Object} opts Optional parameters
2247
-
* @param {String} opts.format
2248
-
* @param {Array.<Number>} opts.ifcs
2249
-
* @param {Array.<Number>} opts.models
2247
+
* @param {String} opts.format format
2248
+
* @param {String} opts.ifcs ifcs
2249
+
* @param {String} opts.models models
2250
2250
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<String>}
2251
2251
*/
2252
2252
getTopicDocumentReferences(guid,projectsPk,opts){
@@ -2323,9 +2323,9 @@ export default class BcfApi {
2323
2323
* Retrieve all topics Required scopes: bcf:read
2324
2324
* @param {Number} projectsPk
2325
2325
* @param {Object} opts Optional parameters
2326
-
* @param {String} opts.format
2327
-
* @param {Array.<Number>} opts.ifcs
2328
-
* @param {Array.<Number>} opts.models
2326
+
* @param {String} opts.format format
2327
+
* @param {String} opts.ifcs ifcs
2328
+
* @param {String} opts.models models
2329
2329
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/Topic>} and HTTP response
2330
2330
*/
2331
2331
getTopicsWithHttpInfo(projectsPk,opts){
@@ -2341,8 +2341,8 @@ export default class BcfApi {
Copy file name to clipboardExpand all lines: src/api/CollaborationApi.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -857,7 +857,7 @@ export default class CollaborationApi {
857
857
858
858
/**
859
859
* Create a document
860
-
* Create a document. If the document is one of {'OBJ', 'DAE', 'GLTF', 'IFC', 'BFX', 'POINT_CLOUD', 'DWG', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
860
+
* Create a document. If the document is one of {'POINT_CLOUD', 'BFX', 'DWG', 'DAE', 'GLTF', 'OBJ', 'DXF', 'IFC'}, a model will be created and attached to this document Required scopes: document:write
861
861
* @param {Number} cloudPk A unique integer value identifying this cloud.
862
862
* @param {Number} projectPk A unique integer value identifying this project.
863
863
* @param {String} name Shown name of the file
@@ -925,7 +925,7 @@ export default class CollaborationApi {
925
925
926
926
/**
927
927
* Create a document
928
-
* Create a document. If the document is one of {'OBJ', 'DAE', 'GLTF', 'IFC', 'BFX', 'POINT_CLOUD', 'DWG', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
928
+
* Create a document. If the document is one of {'POINT_CLOUD', 'BFX', 'DWG', 'DAE', 'GLTF', 'OBJ', 'DXF', 'IFC'}, a model will be created and attached to this document Required scopes: document:write
929
929
* @param {Number} cloudPk A unique integer value identifying this cloud.
930
930
* @param {Number} projectPk A unique integer value identifying this project.
0 commit comments