commerce-sdk-isomorphic 1.8.0 → 1.10.0
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 +28 -1
- package/LICENSE.txt +1 -1
- package/lib/index.cjs.d.ts +3253 -1309
- package/lib/index.cjs.js +1 -1
- package/lib/index.esm.d.ts +3253 -1309
- package/lib/index.esm.js +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## v1.10.0
|
|
4
|
+
|
|
5
|
+
#### Enhancements
|
|
6
|
+
|
|
7
|
+
- Cookies are disabled by default.
|
|
8
|
+
- The cross-fetch dependency has been removed. Now commerce-sdk-isomorphic uses native fetch in browser and node-fetch library in node.
|
|
9
|
+
|
|
10
|
+
#### API Added
|
|
11
|
+
|
|
12
|
+
*Shopper Baskets*
|
|
13
|
+
|
|
14
|
+
* New Endpoints
|
|
15
|
+
|
|
16
|
+
| **Endpoint Name** | **Description** |
|
|
17
|
+
| ------------- |-------------|
|
|
18
|
+
| updateAsAgentBasket | Marks a basket as an agent basket. |
|
|
19
|
+
| addPriceAdjustmentToBasket | Adds a custom manual price adjustment to the basket. |
|
|
20
|
+
| removePriceAdjustmentFromBasket | Removes a custom manual price adjustment from the basket. |
|
|
21
|
+
| updatePriceAdjustmentInBasket | Updates a custom manual price adjustment on the basket. |
|
|
22
|
+
| updateAsStorefrontBasket | Marks a basket as a storefront basket. |
|
|
23
|
+
|
|
24
|
+
## v1.9.0
|
|
25
|
+
|
|
26
|
+
### API Added
|
|
27
|
+
|
|
28
|
+
* The [Shopper Experience](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-experience?meta=Summary) API has been added to the SDK.
|
|
29
|
+
|
|
3
30
|
## v1.8.0
|
|
4
31
|
|
|
5
32
|
#### API Changes
|
|
@@ -16,7 +43,7 @@
|
|
|
16
43
|
|
|
17
44
|
#### Enhancements
|
|
18
45
|
|
|
19
|
-
* SLAS helpers support the `channel_id` (`siteId`) parameter
|
|
46
|
+
* SLAS helpers support the `channel_id` (`siteId`) parameter
|
|
20
47
|
|
|
21
48
|
## v1.7.1
|
|
22
49
|
|
package/LICENSE.txt
CHANGED