Skip to content

Commit 9e954e4

Browse files
committed
update to OAS 2.35
1 parent abc7dec commit 9e954e4

File tree

24 files changed

+367
-46
lines changed

24 files changed

+367
-46
lines changed

docs/v4/accounting/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6070,7 +6070,7 @@
60706070
<nav id="scrollingNav">
60716071
<ul class="sidenav nav nav-list">
60726072
<li class="nav-header" data-group="Accounting"><strong>SDK: </strong><span id='sdk-name'></span></li>
6073-
<li class="nav-header" data-group="Accounting"><strong>VSN: </strong>4.24.1</li>
6073+
<li class="nav-header" data-group="Accounting"><strong>VSN: </strong>4.25.0</li>
60746074
<li class="nav-header" data-group="Accounting"><a href="#api-Accounting">Methods</a></li>
60756075
<li data-group="Accounting" data-name="createAccount" class="">
60766076
<a href="#api-Accounting-createAccount">createAccount</a>

docs/v4/appstore/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@
12371237
<nav id="scrollingNav">
12381238
<ul class="sidenav nav nav-list">
12391239
<li class="nav-header" data-group="AppStore"><strong>SDK: </strong><span id='sdk-name'></span></li>
1240-
<li class="nav-header" data-group="AppStore"><strong>VSN: </strong>4.24.1</li>
1240+
<li class="nav-header" data-group="AppStore"><strong>VSN: </strong>4.25.0</li>
12411241
<li class="nav-header" data-group="AppStore"><a href="#api-AppStore">Methods</a></li>
12421242
<li data-group="AppStore" data-name="getSubscription" class="">
12431243
<a href="#api-AppStore-getSubscription">getSubscription</a>

docs/v4/assets/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@
13881388
<nav id="scrollingNav">
13891389
<ul class="sidenav nav nav-list">
13901390
<li class="nav-header" data-group="Asset"><strong>SDK: </strong><span id='sdk-name'></span></li>
1391-
<li class="nav-header" data-group="Asset"><strong>VSN: </strong>4.24.1</li>
1391+
<li class="nav-header" data-group="Asset"><strong>VSN: </strong>4.25.0</li>
13921392
<li class="nav-header" data-group="Asset"><a href="#api-Asset">Methods</a></li>
13931393
<li data-group="Asset" data-name="createAsset" class="">
13941394
<a href="#api-Asset-createAsset">createAsset</a>

docs/v4/files/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@
11291129
<nav id="scrollingNav">
11301130
<ul class="sidenav nav nav-list">
11311131
<li class="nav-header" data-group="Files"><strong>SDK: </strong><span id='sdk-name'></span></li>
1132-
<li class="nav-header" data-group="Files"><strong>VSN: </strong>4.24.1</li>
1132+
<li class="nav-header" data-group="Files"><strong>VSN: </strong>4.25.0</li>
11331133
<li class="nav-header" data-group="Files"><a href="#api-Files">Methods</a></li>
11341134
<li data-group="Files" data-name="createFileAssociation" class="">
11351135
<a href="#api-Files-createFileAssociation">createFileAssociation</a>

docs/v4/finance/index.html

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2159,6 +2159,10 @@
21592159
"description" : "Date of when statement line was posted",
21602160
"format" : "date"
21612161
},
2162+
"payee" : {
2163+
"type" : "string",
2164+
"description" : "Payee description of statement line"
2165+
},
21622166
"reference" : {
21632167
"type" : "string",
21642168
"description" : "Reference description of statement line"
@@ -2347,13 +2351,25 @@
23472351
},
23482352
"startBalance" : {
23492353
"type" : "number",
2350-
"description" : "Opening balance sourced from imported bank statements (if supplied). Note, for manually uploaded statements, this balance is also manual and usually not supplied.",
2354+
"description" : "Opening balance sourced from imported bank statements (if supplied). Note, for manually uploaded statements, this balance is also manual and usually not supplied. Where not supplied, the value will be 0.",
23512355
"format" : "double",
23522356
"x-is-money" : true
23532357
},
23542358
"endBalance" : {
23552359
"type" : "number",
2356-
"description" : "Closing balance sourced from imported bank statements (if supplied). Note, for manually uploaded statements, this balance is also manual and usually not supplied.",
2360+
"description" : "Closing balance sourced from imported bank statements (if supplied). Note, for manually uploaded statements, this balance is also manual and usually not supplied. Where not supplied, the value will be 0.",
2361+
"format" : "double",
2362+
"x-is-money" : true
2363+
},
2364+
"indicativeStartBalance" : {
2365+
"type" : "number",
2366+
"description" : "Opening statement balance calculated in Xero (= bank account conversion balance plus sum of imported bank statement lines). Note: If indicative statement balance doesn't match imported statement balance for the same date, either the conversion (opening at inception) balance in Xero is wrong or there's an error in the bank statement lines in Xero. Ref: https://central.xero.com/s/article/Compare-the-statement-balance-in-Xero-to-your-actual-bank-balance?userregion=true\n",
2367+
"format" : "double",
2368+
"x-is-money" : true
2369+
},
2370+
"indicativeEndBalance" : {
2371+
"type" : "number",
2372+
"description" : "Closing statement balance calculated in Xero (= bank account conversion balance plus sum of imported bank statement lines). Note: If indicative statement balance doesn't match imported statement balance for the same date, either the conversion (opening at inception) balance in Xero is wrong or there's an error in the bank statement lines in Xero. Ref: https://central.xero.com/s/article/Compare-the-statement-balance-in-Xero-to-your-actual-bank-balance?userregion=true \n",
23572373
"format" : "double",
23582374
"x-is-money" : true
23592375
},
@@ -2714,7 +2730,7 @@
27142730
<nav id="scrollingNav">
27152731
<ul class="sidenav nav nav-list">
27162732
<li class="nav-header" data-group="Finance"><strong>SDK: </strong><span id='sdk-name'></span></li>
2717-
<li class="nav-header" data-group="Finance"><strong>VSN: </strong>4.24.1</li>
2733+
<li class="nav-header" data-group="Finance"><strong>VSN: </strong>4.25.0</li>
27182734
<li class="nav-header" data-group="Finance"><a href="#api-Finance">Methods</a></li>
27192735
<li data-group="Finance" data-name="getAccountingActivityAccountUsage" class="">
27202736
<a href="#api-Finance-getAccountingActivityAccountUsage">getAccountingActivityAccountUsage</a>

docs/v4/payroll-au/index.html

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,6 +1180,16 @@
11801180
"description" : "Boolean to determine if the earnings rate is reportable or exempt from W1",
11811181
"example" : false
11821182
},
1183+
"AllowanceContributesToAnnualLeaveRate" : {
1184+
"type" : "boolean",
1185+
"description" : "Boolean to determine if the allowance earnings rate contributes towards annual leave rate. Only applicable if EarningsType is ALLOWANCE and RateType is RATEPERUNIT",
1186+
"example" : false
1187+
},
1188+
"AllowanceContributesToOvertimeRate" : {
1189+
"type" : "boolean",
1190+
"description" : "Boolean to determine if the allowance earnings rate contributes towards overtime allowance rate. Only applicable if EarningsType is ALLOWANCE and RateType is RATEPERUNIT",
1191+
"example" : false
1192+
},
11831193
"EarningsType" : {
11841194
"$ref" : "#/components/schemas/EarningsType"
11851195
},
@@ -3343,7 +3353,7 @@
33433353
<nav id="scrollingNav">
33443354
<ul class="sidenav nav nav-list">
33453355
<li class="nav-header" data-group="PayrollAu"><strong>SDK: </strong><span id='sdk-name'></span></li>
3346-
<li class="nav-header" data-group="PayrollAu"><strong>VSN: </strong>4.24.1</li>
3356+
<li class="nav-header" data-group="PayrollAu"><strong>VSN: </strong>4.25.0</li>
33473357
<li class="nav-header" data-group="PayrollAu"><a href="#api-PayrollAu">Methods</a></li>
33483358
<li data-group="PayrollAu" data-name="createEmployee" class="">
33493359
<a href="#api-PayrollAu-createEmployee">createEmployee</a>
@@ -3893,7 +3903,7 @@ <h2>Parameters</h2>
38933903
"schema" : {
38943904
"$ref" : "#/components/schemas/PayItem"
38953905
},
3896-
"example" : "{ \"EarningsRates\": [ { \"Name\": \"MyRate\", \"AccountCode\": \"400\", \"TypeOfUnits\": \"4.00\", \"IsExemptFromTax\": true, \"IsExemptFromSuper\": true, \"IsReportableAsW1\": false, \"EarningsType\": \"ORDINARYTIMEEARNINGS\", \"EarningsRateID\": \"1fa4e226-b711-46ba-a8a7-4344c9c5fb87\", \"RateType\": \"MULTIPLE\", \"RatePerUnit\": \"10.0\", \"Multiplier\": 1.5, \"Amount\": 5, \"EmploymentTerminationPaymentType\": \"O\" } ] }"
3906+
"example" : "{ \"EarningsRates\": [ { \"Name\": \"MyRate\", \"AccountCode\": \"400\", \"TypeOfUnits\": \"4.00\", \"IsExemptFromTax\": true, \"IsExemptFromSuper\": true, \"IsReportableAsW1\": false, \"AllowanceContributesToAnnualLeaveRate\": false, \"AllowanceContributesToOvertimeRate\": false, \"EarningsType\": \"ORDINARYTIMEEARNINGS\", \"EarningsRateID\": \"1fa4e226-b711-46ba-a8a7-4344c9c5fb87\", \"RateType\": \"MULTIPLE\", \"RatePerUnit\": \"10.0\", \"Multiplier\": 1.5, \"Amount\": 5, \"EmploymentTerminationPaymentType\": \"O\" } ] }"
38973907
}
38983908
},
38993909
"required" : true

docs/v4/payroll-nz/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3834,7 +3834,7 @@
38343834
<nav id="scrollingNav">
38353835
<ul class="sidenav nav nav-list">
38363836
<li class="nav-header" data-group="PayrollNz"><strong>SDK: </strong><span id='sdk-name'></span></li>
3837-
<li class="nav-header" data-group="PayrollNz"><strong>VSN: </strong>4.24.1</li>
3837+
<li class="nav-header" data-group="PayrollNz"><strong>VSN: </strong>4.25.0</li>
38383838
<li class="nav-header" data-group="PayrollNz"><a href="#api-PayrollNz">Methods</a></li>
38393839
<li data-group="PayrollNz" data-name="approveTimesheet" class="">
38403840
<a href="#api-PayrollNz-approveTimesheet">approveTimesheet</a>

docs/v4/payroll-uk/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@
13791379
"earningsType" : {
13801380
"type" : "string",
13811381
"description" : "Indicates how an employee will be paid when taking this type of earning",
1382-
"enum" : [ "Allowance", "Backpay", "Bonus", "Commission", "LumpSum", "OtherEarnings", "OvertimeEarnings", "RegularEarnings", "StatutoryAdoptionPay", "StatutoryAdoptionPayNonPensionable", "StatutoryBereavementPay", "StatutoryMaternityPay", "StatutoryMaternityPayNonPensionable", "StatutoryPaternityPay", "StatutoryPaternityPayNonPensionable", "StatutoryParentalBereavementPayNonPensionable", "StatutorySharedParentalPay", "StatutorySharedParentalPayNonPensionable", "StatutorySickPay", "StatutorySickPayNonPensionable", "TipsNonDirect", "TipsDirect", "TerminationPay" ]
1382+
"enum" : [ "Allowance", "BackPay", "Bonus", "Commission", "LumpSum", "OtherEarnings", "OvertimeEarnings", "RegularEarnings", "StatutoryAdoptionPay", "StatutoryAdoptionPayNonPensionable", "StatutoryBereavementPay", "StatutoryMaternityPay", "StatutoryMaternityPayNonPensionable", "StatutoryPaternityPay", "StatutoryPaternityPayNonPensionable", "StatutoryParentalBereavementPayNonPensionable", "StatutorySharedParentalPay", "StatutorySharedParentalPayNonPensionable", "StatutorySickPay", "StatutorySickPayNonPensionable", "TipsNonDirect", "TipsDirect", "TerminationPay" ]
13831383
},
13841384
"rateType" : {
13851385
"type" : "string",
@@ -3506,7 +3506,7 @@
35063506
<nav id="scrollingNav">
35073507
<ul class="sidenav nav nav-list">
35083508
<li class="nav-header" data-group="PayrollUk"><strong>SDK: </strong><span id='sdk-name'></span></li>
3509-
<li class="nav-header" data-group="PayrollUk"><strong>VSN: </strong>4.24.1</li>
3509+
<li class="nav-header" data-group="PayrollUk"><strong>VSN: </strong>4.25.0</li>
35103510
<li class="nav-header" data-group="PayrollUk"><a href="#api-PayrollUk">Methods</a></li>
35113511
<li data-group="PayrollUk" data-name="approveTimesheet" class="">
35123512
<a href="#api-PayrollUk-approveTimesheet">approveTimesheet</a>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>xero-java</artifactId>
66
<packaging>jar</packaging>
77
<name>xero-java</name>
8-
<version>4.24.1</version>
8+
<version>4.25.0</version>
99
<url>https://github.com/XeroAPI/Xero-Java</url>
1010
<description>This is the official Java SDK for Xero API</description>
1111
<licenses>

src/main/java/com/xero/api/client/AccountingApi.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Xero Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.33.1
5+
* The version of the OpenAPI document: 2.35.0
66
* Contact: api@xero.com
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -100,7 +100,7 @@ public class AccountingApi {
100100
private ApiClient apiClient;
101101
private static AccountingApi instance = null;
102102
private String userAgent = "Default";
103-
private String version = "4.24.1";
103+
private String version = "4.25.0";
104104
static final Logger logger = LoggerFactory.getLogger(AccountingApi.class);
105105

106106
/** AccountingApi */

0 commit comments

Comments
 (0)