From cdb9914d8cd531a3ef438bfa483b6fdd8556193f Mon Sep 17 00:00:00 2001 From: Github Actions Date: Mon, 10 Aug 2026 00:14:06 +0000 Subject: [PATCH] Releasing 15.1.0 (OAS: 16.2.0) --- docs/v1/accounting/index.html | 133 ++++++++++++++++-- docs/v1/appstore/index.html | 2 +- docs/v1/assets/index.html | 2 +- docs/v1/files/index.html | 2 +- docs/v1/finance/index.html | 2 +- docs/v1/payroll-au-v2/index.html | 2 +- docs/v1/payroll-au/index.html | 2 +- docs/v1/payroll-nz/index.html | 2 +- docs/v1/payroll-uk/index.html | 2 +- docs/v1/projects/index.html | 2 +- setup.py | 2 +- xero_python/__init__.py | 2 +- xero_python/accounting/api/accounting_api.py | 34 ++++- xero_python/accounting/docs/AccountingApi.md | 34 +++-- xero_python/accounting/docs/Item.md | 4 +- xero_python/accounting/models/item.py | 62 +++++++- xero_python/appstore/api/app_store_api.py | 2 +- xero_python/assets/api/asset_api.py | 2 +- xero_python/docs/README.md | 4 +- xero_python/file/api/files_api.py | 2 +- xero_python/finance/api/finance_api.py | 2 +- xero_python/identity/api/identity_api.py | 2 +- xero_python/payrollau/api/payroll_au_api.py | 2 +- .../payrollauv2/api/payroll_au_v2_api.py | 2 +- xero_python/payrollnz/api/payroll_nz_api.py | 2 +- xero_python/payrolluk/api/payroll_uk_api.py | 2 +- xero_python/project/api/project_api.py | 2 +- 27 files changed, 264 insertions(+), 49 deletions(-) diff --git a/docs/v1/accounting/index.html b/docs/v1/accounting/index.html index 534b424a..dae37327 100644 --- a/docs/v1/accounting/index.html +++ b/docs/v1/accounting/index.html @@ -3519,10 +3519,22 @@ }, "QuantityOnHand" : { "type" : "number", - "description" : "The quantity of the item on hand", + "description" : "The quantity of the item on hand. This will be 0 if `QuantityOnBackOrder` is greater than 0.", "format" : "double", "x-is-money" : true }, + "QuantityAvailable" : { + "type" : "number", + "description" : "The quantity of the item available. This is equal to `QuantityOnHand` - `QuantityOnBackOrder`. This value will be negative if `QuantityOnBackOrder` is greater than 0.", + "format" : "double", + "readOnly" : true + }, + "QuantityOnBackOrder" : { + "type" : "number", + "description" : "The quantity of the item on backorder. This will be 0 if `QuantityOnHand` is greater than 0.", + "format" : "double", + "readOnly" : true + }, "UpdatedDateUTC" : { "type" : "string", "description" : "Last modified date in UTC format", @@ -6494,7 +6506,7 @@