bruce-models 5.9.3 → 5.9.5

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.
@@ -1790,6 +1790,12 @@
1790
1790
  if (params.parentId) {
1791
1791
  urlParams.append("ParentID", String(params.parentId));
1792
1792
  }
1793
+ if (params.search) {
1794
+ urlParams.append("Search", params.search);
1795
+ }
1796
+ if (params.withTilesets != null) {
1797
+ urlParams.append("WithTilesets", String(params.withTilesets));
1798
+ }
1793
1799
  url += "?" + urlParams.toString();
1794
1800
  const data = yield api.GET(url, exports.Api.PrepReqParams(reqParams));
1795
1801
  const result = {};
@@ -15301,7 +15307,7 @@
15301
15307
  })(exports.Scenario || (exports.Scenario = {}));
15302
15308
 
15303
15309
  // This is updated with the package.json version on build.
15304
- const VERSION = "5.9.3";
15310
+ const VERSION = "5.9.5";
15305
15311
 
15306
15312
  exports.VERSION = VERSION;
15307
15313
  exports.AbstractApi = AbstractApi;