-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added base currency values to Orders API response. * Use correct value for billing address name (was previously using shipping address name). * Cast string to float to ensure discount line is formatted correctly when greater than zero but less than one. * Add base currency values to line items in Orders API response. * M2-30 Fix bug in currency code caching, ensure prices are converted to correct currency. * M2-28 Default to trying to use the configurable product image regardless of UseConfigurableImage config. * M2-34 Fix case on return variable name. * M2-23 Move inventory access to independent service to allow MSI with backwards compatibility, used in ometria.raw_data and Product API V2. * Return boolean for Product API V2 is_in_stock value. * Add "reward_points" value to customer API response for Magento Commerce merchants. * M2-37 Fix issue with pricing for configurables caused by Magento internal caching of price info per store. * M2-37 Fix issue with pricing for configurables caused by Magento internal caching of price info per store. * M2-37 Fix issue with pricing for configurables caused by Magento internal caching of price info per store. * Remove redundant DI class. * Bump versions. * M2-38 Added config to enable/disable additional Ometria Page Views on variant selection within configurable/swatch PDP. * Bump composer version. * Remove whitespace. * M2-42 Fix type error in Product Inventory Service.
- Loading branch information
1 parent
6bdbd9d
commit 0704dac
Showing
11 changed files
with
346 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0"?> | ||
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> | ||
<module name="Ometria_AbandonedCarts" setup_version="2.2.0"/> | ||
<module name="Ometria_AbandonedCarts" setup_version="2.2.1"/> | ||
</config> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<?xml version="1.0"?> | ||
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> | ||
<module name="Ometria_Api" setup_version="2.2.0"/> | ||
<module name="Ometria_Api" setup_version="2.2.1"/> | ||
</config> | ||
|
Oops, something went wrong.