diff --git a/package/src/apis/CollaborationApi.ts b/package/src/apis/CollaborationApi.ts index cdfe6c5..8a1301f 100644 --- a/package/src/apis/CollaborationApi.ts +++ b/package/src/apis/CollaborationApi.ts @@ -1677,7 +1677,7 @@ export class CollaborationApi extends runtime.BaseAPI { } /** - * Create a document. If the document is one of {\'GLTF\', \'DXF\', \'DWG\', \'IFC\', \'OBJ\', \'POINT_CLOUD\'}, a model will be created and attached to this document Required scopes: document:write + * Create a document. If the document is one of {\'DXF\', \'OBJ\', \'DWG\', \'IFC\', \'GLTF\', \'POINT_CLOUD\'}, a model will be created and attached to this document Required scopes: document:write * Create a document */ async createDocumentRaw(requestParameters: CreateDocumentRequest, initOverrides?: RequestInit): Promise> { @@ -1780,7 +1780,7 @@ export class CollaborationApi extends runtime.BaseAPI { } /** - * Create a document. If the document is one of {\'GLTF\', \'DXF\', \'DWG\', \'IFC\', \'OBJ\', \'POINT_CLOUD\'}, a model will be created and attached to this document Required scopes: document:write + * Create a document. If the document is one of {\'DXF\', \'OBJ\', \'DWG\', \'IFC\', \'GLTF\', \'POINT_CLOUD\'}, a model will be created and attached to this document Required scopes: document:write * Create a document */ 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, initOverrides?: RequestInit): Promise { diff --git a/package/src/models/Building.ts b/package/src/models/Building.ts index ac50322..c33cefc 100644 --- a/package/src/models/Building.ts +++ b/package/src/models/Building.ts @@ -37,7 +37,7 @@ export interface Building { * @type {string} * @memberof Building */ - readonly name: string; + readonly name: string | null; /** * Elevation computed by BIMData on storey's objects geometries. * @type {number} diff --git a/package/src/models/Storey.ts b/package/src/models/Storey.ts index c911930..dad6a4c 100644 --- a/package/src/models/Storey.ts +++ b/package/src/models/Storey.ts @@ -37,7 +37,7 @@ export interface Storey { * @type {string} * @memberof Storey */ - readonly name: string; + readonly name: string | null; /** * Elevation computed by BIMData on storey's objects geometries. * @type {number}