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
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
@@ -956,7 +956,7 @@ Name | Type | Description | Notes
956
956
957
957
Create a document
958
958
959
-
Create a document. If the document is one of {'OBJ', 'DXF', 'IFC', 'GLTF', 'POINT_CLOUD', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
959
+
Create a document. If the document is one of {'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'OBJ', 'DXF'}, 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
+15-6Lines changed: 15 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1240,9 +1240,13 @@ export default class BcfApi {
1240
1240
* Export project's topics in excel format
1241
1241
* This is not a standard route. Export project's topics in excel format Required scopes: bcf:read
1242
1242
* @param {Number} id A unique integer value identifying this project.
1243
-
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/BcfProject} and HTTP response
1243
+
* @param {Object} opts Optional parameters
1244
+
* @param {String} opts.format topic format to export, comma separated. Default = standard
1245
+
* @param {String} opts.topics topic guids to export, comma separated. Default = all
1246
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link File} and HTTP response
1244
1247
*/
1245
-
downloadBcfExportXlsxWithHttpInfo(id){
1248
+
downloadBcfExportXlsxWithHttpInfo(id,opts){
1249
+
opts=opts||{};
1246
1250
letpostBody=null;
1247
1251
// verify the required parameter 'id' is set
1248
1252
if(id===undefined||id===null){
@@ -1253,6 +1257,8 @@ export default class BcfApi {
1253
1257
'id': id
1254
1258
};
1255
1259
letqueryParams={
1260
+
'format': opts['format'],
1261
+
'topics': opts['topics']
1256
1262
};
1257
1263
letheaderParams={
1258
1264
};
@@ -1262,7 +1268,7 @@ 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
@@ -859,7 +859,7 @@ export default class CollaborationApi {
859
859
860
860
/**
861
861
* Create a document
862
-
* Create a document. If the document is one of {'OBJ', 'DXF', 'IFC', 'GLTF', 'POINT_CLOUD', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
862
+
* Create a document. If the document is one of {'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'OBJ', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
863
863
* @param {Number} cloudPk A unique integer value identifying this cloud.
864
864
* @param {Number} projectPk A unique integer value identifying this project.
865
865
* @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', 'DXF', 'IFC', 'GLTF', 'POINT_CLOUD', 'DWG'}, 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', 'IFC', 'GLTF', 'DWG', 'OBJ', 'DXF'}, 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