@aurigma/axios-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.
@@ -1297,10 +1297,11 @@ export interface IStorefrontUsersApiClient {
1297
1297
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
1298
1298
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
1299
1299
  * @param search (optional) Search string for partial match.
1300
+ * @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
1300
1301
  * @param tenantId (optional) Tenant identifier.
1301
1302
  * @return Success
1302
1303
  */
1303
- getAll(storefrontId: number, storefrontUserId?: string | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined): Promise<PagedOfStorefrontUserDto>;
1304
+ getAll(storefrontId: number, storefrontUserId?: string | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, includeAnonymous?: boolean | null | undefined, tenantId?: number | null | undefined): Promise<PagedOfStorefrontUserDto>;
1304
1305
  /**
1305
1306
  * Creates a new storefront user.
1306
1307
  * @param storefrontId Storefront identifier.
@@ -1355,10 +1356,11 @@ export declare class StorefrontUsersApiClient extends ApiClientBase implements I
1355
1356
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
1356
1357
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
1357
1358
  * @param search (optional) Search string for partial match.
1359
+ * @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
1358
1360
  * @param tenantId (optional) Tenant identifier.
1359
1361
  * @return Success
1360
1362
  */
1361
- getAll(storefrontId: number, storefrontUserId?: string | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, tenantId?: number | null | undefined, cancelToken?: CancelToken | undefined): Promise<PagedOfStorefrontUserDto>;
1363
+ getAll(storefrontId: number, storefrontUserId?: string | null | undefined, skip?: number | null | undefined, take?: number | null | undefined, sorting?: string | null | undefined, search?: string | null | undefined, includeAnonymous?: boolean | null | undefined, tenantId?: number | null | undefined, cancelToken?: CancelToken | undefined): Promise<PagedOfStorefrontUserDto>;
1362
1364
  protected processGetAll(response: AxiosResponse): Promise<PagedOfStorefrontUserDto>;
1363
1365
  /**
1364
1366
  * Creates a new storefront user.
@@ -1618,6 +1620,8 @@ export interface ProductSummaryOptionValueDto {
1618
1620
  id?: number;
1619
1621
  /** Option value identifying tag. */
1620
1622
  tag?: string | null;
1623
+ /** Product option value UID. */
1624
+ uid?: string | null;
1621
1625
  /** Option value title. */
1622
1626
  title?: string | null;
1623
1627
  /** Option value value. */
@@ -1637,6 +1641,8 @@ export interface ProductSummaryOptionDto {
1637
1641
  id?: number;
1638
1642
  /** Option identifying tag. */
1639
1643
  tag?: string | null;
1644
+ /** Product option UID. */
1645
+ uid?: string | null;
1640
1646
  /** Option title. */
1641
1647
  title?: string | null;
1642
1648
  /** Option description. */
@@ -1869,6 +1875,8 @@ export interface ProductOptionValueDto {
1869
1875
  isDefault?: boolean;
1870
1876
  /** Product option value identifying tag. */
1871
1877
  tag?: string | null;
1878
+ /** Product option value UID. */
1879
+ uid?: string | null;
1872
1880
  /** Product option value description for 'Simple' option type. */
1873
1881
  simpleOptionValue?: SimpleOptionValue | null;
1874
1882
  /** Product option value description. */
@@ -1898,6 +1906,8 @@ export interface ProductOptionDto {
1898
1906
  sortIndex?: number;
1899
1907
  /** Product option identifying tag. */
1900
1908
  tag?: string | null;
1909
+ /** Product option UID. */
1910
+ uid?: string | null;
1901
1911
  /** Specifies if the option is used for design binding. */
1902
1912
  useForDesignBinding?: boolean;
1903
1913
  /** Specifies if the option is used for mockup binding. */
@@ -5116,10 +5116,11 @@ export class StorefrontUsersApiClient extends ApiClientBase {
5116
5116
  * @param take (optional) Defines page length (how many consequent items of sorted result list should be taken).
5117
5117
  * @param sorting (optional) Defines sorting order of result list e.g.: "Title ASC, LastModified DESC".
5118
5118
  * @param search (optional) Search string for partial match.
5119
+ * @param includeAnonymous (optional) Flag that indicates if anonymous users should be included. `True` by default.
5119
5120
  * @param tenantId (optional) Tenant identifier.
5120
5121
  * @return Success
5121
5122
  */
5122
- getAll(storefrontId, storefrontUserId, skip, take, sorting, search, tenantId, cancelToken) {
5123
+ getAll(storefrontId, storefrontUserId, skip, take, sorting, search, includeAnonymous, tenantId, cancelToken) {
5123
5124
  let url_ = this.baseUrl + "/api/storefront/v1/storefront-users?";
5124
5125
  if (storefrontId === undefined || storefrontId === null)
5125
5126
  throw new Error("The parameter 'storefrontId' must be defined and cannot be null.");
@@ -5135,6 +5136,8 @@ export class StorefrontUsersApiClient extends ApiClientBase {
5135
5136
  url_ += "sorting=" + encodeURIComponent("" + sorting) + "&";
5136
5137
  if (search !== undefined && search !== null)
5137
5138
  url_ += "search=" + encodeURIComponent("" + search) + "&";
5139
+ if (includeAnonymous !== undefined && includeAnonymous !== null)
5140
+ url_ += "includeAnonymous=" + encodeURIComponent("" + includeAnonymous) + "&";
5138
5141
  if (tenantId !== undefined && tenantId !== null)
5139
5142
  url_ += "tenantId=" + encodeURIComponent("" + tenantId) + "&";
5140
5143
  url_ = url_.replace(/[?&]$/, "");