Skip to content

Commit

Permalink
20.3.0 RIV-898 Adds missing coupon code field
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis Bernard committed Feb 3, 2022
1 parent 77a961a commit 3ec256a
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG-PUBLIC.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,11 @@ MNB-669 fixes errors and adds getFinalShippingChosen query
RIV-443 add placeOrder query


## 20.3.0 (2022-02-02)
RIV-443 update get methods for serializer


## 20.3.0 (2022-02-03)
RIV-898 Adds missing coupon code field


8 changes: 8 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,11 @@ MNB-669 fixes errors and adds getFinalShippingChosen query
RIV-443 add placeOrder query


## 20.3.0 (2022-02-02)
RIV-443 update get methods for serializer


## 20.3.0 (2022-02-03)
RIV-898 Adds missing coupon code field


2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "shipperhq/library-graphql",
"description": "ShipperHQ GraphQL Library",
"type": "magento2-library",
"version": "20.2.0",
"version": "20.3.0",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
8 changes: 8 additions & 0 deletions src/Types/Input/RMSCart.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ public function isFreeShipping()
return $this->freeShipping;
}

/**
* @return bool
*/
public function getFreeShipping()
{
return $this->freeShipping;
}

/**
* @param bool $freeShipping
* @return RMSCart
Expand Down
8 changes: 8 additions & 0 deletions src/Types/Input/RMSItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,14 @@ public function isFreeShipping()
return $this->freeShipping;
}

/**
* @return bool
*/
public function getFreeShipping()
{
return $this->freeShipping;
}

/**
* @param bool $freeShipping
* @return RMSItem
Expand Down

0 comments on commit 3ec256a

Please sign in to comment.