commerce-sdk-isomorphic 4.0.1 → 4.2.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/README.md +4 -2
- package/lib/index.cjs.d.ts +1297 -96
- package/lib/index.cjs.js +1 -1
- package/lib/index.esm.d.ts +1297 -96
- package/lib/index.esm.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -51,13 +51,15 @@ In the next major version release, the SDK will encode special characters (UTF-8
|
|
|
51
51
|
|
|
52
52
|
### Requirements
|
|
53
53
|
|
|
54
|
-
- Node `^
|
|
54
|
+
- Node `^20.x` or `^22.x`
|
|
55
55
|
- The SDK requires B2C Commerce API (SCAPI) to be configured. For more info see [Getting started with SCAPI](https://developer.salesforce.com/docs/commerce/commerce-api/guide/get-started.html).
|
|
56
56
|
|
|
57
57
|
### Installation
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
|
|
60
|
+
# This package uses yarn, if you don't have yarn:
|
|
61
|
+
# npm install -g yarn
|
|
62
|
+
yarn install commerce-sdk-isomorphic
|
|
61
63
|
```
|
|
62
64
|
|
|
63
65
|
### Usage
|