Skip to content

Releases: scandipwa/quote-graphql

Duplicate address patch

19 Jan 11:49
86e0b87
Compare
Choose a tag to compare

What's inside

  • Duplicate address no longer appears in back-end!

That's all there is to it!

Taxation refactoring

30 Dec 14:12
afc028b
Compare
Choose a tag to compare

What's inside

  • Taxation refactoring

That's all there is to it!

Shipping tax

28 Dec 11:46
c0282a7
Compare
Choose a tag to compare

What's inside

  • Shipping tax support

That's all there is to it :)

Store-specific labels support

14 Dec 13:26
39821b1
Compare
Choose a tag to compare

What's inside

  • Store-specific labels support

That's all there is to it! :)

VAT_ID patch for Magento address input

08 Dec 10:03
a943f86
Compare
Choose a tag to compare

What's inside

  • CartAddressInput extended with vat_id field

That's all there it to it :)

VAT number and order item fix

02 Dec 08:58
c6e99d7
Compare
Choose a tag to compare

What's inside

  • Added vat_id field to response
  • Fixed order details (they were not returning)

That's all there is to it :)

Cart item removal from cart fixes

30 Nov 15:14
cee8013
Compare
Choose a tag to compare

What's inside

  • Fixed an issue when cart item removal request responded with an error

That's all there is to it :)

Support for Braintree 3D-secure, tax patch

27 Nov 15:32
ebfc1f0
Compare
Choose a tag to compare

What's inside

  • Support for Braintree 3D-secure
  • Tax amount patch

Feature break-down

Support for Braintree 3D-secure, tax patch

The query field getBraintreeConfig was added. It returns following configuration field:

type Braintree {
    is_three_d_secure: Boolean
}

Tax amount patch

Tax amount type switched from int to float.

Applied taxes break-down and display support

26 Nov 14:36
9650029
Compare
Choose a tag to compare

What's inside

  • Applied taxes break-down and display support

Feature break-down

Applied taxes break-down and display support

New fields added to QuoteData type: cart_display_config: CartDisplayConfig and applied_taxes: [AppliedTaxItem]. Thre breakdown of which can be seen bellow:

type CartDisplayConfig {
    display_tax_in_price: String
    display_tax_in_subtotal: String
    display_tax_in_shipping_amount: String
    include_tax_in_order_total: Boolean
    display_full_tax_summary: Boolean
    display_zero_tax_subtotal: Boolean
}

type AppliedTaxItem {
    amount: Float
    percent: Int
    rates: [AppliedTaxItemRate]
}

type AppliedTaxItemRate {
    percent: Int
    title: String
}

Stability improvements

19 Nov 14:21
83e9c45
Compare
Choose a tag to compare

What's inside

  • Logged-in users can now complete checkout, if guest checkout is disabled

That's all there is to it :)