bruce-models 6.1.1 → 6.1.2

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.
@@ -1801,7 +1801,8 @@
1801
1801
  ids: batch,
1802
1802
  parentId: params.parentId,
1803
1803
  search: params.search,
1804
- withTilesets: params.withTilesets
1804
+ withTilesets: params.withTilesets,
1805
+ rootEntityId: params.rootEntityId
1805
1806
  });
1806
1807
  assemblies.push(...result.assemblies);
1807
1808
  }
@@ -1842,6 +1843,17 @@
1842
1843
  urlParams.append("PageSize", String(params.ids.length));
1843
1844
  }
1844
1845
  }
1846
+ if (params.rootEntityId != null) {
1847
+ for (let i = 0; i < params.rootEntityId.length; i++) {
1848
+ urlParams.append("RootEntityID", params.rootEntityId[i]);
1849
+ }
1850
+ if (params.pageIndex != null) {
1851
+ urlParams.append("PageIndex", String(0));
1852
+ }
1853
+ if (params.pageSize != null) {
1854
+ urlParams.append("PageSize", String(params.rootEntityId.length));
1855
+ }
1856
+ }
1845
1857
  url += "?" + urlParams.toString();
1846
1858
  const data = yield api.GET(url, exports.Api.PrepReqParams(reqParams));
1847
1859
  const result = {};
@@ -15549,7 +15561,7 @@
15549
15561
  })(exports.Tracking || (exports.Tracking = {}));
15550
15562
 
15551
15563
  // This is updated with the package.json version on build.
15552
- const VERSION = "6.1.1";
15564
+ const VERSION = "6.1.2";
15553
15565
 
15554
15566
  exports.VERSION = VERSION;
15555
15567
  exports.AbstractApi = AbstractApi;