Releases: scandipwa/quote-graphql
Releases · scandipwa/quote-graphql
Duplicate address patch
What's inside
- Duplicate address no longer appears in back-end!
That's all there is to it!
Taxation refactoring
What's inside
- Taxation refactoring
That's all there is to it!
Shipping tax
What's inside
- Shipping tax support
That's all there is to it :)
Store-specific labels support
What's inside
- Store-specific labels support
That's all there is to it! :)
VAT_ID patch for Magento address input
What's inside
CartAddressInput
extended withvat_id
field
That's all there it to it :)
VAT number and order item fix
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
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
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
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
What's inside
- Logged-in users can now complete checkout, if guest checkout is disabled
That's all there is to it :)