Releases: scandipwa/quote-graphql
Releases · scandipwa/quote-graphql
Added StorInPickUp back-end support
What's inside
- Added StorInPickUp BE support. Related to scandipwa/scandipwa#2322
That's all there is to it :)
Patch: cart item quantity change for backorder products
What's inside
- Fixed cart item quantity change for backorder products. Related to scandipwa/scandipwa#1793
That's all there is to it :)
In-store delivery support
What's inside
- Support for in-store delivery. Related to scandipwa/scandipwa#1506
That's all there is to it :)
Patched `getGuestQuoteId` returning null
What's inside
- Fixed getGuestQuoteId issue when quote id is null, but since it's stated that the method returns string, an error was produced to the logs. Related to scandipwa/scandipwa#1794
That's all there is to it :)
Customizable options fileupload and pathces
What's inside
- Support for customizable options fileupload
- Support for grouped product options (scandipwa/scandipwa#2446)
That's all there is to it :)
Support to place order via info_buyRequest
What's inside
- Support to place order via info_buyRequest
Feature break-down
Support to place order via info_buyRequest
Added support to place order via passed information from info_buyRequest, that wishlist item uses. Fixes issue scandipwa/scandipwa#1876
Multistore bug fix and registration after checkout support
What's inside
- Linkage of order to the customer via graphql
- Display correct store for order bug fix
Feature break-down
Linkage of order to the customer via graphql
Created new mutation to link order to the customer after order is placed. Required for the registration after checkout feature.
Display correct store for order bug fix
Updates carts store id, before placing it so that when switching between stores the order is made from the correct one.
Downloadable product support for ScandiPWA
What's inside
- Downloadable product support for ScandiPWA
Feature break-down
Downloadable product support for ScandiPWA
Added downloadable product links to totals object schema:
input ExtensionsAttributeInput {
// ...
downloadable_product_links: [DownloadableProductLinksInput]
// ...
}
input DownloadableProductLinksInput {
link_id: Int
}
type TotalsItem {
// ...
downloadable_links: [SelectedDownloadableLinks]
// ...
}
type SelectedDownloadableLinks {
label: String
id: Int
}
Added shipping including tax field
What's inside
- Added shipping including tax field
That's all there is to it!