@vsf-enterprise/unified-api-sapcc
0.22.1ri:link
Patch Changesri:link
- FIXED Product Gallery returns large images.
0.22.0ri:link
Minor Changesri:link
- ADDED
defineNormalizer
utility which helps in overriding the normalizers. It should be used only when you want to override the default normalizers. If you want to add custom fields, you should still declare the normalizer within thedefineNormalizers
.
import {
defineNormalizer,
normalizers as normalizersSAP,
defineNormalizers,
} from "@vsf-enterprise/unified-api-sapcc";
const customNormalizeProduct = defineNormalizer.normalizeProduct(
(rawProduct, ctx) => {
// your implementation goes here, no custom fields
},
);
const normalizers = defineNormalizers<typeof normalizersSAP>()({
...normalizersSAP,
normalizeProduct: customNormalizeProduct,
normalizeCart: (cart, context) => ({
...normalizersSAP.normalizeCart(cart, context),
// still use inline normalizer to add custom fields
version: cart.version,
}),
});
- ADDED
normalizers
toNormalizerContext
. You can now access the other normalizers from the context. This is useful when you want to reuse the existing normalizers in your custom normalizer.
const customNormalizeProduct = defineNormalizer.normalizeProduct(
(rawProduct, ctx) => {
// ctx.normalizers.normalizeMoney is now available
},
);
- REMOVED
normalizeAttributes
fromnormalizersSAP
. Now anormalizeAttribute
should be used instead. ThenormalizeAttribute
accepts as an inputVariantOptionQualifier
.
Patch Changesri:link
- FIXED Normalizers such as
normalizeMoney
can be now overridden globally. This is useful when you want to change the way the money is represented accross the whole Unified extension.
0.21.3ri:link
Patch Changesri:link
- FIXED clear customer token on login error
0.21.2ri:link
Patch Changesri:link
- FIXED Allow empty string as a valid last name in
normalizeCustomer
- CHANGED B2B method
getCustomer
is checking if user is authenticated before sending request to api and B2BloginCustomer
is returning 403 if user is already logged in
0.21.1ri:link
Patch Changesri:link
- CHANGED
isAuthenticated
andassertAuthorized
, added check of theAUTH_USER_ID_COOKIE_NAME
cookie value
0.21.0ri:link
Minor Changesri:link
- ADDED
@vsf-enterprise/unified-api-sapcc/b2b
subpath export with Unified Methods implementation for SAP Commerce Cloud B2B
import { apiMethods as b2bApiMethods } from '@vsf-enterprise/unified-api-sapcc/b2b';
export const unifiedApiExtension = createUnifiedExtension<Context>()({
normalizers,
apiMethods: {
...methods<typeof normalizers>(),
...b2bApiMethods<typeof normalizers>();
}
});
As some of the SAP Commerce Cloud API endpoints are the same for B2C and B2B, the b2bApiMethods
will override only the implementation for:
getCustomer
loginCustomer
updateCustomer
addCartLineItem
updateCartLineItem
As the B2B methods implement the same contract of the Unified Methods as B2C methods, there is no need to change the Storefront code.
0.20.0ri:link
Minor Changesri:link
- 724a3a2: Exported NormalizerContext type
Patch Changesri:link
- ce51cd4: Fixed issue with infinite loop of getting new cart. Now active cart is found by lack of
saveTime
andsavedBy
attribute.
0.19.1ri:link
Patch Changesri:link
- adc5bf9: Updated @vsf-enterprise/sapcc-api peerDependency to 4.2.1 as minimal version
0.19.0ri:link
Minor Changesri:link
- 2ac49bc: For
@vsf-enterprise/unified-api-sapcc/algolia
:- Fixed the Algolia record schema, by making
images
andprices
optional - Added a request context as a second argument of
getFacetLabel
andindexName
- Fixed the Algolia record schema, by making
0.18.0ri:link
Minor Changesri:link
- 82a761c: -
Unified Data Model
model and methods integration.- UDM extension import:
import { createUnifiedExtension } from "@vsf-enterprise/unified-api-sapcc"
- UDM model types import:
import { SfCategory, GetCategory } from "@vsf-enterprise/unified-api-sapcc"
- UDM extension import:
0.17.1ri:link
Patch Changesri:link
- 645259e: Changed the return value from
paymentMethod
in theorder
normalizer. Return"ACCOUNT"
ifcostCenter
is true, otherwise returns"CARD"
. - Updated dependencies 645259e
- @vue-storefront/unified-data-model@0.17.0
0.17.0ri:link
Minor Changesri:link
- 713734b: Added support for Algolia. A separate sub-package available as
@vsf-enterprise/unified-api-sapcc/algolia
. Using this API methods you can easily replace the searchProduct endpoint to the one based on the Algolia API. For further information check the Algolia Integration chapter in the docs.
0.16.0ri:link
Minor Changesri:link
- 98c8e77: Add new field
categoryParentId
to theSfCategory
model.
0.15.2ri:link
Patch Changesri:link
- a856688: Updated unnormalizeAddres function to match new type reqiurements
0.15.1ri:link
Patch Changesri:link
- 459d20a: Update dependencies
0.15.0ri:link
Minor Changesri:link
- 8401301: Integrated normalization methods from the
@vsf-enterprise/normalizer-sapcc
library. Update imports for normalizer methods as follows:import { normalizers } from "@vsf-enterprise/unified-api-sapcc"
0.14.0ri:link
Minor Changesri:link
- a912cf6: - Update
searchProducts()
API method:- remove
categoryHierarchy
,currentCategory
&subCategories
fields - Remove
productCount
field fromSfCategory
- remove
Patch Changesri:link
- Updated dependencies a912cf6
- @vsf-enterprise/normalizer-sapcc@0.9.0
0.13.0ri:link
Minor Changesri:link
- d514fe7: Implement a new
GetCategory
method which allows to get the category and its ancestors by category id.
0.12.0ri:link
Minor Changesri:link
- d3b0594: The searchProducts endpoint is updated to match the updated behavior of the
unified-data-model
. Removed the "latest" from the translated sort options, but it's still available using the value required by SAPCC API (topRated
). All non-standard sorting options are passing by directly to the API request now.
0.11.2ri:link
Patch Changesri:link
- 1f52ffa: Update dependencies
0.11.1ri:link
Patch Changesri:link
- 0e4f4cc: - Fixed arguments encoding in
getProductDetails
.
0.11.0ri:link
Minor Changesri:link
- bc2cdc7: Support
cartId
argument in cart methods.
0.10.2ri:link
Patch Changesri:link
- 81dd649: Fixes:
SfCart#id
normalization for authenthicated user. Previously a correct value was stored in the cookie, but the normalized object used incorrectlyguid
as a cart id. Now it usescode
for authenthicated user andguid
for guest user.Cannot read properties of undefined (reading 'flatMap')
error thrown fromgetProductDetails
method, when the product has undefinedbaseOptions
.
Added a newisAuthenticated
boolean flag to thenormalizerContext
.
0.10.1ri:link
Patch Changesri:link
- a2c442b: Fixed calculation of cartId in
addCartLineItem
, andupdateCartLineItem
methods for logged in customer
0.10.0ri:link
Minor Changesri:link
- 6a3e0e8: Customize
SfFacet
type withgetFacetType
config method. Filter outfacets
data fromsearchProducts
API method withfilterFacets
config method.
Patch Changesri:link
- Updated dependencies 6a3e0e8
- @vsf-enterprise/normalizer-sapcc@0.8.0
0.9.1ri:link
Patch Changesri:link
- f5d72f14: Update
unified-data-model
version
0.9.0ri:link
Minor Changesri:link
- 1df82d2c: Enhanced
getCurrencies
method to return current currency value - f5a32640: Unified error response for
changeCustomerPassword
. Now whencurrentPassword
is invalid, a 403 error response will be returned.
Patch Changesri:link
- Updated dependencies 1df82d2c
- @vue-storefront/unified-data-model@0.10.0
0.8.0ri:link
Minor Changesri:link
- Add more flexibility to customizing the image urls. Previous
mediaHost
config option has been replaced with atransformImageUrl
option.
0.7.3ri:link
Patch Changesri:link
- Fix for handling lowercase coupon codes
0.7.2ri:link
Patch Changesri:link
- Fixed searchproduct method in
unified-api-sapcc
- Fix the issue with being not authenticated after account registration
0.7.1ri:link
Patch Changesri:link
- Update setCartAddress in unified-api-sapcc & unified-api-commercetools
0.7.0ri:link
Minor Changesri:link
- Export all commons functions, utilities and types
- PlaceOrder implementation in unified-api-commercetools & unified-api-sapcc
0.6.0ri:link
Minor Changesri:link
- Added GetOrders & GetOrderDetails endpoints and normalizers for Order, OrderLineItem & OrderListItem
Patch Changesri:link
- Updated dependencies:
- @vue-storefront/unified-data-model@0.7.0
- @vsf-enterprise/normalizer-sapcc@0.4.0
0.5.1ri:link
Patch Changesri:link
- Publish
src
directory - Updated dependencies:
- @vue-storefront/unified-data-model@0.6.0
0.5.0ri:link
Minor Changesri:link
- Introduce the possibility of overwrite the normalizers in unified extension. Also provide functions for creating unified extension & define normalizers in Middleware configuration.
Patch Changesri:link
- Fix unified-api-sap user session cart cookie
- Updated dependencies:
- @vue-storefront/unified-data-model@0.5.0
0.4.0ri:link
Minor Changesri:link
- Added implementation for customer address methods of
@vue-storefront/unified-data-model
:CreateCustomerAddress
UpdateCustomerAddress
GetCustomerAddresses
DeleteCustomerAddress
Patch Changesri:link
- Updated dependencies:
- @vsf-enterprise/normalizer-sapcc@0.3.0
- @vue-storefront/unified-data-model@0.4.0
0.3.0ri:link
Minor Changesri:link
- Implemented
updateCustomer
method for unified-api-sapcc
Patch Changesri:link
- Updated dependencies:
- @vue-storefront/unified-data-model@0.3.0
0.2.0ri:link
Minor Changesri:link
- Created normalizer for SfCustomer & 4 API methods for handling customer related actions
- Split
GetProducts
method into two methods:GetProducts
which allows to get specific products byids
orskus
- and
SearchProducts
which allows to search for products byfacets
,category
, andsearch
phrase with an option to paginate and sort results
Patch Changesri:link
- Fixed sortBy filter & pagination index
- Updated dependencies:
- @vsf-enterprise/normalizer-sapcc@0.2.0
- @vue-storefront/unified-data-model@0.2.0
0.1.0ri:link
Minor Changesri:link
- Stable version implementing
@vue-storefront/unified-data-model@0.1.0
0.0.4ri:link
Patch Changesri:link
- Updated dependencies:
- @vue-storefront/unified-data-model@0.1.0
- @vsf-enterprise/normalizer-sapcc@0.1.1
0.0.3ri:link
Patch Changesri:link
- Updated dependencies:
- @vsf-enterprise/unified-data-model@0.5.0
- @vsf-enterprise/normalizer-sapcc@0.1.0
0.0.2ri:link
Patch Changesri:link
- Updated dependencies:
- @vsf-enterprise/unified-actions@0.5.0
- @vsf-enterprise/unified-data-model@0.4.0
- @vsf-enterprise/normalizer-sapcc@0.0.2