bruce-models 6.6.9 → 6.7.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.
@@ -11040,7 +11040,8 @@
11040
11040
  if (params.expand) {
11041
11041
  queryParams.set("expand", "true");
11042
11042
  }
11043
- const data = yield api.GET("ui.view/list", exports.Api.PrepReqParams(reqParams));
11043
+ const url = `ui.view/list?${queryParams.toString()}`;
11044
+ const data = yield api.GET(url, exports.Api.PrepReqParams(reqParams));
11044
11045
  res({
11045
11046
  views: data.Items,
11046
11047
  totalCount: data.TotalCount
@@ -16122,7 +16123,7 @@
16122
16123
  })(exports.Tracking || (exports.Tracking = {}));
16123
16124
 
16124
16125
  // This is updated with the package.json version on build.
16125
- const VERSION = "6.6.9";
16126
+ const VERSION = "6.7.0";
16126
16127
 
16127
16128
  exports.VERSION = VERSION;
16128
16129
  exports.AbstractApi = AbstractApi;