bruce-models 7.1.56 → 7.1.57

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.
@@ -2781,8 +2781,14 @@
2781
2781
  if (detailLevel) {
2782
2782
  urlParams.append("DetailLevel", detailLevel);
2783
2783
  }
2784
+ if (concept instanceof Array) {
2785
+ urlParams.append("Concept", concept.join(","));
2786
+ }
2787
+ else if (concept) {
2788
+ urlParams.append("Concept", concept);
2789
+ }
2784
2790
  const query = urlParams.toString();
2785
- const route = `v3/accountAudits/concept/${exports.Api.Encode(String(concept))}`;
2791
+ const route = `v3/accountAudits/concepts`;
2786
2792
  return api.GET(query ? `${route}?${query}` : route, exports.Api.PrepReqParams(reqParams));
2787
2793
  });
2788
2794
  }
@@ -18917,7 +18923,7 @@
18917
18923
  })(exports.UrlUtils || (exports.UrlUtils = {}));
18918
18924
 
18919
18925
  // This is updated with the package.json version on build.
18920
- const VERSION = "7.1.56";
18926
+ const VERSION = "7.1.57";
18921
18927
 
18922
18928
  exports.VERSION = VERSION;
18923
18929
  exports.AbstractApi = AbstractApi;