ReadonlyidUniquely identifies the backend the client connects to. If the client connects to a REST API its probably the host name of the API.
ReadonlylayersAPI to handle layer functionality. A Layer is a way to enrich an existing change in the database with extra data. This data will be versioned separately from the change the layer is attached to.
ReadonlymapAPI to access MapBox functionality.
Issues an HTTP GET specified url.
The type of data the specified converter will convert the HTTP response body to.
Url to issue HTTP GET to.
Converter for response. See HttpResponseType for predefined converters.
Optionalinit: RequestInitOptional settings for to HTTP GET (fetch).
a TypedResponse containing the status code and the response value that resulted from using the specified converter.
// Gets a JSON object and convert it to the MyObj interface.
const myObjResponse = this.get<MyObj>("http://foo.com/jsonendpoint", HttpResponseType.json)
const myObj = myObjResponse.status === 200 ? (await myObjResponse.value) : undefined;
// Gets a binary ArrayBuffer.
const myArrayBufferResponse = this.get("http://foo.com/jsonendpoint", HttpResponseType.arrayBuffer)
const myArrayBuffer = myArrayBufferResponse.status === 200 ? (await myArrayBufferResponse.value) : undefined;
Retrieves all changes in and below a specified parent change and that matches a specific query. Use typescript type inference cast directly to a specific BimChange type if you know exactly which types the query will return
Parent to get changes from.
example: ifc.status=processed, dwg.status=processed or _system.layers.format=sensors
Changes in container that matched the filterQuery.
const dwgChanges: BimChangeDwg[] = api.getChanges(container, {query: "dwg.status=Processed"});
const ifcFailures = api.getChanges(container, PredefinedBimChangeMetadataQuery.ifc(BimChangeStatus.Failed));
It is expensive to get all changes in a container. Use a query to filter out only the changes you are interested in.
Getting everything is discouraged as there can be 100k+ changes in a container. Be specific.
As it is expensive DO NOT use this method to get the changes for many/all containers in the system.
There can be many containers and many changes (like 100k+) in each container.
Gets all containers (and workspaces) or just a specific one.
Optionalid: stringIf given, only container with specific id is returned. Otherwise all containers are returned.
List of containers. May be empty if no containers were found or matched the specified id.
Retrieves all (successfully processed) IFC changes located in and below a specified parent.
Parent change to get IFC changes from.
All successfully processed IFC changes in the specified container.
Implementing this interface allows the developer to customize where the container and IFC data is loaded from.