Skip to content

Commit

Permalink
Do not require price when using createTaxQuote(). Fixes #168 (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwcobb authored Jun 9, 2022
1 parent 4e6dfa4 commit c88f6bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 4.4.1 (June 4, 2022)
- Do not require `price` when using `createTaxQuote()`.

## 4.4.0 (April 4, 2022)
- Ensure the `TEvoAuthMiddleware` is before any additional middleware so the computed X-Signature can be available to a logger middlware.

Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Client
*
* @const string
*/
const VERSION = '4.4.0';
const VERSION = '4.4.1';

/**
* Guzzle service description
Expand Down
6 changes: 0 additions & 6 deletions src/Resources/v9/tax.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@
'deprecated' => false,
'responseModel' => 'defaultJsonResponse',
'parameters' => [
'price' => [
'location' => 'json',
'type' => 'numeric',
'description' => 'The price the customer will be charged for each individual ticket.',
'required' => true,
],
'quantity' => [
'location' => 'json',
'type' => 'integer',
Expand Down

0 comments on commit c88f6bb

Please sign in to comment.