@inweb/client 25.2.8 → 25.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inweb/client",
3
- "version": "25.2.8",
3
+ "version": "25.3.0",
4
4
  "description": "Client.js is a library for implementing BIM Project management applications.",
5
5
  "homepage": "https://cloud.opendesign.com/docs/index.html",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -371,6 +371,11 @@ export class Options {
371
371
 
372
372
  set enableStreamingMode(value: boolean) {
373
373
  this._data.enableStreamingMode = value;
374
+
375
+ if (this._data.enableStreamingMode) {
376
+ this._data.enablePartialMode = false;
377
+ }
378
+
374
379
  this.notifierChangeEvent();
375
380
  }
376
381