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
@@ -955,7 +955,7 @@ Name | Type | Description | Notes
955
955
956
956
Create a document
957
957
958
-
Create a document. If the document is one of {'DXF', 'DWG', 'GLTF', 'OBJ', 'IFC', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write
958
+
Create a document. If the document is one of {'DWG', 'OBJ', 'DXF', 'GLTF', 'IFC', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write
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
@@ -858,7 +858,7 @@ export default class CollaborationApi {
858
858
859
859
/**
860
860
* Create a document
861
-
* Create a document. If the document is one of {'DXF', 'DWG', 'GLTF', 'OBJ', 'IFC', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write
861
+
* Create a document. If the document is one of {'DWG', 'OBJ', 'DXF', 'GLTF', 'IFC', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write
862
862
* @param {Number} cloudPk A unique integer value identifying this cloud.
863
863
* @param {Number} projectPk A unique integer value identifying this project.
864
864
* @param {String} name Shown name of the file
@@ -924,7 +924,7 @@ export default class CollaborationApi {
924
924
925
925
/**
926
926
* Create a document
927
-
* Create a document. If the document is one of {'DXF', 'DWG', 'GLTF', 'OBJ', 'IFC', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write
927
+
* Create a document. If the document is one of {'DWG', 'OBJ', 'DXF', 'GLTF', 'IFC', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write
928
928
* @param {Number} cloudPk A unique integer value identifying this cloud.
929
929
* @param {Number} projectPk A unique integer value identifying this project.
Copy file name to clipboardExpand all lines: src/api/ModelApi.js
+30-6Lines changed: 30 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6895,9 +6895,14 @@ export default class ModelApi {
6895
6895
* @param {Number} cloudPk A unique integer value identifying this cloud.
6896
6896
* @param {Number} modelPk A unique integer value identifying this model.
6897
6897
* @param {Number} projectPk A unique integer value identifying this project.
6898
+
* @param {Object} opts Optional parameters
6899
+
* @param {String} opts.classification
6900
+
* @param {String} opts.classificationNotation
6901
+
* @param {String} opts.type
6898
6902
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/RawElements} and HTTP response
@@ -7026,9 +7038,14 @@ export default class ModelApi {
7026
7038
* @param {Number} cloudPk A unique integer value identifying this cloud.
7027
7039
* @param {Number} modelPk A unique integer value identifying this model.
7028
7040
* @param {Number} projectPk A unique integer value identifying this project.
7041
+
* @param {Object} opts Optional parameters
7042
+
* @param {String} opts.classification
7043
+
* @param {String} opts.classificationNotation
7044
+
* @param {String} opts.type
7029
7045
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/SimpleElement} and HTTP response
0 commit comments