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
*bimdata.CollaborationApi* | [**getProjectCreatorVisas**](docs/CollaborationApi.md#getProjectCreatorVisas) | **GET** /cloud/{cloud_pk}/project/{project_pk}/me/visa/creator | List visas created by user
269
269
*bimdata.CollaborationApi* | [**getProjectDMSTree**](docs/CollaborationApi.md#getProjectDMSTree) | **GET** /cloud/{cloud_pk}/project/{id}/dms-tree | Retrieve the complete DMS tree
270
270
*bimdata.CollaborationApi* | [**getProjectFolderTree**](docs/CollaborationApi.md#getProjectFolderTree) | **GET** /cloud/{cloud_pk}/project/{id}/folder-tree | Retrieve folder tree of the project
271
-
*bimdata.CollaborationApi* | [**getProjectFolderTreeSerializers**](docs/CollaborationApi.md#getProjectFolderTreeSerializers) | **GET** /cloud/{cloud_pk}/project/folder-trees | Retrieve folder tree for all projects
272
271
*bimdata.CollaborationApi* | [**getProjectInvitations**](docs/CollaborationApi.md#getProjectInvitations) | **GET** /cloud/{cloud_pk}/project/{project_pk}/invitation | Retrieve all pending invitations in the project
273
272
*bimdata.CollaborationApi* | [**getProjectSize**](docs/CollaborationApi.md#getProjectSize) | **GET** /cloud/{cloud_pk}/project/{id}/size | Get size of all model files in the project
274
273
*bimdata.CollaborationApi* | [**getProjectSubTree**](docs/CollaborationApi.md#getProjectSubTree) | **GET** /cloud/{cloud_pk}/project/subtree | Retrieve the complete projects tree of the cloud
[**getProjectCreatorVisas**](CollaborationApi.md#getProjectCreatorVisas) | **GET** /cloud/{cloud_pk}/project/{project_pk}/me/visa/creator | List visas created by user
70
70
[**getProjectDMSTree**](CollaborationApi.md#getProjectDMSTree) | **GET** /cloud/{cloud_pk}/project/{id}/dms-tree | Retrieve the complete DMS tree
71
71
[**getProjectFolderTree**](CollaborationApi.md#getProjectFolderTree) | **GET** /cloud/{cloud_pk}/project/{id}/folder-tree | Retrieve folder tree of the project
72
-
[**getProjectFolderTreeSerializers**](CollaborationApi.md#getProjectFolderTreeSerializers) | **GET** /cloud/{cloud_pk}/project/folder-trees | Retrieve folder tree for all projects
73
72
[**getProjectInvitations**](CollaborationApi.md#getProjectInvitations) | **GET** /cloud/{cloud_pk}/project/{project_pk}/invitation | Retrieve all pending invitations in the project
74
73
[**getProjectSize**](CollaborationApi.md#getProjectSize) | **GET** /cloud/{cloud_pk}/project/{id}/size | Get size of all model files in the project
75
74
[**getProjectSubTree**](CollaborationApi.md#getProjectSubTree) | **GET** /cloud/{cloud_pk}/project/subtree | Retrieve the complete projects tree of the cloud
@@ -961,7 +960,7 @@ Name | Type | Description | Notes
961
960
962
961
Create a document
963
962
964
-
Create a document. If the document is one of {'DWG', 'POINT_CLOUD', 'OBJ', 'GLTF', 'DXF', 'IFC'}, a model will be created and attached to this document Required scopes: document:write
963
+
Create a document. If the document is one of {'OBJ', 'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
965
964
966
965
### Example
967
966
@@ -4376,7 +4375,7 @@ Name | Type | Description | Notes
Copy file name to clipboardExpand all lines: src/api/CollaborationApi.js
+5-53Lines changed: 5 additions & 53 deletions
Original file line number
Diff line number
Diff line change
@@ -865,7 +865,7 @@ export default class CollaborationApi {
865
865
866
866
/**
867
867
* Create a document
868
-
* Create a document. If the document is one of {'DWG', 'POINT_CLOUD', 'OBJ', 'GLTF', 'DXF', 'IFC'}, a model will be created and attached to this document Required scopes: document:write
868
+
* Create a document. If the document is one of {'OBJ', 'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
869
869
* @param {Number} cloudPk A unique integer value identifying this cloud.
870
870
* @param {Number} projectPk A unique integer value identifying this project.
871
871
* @param {String} name Shown name of the file
@@ -931,7 +931,7 @@ export default class CollaborationApi {
931
931
932
932
/**
933
933
* Create a document
934
-
* Create a document. If the document is one of {'DWG', 'POINT_CLOUD', 'OBJ', 'GLTF', 'DXF', 'IFC'}, a model will be created and attached to this document Required scopes: document:write
934
+
* Create a document. If the document is one of {'OBJ', 'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
935
935
* @param {Number} cloudPk A unique integer value identifying this cloud.
936
936
* @param {Number} projectPk A unique integer value identifying this project.
937
937
* @param {String} name Shown name of the file
@@ -4121,7 +4121,7 @@ export default class CollaborationApi {
4121
4121
* Retrieve folder tree of the project
4122
4122
* @param {Number} cloudPk
4123
4123
* @param {Number} id A unique integer value identifying this project.
4124
-
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ProjectFolderTree} and HTTP response
4124
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@linkArray.<module:model/ProjectFolderTree>} and HTTP response
4125
4125
*/
4126
4126
getProjectFolderTreeWithHttpInfo(cloudPk,id){
4127
4127
letpostBody=null;
@@ -4148,7 +4148,7 @@ export default class CollaborationApi {
@@ -4171,54 +4171,6 @@ export default class CollaborationApi {
4171
4171
}
4172
4172
4173
4173
4174
-
/**
4175
-
* Retrieve folder tree for all projects
4176
-
* Retrieve folder tree for all projects
4177
-
* @param {Number} cloudPk
4178
-
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/ProjectFolderTree>} and HTTP response
0 commit comments