bruce-models 7.1.15 → 7.1.16

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.
@@ -15196,14 +15196,23 @@
15196
15196
  if (!params) {
15197
15197
  params = {};
15198
15198
  }
15199
- let { api, req, expandGroups } = params;
15199
+ let { api, req, expandGroups, isActionableOnly, IsActionableOnly } = params;
15200
15200
  if (!api) {
15201
15201
  api = exports.ENVIRONMENT.Api().GetBruceApi();
15202
15202
  }
15203
15203
  let url = "entities/datalab/savedQueries";
15204
+ const urlParams = new URLSearchParams();
15205
+ let hasUrlParams = false;
15204
15206
  if (expandGroups) {
15205
- const urlParams = new URLSearchParams();
15206
15207
  urlParams.append("ExpandGroups", "true");
15208
+ hasUrlParams = true;
15209
+ }
15210
+ const actionableOnly = isActionableOnly !== null && isActionableOnly !== void 0 ? isActionableOnly : IsActionableOnly;
15211
+ if (actionableOnly === true) {
15212
+ urlParams.append("IsActionableOnly", "true");
15213
+ hasUrlParams = true;
15214
+ }
15215
+ if (hasUrlParams) {
15207
15216
  url += "?" + urlParams.toString();
15208
15217
  }
15209
15218
  const res = yield api.GET(url, exports.Api.PrepReqParams(req));
@@ -17108,7 +17117,7 @@
17108
17117
  })(exports.ChangeSet || (exports.ChangeSet = {}));
17109
17118
 
17110
17119
  // This is updated with the package.json version on build.
17111
- const VERSION = "7.1.15";
17120
+ const VERSION = "7.1.16";
17112
17121
 
17113
17122
  exports.VERSION = VERSION;
17114
17123
  exports.AbstractApi = AbstractApi;