@salesforce/commerce-sdk-react 1.4.0-nightly-20240417080136 → 1.4.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/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
## v1.4.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
## v1.4.0
|
|
5
|
-
## v3.5.0-dev.1 (Mar 22, 2024)
|
|
6
|
-
## v1.4.0-dev.1 (Mar 22, 2024)
|
|
7
|
-
## v1.4.0-dev (Jan 22, 2024)
|
|
1
|
+
## v1.4.1 (Apr 16, 2024)
|
|
2
|
+
- Add missing params keys `allVariationProperties` and `perPricebook` for Shopper Search [#1750](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1750)
|
|
3
|
+
|
|
4
|
+
## v1.4.0 (Apr 15, 2024)
|
|
8
5
|
|
|
9
6
|
- Add Support for SLAS private flow [#1722](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1722)
|
|
10
7
|
- Fix invalid query params warnings and allow custom query [#1655](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1655)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
productSearch: readonly ["organizationId", "siteId", "q", "refine", "sort", "currency", "locale", "expand", "offset", "limit"];
|
|
2
|
+
productSearch: readonly ["organizationId", "siteId", "q", "refine", "sort", "currency", "locale", "expand", "offset", "limit", "select", "allImages", "allVariationProperties", "perPricebook"];
|
|
3
3
|
getSearchSuggestions: readonly ["organizationId", "siteId", "q", "limit", "currency", "locale"];
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
@@ -10,7 +10,7 @@ exports.default = void 0;
|
|
|
10
10
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
11
11
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
12
12
|
*/
|
|
13
|
-
const productSearch = ['organizationId', 'siteId', 'q', 'refine', 'sort', 'currency', 'locale', 'expand', 'offset', 'limit'];
|
|
13
|
+
const productSearch = ['organizationId', 'siteId', 'q', 'refine', 'sort', 'currency', 'locale', 'expand', 'offset', 'limit', 'select', 'allImages', 'allVariationProperties', 'perPricebook'];
|
|
14
14
|
const getSearchSuggestions = ['organizationId', 'siteId', 'q', 'limit', 'currency', 'locale'];
|
|
15
15
|
var _default = exports.default = {
|
|
16
16
|
productSearch,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/commerce-sdk-react",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "A library that provides react hooks for fetching data from Commerce Cloud",
|
|
5
5
|
"homepage": "https://github.com/SalesforceCommerceCloud/pwa-kit/tree/develop/packages/ecom-react-hooks#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"version": "node ./scripts/version.js"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"commerce-sdk-isomorphic": "^1.
|
|
43
|
+
"commerce-sdk-isomorphic": "^1.13.1",
|
|
44
44
|
"js-cookie": "^3.0.1",
|
|
45
45
|
"jwt-decode": "^4.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@salesforce/pwa-kit-dev": "3.5.0
|
|
48
|
+
"@salesforce/pwa-kit-dev": "3.5.0",
|
|
49
49
|
"@tanstack/react-query": "^4.28.0",
|
|
50
50
|
"@testing-library/jest-dom": "^5.16.5",
|
|
51
51
|
"@testing-library/react": "^14.0.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@types/react-helmet": "~6.1.6",
|
|
60
60
|
"@types/react-router-dom": "~5.3.3",
|
|
61
61
|
"cross-env": "^5.2.1",
|
|
62
|
-
"internal-lib-build": "3.5.0
|
|
62
|
+
"internal-lib-build": "3.5.0",
|
|
63
63
|
"jsonwebtoken": "^9.0.0",
|
|
64
64
|
"nock": "^13.3.0",
|
|
65
65
|
"nodemon": "^2.0.22",
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"publishConfig": {
|
|
90
90
|
"directory": "dist"
|
|
91
91
|
},
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "2e2780d22a9b2573c0f7eb3e96cc89bb6d90740c"
|
|
93
93
|
}
|