-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #392 from SalesforceCommerceCloud/release/20230915
Release v2.11.1 @W-14129454@
- Loading branch information
Showing
64 changed files
with
623 additions
and
746 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
apis/customer/shopper-login/credential-quality-statistics-description.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"main":"shopper-login.raml","name":"Shopper Login and API Access Service","classifier":"raml","tags":[],"dependencies":[{"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"api-standards","version":"1.1.15"},{"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"commerce-cloud-standards","version":"1.0.24"}],"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"shopper-login","version":"1.39.16","apiVersion":"v1","originalFormatVersion":"1.0","organizationId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","metadata":{"projectId":"2f481347-34d0-4264-8ab9-efedb15c99b5","branchId":"master","commitId":"65c646fd39c7a1926a64c1b9d96ec16fb6daf5f9"}} | ||
{"main":"shopper-login.raml","name":"Shopper Login and API Access Service","classifier":"raml","tags":[],"dependencies":[{"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"api-standards","version":"1.1.15"},{"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"commerce-cloud-standards","version":"1.0.24"}],"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"shopper-login","version":"1.39.17","apiVersion":"v1","originalFormatVersion":"1.0","organizationId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","metadata":{"projectId":"2f481347-34d0-4264-8ab9-efedb15c99b5","branchId":"master","commitId":"131b735bfc59982beb1aefc05dd9833f32a5a1d4"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
apis/product/shopper-products/Traits/GetProductBadRequest.raml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#%RAML 1.0 Trait | ||
description: This trait represents API behavior for a 400 response. | ||
responses: | ||
400: | ||
description: Bad Request. | ||
body: | ||
application/problem+json: | ||
type: ErrorResponse | ||
examples: | ||
BadRequest: | | ||
{ | ||
"title": "Bad Request", | ||
"type": "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/validation", | ||
"detail": "Maximum number of products you can request in one call is 25." | ||
} | ||
MalformedSelector: | | ||
{ | ||
"title": "Malformed Selector", | ||
"type": "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/malformed-selector", | ||
"detail": "The property selector '(brand,imageGroups.(**)' is malformed.", | ||
"selector": "(brand,imageGroups.(**)" | ||
} | ||
FilterExpressionBadRequest: | | ||
{ | ||
"title": "Bad Request", | ||
"type": "https://api.commercecloud.salesforce.com/documentation/error/v1/errors/bad-request", | ||
"detail": "Filter expressions in select are not supported.", | ||
"parameter": "Filter expressions in select are not supported.", | ||
"selector": "(recommendations[?(recommendedItemId=='apple-ipod-nano'].(**))" | ||
} |
Oops, something went wrong.