From 5b1689f57c7249d38c81ebcf4b5e37bc194b7705 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Mon, 10 Aug 2026 00:13:48 +0000 Subject: [PATCH 1/3] Releasing 18.1.0 (OAS: 16.2.0) --- docs/v4/accounting/index.html | 133 +++++++++++- docs/v4/appstore/index.html | 2 +- docs/v4/assets/index.html | 2 +- docs/v4/files/index.html | 2 +- docs/v4/finance/index.html | 2 +- docs/v4/payroll-au-v2/index.html | 2 +- docs/v4/payroll-au/index.html | 2 +- docs/v4/payroll-nz/index.html | 2 +- docs/v4/payroll-uk/index.html | 2 +- pom.xml | 2 +- .../com/xero/api/client/AccountingApi.java | 197 ++++++++++++++++-- .../java/com/xero/api/client/AppStoreApi.java | 4 +- .../java/com/xero/api/client/AssetApi.java | 4 +- .../com/xero/api/client/BankFeedsApi.java | 4 +- .../java/com/xero/api/client/FilesApi.java | 4 +- .../java/com/xero/api/client/FinanceApi.java | 4 +- .../java/com/xero/api/client/IdentityApi.java | 4 +- .../com/xero/api/client/PayrollAuApi.java | 4 +- .../com/xero/api/client/PayrollAuV2Api.java | 4 +- .../com/xero/api/client/PayrollNzApi.java | 4 +- .../com/xero/api/client/PayrollUkApi.java | 4 +- .../java/com/xero/api/client/ProjectApi.java | 4 +- .../java/com/xero/models/accounting/Item.java | 74 ++++++- 23 files changed, 403 insertions(+), 63 deletions(-) diff --git a/docs/v4/accounting/index.html b/docs/v4/accounting/index.html index 6e1757f6..ae0a5189 100644 --- a/docs/v4/accounting/index.html +++ b/docs/v4/accounting/index.html @@ -3517,10 +3517,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", @@ -6490,7 +6502,7 @@