Skip to content

Commit 1c3b8c7

Browse files
committed
PATCH: add property filters (#883)
* add property filters * remove test of atrtibutes
1 parent d85e690 commit 1c3b8c7

File tree

4 files changed

+111
-71
lines changed

4 files changed

+111
-71
lines changed

package/src/apis/CollaborationApi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1671,7 +1671,7 @@ export class CollaborationApi extends runtime.BaseAPI {
16711671
}
16721672

16731673
/**
1674-
* Create a document. If the document is one of {\'GLTF\', \'OBJ\', \'DXF\', \'IFC\', \'POINT_CLOUD\', \'DWG\'}, a model will be created and attached to this document Required scopes: document:write
1674+
* Create a document. If the document is one of {\'POINT_CLOUD\', \'OBJ\', \'DWG\', \'IFC\', \'DXF\', \'GLTF\'}, a model will be created and attached to this document Required scopes: document:write
16751675
* Create a document
16761676
*/
16771677
async createDocumentRaw(requestParameters: CreateDocumentRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Document>> {
@@ -1778,7 +1778,7 @@ export class CollaborationApi extends runtime.BaseAPI {
17781778
}
17791779

17801780
/**
1781-
* Create a document. If the document is one of {\'GLTF\', \'OBJ\', \'DXF\', \'IFC\', \'POINT_CLOUD\', \'DWG\'}, a model will be created and attached to this document Required scopes: document:write
1781+
* Create a document. If the document is one of {\'POINT_CLOUD\', \'OBJ\', \'DWG\', \'IFC\', \'DXF\', \'GLTF\'}, a model will be created and attached to this document Required scopes: document:write
17821782
* Create a document
17831783
*/
17841784
async createDocument(cloud_pk: number, project_pk: number, name: string, file: Blob, parent_id?: number | null, file_name?: string, description?: string | null, model_source?: CreateDocumentModelSourceEnum, ifc_source?: CreateDocumentIfcSourceEnum, successor_of?: number, process_hint?: CreateDocumentProcessHintEnum, initOverrides?: RequestInit): Promise<Document> {

0 commit comments

Comments
 (0)