@vsf-enterprise/adyen-sfcc-api
3.0.1
Patch Changes
- c8e5098: Include the payment method ID in the request body when updating an Adyen payment instrument in SFCC to avoid 404 responses. This is an undocumented idiosyncrasy of the API, the method ID seems to be required even though the instrument ID should be enough.
3.0.0
Major Changes
- 1ea0058: Updated dependency @vue-storefront/middleware to version 4.1.0
- BREAKING CHANGE:
SFCCServiceFactorygetmethod now returns a promise
Migration guide:
In extended API methods, every call tocontext.client.sfcc.get()should be updated to handle the promise response.
Example:async function example(context) { const { config, client } = context; const { sfcc, adyen } = client; - const sfccClient = sfcc.get(context); + const sfccClient = await sfcc.get(context); // ... } - BREAKING CHANGE:
2.0.2
Patch Changes
- FIXED Sending shopperIP field to Adyen if it's derivable, previously we didn't, we introduced it as it is becoming required by Adyen
2.0.1
Patch Changes
- db6555c: DEPENDENCIES Raised the versions of the
@vsf-enterprise/sfcc-api,@vsf-enterprise/sfcc-sdkand@vsf-enterprise/sfcc-typesdependencies
2.0.0
Major Changes
- 437bbaa: - ADDED New custom
onOrderSuccesscallback added to the SDK, which is triggered automatically at the end of the /payment /paymentDetails calls.- CHANGED The
returnUrlconfiguration option has been changed tobaseUrlto reflect updated functionality and can no longer be a function.
- CHANGED The
1.0.0
Major Changes
- Stable version of Adyen SFCC integration, based on the SDK pattern.