Skip to content

Commit

Permalink
fix: UnitMultiplier type from simulation call is always a float number (
Browse files Browse the repository at this point in the history
  • Loading branch information
iago1501 authored May 2, 2024
1 parent 10d8aa4 commit c0ff343
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed
- unitMultiplier type from Int to float in OrderItem and LogisticsItem

## [2.170.1] - 2023-10-31

### Added
Expand Down
2 changes: 1 addition & 1 deletion graphql/types/Order.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type OrderItem {
detailUrl: String
availability: String
measurementUnit: String
unitMultiplier: Int
unitMultiplier: Float
parentItemIndex: Int
parentAssemblyBinding: String
bundleItems: [OrderItem]
Expand Down
2 changes: 1 addition & 1 deletion graphql/types/Shipping.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ type LogisticsItem {
rewardValue: Int
sellingPrice: Int
measurementUnit: String
unitMultiplier: Int
unitMultiplier: Float
availability: String
}

Expand Down

0 comments on commit c0ff343

Please sign in to comment.