From c88f6bbb7fb35a9d31415e38366c1f2f530e70cd Mon Sep 17 00:00:00 2001 From: J Cobb <777522+jwcobb@users.noreply.github.com> Date: Thu, 9 Jun 2022 10:37:02 -0700 Subject: [PATCH] Do not require `price` when using `createTaxQuote()`. Fixes #168 (#169) --- CHANGELOG.md | 3 +++ src/Client.php | 2 +- src/Resources/v9/tax.php | 6 ------ 3 files changed, 4 insertions(+), 7 deletions(-) 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',