commerce-sdk-isomorphic 1.7.1 → 1.9.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 +24 -0
- package/LICENSE.txt +1 -1
- package/lib/index.cjs.d.ts +2706 -441
- package/lib/index.cjs.js +1 -1
- package/lib/index.esm.d.ts +2706 -441
- package/lib/index.esm.js +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## v1.9.0
|
|
4
|
+
|
|
5
|
+
### API Added
|
|
6
|
+
|
|
7
|
+
* The [Shopper Experience](https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-experience?meta=Summary) API has been added to the SDK.
|
|
8
|
+
|
|
9
|
+
## v1.8.0
|
|
10
|
+
|
|
11
|
+
#### API Changes
|
|
12
|
+
|
|
13
|
+
*Shopper Login*
|
|
14
|
+
|
|
15
|
+
* New Endpoints
|
|
16
|
+
|
|
17
|
+
| **Endpoint Name** | **Description** |
|
|
18
|
+
| ------------- |-------------|
|
|
19
|
+
| getSessionBridgeAccessToken | Get a shopper JWT access token for a registered customer using session bridge |
|
|
20
|
+
| getTrustedAgentAuthorizationToken | Obtains a new agent on behalf authorization token for a registered customer |
|
|
21
|
+
| getTrustedAgentAccessToken | Get a shopper JWT access token for a registered customer using a trusted agent (Merchant) |
|
|
22
|
+
|
|
23
|
+
#### Enhancements
|
|
24
|
+
|
|
25
|
+
* SLAS helpers support the `channel_id` (`siteId`) parameter
|
|
26
|
+
|
|
3
27
|
## v1.7.1
|
|
4
28
|
|
|
5
29
|
#### Bug fixes
|
package/LICENSE.txt
CHANGED