Skip to content

Releases: scandipwa/quote-graphql

Performance optimization

07 Jan 10:10
f94f611
Compare
Choose a tag to compare

In this release the changes related to performance optimization were released.
Please see the main README for more details.

Patch of stock quantity issue (when stock managed is disabled)

20 Dec 10:04
76a156f
Compare
Choose a tag to compare

The issue was preventing from cart qty change.

Stock quantity check

18 Dec 18:18
1cb9393
Compare
Choose a tag to compare

In this release, fixed adding to cart error message - now it clearly states that it exceeded quantity limits.

Merge guest and customer quote on customer login

05 Dec 09:10
991caff
Compare
Choose a tag to compare

Added event observer to merge guest and customer quote upon login.

Payment information - additional data update

02 Dec 15:27
15136c1
Compare
Choose a tag to compare

To input filed paymentMethod on PaymentInformation type, the additional field additional_data has been added. The added field additional_data has PaymentMethodAdditionalData type.

Note: type PaymentMethodString has been renamed to PaymentMethodInput

Adapted for placeOrder and setPaymentMethodOnCart

13 Nov 10:12
83a4d03
Compare
Choose a tag to compare

Wrapped Magento 2 GraphQL endpoints to function according to ScandiPWA logic.

Added support for getting payments without shipping method.

16 Oct 07:51
a656df4
Compare
Choose a tag to compare

In this release:

  • The getPaymentMethods endpoint became available.
  • The is_virtual field has been added to QuoteData type.
  • The following fields were moved from QuoteData type to TotalsObject interface:
    • items_count
    • customer_is_guest
    • store_id
    • customer_tax_class_id
    • items_qty
    • coupon_code

Extended ordered endpoint.

14 Oct 13:30
7eb599f
Compare
Choose a tag to compare

In this release the support for order details has been added. Following endpoints are now available:

  • getOrderList
  • getOrderById(id: Int!)

Make exceptions visible on the frontend

13 Sep 07:31
Compare
Choose a tag to compare
Fixed display of Coupon related error messages (#9)

* Made CartCouponException ClientAware, so that Magento would display actual message and not Internal Server Error

* Catch errors that happen when applying coupon and return normal error

Add coupon code support

12 Sep 14:51
Compare
Choose a tag to compare

Added support for GraphQl queries:

  • applyCoupon
  • removeCoupon

Code refactoring - extracting common logic to an abstract class to reduce duplicates.