diff --git a/changelog.txt b/changelog.txt
index 2dd1d96..95ef045 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,5 +1,11 @@
*** Xero Integration ***
+2024-08-19 - version 1.8.9
+* Fix - PHPCompatibility errors reported by the QIT test.
+* Dev - Bump WooCommerce "tested up to" version 9.2.
+* Dev - Bump WooCommerce minimum supported version to 9.0.
+* Dev - Fix QIT E2E tests and add support for a few new test types.
+
2024-07-22 - version 1.8.8
* Dev - Bump WooCommerce "tested up to" version 9.1.
* Dev - Bump WooCommerce minimum supported version to 8.9.
diff --git a/includes/class-wc-xr-address.php b/includes/class-wc-xr-address.php
index 11dbc54..f3678d6 100644
--- a/includes/class-wc-xr-address.php
+++ b/includes/class-wc-xr-address.php
@@ -25,7 +25,7 @@ public function get_type() {
* @param string $type
*/
public function set_type( $type ) {
- $this->type = htmlspecialchars( $type );
+ $this->type = htmlspecialchars( $type, ENT_COMPAT );
}
/**
@@ -39,7 +39,7 @@ public function get_line_1() {
* @param string $line_1
*/
public function set_line_1( $line_1 ) {
- $this->line_1 = htmlspecialchars( $line_1 );
+ $this->line_1 = htmlspecialchars( $line_1, ENT_COMPAT );
}
/**
@@ -53,7 +53,7 @@ public function get_line_2() {
* @param string $line_2
*/
public function set_line_2( $line_2 ) {
- $this->line_2 = htmlspecialchars( $line_2 );
+ $this->line_2 = htmlspecialchars( $line_2, ENT_COMPAT );
}
/**
@@ -67,7 +67,7 @@ public function get_city() {
* @param string $city
*/
public function set_city( $city ) {
- $this->city = htmlspecialchars( $city );
+ $this->city = htmlspecialchars( $city, ENT_COMPAT );
}
/**
@@ -81,7 +81,7 @@ public function get_region() {
* @param string $region
*/
public function set_region( $region ) {
- $this->region = htmlspecialchars( $region );
+ $this->region = htmlspecialchars( $region, ENT_COMPAT );
}
/**
@@ -95,7 +95,7 @@ public function get_postal_code() {
* @param string $postal_code
*/
public function set_postal_code( $postal_code ) {
- $this->postal_code = htmlspecialchars( $postal_code );
+ $this->postal_code = htmlspecialchars( $postal_code, ENT_COMPAT );
}
/**
@@ -109,7 +109,7 @@ public function get_country() {
* @param string $country
*/
public function set_country( $country ) {
- $this->country = htmlspecialchars( $country );
+ $this->country = htmlspecialchars( $country, ENT_COMPAT );
}
/**
diff --git a/includes/class-wc-xr-contact.php b/includes/class-wc-xr-contact.php
index 40b919c..affeb02 100644
--- a/includes/class-wc-xr-contact.php
+++ b/includes/class-wc-xr-contact.php
@@ -40,7 +40,7 @@ public function get_name() {
* @param string $name
*/
public function set_name( $name ) {
- $this->name = htmlspecialchars( $name );
+ $this->name = htmlspecialchars( $name, ENT_COMPAT );
}
/**
@@ -54,7 +54,7 @@ public function get_first_name() {
* @param string $first_name
*/
public function set_first_name( $first_name ) {
- $this->first_name = htmlspecialchars( $first_name );
+ $this->first_name = htmlspecialchars( $first_name, ENT_COMPAT );
}
/**
@@ -68,7 +68,7 @@ public function get_last_name() {
* @param string $last_name
*/
public function set_last_name( $last_name ) {
- $this->last_name = htmlspecialchars( $last_name );
+ $this->last_name = htmlspecialchars( $last_name, ENT_COMPAT );
}
/**
@@ -82,7 +82,7 @@ public function get_email_address() {
* @param string $email_address
*/
public function set_email_address( $email_address ) {
- $this->email_address = htmlspecialchars( $email_address );
+ $this->email_address = htmlspecialchars( $email_address, ENT_COMPAT );
}
/**
diff --git a/includes/class-wc-xr-line-item.php b/includes/class-wc-xr-line-item.php
index 07272cf..419fcda 100644
--- a/includes/class-wc-xr-line-item.php
+++ b/includes/class-wc-xr-line-item.php
@@ -86,7 +86,7 @@ public function get_description() {
* @param string $description
*/
public function set_description( $description ) {
- $this->description = htmlspecialchars( $description );
+ $this->description = htmlspecialchars( $description, ENT_COMPAT );
}
/**
diff --git a/includes/class-wc-xr-oauth-simple.php b/includes/class-wc-xr-oauth-simple.php
index bae6ea9..d83b085 100644
--- a/includes/class-wc-xr-oauth-simple.php
+++ b/includes/class-wc-xr-oauth-simple.php
@@ -407,57 +407,65 @@ function _normalizedParameters($filter='false') {
return join('&',$elements);
}
- function _generateSignature () {
- $secretKey = '';
- if(isset($this->_secrets['shared_secret']))
- $secretKey = $this->_oauthEscape($this->_secrets['shared_secret']);
- $secretKey .= '&';
- if(isset($this->_secrets['oauth_secret']))
- $secretKey .= $this->_oauthEscape($this->_secrets['oauth_secret']);
- switch($this->_parameters['oauth_signature_method'])
- {
- case 'RSA-SHA1':
-
- // Fetch the public key
- $publickey = openssl_get_publickey($this->_secrets['public_key']);
- if ( $publickey == false ) {
- throw new WC_XR_OAuthSimpleException('Unable to retrieve public key.');
- return;
- }
-
- // Fetch the private key
- $privatekeyid = openssl_get_privatekey($this->_secrets['private_key']);
- if ( $privatekeyid == false ) {
- throw new WC_XR_OAuthSimpleException('Unable to retrieve private key.');
- return;
- }
-
- // Sign using the key
-
- $this->sbs = $this->_oauthEscape($this->_action).'&'.$this->_oauthEscape($this->_path).'&'.$this->_oauthEscape($this->_normalizedParameters());
-
- $ok = openssl_sign($this->sbs, $signature, $privatekeyid);
- if ( $ok == false ) {
- throw new WC_XR_OAuthSimpleException('Error generating signature.');
- return;
- }
-
- // Release the key resource
- openssl_free_key($privatekeyid);
-
- return base64_encode($signature);
- //return base64_encode(hash_hmac('sha1',$this->sbs,$secretKey,true));
-
- case 'PLAINTEXT':
- return urlencode($secretKey);
+ /**
+ * Generate the signature.
+ *
+ * @throws WC_XR_OAuthSimpleException If the signature method is unknown.
+ *
+ * @return string The signature.
+ */
+ public function generate_signature() {
+ $secret_key = '';
- case 'HMAC-SHA1':
- $this->sbs = $this->_oauthEscape($this->_action).'&'.$this->_oauthEscape($this->_path).'&'.$this->_oauthEscape($this->_normalizedParameters());
- //error_log('SBS: '.$sigString);
- return base64_encode(hash_hmac('sha1',$this->sbs,$secretKey,true));
+ if ( isset( $this->_secrets['shared_secret'] ) ) {
+ $secret_key .= $this->_oauth_escape( $this->_secrets['shared_secret'] );
+ }
- default:
- throw new WC_XR_OAuthSimpleException('Unknown signature method for OAuthSimple');
- }
- }
+ $secret_key .= '&';
+
+ if ( isset( $this->_secrets['oauth_secret'] ) ) {
+ $secret_key .= $this->_oauth_escape( $this->_secrets['oauth_secret'] );
+ }
+
+ switch ( $this->_parameters['oauth_signature_method'] ) {
+ case 'RSA-SHA1':
+ // Fetch the public key.
+ $public_key = openssl_get_publickey( $this->_secrets['public_key'] );
+
+ if ( false === $public_key ) {
+ throw new WC_XR_OAuthSimpleException( 'Unable to retrieve public key.' );
+ }
+
+ // Fetch the private key.
+ $private_key_id = openssl_get_privatekey( $this->_secrets['private_key'] );
+
+ if ( false === $private_key_id ) {
+ throw new WC_XR_OAuthSimpleException( 'Unable to retrieve private key.' );
+ }
+
+ // Sign using the key.
+ $this->sbs = $this->_oauth_escape( $this->_action ) . '&' . $this->_oauth_escape( $this->_path ) . '&' . $this->_oauth_escape( $this->_normalized_parameters() );
+
+ $ok = openssl_sign( $this->sbs, $signature, $private_key_id );
+
+ if ( false === $ok ) {
+ throw new WC_XR_OAuthSimpleException( 'Error generating signature.' );
+ }
+
+ // Release the key resource.
+ unset( $private_key_id );
+
+ return base64_encode( $signature ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
+
+ case 'PLAINTEXT':
+ return urlencode( $secret_key ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
+
+ case 'HMAC-SHA1':
+ $this->sbs = $this->_oauth_escape( $this->_action ) . '&' . $this->_oauth_escape( $this->_path ) . '&' . $this->_oauth_escape( $this->_normalized_parameters() );
+ return base64_encode( hash_hmac( 'sha1', $this->sbs, $secret_key, true ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
+
+ default:
+ throw new WC_XR_OAuthSimpleException( 'Unknown signature method for OAuthSimple' );
+ }
+ }
}
diff --git a/includes/class-wc-xr-phone.php b/includes/class-wc-xr-phone.php
index 8d99a90..cc50002 100644
--- a/includes/class-wc-xr-phone.php
+++ b/includes/class-wc-xr-phone.php
@@ -29,7 +29,7 @@ public function get_type() {
* @param string $type
*/
public function set_type( $type ) {
- $this->type = htmlspecialchars( $type );
+ $this->type = htmlspecialchars( $type, ENT_COMPAT );
}
/**
@@ -43,7 +43,7 @@ public function get_number() {
* @param string $number
*/
public function set_number( $number ) {
- $this->number = htmlspecialchars( $number );
+ $this->number = htmlspecialchars( $number, ENT_COMPAT );
}
/**
diff --git a/languages/woocommerce-xero.pot b/languages/woocommerce-xero.pot
index 8c41653..f3831c2 100644
--- a/languages/woocommerce-xero.pot
+++ b/languages/woocommerce-xero.pot
@@ -2,9 +2,9 @@
# This file is distributed under the same license as the WooCommerce Xero Integration package.
msgid ""
msgstr ""
-"Project-Id-Version: WooCommerce Xero Integration 1.8.8\n"
+"Project-Id-Version: WooCommerce Xero Integration 1.8.9\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-xero\n"
-"POT-Creation-Date: 2024-07-22 16:05:03+00:00\n"
+"POT-Creation-Date: 2024-08-19 14:03:55+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/lib/packages/firebase/php-jwt/src/BeforeValidException.php b/lib/packages/firebase/php-jwt/src/BeforeValidException.php
index a4d875a..f39463b 100644
--- a/lib/packages/firebase/php-jwt/src/BeforeValidException.php
+++ b/lib/packages/firebase/php-jwt/src/BeforeValidException.php
@@ -2,7 +2,7 @@
/**
* @license BSD-3-Clause
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/firebase/php-jwt/src/CachedKeySet.php b/lib/packages/firebase/php-jwt/src/CachedKeySet.php
index 7635ebc..cc00855 100644
--- a/lib/packages/firebase/php-jwt/src/CachedKeySet.php
+++ b/lib/packages/firebase/php-jwt/src/CachedKeySet.php
@@ -2,7 +2,7 @@
/**
* @license BSD-3-Clause
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/firebase/php-jwt/src/ExpiredException.php b/lib/packages/firebase/php-jwt/src/ExpiredException.php
index 9530ccb..9951d88 100644
--- a/lib/packages/firebase/php-jwt/src/ExpiredException.php
+++ b/lib/packages/firebase/php-jwt/src/ExpiredException.php
@@ -2,7 +2,7 @@
/**
* @license BSD-3-Clause
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/firebase/php-jwt/src/JWK.php b/lib/packages/firebase/php-jwt/src/JWK.php
index 0df4518..1875574 100644
--- a/lib/packages/firebase/php-jwt/src/JWK.php
+++ b/lib/packages/firebase/php-jwt/src/JWK.php
@@ -2,7 +2,7 @@
/**
* @license BSD-3-Clause
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/firebase/php-jwt/src/JWT.php b/lib/packages/firebase/php-jwt/src/JWT.php
index 7da5c4d..03198e9 100644
--- a/lib/packages/firebase/php-jwt/src/JWT.php
+++ b/lib/packages/firebase/php-jwt/src/JWT.php
@@ -2,7 +2,7 @@
/**
* @license BSD-3-Clause
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php b/lib/packages/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php
index e64cc2d..087e342 100644
--- a/lib/packages/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php
+++ b/lib/packages/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php
@@ -2,7 +2,7 @@
/**
* @license BSD-3-Clause
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
namespace Automattic\WooCommerce\Xero\Vendor\Firebase\JWT;
diff --git a/lib/packages/firebase/php-jwt/src/Key.php b/lib/packages/firebase/php-jwt/src/Key.php
index 27262c1..8431efd 100644
--- a/lib/packages/firebase/php-jwt/src/Key.php
+++ b/lib/packages/firebase/php-jwt/src/Key.php
@@ -2,7 +2,7 @@
/**
* @license BSD-3-Clause
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/firebase/php-jwt/src/SignatureInvalidException.php b/lib/packages/firebase/php-jwt/src/SignatureInvalidException.php
index a6ba55e..2c4126a 100644
--- a/lib/packages/firebase/php-jwt/src/SignatureInvalidException.php
+++ b/lib/packages/firebase/php-jwt/src/SignatureInvalidException.php
@@ -2,7 +2,7 @@
/**
* @license BSD-3-Clause
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/BodySummarizer.php b/lib/packages/guzzlehttp/guzzle/src/BodySummarizer.php
index fb2474c..e97dccf 100644
--- a/lib/packages/guzzlehttp/guzzle/src/BodySummarizer.php
+++ b/lib/packages/guzzlehttp/guzzle/src/BodySummarizer.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/BodySummarizerInterface.php b/lib/packages/guzzlehttp/guzzle/src/BodySummarizerInterface.php
index 272f57f..f40f480 100644
--- a/lib/packages/guzzlehttp/guzzle/src/BodySummarizerInterface.php
+++ b/lib/packages/guzzlehttp/guzzle/src/BodySummarizerInterface.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Client.php b/lib/packages/guzzlehttp/guzzle/src/Client.php
index 52c1c98..5a015cb 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Client.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Client.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/ClientInterface.php b/lib/packages/guzzlehttp/guzzle/src/ClientInterface.php
index 41687c9..c4c4ab9 100644
--- a/lib/packages/guzzlehttp/guzzle/src/ClientInterface.php
+++ b/lib/packages/guzzlehttp/guzzle/src/ClientInterface.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/ClientTrait.php b/lib/packages/guzzlehttp/guzzle/src/ClientTrait.php
index 9169473..11cb1d4 100644
--- a/lib/packages/guzzlehttp/guzzle/src/ClientTrait.php
+++ b/lib/packages/guzzlehttp/guzzle/src/ClientTrait.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Cookie/CookieJar.php b/lib/packages/guzzlehttp/guzzle/src/Cookie/CookieJar.php
index 2f2248c..f435699 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Cookie/CookieJar.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Cookie/CookieJar.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php b/lib/packages/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php
index d848a57..9401379 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php b/lib/packages/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
index d2456a5..a59ec76 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php b/lib/packages/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
index 1da848c..025444c 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Cookie/SetCookie.php b/lib/packages/guzzlehttp/guzzle/src/Cookie/SetCookie.php
index 807a074..b06affc 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Cookie/SetCookie.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Cookie/SetCookie.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/BadResponseException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/BadResponseException.php
index 29b1762..acf27d0 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/BadResponseException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/BadResponseException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/ClientException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/ClientException.php
index 24eecd7..0783518 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/ClientException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/ClientException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/ConnectException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/ConnectException.php
index ac0b01b..5d5f503 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/ConnectException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/ConnectException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/GuzzleException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/GuzzleException.php
index a25e468..5d6b7b2 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/GuzzleException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/GuzzleException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php
index a760ddd..eedc91c 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/RequestException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/RequestException.php
index 82df4bc..7405c89 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/RequestException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/RequestException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/ServerException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/ServerException.php
index 7a21ae8..9734a18 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/ServerException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/ServerException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php
index 3429892..718d675 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Exception/TransferException.php b/lib/packages/guzzlehttp/guzzle/src/Exception/TransferException.php
index 8bbe6be..e97c1a0 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Exception/TransferException.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Exception/TransferException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/CurlFactory.php b/lib/packages/guzzlehttp/guzzle/src/Handler/CurlFactory.php
index 8d927a6..3509442 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/CurlFactory.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/CurlFactory.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php b/lib/packages/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php
index f8cec8b..0bf81e9 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/CurlHandler.php b/lib/packages/guzzlehttp/guzzle/src/Handler/CurlHandler.php
index 6d283f2..09d0c75 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/CurlHandler.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/CurlHandler.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php b/lib/packages/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
index 2947b66..08abde5 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/EasyHandle.php b/lib/packages/guzzlehttp/guzzle/src/Handler/EasyHandle.php
index 57dab2a..8a8debe 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/EasyHandle.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/EasyHandle.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php b/lib/packages/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php
index 9dfde8e..934a674 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/MockHandler.php b/lib/packages/guzzlehttp/guzzle/src/Handler/MockHandler.php
index 8f04361..31ea99f 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/MockHandler.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/MockHandler.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/Proxy.php b/lib/packages/guzzlehttp/guzzle/src/Handler/Proxy.php
index a12c7af..28289dc 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/Proxy.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/Proxy.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Handler/StreamHandler.php b/lib/packages/guzzlehttp/guzzle/src/Handler/StreamHandler.php
index df4791a..c889bb3 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Handler/StreamHandler.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Handler/StreamHandler.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/HandlerStack.php b/lib/packages/guzzlehttp/guzzle/src/HandlerStack.php
index f9de949..ac7f61b 100644
--- a/lib/packages/guzzlehttp/guzzle/src/HandlerStack.php
+++ b/lib/packages/guzzlehttp/guzzle/src/HandlerStack.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/MessageFormatter.php b/lib/packages/guzzlehttp/guzzle/src/MessageFormatter.php
index 0cb4d40..42e5d94 100644
--- a/lib/packages/guzzlehttp/guzzle/src/MessageFormatter.php
+++ b/lib/packages/guzzlehttp/guzzle/src/MessageFormatter.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/MessageFormatterInterface.php b/lib/packages/guzzlehttp/guzzle/src/MessageFormatterInterface.php
index a47d105..881cd9c 100644
--- a/lib/packages/guzzlehttp/guzzle/src/MessageFormatterInterface.php
+++ b/lib/packages/guzzlehttp/guzzle/src/MessageFormatterInterface.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Middleware.php b/lib/packages/guzzlehttp/guzzle/src/Middleware.php
index 891fbca..394c5c6 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Middleware.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Middleware.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Pool.php b/lib/packages/guzzlehttp/guzzle/src/Pool.php
index d3b6687..d628c29 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Pool.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Pool.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php b/lib/packages/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php
index 06985b8..2925e98 100644
--- a/lib/packages/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php
+++ b/lib/packages/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/RedirectMiddleware.php b/lib/packages/guzzlehttp/guzzle/src/RedirectMiddleware.php
index 0b09ace..1132a0a 100644
--- a/lib/packages/guzzlehttp/guzzle/src/RedirectMiddleware.php
+++ b/lib/packages/guzzlehttp/guzzle/src/RedirectMiddleware.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/RequestOptions.php b/lib/packages/guzzlehttp/guzzle/src/RequestOptions.php
index 72daaf3..f105c58 100644
--- a/lib/packages/guzzlehttp/guzzle/src/RequestOptions.php
+++ b/lib/packages/guzzlehttp/guzzle/src/RequestOptions.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/RetryMiddleware.php b/lib/packages/guzzlehttp/guzzle/src/RetryMiddleware.php
index 890b903..32894d8 100644
--- a/lib/packages/guzzlehttp/guzzle/src/RetryMiddleware.php
+++ b/lib/packages/guzzlehttp/guzzle/src/RetryMiddleware.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/TransferStats.php b/lib/packages/guzzlehttp/guzzle/src/TransferStats.php
index 6eb69e1..acef77b 100644
--- a/lib/packages/guzzlehttp/guzzle/src/TransferStats.php
+++ b/lib/packages/guzzlehttp/guzzle/src/TransferStats.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/Utils.php b/lib/packages/guzzlehttp/guzzle/src/Utils.php
index 92be92f..b472ff9 100644
--- a/lib/packages/guzzlehttp/guzzle/src/Utils.php
+++ b/lib/packages/guzzlehttp/guzzle/src/Utils.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/guzzle/src/functions.php b/lib/packages/guzzlehttp/guzzle/src/functions.php
index 7ad812b..5385db4 100644
--- a/lib/packages/guzzlehttp/guzzle/src/functions.php
+++ b/lib/packages/guzzlehttp/guzzle/src/functions.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/AggregateException.php b/lib/packages/guzzlehttp/promises/src/AggregateException.php
index 95af0ad..d547d0a 100644
--- a/lib/packages/guzzlehttp/promises/src/AggregateException.php
+++ b/lib/packages/guzzlehttp/promises/src/AggregateException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/CancellationException.php b/lib/packages/guzzlehttp/promises/src/CancellationException.php
index 5f822c2..1128ec3 100644
--- a/lib/packages/guzzlehttp/promises/src/CancellationException.php
+++ b/lib/packages/guzzlehttp/promises/src/CancellationException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/Coroutine.php b/lib/packages/guzzlehttp/promises/src/Coroutine.php
index c07286d..1a78bc8 100644
--- a/lib/packages/guzzlehttp/promises/src/Coroutine.php
+++ b/lib/packages/guzzlehttp/promises/src/Coroutine.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/Create.php b/lib/packages/guzzlehttp/promises/src/Create.php
index 8fe6748..de5e439 100644
--- a/lib/packages/guzzlehttp/promises/src/Create.php
+++ b/lib/packages/guzzlehttp/promises/src/Create.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/Each.php b/lib/packages/guzzlehttp/promises/src/Each.php
index 528e1d2..900cb7f 100644
--- a/lib/packages/guzzlehttp/promises/src/Each.php
+++ b/lib/packages/guzzlehttp/promises/src/Each.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/EachPromise.php b/lib/packages/guzzlehttp/promises/src/EachPromise.php
index fd987c8..85113a5 100644
--- a/lib/packages/guzzlehttp/promises/src/EachPromise.php
+++ b/lib/packages/guzzlehttp/promises/src/EachPromise.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/FulfilledPromise.php b/lib/packages/guzzlehttp/promises/src/FulfilledPromise.php
index d70ba6a..4dde3cb 100644
--- a/lib/packages/guzzlehttp/promises/src/FulfilledPromise.php
+++ b/lib/packages/guzzlehttp/promises/src/FulfilledPromise.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/Is.php b/lib/packages/guzzlehttp/promises/src/Is.php
index 7dc312a..85a9829 100644
--- a/lib/packages/guzzlehttp/promises/src/Is.php
+++ b/lib/packages/guzzlehttp/promises/src/Is.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/Promise.php b/lib/packages/guzzlehttp/promises/src/Promise.php
index e43c4ab..579d0b0 100644
--- a/lib/packages/guzzlehttp/promises/src/Promise.php
+++ b/lib/packages/guzzlehttp/promises/src/Promise.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/PromiseInterface.php b/lib/packages/guzzlehttp/promises/src/PromiseInterface.php
index 33ce501..2398b00 100644
--- a/lib/packages/guzzlehttp/promises/src/PromiseInterface.php
+++ b/lib/packages/guzzlehttp/promises/src/PromiseInterface.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/PromisorInterface.php b/lib/packages/guzzlehttp/promises/src/PromisorInterface.php
index 911e07b..ef6b053 100644
--- a/lib/packages/guzzlehttp/promises/src/PromisorInterface.php
+++ b/lib/packages/guzzlehttp/promises/src/PromisorInterface.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/RejectedPromise.php b/lib/packages/guzzlehttp/promises/src/RejectedPromise.php
index b823b2b..7f698f9 100644
--- a/lib/packages/guzzlehttp/promises/src/RejectedPromise.php
+++ b/lib/packages/guzzlehttp/promises/src/RejectedPromise.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/RejectionException.php b/lib/packages/guzzlehttp/promises/src/RejectionException.php
index 0b47c0f..ddd2d08 100644
--- a/lib/packages/guzzlehttp/promises/src/RejectionException.php
+++ b/lib/packages/guzzlehttp/promises/src/RejectionException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/TaskQueue.php b/lib/packages/guzzlehttp/promises/src/TaskQueue.php
index e9c45d1..c07007a 100644
--- a/lib/packages/guzzlehttp/promises/src/TaskQueue.php
+++ b/lib/packages/guzzlehttp/promises/src/TaskQueue.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/TaskQueueInterface.php b/lib/packages/guzzlehttp/promises/src/TaskQueueInterface.php
index 93ffd86..4efa25b 100644
--- a/lib/packages/guzzlehttp/promises/src/TaskQueueInterface.php
+++ b/lib/packages/guzzlehttp/promises/src/TaskQueueInterface.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/promises/src/Utils.php b/lib/packages/guzzlehttp/promises/src/Utils.php
index eacb209..49eaba6 100644
--- a/lib/packages/guzzlehttp/promises/src/Utils.php
+++ b/lib/packages/guzzlehttp/promises/src/Utils.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/AppendStream.php b/lib/packages/guzzlehttp/psr7/src/AppendStream.php
index 3aee469..5234c8a 100644
--- a/lib/packages/guzzlehttp/psr7/src/AppendStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/AppendStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/BufferStream.php b/lib/packages/guzzlehttp/psr7/src/BufferStream.php
index 3b21723..8d9cf94 100644
--- a/lib/packages/guzzlehttp/psr7/src/BufferStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/BufferStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/CachingStream.php b/lib/packages/guzzlehttp/psr7/src/CachingStream.php
index 5b934fb..1d87c20 100644
--- a/lib/packages/guzzlehttp/psr7/src/CachingStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/CachingStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/DroppingStream.php b/lib/packages/guzzlehttp/psr7/src/DroppingStream.php
index 00ac245..95c4730 100644
--- a/lib/packages/guzzlehttp/psr7/src/DroppingStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/DroppingStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Exception/MalformedUriException.php b/lib/packages/guzzlehttp/psr7/src/Exception/MalformedUriException.php
index 0b04391..5bf1c1e 100644
--- a/lib/packages/guzzlehttp/psr7/src/Exception/MalformedUriException.php
+++ b/lib/packages/guzzlehttp/psr7/src/Exception/MalformedUriException.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/FnStream.php b/lib/packages/guzzlehttp/psr7/src/FnStream.php
index 7632948..ea53f9d 100644
--- a/lib/packages/guzzlehttp/psr7/src/FnStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/FnStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Header.php b/lib/packages/guzzlehttp/psr7/src/Header.php
index cfe9674..20c041f 100644
--- a/lib/packages/guzzlehttp/psr7/src/Header.php
+++ b/lib/packages/guzzlehttp/psr7/src/Header.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/HttpFactory.php b/lib/packages/guzzlehttp/psr7/src/HttpFactory.php
index 9a79242..d85c186 100644
--- a/lib/packages/guzzlehttp/psr7/src/HttpFactory.php
+++ b/lib/packages/guzzlehttp/psr7/src/HttpFactory.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/InflateStream.php b/lib/packages/guzzlehttp/psr7/src/InflateStream.php
index cac92d8..f1d23b9 100644
--- a/lib/packages/guzzlehttp/psr7/src/InflateStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/InflateStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/LazyOpenStream.php b/lib/packages/guzzlehttp/psr7/src/LazyOpenStream.php
index 88894f0..177cde4 100644
--- a/lib/packages/guzzlehttp/psr7/src/LazyOpenStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/LazyOpenStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/LimitStream.php b/lib/packages/guzzlehttp/psr7/src/LimitStream.php
index 4b3c16d..60a1927 100644
--- a/lib/packages/guzzlehttp/psr7/src/LimitStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/LimitStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Message.php b/lib/packages/guzzlehttp/psr7/src/Message.php
index c52c06d..4564c5e 100644
--- a/lib/packages/guzzlehttp/psr7/src/Message.php
+++ b/lib/packages/guzzlehttp/psr7/src/Message.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/MessageTrait.php b/lib/packages/guzzlehttp/psr7/src/MessageTrait.php
index 3394fa1..5b33d76 100644
--- a/lib/packages/guzzlehttp/psr7/src/MessageTrait.php
+++ b/lib/packages/guzzlehttp/psr7/src/MessageTrait.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/MimeType.php b/lib/packages/guzzlehttp/psr7/src/MimeType.php
index 7da1d96..e31fd80 100644
--- a/lib/packages/guzzlehttp/psr7/src/MimeType.php
+++ b/lib/packages/guzzlehttp/psr7/src/MimeType.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/MultipartStream.php b/lib/packages/guzzlehttp/psr7/src/MultipartStream.php
index 4a1084a..8cbeec4 100644
--- a/lib/packages/guzzlehttp/psr7/src/MultipartStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/MultipartStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/NoSeekStream.php b/lib/packages/guzzlehttp/psr7/src/NoSeekStream.php
index 920bafe..6f78884 100644
--- a/lib/packages/guzzlehttp/psr7/src/NoSeekStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/NoSeekStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/PumpStream.php b/lib/packages/guzzlehttp/psr7/src/PumpStream.php
index b66e977..81cf4b7 100644
--- a/lib/packages/guzzlehttp/psr7/src/PumpStream.php
+++ b/lib/packages/guzzlehttp/psr7/src/PumpStream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Query.php b/lib/packages/guzzlehttp/psr7/src/Query.php
index 47a5384..e7d8a19 100644
--- a/lib/packages/guzzlehttp/psr7/src/Query.php
+++ b/lib/packages/guzzlehttp/psr7/src/Query.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Request.php b/lib/packages/guzzlehttp/psr7/src/Request.php
index a2bfc4f..e032518 100644
--- a/lib/packages/guzzlehttp/psr7/src/Request.php
+++ b/lib/packages/guzzlehttp/psr7/src/Request.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Response.php b/lib/packages/guzzlehttp/psr7/src/Response.php
index 1c6675f..f4b4cf2 100644
--- a/lib/packages/guzzlehttp/psr7/src/Response.php
+++ b/lib/packages/guzzlehttp/psr7/src/Response.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Rfc7230.php b/lib/packages/guzzlehttp/psr7/src/Rfc7230.php
index 493707d..0a0ebbc 100644
--- a/lib/packages/guzzlehttp/psr7/src/Rfc7230.php
+++ b/lib/packages/guzzlehttp/psr7/src/Rfc7230.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/ServerRequest.php b/lib/packages/guzzlehttp/psr7/src/ServerRequest.php
index 4be2c39..3be3a82 100644
--- a/lib/packages/guzzlehttp/psr7/src/ServerRequest.php
+++ b/lib/packages/guzzlehttp/psr7/src/ServerRequest.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Stream.php b/lib/packages/guzzlehttp/psr7/src/Stream.php
index d7a3664..915288e 100644
--- a/lib/packages/guzzlehttp/psr7/src/Stream.php
+++ b/lib/packages/guzzlehttp/psr7/src/Stream.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/StreamDecoratorTrait.php b/lib/packages/guzzlehttp/psr7/src/StreamDecoratorTrait.php
index cdec154..084a8f4 100644
--- a/lib/packages/guzzlehttp/psr7/src/StreamDecoratorTrait.php
+++ b/lib/packages/guzzlehttp/psr7/src/StreamDecoratorTrait.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/StreamWrapper.php b/lib/packages/guzzlehttp/psr7/src/StreamWrapper.php
index 83513a9..f8a7d89 100644
--- a/lib/packages/guzzlehttp/psr7/src/StreamWrapper.php
+++ b/lib/packages/guzzlehttp/psr7/src/StreamWrapper.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/UploadedFile.php b/lib/packages/guzzlehttp/psr7/src/UploadedFile.php
index 4697839..ec2fb1f 100644
--- a/lib/packages/guzzlehttp/psr7/src/UploadedFile.php
+++ b/lib/packages/guzzlehttp/psr7/src/UploadedFile.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Uri.php b/lib/packages/guzzlehttp/psr7/src/Uri.php
index 77391ff..abd3986 100644
--- a/lib/packages/guzzlehttp/psr7/src/Uri.php
+++ b/lib/packages/guzzlehttp/psr7/src/Uri.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/UriComparator.php b/lib/packages/guzzlehttp/psr7/src/UriComparator.php
index 1a0e088..6c7e318 100644
--- a/lib/packages/guzzlehttp/psr7/src/UriComparator.php
+++ b/lib/packages/guzzlehttp/psr7/src/UriComparator.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/UriNormalizer.php b/lib/packages/guzzlehttp/psr7/src/UriNormalizer.php
index 99e4b01..42c6064 100644
--- a/lib/packages/guzzlehttp/psr7/src/UriNormalizer.php
+++ b/lib/packages/guzzlehttp/psr7/src/UriNormalizer.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/UriResolver.php b/lib/packages/guzzlehttp/psr7/src/UriResolver.php
index 472cb03..5ef11cd 100644
--- a/lib/packages/guzzlehttp/psr7/src/UriResolver.php
+++ b/lib/packages/guzzlehttp/psr7/src/UriResolver.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/guzzlehttp/psr7/src/Utils.php b/lib/packages/guzzlehttp/psr7/src/Utils.php
index 83d7a68..38d325e 100644
--- a/lib/packages/guzzlehttp/psr7/src/Utils.php
+++ b/lib/packages/guzzlehttp/psr7/src/Utils.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Grant/AbstractGrant.php b/lib/packages/league/oauth2-client/src/Grant/AbstractGrant.php
index 9312520..1abc16b 100644
--- a/lib/packages/league/oauth2-client/src/Grant/AbstractGrant.php
+++ b/lib/packages/league/oauth2-client/src/Grant/AbstractGrant.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Grant/AuthorizationCode.php b/lib/packages/league/oauth2-client/src/Grant/AuthorizationCode.php
index fbde2a4..e5187f3 100644
--- a/lib/packages/league/oauth2-client/src/Grant/AuthorizationCode.php
+++ b/lib/packages/league/oauth2-client/src/Grant/AuthorizationCode.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Grant/ClientCredentials.php b/lib/packages/league/oauth2-client/src/Grant/ClientCredentials.php
index d1add36..282906f 100644
--- a/lib/packages/league/oauth2-client/src/Grant/ClientCredentials.php
+++ b/lib/packages/league/oauth2-client/src/Grant/ClientCredentials.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php b/lib/packages/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php
index a5a3140..891bd41 100644
--- a/lib/packages/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php
+++ b/lib/packages/league/oauth2-client/src/Grant/Exception/InvalidGrantException.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Grant/GrantFactory.php b/lib/packages/league/oauth2-client/src/Grant/GrantFactory.php
index 1fe37b3..d3deb54 100644
--- a/lib/packages/league/oauth2-client/src/Grant/GrantFactory.php
+++ b/lib/packages/league/oauth2-client/src/Grant/GrantFactory.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Grant/Password.php b/lib/packages/league/oauth2-client/src/Grant/Password.php
index 5cb6bf1..91e27f1 100644
--- a/lib/packages/league/oauth2-client/src/Grant/Password.php
+++ b/lib/packages/league/oauth2-client/src/Grant/Password.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Grant/RefreshToken.php b/lib/packages/league/oauth2-client/src/Grant/RefreshToken.php
index 9853664..20b62e6 100644
--- a/lib/packages/league/oauth2-client/src/Grant/RefreshToken.php
+++ b/lib/packages/league/oauth2-client/src/Grant/RefreshToken.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php b/lib/packages/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php
index 518c542..66ea0b4 100644
--- a/lib/packages/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php
+++ b/lib/packages/league/oauth2-client/src/OptionProvider/HttpBasicAuthOptionProvider.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/OptionProvider/OptionProviderInterface.php b/lib/packages/league/oauth2-client/src/OptionProvider/OptionProviderInterface.php
index bfe290c..c0e5762 100644
--- a/lib/packages/league/oauth2-client/src/OptionProvider/OptionProviderInterface.php
+++ b/lib/packages/league/oauth2-client/src/OptionProvider/OptionProviderInterface.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php b/lib/packages/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php
index 46a137c..6daebd6 100644
--- a/lib/packages/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php
+++ b/lib/packages/league/oauth2-client/src/OptionProvider/PostAuthOptionProvider.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Provider/AbstractProvider.php b/lib/packages/league/oauth2-client/src/Provider/AbstractProvider.php
index dcd9bb8..0d1e66a 100644
--- a/lib/packages/league/oauth2-client/src/Provider/AbstractProvider.php
+++ b/lib/packages/league/oauth2-client/src/Provider/AbstractProvider.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php b/lib/packages/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php
index 47b20a3..02376ba 100644
--- a/lib/packages/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php
+++ b/lib/packages/league/oauth2-client/src/Provider/Exception/IdentityProviderException.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Provider/GenericProvider.php b/lib/packages/league/oauth2-client/src/Provider/GenericProvider.php
index 0abc865..e834fd1 100644
--- a/lib/packages/league/oauth2-client/src/Provider/GenericProvider.php
+++ b/lib/packages/league/oauth2-client/src/Provider/GenericProvider.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Provider/GenericResourceOwner.php b/lib/packages/league/oauth2-client/src/Provider/GenericResourceOwner.php
index fa807ad..74f3e40 100644
--- a/lib/packages/league/oauth2-client/src/Provider/GenericResourceOwner.php
+++ b/lib/packages/league/oauth2-client/src/Provider/GenericResourceOwner.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Provider/ResourceOwnerInterface.php b/lib/packages/league/oauth2-client/src/Provider/ResourceOwnerInterface.php
index 8714941..236cf08 100644
--- a/lib/packages/league/oauth2-client/src/Provider/ResourceOwnerInterface.php
+++ b/lib/packages/league/oauth2-client/src/Provider/ResourceOwnerInterface.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Token/AccessToken.php b/lib/packages/league/oauth2-client/src/Token/AccessToken.php
index 4771735..cc04de7 100644
--- a/lib/packages/league/oauth2-client/src/Token/AccessToken.php
+++ b/lib/packages/league/oauth2-client/src/Token/AccessToken.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Token/AccessTokenInterface.php b/lib/packages/league/oauth2-client/src/Token/AccessTokenInterface.php
index ca098ce..24d48bb 100644
--- a/lib/packages/league/oauth2-client/src/Token/AccessTokenInterface.php
+++ b/lib/packages/league/oauth2-client/src/Token/AccessTokenInterface.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php b/lib/packages/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php
index d152548..30608e2 100644
--- a/lib/packages/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php
+++ b/lib/packages/league/oauth2-client/src/Token/ResourceOwnerAccessTokenInterface.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Tool/ArrayAccessorTrait.php b/lib/packages/league/oauth2-client/src/Tool/ArrayAccessorTrait.php
index 44c141b..3c8d97f 100644
--- a/lib/packages/league/oauth2-client/src/Tool/ArrayAccessorTrait.php
+++ b/lib/packages/league/oauth2-client/src/Tool/ArrayAccessorTrait.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Tool/BearerAuthorizationTrait.php b/lib/packages/league/oauth2-client/src/Tool/BearerAuthorizationTrait.php
index e140c4f..c67d49c 100644
--- a/lib/packages/league/oauth2-client/src/Tool/BearerAuthorizationTrait.php
+++ b/lib/packages/league/oauth2-client/src/Tool/BearerAuthorizationTrait.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Tool/GuardedPropertyTrait.php b/lib/packages/league/oauth2-client/src/Tool/GuardedPropertyTrait.php
index f3fbc72..3679288 100644
--- a/lib/packages/league/oauth2-client/src/Tool/GuardedPropertyTrait.php
+++ b/lib/packages/league/oauth2-client/src/Tool/GuardedPropertyTrait.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Tool/MacAuthorizationTrait.php b/lib/packages/league/oauth2-client/src/Tool/MacAuthorizationTrait.php
index 7162943..6c26fa3 100644
--- a/lib/packages/league/oauth2-client/src/Tool/MacAuthorizationTrait.php
+++ b/lib/packages/league/oauth2-client/src/Tool/MacAuthorizationTrait.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Tool/ProviderRedirectTrait.php b/lib/packages/league/oauth2-client/src/Tool/ProviderRedirectTrait.php
index 6aba085..907e1d1 100644
--- a/lib/packages/league/oauth2-client/src/Tool/ProviderRedirectTrait.php
+++ b/lib/packages/league/oauth2-client/src/Tool/ProviderRedirectTrait.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Tool/QueryBuilderTrait.php b/lib/packages/league/oauth2-client/src/Tool/QueryBuilderTrait.php
index b179551..3e13415 100644
--- a/lib/packages/league/oauth2-client/src/Tool/QueryBuilderTrait.php
+++ b/lib/packages/league/oauth2-client/src/Tool/QueryBuilderTrait.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Tool/RequestFactory.php b/lib/packages/league/oauth2-client/src/Tool/RequestFactory.php
index d8e1b9e..58cfbd9 100644
--- a/lib/packages/league/oauth2-client/src/Tool/RequestFactory.php
+++ b/lib/packages/league/oauth2-client/src/Tool/RequestFactory.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/league/oauth2-client/src/Tool/RequiredParameterTrait.php b/lib/packages/league/oauth2-client/src/Tool/RequiredParameterTrait.php
index c70f925..957befc 100644
--- a/lib/packages/league/oauth2-client/src/Tool/RequiredParameterTrait.php
+++ b/lib/packages/league/oauth2-client/src/Tool/RequiredParameterTrait.php
@@ -11,7 +11,7 @@
* @link https://packagist.org/packages/league/oauth2-client Packagist
* @link https://github.com/thephpleague/oauth2-client GitHub
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/AccountingObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/AccountingObjectSerializer.php
index 778e905..e6d5499 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/AccountingObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/AccountingObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AccountingApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AccountingApi.php
index 48c8f02..eb534cf 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AccountingApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AccountingApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AppStoreApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AppStoreApi.php
index 617a1e0..d7f038a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AppStoreApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AppStoreApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AssetApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AssetApi.php
index 8a7f8b5..647af5d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AssetApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/AssetApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/FilesApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/FilesApi.php
index 94de919..351e876 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/FilesApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/FilesApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/FinanceApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/FinanceApi.php
index 2795b67..8384ac9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/FinanceApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/FinanceApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/IdentityApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/IdentityApi.php
index 3c3a773..e527140 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/IdentityApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/IdentityApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollAuApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollAuApi.php
index 3cec34a..bc394dc 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollAuApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollAuApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollNzApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollNzApi.php
index da6a313..069fa98 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollNzApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollNzApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollUkApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollUkApi.php
index 88b6edc..d9794f5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollUkApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/PayrollUkApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/ProjectApi.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/ProjectApi.php
index 57a7759..87e2638 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Api/ProjectApi.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Api/ProjectApi.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/ApiException.php b/lib/packages/xeroapi/xero-php-oauth2/lib/ApiException.php
index 767b553..772c20c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/ApiException.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/ApiException.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/AppStoreObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/AppStoreObjectSerializer.php
index 9e27950..c975028 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/AppStoreObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/AppStoreObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/AssetObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/AssetObjectSerializer.php
index bfc7f33..96679e7 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/AssetObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/AssetObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Configuration.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Configuration.php
index 3563867..cd09812 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Configuration.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Configuration.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/FileObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/FileObjectSerializer.php
index a46471e..1e5a795 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/FileObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/FileObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/FinanceObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/FinanceObjectSerializer.php
index 205506e..430d83b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/FinanceObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/FinanceObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/HeaderSelector.php b/lib/packages/xeroapi/xero-php-oauth2/lib/HeaderSelector.php
index 05f3ccf..5b831ba 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/HeaderSelector.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/HeaderSelector.php
@@ -9,7 +9,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/IdentityObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/IdentityObjectSerializer.php
index c988bcb..00e4024 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/IdentityObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/IdentityObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/JWTClaims.php b/lib/packages/xeroapi/xero-php-oauth2/lib/JWTClaims.php
index b3bddec..5238cdb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/JWTClaims.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/JWTClaims.php
@@ -2,7 +2,7 @@
/**
* @license MIT
*
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
namespace Automattic\WooCommerce\Xero\Vendor\XeroAPI\XeroPHP;
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Account.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Account.php
index 8486c06..48420e3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Account.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Account.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountType.php
index 78e4701..ef9ec0b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Accounts.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Accounts.php
index 1656daf..a2b0fe1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Accounts.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Accounts.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountsPayable.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountsPayable.php
index 9e62194..63e0e55 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountsPayable.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountsPayable.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountsReceivable.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountsReceivable.php
index 3be91e4..96ef4bb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountsReceivable.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AccountsReceivable.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Action.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Action.php
index 6d5c7f3..2abb6d2 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Action.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Action.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Actions.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Actions.php
index 230a7ec..15c1f09 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Actions.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Actions.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Address.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Address.php
index 3044aec..b34b429 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Address.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Address.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AddressForOrganisation.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AddressForOrganisation.php
index 8e170c5..25e3d1e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AddressForOrganisation.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/AddressForOrganisation.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Allocation.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Allocation.php
index 8850691..e1c09a6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Allocation.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Allocation.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Allocations.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Allocations.php
index 95381b9..cc973c5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Allocations.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Allocations.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Attachment.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Attachment.php
index dbda4c8..cdc8d8f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Attachment.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Attachment.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Attachments.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Attachments.php
index 57caf15..e99e793 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Attachments.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Attachments.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BalanceDetails.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BalanceDetails.php
index 379d725..11897fa 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BalanceDetails.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BalanceDetails.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Balances.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Balances.php
index 884afaf..9c79b73 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Balances.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Balances.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransaction.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransaction.php
index 9631709..f8b16fb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransaction.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransaction.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransactions.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransactions.php
index ce46bca..1e89c38 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransactions.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransactions.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransfer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransfer.php
index 983e168..99a9e03 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransfer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransfer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransfers.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransfers.php
index 88f4616..7ec893d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransfers.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BankTransfers.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPayment.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPayment.php
index b1db04f..26b63da 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPayment.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPayment.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDelete.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDelete.php
index 309f5b0..c2a725f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDelete.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDelete.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDeleteByUrlParam.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDeleteByUrlParam.php
index 36c4288..56020f1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDeleteByUrlParam.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDeleteByUrlParam.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDetails.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDetails.php
index a260d6e..8a0f5ee 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDetails.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPaymentDetails.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPayments.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPayments.php
index aa5fe32..b72ba54 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPayments.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BatchPayments.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Bill.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Bill.php
index 0599a20..58f6854 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Bill.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Bill.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BrandingTheme.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BrandingTheme.php
index 0bdfad9..84f7d46 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BrandingTheme.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BrandingTheme.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BrandingThemes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BrandingThemes.php
index e0ad154..0873230 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BrandingThemes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BrandingThemes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Budget.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Budget.php
index aa7ab10..2db5b1e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Budget.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Budget.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetBalance.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetBalance.php
index 8adcfee..9b173a4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetBalance.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetBalance.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetLine.php
index d767e21..d244805 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetLines.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetLines.php
index 726d6f6..ec2e3e0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetLines.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/BudgetLines.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Budgets.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Budgets.php
index 6ae26ef..340547e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Budgets.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Budgets.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISOrgSetting.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISOrgSetting.php
index a656835..ff23853 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISOrgSetting.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISOrgSetting.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISOrgSettings.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISOrgSettings.php
index 85f70ee..362bbdc 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISOrgSettings.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISOrgSettings.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISSetting.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISSetting.php
index 6182860..72aa0bc 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISSetting.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISSetting.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISSettings.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISSettings.php
index a96967e..2f792ec 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISSettings.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CISSettings.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Contact.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Contact.php
index 798ed06..16a28c6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Contact.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Contact.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactGroup.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactGroup.php
index c6058a5..2202f71 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactGroup.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactGroup.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactGroups.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactGroups.php
index a530395..c0820cf 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactGroups.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactGroups.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactPerson.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactPerson.php
index 1228287..92dfc9e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactPerson.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ContactPerson.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Contacts.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Contacts.php
index 4dfe857..56b5216 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Contacts.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Contacts.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ConversionBalances.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ConversionBalances.php
index 247aac6..cbfcb24 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ConversionBalances.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ConversionBalances.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ConversionDate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ConversionDate.php
index 7cc1776..fb3e9cb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ConversionDate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ConversionDate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CountryCode.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CountryCode.php
index f65b9fa..68bb608 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CountryCode.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CountryCode.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CreditNote.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CreditNote.php
index 7359ebb..7380244 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CreditNote.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CreditNote.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CreditNotes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CreditNotes.php
index 18c4244..a51224a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CreditNotes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CreditNotes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Currencies.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Currencies.php
index f3872f1..725e730 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Currencies.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Currencies.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Currency.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Currency.php
index d57f758..3f4cd30 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Currency.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Currency.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CurrencyCode.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CurrencyCode.php
index 6d6b269..66267dd 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CurrencyCode.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/CurrencyCode.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Element.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Element.php
index f9180a4..0d84f4e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Element.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Element.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Employee.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Employee.php
index 123f096..2930506 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Employee.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Employee.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Employees.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Employees.php
index d1c2e19..31bf61a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Employees.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Employees.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Error.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Error.php
index 8efc0d0..4795731 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Error.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Error.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExpenseClaim.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExpenseClaim.php
index 9b67bcf..0c382e1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExpenseClaim.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExpenseClaim.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExpenseClaims.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExpenseClaims.php
index 2990c32..8c1012b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExpenseClaims.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExpenseClaims.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExternalLink.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExternalLink.php
index 44925bf..4113441 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExternalLink.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ExternalLink.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/HistoryRecord.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/HistoryRecord.php
index ad6a0fa..a1251b1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/HistoryRecord.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/HistoryRecord.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/HistoryRecords.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/HistoryRecords.php
index 388252c..dcdd504 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/HistoryRecords.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/HistoryRecords.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummary.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummary.php
index 0b1095f..76f2038 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummary.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummary.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryAccounts.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryAccounts.php
index c18ac22..feee0d4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryAccounts.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryAccounts.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryObject.php
index e81d0f7..339df6b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryOrganisation.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryOrganisation.php
index 5376536..95a653e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryOrganisation.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ImportSummaryOrganisation.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Invoice.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Invoice.php
index aa626a1..ce6f991 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Invoice.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Invoice.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/InvoiceReminder.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/InvoiceReminder.php
index c7fe688..4b6ff53 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/InvoiceReminder.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/InvoiceReminder.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/InvoiceReminders.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/InvoiceReminders.php
index ecdc25e..2154685 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/InvoiceReminders.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/InvoiceReminders.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Invoices.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Invoices.php
index cd99aee..6390695 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Invoices.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Invoices.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Item.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Item.php
index 3a65bcb..a231173 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Item.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Item.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Items.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Items.php
index 7b5ab13..46eca56 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Items.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Items.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Journal.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Journal.php
index 41d963c..13f5607 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Journal.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Journal.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/JournalLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/JournalLine.php
index 4fa7ece..ca5eb05 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/JournalLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/JournalLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Journals.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Journals.php
index 593c7b2..66cd169 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Journals.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Journals.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineAmountTypes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineAmountTypes.php
index 5ebb66a..5d7527e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineAmountTypes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineAmountTypes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItem.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItem.php
index e84c7e8..de96392 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItem.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItem.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItemItem.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItemItem.php
index 025ae7c..438d155 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItemItem.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItemItem.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItemTracking.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItemTracking.php
index a056552..dfecb52 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItemTracking.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LineItemTracking.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LinkedTransaction.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LinkedTransaction.php
index 94daadc..b273260 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LinkedTransaction.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LinkedTransaction.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LinkedTransactions.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LinkedTransactions.php
index c1b4edd..97037bb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LinkedTransactions.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/LinkedTransactions.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournal.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournal.php
index 4f2e708..238216f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournal.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournal.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournalLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournalLine.php
index f61a990..347b1c9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournalLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournalLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournals.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournals.php
index a3e7b3e..ec83966 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournals.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ManualJournals.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ModelInterface.php
index 5f62420..4086c4e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/OnlineInvoice.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/OnlineInvoice.php
index a196348..4b31060 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/OnlineInvoice.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/OnlineInvoice.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/OnlineInvoices.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/OnlineInvoices.php
index 219ae0f..42b489a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/OnlineInvoices.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/OnlineInvoices.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Organisation.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Organisation.php
index 88c8992..e12028c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Organisation.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Organisation.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Organisations.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Organisations.php
index 6d961cb..4f77690 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Organisations.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Organisations.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Overpayment.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Overpayment.php
index 7140b22..6e42e90 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Overpayment.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Overpayment.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Overpayments.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Overpayments.php
index 091934c..376fc58 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Overpayments.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Overpayments.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Payment.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Payment.php
index b83983f..0482911 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Payment.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Payment.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentDelete.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentDelete.php
index 416e4dd..92ab494 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentDelete.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentDelete.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentService.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentService.php
index eb7bc30..3939b23 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentService.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentService.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentServices.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentServices.php
index 3a8824a..1790a4c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentServices.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentServices.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentTerm.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentTerm.php
index 263e9a4..62ff22e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentTerm.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentTerm.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentTermType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentTermType.php
index 2a6ff16..214a378 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentTermType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PaymentTermType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Payments.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Payments.php
index d602adc..d206f2c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Payments.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Payments.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Phone.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Phone.php
index 7d03acd..b58e686 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Phone.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Phone.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Prepayment.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Prepayment.php
index c81198f..aff3f87 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Prepayment.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Prepayment.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Prepayments.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Prepayments.php
index 118ed6a..fd89282 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Prepayments.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Prepayments.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Purchase.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Purchase.php
index 57045cc..01ca548 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Purchase.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Purchase.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PurchaseOrder.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PurchaseOrder.php
index ce7d803..2424b52 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PurchaseOrder.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PurchaseOrder.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PurchaseOrders.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PurchaseOrders.php
index b62ff94..55ca996 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PurchaseOrders.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/PurchaseOrders.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Quote.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Quote.php
index 200557d..5953d90 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Quote.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Quote.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/QuoteLineAmountTypes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/QuoteLineAmountTypes.php
index 5d77d94..c8110b6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/QuoteLineAmountTypes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/QuoteLineAmountTypes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/QuoteStatusCodes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/QuoteStatusCodes.php
index e36c011..a534aee 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/QuoteStatusCodes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/QuoteStatusCodes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Quotes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Quotes.php
index 70d160a..688c685 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Quotes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Quotes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Receipt.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Receipt.php
index 6a8360b..d0d43f6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Receipt.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Receipt.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Receipts.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Receipts.php
index 8ccd0ae..963cbf0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Receipts.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Receipts.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RepeatingInvoice.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RepeatingInvoice.php
index e485989..8ca01ab 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RepeatingInvoice.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RepeatingInvoice.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RepeatingInvoices.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RepeatingInvoices.php
index 3a729e1..fd6ae73 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RepeatingInvoices.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RepeatingInvoices.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Report.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Report.php
index d5e40ea..c4e9569 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Report.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Report.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportAttribute.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportAttribute.php
index 8c849a7..d736ce4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportAttribute.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportAttribute.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportCell.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportCell.php
index 890c015..880f301 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportCell.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportCell.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportFields.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportFields.php
index fc24190..f57ed8c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportFields.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportFields.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportRow.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportRow.php
index 9c0ed8b..6047e07 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportRow.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportRow.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportRows.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportRows.php
index 1eb308b..b6b5a21 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportRows.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportRows.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportWithRow.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportWithRow.php
index 6d60194..3cbc886 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportWithRow.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportWithRow.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportWithRows.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportWithRows.php
index 339a6bb..97baba0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportWithRows.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ReportWithRows.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Reports.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Reports.php
index 70ece31..73efd45 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Reports.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Reports.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RequestEmpty.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RequestEmpty.php
index 5119ea3..8e6d013 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RequestEmpty.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RequestEmpty.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RowType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RowType.php
index 031ab9a..d94e48f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RowType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/RowType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SalesTrackingCategory.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SalesTrackingCategory.php
index 398ad7b..5086893 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SalesTrackingCategory.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SalesTrackingCategory.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Schedule.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Schedule.php
index 5617f52..b5b69b4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Schedule.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Schedule.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Setup.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Setup.php
index ecfffff..2b0b920 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Setup.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Setup.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupBalanceDetails.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupBalanceDetails.php
index c1dc2d4..330f0d7 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupBalanceDetails.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupBalanceDetails.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupConversionBalances.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupConversionBalances.php
index 6d8cc90..51815d4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupConversionBalances.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupConversionBalances.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupConversionDate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupConversionDate.php
index a7db87f..6136072 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupConversionDate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/SetupConversionDate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxComponent.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxComponent.php
index 8d59eeb..b160a50 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxComponent.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxComponent.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxRate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxRate.php
index 496914e..d5b84c7 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxRate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxRate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxRates.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxRates.php
index cd6ea31..d55928e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxRates.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxRates.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxType.php
index 073deb4..aef6889 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TaxType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TenNinetyNineContact.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TenNinetyNineContact.php
index 660ba37..50883b3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TenNinetyNineContact.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TenNinetyNineContact.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TenNinteyNineContact.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TenNinteyNineContact.php
index a060eaf..1fd88b5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TenNinteyNineContact.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TenNinteyNineContact.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TimeZone.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TimeZone.php
index 09139d2..419f46d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TimeZone.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TimeZone.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingCategories.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingCategories.php
index e6184a7..8bf1a38 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingCategories.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingCategories.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingCategory.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingCategory.php
index 5f59b2f..91df973 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingCategory.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingCategory.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingOption.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingOption.php
index 9ffe8cc..72a6d9d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingOption.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingOption.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingOptions.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingOptions.php
index 09962ba..0627141 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingOptions.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/TrackingOptions.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/User.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/User.php
index eaafe34..719493d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/User.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/User.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Users.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Users.php
index 535959c..92c9629 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Users.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/Users.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ValidationError.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ValidationError.php
index 4c90552..b782d4b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ValidationError.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Accounting/ValidationError.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/CreateUsageRecord.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/CreateUsageRecord.php
index 264d3e0..554951f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/CreateUsageRecord.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/CreateUsageRecord.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/ModelInterface.php
index da88e41..d1165fa 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Plan.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Plan.php
index a6710eb..7ed481a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Plan.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Plan.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Price.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Price.php
index cd76c71..a888e45 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Price.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Price.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/ProblemDetails.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/ProblemDetails.php
index 775a27b..08a4a05 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/ProblemDetails.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/ProblemDetails.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Product.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Product.php
index 9ec2c5a..529deb9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Product.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Product.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Subscription.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Subscription.php
index b069eeb..72fdbf1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Subscription.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/Subscription.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/SubscriptionItem.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/SubscriptionItem.php
index 0482c77..1004970 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/SubscriptionItem.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/SubscriptionItem.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UpdateUsageRecord.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UpdateUsageRecord.php
index 88c6616..ee47f5a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UpdateUsageRecord.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UpdateUsageRecord.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UsageRecord.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UsageRecord.php
index 51e0178..897ace3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UsageRecord.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UsageRecord.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UsageRecordsList.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UsageRecordsList.php
index d6305aa..2d0189e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UsageRecordsList.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/AppStore/UsageRecordsList.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Asset.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Asset.php
index 8f8a362..87e6583 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Asset.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Asset.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetStatus.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetStatus.php
index b6d1ed7..6e51e49 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetStatus.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetStatus.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetStatusQueryParam.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetStatusQueryParam.php
index c579fde..aabad9f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetStatusQueryParam.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetStatusQueryParam.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetType.php
index 89579ab..e2a48c5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/AssetType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Assets.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Assets.php
index c0788ee..d964a37 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Assets.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Assets.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/BookDepreciationDetail.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/BookDepreciationDetail.php
index 5a4153f..25b3cf4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/BookDepreciationDetail.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/BookDepreciationDetail.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/BookDepreciationSetting.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/BookDepreciationSetting.php
index 9fe513f..2374c4b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/BookDepreciationSetting.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/BookDepreciationSetting.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Error.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Error.php
index d7a323e..f8d82d5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Error.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Error.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/FieldValidationErrorsElement.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/FieldValidationErrorsElement.php
index b3cdd51..982aebb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/FieldValidationErrorsElement.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/FieldValidationErrorsElement.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/ModelInterface.php
index b322a53..a4b63dd 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Pagination.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Pagination.php
index 7312c09..66ecf91 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Pagination.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Pagination.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/ResourceValidationErrorsElement.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/ResourceValidationErrorsElement.php
index 95bc8ac..460c4b1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/ResourceValidationErrorsElement.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/ResourceValidationErrorsElement.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Setting.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Setting.php
index 07b3e2f..03d2533 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Setting.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Asset/Setting.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Association.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Association.php
index 31639ff..97b7b8c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Association.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Association.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/FileObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/FileObject.php
index a019e37..cf322f6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/FileObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/FileObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/FileResponse204.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/FileResponse204.php
index 7a776bf..3457325 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/FileResponse204.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/FileResponse204.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Files.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Files.php
index 417434b..9bad7f8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Files.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Files.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Folder.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Folder.php
index ed8f325..762ab05 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Folder.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Folder.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Folders.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Folders.php
index 6061f3a..6df163d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Folders.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/Folders.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/InlineObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/InlineObject.php
index a0bbe9d..198a04e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/InlineObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/InlineObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ModelInterface.php
index c61f8b8..04e34a7 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ObjectGroup.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ObjectGroup.php
index 8dbffea..a3bd05b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ObjectGroup.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ObjectGroup.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ObjectType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ObjectType.php
index ebdd85c..ac4e835 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ObjectType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/ObjectType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/UploadObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/UploadObject.php
index a676c5b..8d6d05c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/UploadObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/UploadObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/User.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/User.php
index 5269dd6..6aa1c99 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/User.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/File/User.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/AccountUsage.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/AccountUsage.php
index 7da0a30..ff0dc3b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/AccountUsage.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/AccountUsage.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/AccountUsageResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/AccountUsageResponse.php
index 3efede4..bb69e05 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/AccountUsageResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/AccountUsageResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountDetail.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountDetail.php
index 07cbb44..2377841 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountDetail.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountDetail.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountGroup.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountGroup.php
index 0d3ea6f..f229de4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountGroup.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountGroup.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountType.php
index 2eefff3..a46654a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetAccountType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetResponse.php
index 2e7e6e1..ac495d1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BalanceSheetResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankStatementAccountingResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankStatementAccountingResponse.php
index 15d7efb..0f1078f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankStatementAccountingResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankStatementAccountingResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankStatementResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankStatementResponse.php
index 71847dc..953a734 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankStatementResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankStatementResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankTransactionResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankTransactionResponse.php
index e35237a..73a099f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankTransactionResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/BankTransactionResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashAccountResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashAccountResponse.php
index a8d2f7b..2173ce3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashAccountResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashAccountResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashBalance.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashBalance.php
index 727bf12..8682310 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashBalance.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashBalance.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashValidationResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashValidationResponse.php
index 489fb12..f5fd2d3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashValidationResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashValidationResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowAccount.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowAccount.php
index 79c22e7..f7fda9b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowAccount.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowAccount.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowActivity.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowActivity.php
index dc6220f..23f9e39 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowActivity.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowActivity.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowResponse.php
index f87993e..b4f75e5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowType.php
index 0a0e0ed..65e35b6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CashflowType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactDetail.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactDetail.php
index 410a319..93f79c2 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactDetail.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactDetail.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactResponse.php
index 0021079..0fc69fc 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactTotalDetail.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactTotalDetail.php
index 148344a..f81a43a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactTotalDetail.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactTotalDetail.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactTotalOther.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactTotalOther.php
index baf8ac5..3f10802 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactTotalOther.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ContactTotalOther.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CreditNoteResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CreditNoteResponse.php
index 3184e3d..2fef6f1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CreditNoteResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CreditNoteResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CurrentStatementResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CurrentStatementResponse.php
index 562e010..36ff039 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CurrentStatementResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/CurrentStatementResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/DataSourceResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/DataSourceResponse.php
index 0468172..3392309 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/DataSourceResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/DataSourceResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/HistoryRecordResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/HistoryRecordResponse.php
index 31e077d..12fb643 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/HistoryRecordResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/HistoryRecordResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/IncomeByContactResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/IncomeByContactResponse.php
index 1b6d436..62f328b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/IncomeByContactResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/IncomeByContactResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/InvoiceResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/InvoiceResponse.php
index 7c40ec7..c60056a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/InvoiceResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/InvoiceResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LineItemResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LineItemResponse.php
index e1da0ad..6b8d2bf 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LineItemResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LineItemResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LockHistoryModel.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LockHistoryModel.php
index 0f64c80..4196e22 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LockHistoryModel.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LockHistoryModel.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LockHistoryResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LockHistoryResponse.php
index 217cedf..01eb996 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LockHistoryResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/LockHistoryResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ManualJournalTotal.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ManualJournalTotal.php
index d6c13c6..76de0a2 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ManualJournalTotal.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ManualJournalTotal.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ModelInterface.php
index d70b527..c8904a0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/OverpaymentResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/OverpaymentResponse.php
index 40c3925..7eabc44 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/OverpaymentResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/OverpaymentResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PaymentResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PaymentResponse.php
index c85c35c..fcaf6b4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PaymentResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PaymentResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccount.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccount.php
index e6c1cd7..ff9c958 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccount.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccount.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccountClass.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccountClass.php
index 4be77bc..a49f583 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccountClass.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccountClass.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccountType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccountType.php
index 6f195fc..83ed548 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccountType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PnlAccountType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PracticeResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PracticeResponse.php
index 3d18a3a..6cc7da2 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PracticeResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PracticeResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PrepaymentResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PrepaymentResponse.php
index b19c5a1..6ae8ea8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PrepaymentResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/PrepaymentResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/Problem.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/Problem.php
index d2fc37f..07917ce 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/Problem.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/Problem.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ProblemType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ProblemType.php
index 4a9385f..69cde91 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ProblemType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ProblemType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ProfitAndLossResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ProfitAndLossResponse.php
index 4eb0994..0c39339 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ProfitAndLossResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ProfitAndLossResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ReportHistoryModel.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ReportHistoryModel.php
index e642ae4..f86d7bf 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ReportHistoryModel.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ReportHistoryModel.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ReportHistoryResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ReportHistoryResponse.php
index b2fce66..df40b0c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ReportHistoryResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/ReportHistoryResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementBalanceResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementBalanceResponse.php
index e25bc8a..8f7934b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementBalanceResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementBalanceResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementLineResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementLineResponse.php
index 2e8fb79..995897c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementLineResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementLineResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementLinesResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementLinesResponse.php
index 5317d96..a691ea9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementLinesResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementLinesResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementResponse.php
index 645e14e..692c7f8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/StatementResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TotalDetail.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TotalDetail.php
index 9418273..1ca2083 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TotalDetail.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TotalDetail.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TotalOther.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TotalOther.php
index c17dec8..7562422 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TotalOther.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TotalOther.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceAccount.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceAccount.php
index 0dc014f..a1794b4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceAccount.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceAccount.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceEntry.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceEntry.php
index ad27ca7..7da10d6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceEntry.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceEntry.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceMovement.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceMovement.php
index 6356131..8758b43 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceMovement.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceMovement.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceResponse.php
index b814a74..04a9613 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/TrialBalanceResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/UserActivitiesResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/UserActivitiesResponse.php
index 2a42aa0..6877d24 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/UserActivitiesResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/UserActivitiesResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/UserResponse.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/UserResponse.php
index d56fd4b..2d7e02a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/UserResponse.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Finance/UserResponse.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/AccessToken.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/AccessToken.php
index ad91ccf..081404f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/AccessToken.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/AccessToken.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/Connection.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/Connection.php
index cf70e30..c6dfd31 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/Connection.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/Connection.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/ModelInterface.php
index 4f3b5a0..8542865 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/RefreshToken.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/RefreshToken.php
index d4d6201..e596280 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/RefreshToken.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Identity/RefreshToken.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/APIException.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/APIException.php
index 8f8ac6a..3070e20 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/APIException.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/APIException.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Account.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Account.php
index 117e619..6367865 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Account.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Account.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AccountType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AccountType.php
index ba6370e..68a3093 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AccountType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AccountType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AllowanceCategory.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AllowanceCategory.php
index 5fa68f9..6cd1165 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AllowanceCategory.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AllowanceCategory.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AllowanceType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AllowanceType.php
index 5007b97..e0916a5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AllowanceType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/AllowanceType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/BankAccount.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/BankAccount.php
index 6da31d5..3b38b77 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/BankAccount.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/BankAccount.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/CalendarType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/CalendarType.php
index 5aeec59..25e1169 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/CalendarType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/CalendarType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/CountryOfResidence.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/CountryOfResidence.php
index 609c503..d81af2d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/CountryOfResidence.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/CountryOfResidence.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionLine.php
index dbf82b2..d1bef15 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionType.php
index ddd3dff..c42f9bb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionTypeCalculationType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionTypeCalculationType.php
index d893040..9a1c3d8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionTypeCalculationType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/DeductionTypeCalculationType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsLine.php
index 33d81d8..7443114 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsRate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsRate.php
index ec4af13..e86db3b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsRate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsRate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsRateCalculationType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsRateCalculationType.php
index 2c5b3c6..615e4b2 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsRateCalculationType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsRateCalculationType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsType.php
index ef00b62..3e92b34 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EarningsType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Employee.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Employee.php
index bd8cda3..4caa49c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Employee.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Employee.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmployeeStatus.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmployeeStatus.php
index add2b03..de52951 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmployeeStatus.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmployeeStatus.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Employees.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Employees.php
index eaf65cf..f381b00 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Employees.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Employees.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentBasis.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentBasis.php
index ad750e4..947102a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentBasis.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentBasis.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentTerminationPaymentType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentTerminationPaymentType.php
index c75adbe..268b474 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentTerminationPaymentType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentTerminationPaymentType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentType.php
index 17a0364..bb08e3d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EmploymentType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EntitlementFinalPayPayoutType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EntitlementFinalPayPayoutType.php
index ffb5d77..471580d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EntitlementFinalPayPayoutType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/EntitlementFinalPayPayoutType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/HomeAddress.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/HomeAddress.php
index 6d2e037..25501e3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/HomeAddress.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/HomeAddress.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/IncomeType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/IncomeType.php
index 619bf23..53fd118 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/IncomeType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/IncomeType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveAccrualLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveAccrualLine.php
index e6ef141..284c93d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveAccrualLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveAccrualLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveApplication.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveApplication.php
index e825231..b37c3c3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveApplication.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveApplication.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveApplications.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveApplications.php
index b55d4f1..d0a9707 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveApplications.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveApplications.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveBalance.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveBalance.php
index 05a8675..4c91958 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveBalance.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveBalance.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveCategoryCode.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveCategoryCode.php
index b277dad..ef52362 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveCategoryCode.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveCategoryCode.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveEarningsLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveEarningsLine.php
index 0334765..1a73861 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveEarningsLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveEarningsLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLine.php
index 4424fe6..9ecadfa 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLineCalculationType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLineCalculationType.php
index 728c057..366dfd0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLineCalculationType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLineCalculationType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLines.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLines.php
index 086be49..d983924 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLines.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveLines.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeavePeriod.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeavePeriod.php
index ca9ee86..a49d3ff 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeavePeriod.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeavePeriod.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeavePeriodStatus.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeavePeriodStatus.php
index b519a45..76a99c9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeavePeriodStatus.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeavePeriodStatus.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveType.php
index 16586b7..a6cde60 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveTypeContributionType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveTypeContributionType.php
index 880f931..a2df489 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveTypeContributionType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/LeaveTypeContributionType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ManualTaxType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ManualTaxType.php
index 99b9b61..88d0bef 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ManualTaxType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ManualTaxType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ModelInterface.php
index 36a8269..c03aec6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/OpeningBalances.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/OpeningBalances.php
index dbef3bc..dbdb7ee 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/OpeningBalances.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/OpeningBalances.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayItem.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayItem.php
index 01b7fe4..42f872e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayItem.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayItem.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayItems.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayItems.php
index 0bc48c6..8e6e2e8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayItems.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayItems.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRun.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRun.php
index c4f0b94..5ab2c7d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRun.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRun.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRunStatus.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRunStatus.php
index 3f7767e..0aea8af 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRunStatus.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRunStatus.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRuns.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRuns.php
index a9e3d6c..7161133 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRuns.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayRuns.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayTemplate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayTemplate.php
index 3f74147..6711457 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayTemplate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayTemplate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PaymentFrequencyType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PaymentFrequencyType.php
index 70a37a4..b19b496 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PaymentFrequencyType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PaymentFrequencyType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayrollCalendar.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayrollCalendar.php
index 0445b53..e24e1a6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayrollCalendar.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayrollCalendar.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayrollCalendars.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayrollCalendars.php
index 676799c..3843eab 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayrollCalendars.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayrollCalendars.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Payslip.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Payslip.php
index 683b948..52b4407 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Payslip.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Payslip.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipLines.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipLines.php
index b1cd9c3..db01b26 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipLines.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipLines.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipObject.php
index 178ed35..79376dc 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipSummary.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipSummary.php
index 0f777f0..e7a4ef8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipSummary.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/PayslipSummary.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Payslips.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Payslips.php
index 130787c..c72f71e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Payslips.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Payslips.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/RateType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/RateType.php
index ac50517..2664651 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/RateType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/RateType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementLine.php
index 713dd4f..37a10d4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementLines.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementLines.php
index c2797d5..3cf3ece 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementLines.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementLines.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementType.php
index 5159d86..aa2a6e5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ReimbursementType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ResidencyStatus.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ResidencyStatus.php
index 98bb4af..a11f9da 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ResidencyStatus.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ResidencyStatus.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SeniorMaritalStatus.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SeniorMaritalStatus.php
index af475c4..16133df 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SeniorMaritalStatus.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SeniorMaritalStatus.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Settings.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Settings.php
index 44ba5be..c619ace 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Settings.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Settings.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsObject.php
index 6a62b80..b09e11a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategories.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategories.php
index 35af7af..09d3e64 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategories.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategories.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategoriesEmployeeGroups.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategoriesEmployeeGroups.php
index f161c00..bd2401a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategoriesEmployeeGroups.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategoriesEmployeeGroups.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategoriesTimesheetCategories.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategoriesTimesheetCategories.php
index c224372..2ab8e1b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategoriesTimesheetCategories.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SettingsTrackingCategoriesTimesheetCategories.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/State.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/State.php
index 6afae9d..874f661 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/State.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/State.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFund.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFund.php
index c837a8e..e82cd7e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFund.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFund.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundProduct.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundProduct.php
index 64fc121..ec67f2b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundProduct.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundProduct.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundProducts.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundProducts.php
index 2576311..f7bd4ef 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundProducts.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundProducts.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundType.php
index 003ae59..c307c56 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFundType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFunds.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFunds.php
index 7d3db03..1328b5b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFunds.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperFunds.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperLine.php
index 5d1c935..5cad302 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperMembership.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperMembership.php
index 811817b..e38fa7c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperMembership.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperMembership.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationCalculationType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationCalculationType.php
index bf3cb12..1908886 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationCalculationType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationCalculationType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationContributionType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationContributionType.php
index 9584097..0bb6175 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationContributionType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationContributionType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationLine.php
index be0e748..fb84f63 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/SuperannuationLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TFNExemptionType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TFNExemptionType.php
index 674c724..a0bfa8b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TFNExemptionType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TFNExemptionType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxDeclaration.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxDeclaration.php
index 8724103..6a16478 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxDeclaration.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxDeclaration.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxLine.php
index eb5d7b5..e500e70 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxScaleType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxScaleType.php
index be9b1f5..5c65fa4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxScaleType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TaxScaleType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Timesheet.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Timesheet.php
index b717d8e..934103c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Timesheet.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Timesheet.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetLine.php
index ebf54b7..8dcad8b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetObject.php
index 02a47e9..42f8645 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetStatus.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetStatus.php
index 46679f1..07106a0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetStatus.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/TimesheetStatus.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Timesheets.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Timesheets.php
index ca47903..6bab52e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Timesheets.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/Timesheets.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ValidationError.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ValidationError.php
index 4da7e6a..aa6fb37 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ValidationError.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/ValidationError.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/WorkCondition.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/WorkCondition.php
index 15ec261..1f6b087 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/WorkCondition.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollAu/WorkCondition.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Account.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Account.php
index ec1baba..6cdc802 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Account.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Account.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Accounts.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Accounts.php
index 4c1864a..821c7e6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Accounts.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Accounts.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Address.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Address.php
index a2520cd..fd3b661 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Address.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Address.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/BankAccount.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/BankAccount.php
index 62b3c62..297c3ea 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/BankAccount.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/BankAccount.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Benefit.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Benefit.php
index 9421177..31494ad 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Benefit.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Benefit.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/CalendarType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/CalendarType.php
index 208354b..d1dd2cb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/CalendarType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/CalendarType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Deduction.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Deduction.php
index 9d526f6..3a21a03 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Deduction.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Deduction.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/DeductionLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/DeductionLine.php
index ccca138..08dcdc7 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/DeductionLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/DeductionLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/DeductionObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/DeductionObject.php
index 8226f2e..a451502 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/DeductionObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/DeductionObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Deductions.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Deductions.php
index 0aff83a..8cc4c2c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Deductions.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Deductions.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsLine.php
index c9287d5..6d3b10f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrder.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrder.php
index 995a144..acf0532 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrder.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrder.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrderObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrderObject.php
index e386a8f..dc59bf6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrderObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrderObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrders.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrders.php
index 99ed41c..4b33e48 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrders.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsOrders.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRate.php
index c932074..8653897 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRateObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRateObject.php
index 5788cd8..c2f40dd 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRateObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRateObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRates.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRates.php
index 57b0db1..6849bf3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRates.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsRates.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsTemplate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsTemplate.php
index dd161cc..6b8d90e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsTemplate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsTemplate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsTemplateObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsTemplateObject.php
index d870e75..5e1fedb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsTemplateObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EarningsTemplateObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employee.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employee.php
index e5c3118..ed2f066 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employee.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employee.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeEarningsTemplates.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeEarningsTemplates.php
index d22a3a5..d6165bd 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeEarningsTemplates.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeEarningsTemplates.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeave.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeave.php
index 9c5faff..78c7ff7 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeave.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeave.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveBalance.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveBalance.php
index 03c68c3..5f7ebf3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveBalance.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveBalance.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveBalances.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveBalances.php
index dcd6819..72410ec 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveBalances.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveBalances.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveObject.php
index c19bf1c..cc84de5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveSetup.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveSetup.php
index af6fe8a..d1b21c1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveSetup.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveSetup.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveSetupObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveSetupObject.php
index 9691608..c4e4ad3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveSetupObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveSetupObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveType.php
index 6202b5e..028d007 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveTypeObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveTypeObject.php
index 87bdb5e..17157eb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveTypeObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveTypeObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveTypes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveTypes.php
index c98c876..5fd2c4e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveTypes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaveTypes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaves.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaves.php
index bbf1a14..63bc004 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaves.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeLeaves.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeObject.php
index 6cbe6cc..089d2f1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeOpeningBalance.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeOpeningBalance.php
index f060329..e5dc66e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeOpeningBalance.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeOpeningBalance.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeOpeningBalancesObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeOpeningBalancesObject.php
index af47df4..c979464 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeOpeningBalancesObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeOpeningBalancesObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplate.php
index 2a90a79..93c923d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplateObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplateObject.php
index 624be4f..c4030f0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplateObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplateObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplates.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplates.php
index 8d9d530..d9738fb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplates.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeePayTemplates.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveBalance.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveBalance.php
index de3e142..f35db64 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveBalance.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveBalance.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveBalanceObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveBalanceObject.php
index 691a1f0..335e41e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveBalanceObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveBalanceObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveSummary.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveSummary.php
index 2ce2cc0..c7dd8a4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveSummary.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeaveSummary.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeavesSummaries.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeavesSummaries.php
index fe45135..1761cdb 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeavesSummaries.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutoryLeavesSummaries.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeave.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeave.php
index d9abe06..0041427 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeave.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeave.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeaveObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeaveObject.php
index 498a9f6..ed66e18 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeaveObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeaveObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeaves.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeaves.php
index 5b3c793..257c51c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeaves.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeStatutorySickLeaves.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeTax.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeTax.php
index 8de67de..7c0a97f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeTax.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeTax.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeTaxObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeTaxObject.php
index 8a69132..9014e4b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeTaxObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmployeeTaxObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employees.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employees.php
index 56176c3..cb66b71 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employees.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employees.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employment.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employment.php
index ce3a375..520be10 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employment.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Employment.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmploymentObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmploymentObject.php
index 61743b0..07fd684 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmploymentObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/EmploymentObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/GrossEarningsHistory.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/GrossEarningsHistory.php
index ac35dc5..625b21c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/GrossEarningsHistory.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/GrossEarningsHistory.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/InvalidField.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/InvalidField.php
index 7309fc5..d332b8a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/InvalidField.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/InvalidField.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveAccrualLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveAccrualLine.php
index 6fc9950..13f7163 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveAccrualLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveAccrualLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveEarningsLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveEarningsLine.php
index ddff395..1586722 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveEarningsLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveEarningsLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeavePeriod.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeavePeriod.php
index 3e0620c..2371e20 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeavePeriod.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeavePeriod.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeavePeriods.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeavePeriods.php
index 0af6561..0897242 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeavePeriods.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeavePeriods.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveType.php
index 1a30c72..0f20f4e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveTypeObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveTypeObject.php
index 63ad9e6..e3bb451 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveTypeObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveTypeObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveTypes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveTypes.php
index 290659b..0e16496 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveTypes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/LeaveTypes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ModelInterface.php
index 1fc0b0c..51b6ac3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Pagination.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Pagination.php
index 03dc987..d279a4c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Pagination.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Pagination.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRun.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRun.php
index 959f25b..31f2383 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRun.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRun.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendar.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendar.php
index 09ef414..22e40f0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendar.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendar.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendarObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendarObject.php
index 3b91b93..7724b4e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendarObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendarObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendars.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendars.php
index 14746e2..ad2120c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendars.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunCalendars.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunObject.php
index f1b847f..aa5f369 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRunObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRuns.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRuns.php
index 0fb14cc..71b2e93 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRuns.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PayRuns.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlip.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlip.php
index 82a1a47..eb072ce 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlip.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlip.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlipObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlipObject.php
index 6404b6b..3811a4c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlipObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlipObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlips.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlips.php
index 6e03c01..bd0e72b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlips.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaySlips.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentLine.php
index 2205c2b..a0f11b5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentMethod.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentMethod.php
index dc29603..f2a9666 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentMethod.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentMethod.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentMethodObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentMethodObject.php
index 525e552..9b587ad 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentMethodObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/PaymentMethodObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Problem.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Problem.php
index 8c01fb0..336fcc3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Problem.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Problem.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Reimbursement.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Reimbursement.php
index 7391d3a..8715ade 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Reimbursement.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Reimbursement.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ReimbursementLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ReimbursementLine.php
index 56c0f61..a85837c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ReimbursementLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ReimbursementLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ReimbursementObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ReimbursementObject.php
index 192ac62..9893146 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ReimbursementObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/ReimbursementObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Reimbursements.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Reimbursements.php
index ed9ef9d..6ad6755 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Reimbursements.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Reimbursements.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWage.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWage.php
index 61eea08..c8e7ea6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWage.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWage.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWageObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWageObject.php
index e652c56..4fff323 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWageObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWageObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWages.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWages.php
index 8a37438..6f6de03 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWages.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SalaryAndWages.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Settings.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Settings.php
index 7b002a3..78335f8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Settings.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Settings.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeduction.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeduction.php
index d367ede..141685d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeduction.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeduction.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionCategory.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionCategory.php
index 7e5e17c..55e0fef 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionCategory.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionCategory.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionLine.php
index 1177809..7770c1e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionObject.php
index e239331..e4a6ec8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductionObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductions.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductions.php
index 56bc9dd..823b0e1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductions.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/StatutoryDeductions.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SuperannuationLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SuperannuationLine.php
index 3ace8b3..e9f3e08 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SuperannuationLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SuperannuationLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SuperannuationObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SuperannuationObject.php
index 0365213..414734b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SuperannuationObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/SuperannuationObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Superannuations.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Superannuations.php
index f85935c..26d2bb4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Superannuations.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Superannuations.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxCode.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxCode.php
index faa35f7..76b1fbe 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxCode.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxCode.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxLine.php
index 9349d10..0df02a1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxSettings.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxSettings.php
index ebb4263..00770ec 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxSettings.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TaxSettings.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Timesheet.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Timesheet.php
index e4b4709..e4ee4ed 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Timesheet.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Timesheet.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetEarningsLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetEarningsLine.php
index 1ed0c1f..e297f4d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetEarningsLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetEarningsLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetLine.php
index f0efd29..c3f8f34 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetLineObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetLineObject.php
index 95011c5..2f33f79 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetLineObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetLineObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetObject.php
index b6ec1ad..54ff700 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TimesheetObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Timesheets.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Timesheets.php
index 07e3e0b..48204c1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Timesheets.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/Timesheets.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TrackingCategories.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TrackingCategories.php
index f70b42f..07b2e88 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TrackingCategories.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TrackingCategories.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TrackingCategory.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TrackingCategory.php
index 509b8e6..e51e8fd 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TrackingCategory.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollNz/TrackingCategory.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Account.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Account.php
index 32a5dab..95153ae 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Account.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Account.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Accounts.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Accounts.php
index 69c8f1f..da9f691 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Accounts.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Accounts.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Address.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Address.php
index 4431836..1140c0e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Address.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Address.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BankAccount.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BankAccount.php
index 83bc1f0..ecabc67 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BankAccount.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BankAccount.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Benefit.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Benefit.php
index 5a52d9e..5b25b30 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Benefit.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Benefit.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BenefitLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BenefitLine.php
index 4d340dd..ef7308f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BenefitLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BenefitLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BenefitObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BenefitObject.php
index 3db35e5..390b7f7 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BenefitObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/BenefitObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Benefits.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Benefits.php
index 628def9..e456262 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Benefits.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Benefits.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/CourtOrderLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/CourtOrderLine.php
index 5958b51..85b234a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/CourtOrderLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/CourtOrderLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Deduction.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Deduction.php
index 657a62b..fef75a8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Deduction.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Deduction.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/DeductionLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/DeductionLine.php
index a651f48..742e34b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/DeductionLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/DeductionLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/DeductionObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/DeductionObject.php
index 12544f1..87bcd02 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/DeductionObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/DeductionObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Deductions.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Deductions.php
index 39de64d..475d2b9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Deductions.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Deductions.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsLine.php
index 37cb4e7..ed45ebc 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrder.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrder.php
index 834a808..37606d3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrder.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrder.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrderObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrderObject.php
index b13bf30..76cbb98 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrderObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrderObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrders.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrders.php
index dc5b503..7ae72d0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrders.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsOrders.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRate.php
index 7313695..656d580 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRateObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRateObject.php
index b7158e0..0517b17 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRateObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRateObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRates.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRates.php
index df14bff..d149e3a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRates.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsRates.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsTemplate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsTemplate.php
index 05d0889..43e8998 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsTemplate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsTemplate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsTemplateObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsTemplateObject.php
index 9f18be5..9722382 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsTemplateObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EarningsTemplateObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employee.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employee.php
index aa67002..a113011 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employee.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employee.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeave.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeave.php
index 7b28265..523db4e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeave.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeave.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveBalance.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveBalance.php
index 99c94fb..f069208 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveBalance.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveBalance.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveBalances.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveBalances.php
index 3c9cd91..988b54b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveBalances.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveBalances.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveObject.php
index 51a3b55..05a42fa 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveType.php
index 283a2d3..4ba2a9e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveTypeObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveTypeObject.php
index 1a5ba49..a1067a1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveTypeObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveTypeObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveTypes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveTypes.php
index e73eab4..46b6187 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveTypes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaveTypes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaves.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaves.php
index 90b1d78..b7a64e0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaves.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeLeaves.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeObject.php
index 69932f0..e3dfa64 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeOpeningBalances.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeOpeningBalances.php
index cd12238..731f69e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeOpeningBalances.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeOpeningBalances.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeOpeningBalancesObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeOpeningBalancesObject.php
index cc63e8d..31fc80b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeOpeningBalancesObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeOpeningBalancesObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplate.php
index 1cc184f..c039833 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplateObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplateObject.php
index 719a7a5..886437d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplateObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplateObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplates.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplates.php
index 856056b..46798f0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplates.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeePayTemplates.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveBalance.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveBalance.php
index 38c83c4..9ca5d64 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveBalance.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveBalance.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveBalanceObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveBalanceObject.php
index 813b31c..4e5023a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveBalanceObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveBalanceObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveSummary.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveSummary.php
index 22278cc..5454a59 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveSummary.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeaveSummary.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeavesSummaries.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeavesSummaries.php
index e2d5dd3..01b6aa3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeavesSummaries.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutoryLeavesSummaries.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeave.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeave.php
index 2ae706e..60aac11 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeave.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeave.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeaveObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeaveObject.php
index 9f1688b..9294a57 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeaveObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeaveObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeaves.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeaves.php
index d034023..b35304d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeaves.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeStatutorySickLeaves.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeTax.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeTax.php
index 3c278af..c0a40b9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeTax.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeTax.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeTaxObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeTaxObject.php
index 5fbaf71..c0a8201 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeTaxObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmployeeTaxObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employees.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employees.php
index e6cf3bd..9da93b3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employees.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employees.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employment.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employment.php
index 4192d18..a47482b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employment.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Employment.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmploymentObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmploymentObject.php
index 5589b92..afbed64 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmploymentObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/EmploymentObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/InvalidField.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/InvalidField.php
index 280dde9..af743b6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/InvalidField.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/InvalidField.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveAccrualLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveAccrualLine.php
index e6892b5..1e1de3d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveAccrualLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveAccrualLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveEarningsLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveEarningsLine.php
index 925b42a..fe0c1ad 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveEarningsLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveEarningsLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeavePeriod.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeavePeriod.php
index 8b1d9e3..338dafe 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeavePeriod.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeavePeriod.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeavePeriods.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeavePeriods.php
index a34c355..2aed640 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeavePeriods.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeavePeriods.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveType.php
index 84ca160..b5c8379 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveTypeObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveTypeObject.php
index 28f6eb9..b4d59c8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveTypeObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveTypeObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveTypes.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveTypes.php
index ca2270b..18fc2a2 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveTypes.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/LeaveTypes.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ModelInterface.php
index e908870..db2db1d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Pagination.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Pagination.php
index 00c11e0..64ec5cc 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Pagination.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Pagination.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRun.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRun.php
index 52572b5..3d72bf9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRun.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRun.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendar.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendar.php
index e1370fa..ad3a19e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendar.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendar.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendarObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendarObject.php
index 82dc359..4d9ea5e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendarObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendarObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendars.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendars.php
index cf1d10f..dab957e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendars.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunCalendars.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunObject.php
index 4165c84..20e2735 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRunObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRuns.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRuns.php
index 650edb4..45f46ca 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRuns.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayRuns.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentLine.php
index ca59559..669f15c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentMethod.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentMethod.php
index bd8b8b3..e8be01a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentMethod.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentMethod.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentMethodObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentMethodObject.php
index bc90295..9f4f212 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentMethodObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PaymentMethodObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Payslip.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Payslip.php
index b59c7d8..c359808 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Payslip.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Payslip.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayslipObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayslipObject.php
index a5a856b..d7f2937 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayslipObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/PayslipObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Payslips.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Payslips.php
index 71ca7b6..d02941b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Payslips.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Payslips.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Problem.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Problem.php
index f022c96..27eff00 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Problem.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Problem.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Reimbursement.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Reimbursement.php
index 35d9bb4..dcd1de4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Reimbursement.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Reimbursement.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ReimbursementLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ReimbursementLine.php
index 9a834b9..102547d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ReimbursementLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ReimbursementLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ReimbursementObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ReimbursementObject.php
index a709b9e..446adde 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ReimbursementObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/ReimbursementObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Reimbursements.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Reimbursements.php
index daf4a65..b1f41d4 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Reimbursements.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Reimbursements.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWage.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWage.php
index d35a035..50bc483 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWage.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWage.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWageObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWageObject.php
index 34f7879..a99a487 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWageObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWageObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWages.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWages.php
index 13d59dd..9cebe0a 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWages.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/SalaryAndWages.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Settings.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Settings.php
index d4d9cc8..d7c618f 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Settings.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Settings.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/StatutoryDeduction.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/StatutoryDeduction.php
index f64242c..1b07dc0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/StatutoryDeduction.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/StatutoryDeduction.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/StatutoryDeductionCategory.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/StatutoryDeductionCategory.php
index 86be19c..4646eaa 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/StatutoryDeductionCategory.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/StatutoryDeductionCategory.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TaxLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TaxLine.php
index 09077c5..9f258ee 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TaxLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TaxLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Timesheet.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Timesheet.php
index 2a44a4d..9ff8316 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Timesheet.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Timesheet.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetEarningsLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetEarningsLine.php
index 8ceba10..f8dbe22 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetEarningsLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetEarningsLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetLine.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetLine.php
index 6e2519b..6af75b5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetLine.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetLine.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetLineObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetLineObject.php
index c9e87b4..8af78f3 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetLineObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetLineObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetObject.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetObject.php
index 6179815..589c856 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetObject.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TimesheetObject.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Timesheets.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Timesheets.php
index eff5e95..deca716 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Timesheets.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/Timesheets.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TrackingCategories.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TrackingCategories.php
index 9a1b71a..949591c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TrackingCategories.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TrackingCategories.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TrackingCategory.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TrackingCategory.php
index 64c1a40..799a9c0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TrackingCategory.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/PayrollUk/TrackingCategory.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Amount.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Amount.php
index be97dce..b2a54e5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Amount.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Amount.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ChargeType.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ChargeType.php
index bdfb617..9a2693b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ChargeType.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ChargeType.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/CurrencyCode.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/CurrencyCode.php
index 0166200..b1f0ca5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/CurrencyCode.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/CurrencyCode.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Error.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Error.php
index c57419a..048079c 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Error.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Error.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ModelInterface.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ModelInterface.php
index 8eee231..89fa0af 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ModelInterface.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ModelInterface.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Pagination.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Pagination.php
index 3c8d11f..44a13c1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Pagination.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Pagination.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Project.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Project.php
index 8a7cdf8..adefa6e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Project.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Project.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectCreateOrUpdate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectCreateOrUpdate.php
index 911c5ed..f2dc345 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectCreateOrUpdate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectCreateOrUpdate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectPatch.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectPatch.php
index 375c5ba..d72d7a5 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectPatch.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectPatch.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectStatus.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectStatus.php
index 240092d..3bb349e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectStatus.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectStatus.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectUser.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectUser.php
index 7aeea76..2878af6 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectUser.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectUser.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectUsers.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectUsers.php
index dde269c..5022b00 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectUsers.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/ProjectUsers.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Projects.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Projects.php
index de0067b..d404a2e 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Projects.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Projects.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Task.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Task.php
index c9f859d..088f952 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Task.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Task.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TaskCreateOrUpdate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TaskCreateOrUpdate.php
index 1c69b4b..377b0d1 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TaskCreateOrUpdate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TaskCreateOrUpdate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Tasks.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Tasks.php
index 1452820..91b20ec 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Tasks.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/Tasks.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntries.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntries.php
index 11669d6..1292d4b 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntries.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntries.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntry.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntry.php
index 3151c1e..1532dd2 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntry.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntry.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntryCreateOrUpdate.php b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntryCreateOrUpdate.php
index 6cef72c..3e95e5d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntryCreateOrUpdate.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/Models/Project/TimeEntryCreateOrUpdate.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollAuObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollAuObjectSerializer.php
index 24343cf..e914db9 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollAuObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollAuObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollNzObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollNzObjectSerializer.php
index 50d457f..540e26d 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollNzObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollNzObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollUkObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollUkObjectSerializer.php
index 9fbf424..8066da8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollUkObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/PayrollUkObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/ProjectObjectSerializer.php b/lib/packages/xeroapi/xero-php-oauth2/lib/ProjectObjectSerializer.php
index e8ef7da..a41a1e0 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/ProjectObjectSerializer.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/ProjectObjectSerializer.php
@@ -10,7 +10,7 @@
* @link https://openapi-generator.tech
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/lib/packages/xeroapi/xero-php-oauth2/lib/StringUtil.php b/lib/packages/xeroapi/xero-php-oauth2/lib/StringUtil.php
index 033b06d..7d549b8 100644
--- a/lib/packages/xeroapi/xero-php-oauth2/lib/StringUtil.php
+++ b/lib/packages/xeroapi/xero-php-oauth2/lib/StringUtil.php
@@ -9,7 +9,7 @@
* @link
*
* @license MIT
- * Modified by woocommerce on 22-July-2024 using Strauss.
+ * Modified by woocommerce on 19-August-2024 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
diff --git a/woocommerce-xero.php b/woocommerce-xero.php
index ac5ee3c..d5fdd33 100644
--- a/woocommerce-xero.php
+++ b/woocommerce-xero.php
@@ -6,15 +6,15 @@
* Description: Integrates WooCommerce with the Xero accounting software.
* Author: WooCommerce
* Author URI: https://woocommerce.com/
- * Version: 1.8.8
+ * Version: 1.8.9
* Text Domain: woocommerce-xero
* Domain Path: /languages/
* Requires at least: 6.4
* Tested up to: 6.6
* Requires PHP: 7.4
* PHP tested up to: 8.3
- * WC tested up to: 9.1
- * WC requires at least: 8.9
+ * WC tested up to: 9.2
+ * WC requires at least: 9.0
*
* Copyright 2019 WooCommerce
*
@@ -43,7 +43,7 @@
define( 'WC_XERO_ABSURL', plugin_dir_url( __FILE__ ) . '/' );
}
-define( 'WC_XERO_VERSION', '1.8.8' ); // WRCS: DEFINED_VERSION.
+define( 'WC_XERO_VERSION', '1.8.9' ); // WRCS: DEFINED_VERSION.
// ActionScheduler group.
define( 'WC_XERO_AS_GROUP', 'wc_xero' );