Skip to content

Commit da2f6ca

Browse files
Release v3.2.0 (#182)
* Update for version 3.2.0 * update package json * update changelog * manually update slas-shopper-login-uap * Update README.md * update max size --------- Co-authored-by: Joel Uong <joel.uong@salesforce.com> Co-authored-by: Joel Uong <88680517+joeluong-sfcc@users.noreply.github.com>
1 parent 0a03fef commit da2f6ca

File tree

124 files changed

+3027
-1749
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+3027
-1749
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# CHANGELOG
22

3+
## v3.2.0
4+
5+
### Enhancements
6+
- Add to README docs to explain error handling for the SDK [#174](https://github.com/SalesforceCommerceCloud/commerce-sdk-isomorphic/pull/174)
7+
- Add SLAS passwordless login helpers [#173](https://github.com/SalesforceCommerceCloud/commerce-sdk-isomorphic/pull/173)
8+
- Add SLAS social login helper [#172](https://github.com/SalesforceCommerceCloud/commerce-sdk-isomorphic/pull/172)
9+
- Support Node 22 [#178](https://github.com/SalesforceCommerceCloud/commerce-sdk-isomorphic/pull/178)
10+
11+
### API Changes
12+
- The `expand` query parameter for `Shopper Products` calls now includes a new argument, `page_meta_tags`
13+
- The `expand` query parameter for `Shopper Search` calls now includes a new argument, `page_meta_tags`
14+
- `X-Geolocation` header was added to `Shopper Context`
15+
316
## v3.1.1
417

518
### Bug fixes

apis/shopper-baskets/.metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-baskets/2.0.9",
2+
"id": "893f605e-10e2-423a-bdb4-f952f56eb6d8/shopper-baskets/2.0.10",
33
"name": "Shopper Baskets",
44
"description": "Build a checkout experience.",
55
"groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8",
66
"assetId": "shopper-baskets",
7-
"version": "2.0.9",
7+
"version": "2.0.10",
88
"categories": {
99
"API layer": [
1010
"Process"

apis/shopper-baskets/exchange.json

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,31 @@
1-
{"dependencies":[{"version":"1.1.15","assetId":"api-standards","groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8"},{"version":"2.0.5","assetId":"checkout-data-types","groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8"},{"version":"2.0.1","assetId":"commerce-cloud-standards","groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8"}],"version":"2.0.9","originalFormatVersion":"1.0","apiVersion":"v2","descriptorVersion":"0.1.0","classifier":"raml","main":"shopper-baskets.raml","backwardsCompatible":false,"assetId":"shopper-baskets","groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","organizationId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","name":"Shopper Baskets","tags":[],"metadata":{"projectId":"f2e890b0-bc72-4034-a8c6-84d0bafd978d","branchId":"v2","commitId":"70e1a2438c09143495266999183cbd4e5fd41752"}}
1+
{
2+
"dependencies": [
3+
{
4+
"version": "1.1.15",
5+
"assetId": "api-standards",
6+
"groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8"
7+
},
8+
{
9+
"version": "2.0.1",
10+
"assetId": "commerce-cloud-standards",
11+
"groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8"
12+
},
13+
{
14+
"version": "2.0.6",
15+
"assetId": "checkout-data-types",
16+
"groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8"
17+
}
18+
],
19+
"version": "2.0.10",
20+
"originalFormatVersion": "1.0",
21+
"apiVersion": "v2",
22+
"descriptorVersion": "0.1.0",
23+
"classifier": "raml",
24+
"main": "shopper-baskets.raml",
25+
"backwardsCompatible": false,
26+
"assetId": "shopper-baskets",
27+
"groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8",
28+
"organizationId": "893f605e-10e2-423a-bdb4-f952f56eb6d8",
29+
"name": "Shopper Baskets",
30+
"tags": []
31+
}

apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.5/checkout-data-types.raml renamed to apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.6/checkout-data-types.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1386,7 +1386,7 @@ types:
13861386
creditCardToken?:
13871387
description: |-
13881388
A credit card token. If a credit card is tokenized, the token can be used to look up the credit card data
1389-
in the token store. It is read only.
1389+
in the token store.
13901390
type: string
13911391
example:
13921392
"E67TY8GQ27X"

apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.5/examples/error/bad-request-auth.raml renamed to apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.6/examples/error/bad-request-auth.raml

File renamed without changes.

apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.5/examples/error/bad-request-example.raml renamed to apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.6/examples/error/bad-request-example.raml

File renamed without changes.

apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.5/examples/error/basket-not-found.raml renamed to apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.6/examples/error/basket-not-found.raml

File renamed without changes.

apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.5/examples/error/forbidden.raml renamed to apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.6/examples/error/forbidden.raml

File renamed without changes.

apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.5/examples/error/invalid-tax-mode.raml renamed to apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.6/examples/error/invalid-tax-mode.raml

File renamed without changes.

apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.5/examples/error/order-not-found.raml renamed to apis/shopper-baskets/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/checkout-data-types/2.0.6/examples/error/order-not-found.raml

File renamed without changes.

0 commit comments

Comments
 (0)