@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.
- package/dist/cjs/storefront-api-client.d.ts +8 -0
- package/dist/cjs/storefront-api-client.js +1 -4
- package/dist/cjs/storefront-api-client.js.map +1 -1
- package/dist/esm/storefront-api-client.d.ts +8 -0
- package/dist/esm/storefront-api-client.js +1 -4
- package/dist/esm/storefront-api-client.js.map +1 -1
- package/package.json +1 -1
|
@@ -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. */
|
|
@@ -6038,10 +6038,7 @@ class ApiException extends Error {
|
|
|
6038
6038
|
}
|
|
6039
6039
|
exports.ApiException = ApiException;
|
|
6040
6040
|
function throwException(message, status, response, headers, result) {
|
|
6041
|
-
|
|
6042
|
-
throw result;
|
|
6043
|
-
else
|
|
6044
|
-
throw new ApiException(message, status, response, headers, null);
|
|
6041
|
+
throw new ApiException(message, status, response, headers, result);
|
|
6045
6042
|
}
|
|
6046
6043
|
function isAxiosError(obj) {
|
|
6047
6044
|
return obj && obj.isAxiosError === true;
|