@aurigma/ng-storefront-api-client 2.56.1 → 2.58.1

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.
@@ -5537,10 +5537,11 @@ class StorefrontUsersApiClient extends ApiClientBase {
5537
5537
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
5538
5538
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
5539
5539
  * @param search (optional) Search string for partial match.
5540
+ * @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
5540
5541
  * @param tenantId (optional) Tenant identifier.
5541
5542
  * @return Success
5542
5543
  */
5543
- getAll(storefrontId, storefrontUserId, skip, take, sorting, search, tenantId) {
5544
+ getAll(storefrontId, storefrontUserId, skip, take, sorting, search, includeAnonymous, tenantId) {
5544
5545
  let url_ = this.baseUrl + "/api/storefront/v1/storefront-users?";
5545
5546
  if (storefrontId === undefined || storefrontId === null)
5546
5547
  throw new Error("The parameter 'storefrontId' must be defined and cannot be null.");
@@ -5556,6 +5557,8 @@ class StorefrontUsersApiClient extends ApiClientBase {
5556
5557
  url_ += "sorting=" + encodeURIComponent("" + sorting) + "&";
5557
5558
  if (search !== undefined && search !== null)
5558
5559
  url_ += "search=" + encodeURIComponent("" + search) + "&";
5560
+ if (includeAnonymous !== undefined && includeAnonymous !== null)
5561
+ url_ += "includeAnonymous=" + encodeURIComponent("" + includeAnonymous) + "&";
5559
5562
  if (tenantId !== undefined && tenantId !== null)
5560
5563
  url_ += "tenantId=" + encodeURIComponent("" + tenantId) + "&";
5561
5564
  url_ = url_.replace(/[?&]$/, "");