@aurigma/axios-storefront-api-client 2.57.1 → 2.59.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.
@@ -1620,6 +1620,8 @@ export interface ProductSummaryOptionValueDto {
1620
1620
  id?: number;
1621
1621
  /** Option value identifying tag. */
1622
1622
  tag?: string | null;
1623
+ /** Product option value UID. */
1624
+ uid?: string | null;
1623
1625
  /** Option value title. */
1624
1626
  title?: string | null;
1625
1627
  /** Option value value. */
@@ -1639,6 +1641,8 @@ export interface ProductSummaryOptionDto {
1639
1641
  id?: number;
1640
1642
  /** Option identifying tag. */
1641
1643
  tag?: string | null;
1644
+ /** Product option UID. */
1645
+ uid?: string | null;
1642
1646
  /** Option title. */
1643
1647
  title?: string | null;
1644
1648
  /** Option description. */
@@ -1871,6 +1875,8 @@ export interface ProductOptionValueDto {
1871
1875
  isDefault?: boolean;
1872
1876
  /** Product option value identifying tag. */
1873
1877
  tag?: string | null;
1878
+ /** Product option value UID. */
1879
+ uid?: string | null;
1874
1880
  /** Product option value description for 'Simple' option type. */
1875
1881
  simpleOptionValue?: SimpleOptionValue | null;
1876
1882
  /** Product option value description. */
@@ -1900,6 +1906,8 @@ export interface ProductOptionDto {
1900
1906
  sortIndex?: number;
1901
1907
  /** Product option identifying tag. */
1902
1908
  tag?: string | null;
1909
+ /** Product option UID. */
1910
+ uid?: string | null;
1903
1911
  /** Specifies if the option is used for design binding. */
1904
1912
  useForDesignBinding?: boolean;
1905
1913
  /** Specifies if the option is used for mockup binding. */
@@ -6022,10 +6022,7 @@ export class ApiException extends Error {
6022
6022
  }
6023
6023
  }
6024
6024
  function throwException(message, status, response, headers, result) {
6025
- if (result !== null && result !== undefined)
6026
- throw result;
6027
- else
6028
- throw new ApiException(message, status, response, headers, null);
6025
+ throw new ApiException(message, status, response, headers, result);
6029
6026
  }
6030
6027
  function isAxiosError(obj) {
6031
6028
  return obj && obj.isAxiosError === true;