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 {'OBJ', 'DWG', 'IFC', 'GLTF', 'DXF', '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 {'POINT_CLOUD', 'GLTF', 'DXF', 'IFC', 'OBJ', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
Copy file name to clipboardExpand all lines: docs/Document.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
22
22
**ifcId** | **Number** | DEPRECATED: Use 'model_id' instead. | [readonly]
23
23
**headId** | **Number** | Document id of head version | [readonly]
24
24
**isHeadVersion** | **Boolean** | Document is a head of version or is owned by another document | [readonly]
25
+
**historyCount** | **Number** | Number of previous versions | [readonly]
25
26
**userPermission** | **Number** | Aggregate of group user permissions and folder default permission | [readonly]
26
27
**officePreview** | **String** | Office files will be converted as pdf to provide a web preview. Supported extensions are .ppt, .pptx, .odp, .xls, .xlsx, .ods, .doc, .docx, .odt | [readonly]
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 {'OBJ', 'DWG', 'IFC', 'GLTF', 'DXF', '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 {'POINT_CLOUD', 'GLTF', 'DXF', 'IFC', 'OBJ', 'DWG'}, 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 {'OBJ', 'DWG', 'IFC', 'GLTF', 'DXF', '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 {'POINT_CLOUD', 'GLTF', 'DXF', 'IFC', 'OBJ', 'DWG'}, 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/model/Document.js
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -40,20 +40,21 @@ class Document {
40
40
* @param ifcId {Number} DEPRECATED: Use 'model_id' instead.
41
41
* @param headId {Number} Document id of head version
42
42
* @param isHeadVersion {Boolean} Document is a head of version or is owned by another document
43
+
* @param historyCount {Number} Number of previous versions
43
44
* @param userPermission {module:model/Document.UserPermissionEnum} Aggregate of group user permissions and folder default permission
44
45
* @param officePreview {String} Office files will be converted as pdf to provide a web preview. Supported extensions are .ppt, .pptx, .odp, .xls, .xlsx, .ods, .doc, .docx, .odt
0 commit comments