diff --git a/CHANGELOG.md b/CHANGELOG.md index 3456571..f854eab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/src/Client.php b/src/Client.php index 6bd2268..19c3de8 100755 --- a/src/Client.php +++ b/src/Client.php @@ -16,7 +16,7 @@ class Client * * @const string */ - const VERSION = '4.4.0'; + const VERSION = '4.4.1'; /** * Guzzle service description diff --git a/src/Resources/v9/tax.php b/src/Resources/v9/tax.php index efd896c..8483137 100755 --- a/src/Resources/v9/tax.php +++ b/src/Resources/v9/tax.php @@ -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',