Skip to content

Commit 334b26e

Browse files
Build for version - 11.0.0 (#414)
Build for version - 11.0.0 (#414)
1 parent f53bb5f commit 334b26e

File tree

24 files changed

+123
-51
lines changed

24 files changed

+123
-51
lines changed

docs/v4/accounting/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6218,7 +6218,7 @@
62186218
"OrganisationRole" : {
62196219
"type" : "string",
62206220
"description" : "User role that defines permissions in Xero and via API (READONLY, INVOICEONLY, STANDARD, FINANCIALADVISER, etc)",
6221-
"enum" : [ "READONLY", "INVOICEONLY", "STANDARD", "FINANCIALADVISER", "MANAGEDCLIENT", "CASHBOOKCLIENT", "UNKNOWN" ]
6221+
"enum" : [ "READONLY", "INVOICEONLY", "STANDARD", "FINANCIALADVISER", "MANAGEDCLIENT", "CASHBOOKCLIENT", "UNKNOWN", "REMOVED" ]
62226222
}
62236223
},
62246224
"description" : "",
@@ -6335,7 +6335,7 @@
63356335
<nav id="scrollingNav">
63366336
<ul class="sidenav nav nav-list">
63376337
<li class="nav-header" data-group="Accounting"><strong>SDK: </strong><span id='sdk-name'></span></li>
6338-
<li class="nav-header" data-group="Accounting"><strong>VSN: </strong>10.2.0</li>
6338+
<li class="nav-header" data-group="Accounting"><strong>VSN: </strong>11.0.0</li>
63396339
<li class="nav-header" data-group="Accounting"><a href="#api-Accounting">Methods</a></li>
63406340
<li data-group="Accounting" data-name="createAccount" class="">
63416341
<a href="#api-Accounting-createAccount">createAccount</a>

docs/v4/appstore/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -974,8 +974,8 @@
974974
},
975975
"type" : {
976976
"type" : "string",
977-
"description" : "The pricing model of the product:\n* FIXED: Customers are charged a fixed amount for each billing period\n* PER_SEAT: Customers are charged based on the number of units they purchase\n* METERED: Customers are charged per use of this product\n",
978-
"enum" : [ "FIXED", "PER_SEAT", "METERED" ]
977+
"description" : "The pricing model of the product:\n* FIXED: Customers are charged a fixed amount for each billing period\n* PER_SEAT: Customers are charged based on the number of units they purchase\n* METERED: Customers are charged per use of this product\n* SIMPLE: Customers are charged on a fixed amount for each billing period with an optional add-on feature\n",
978+
"enum" : [ "FIXED", "PER_SEAT", "METERED", "SIMPLE" ]
979979
},
980980
"usageUnit" : {
981981
"type" : "string",
@@ -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>10.2.0</li>
1240+
<li class="nav-header" data-group="AppStore"><strong>VSN: </strong>11.0.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>10.2.0</li>
1391+
<li class="nav-header" data-group="Asset"><strong>VSN: </strong>11.0.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: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@
11441144
<nav id="scrollingNav">
11451145
<ul class="sidenav nav nav-list">
11461146
<li class="nav-header" data-group="Files"><strong>SDK: </strong><span id='sdk-name'></span></li>
1147-
<li class="nav-header" data-group="Files"><strong>VSN: </strong>10.2.0</li>
1147+
<li class="nav-header" data-group="Files"><strong>VSN: </strong>11.0.0</li>
11481148
<li class="nav-header" data-group="Files"><a href="#api-Files">Methods</a></li>
11491149
<li data-group="Files" data-name="createFileAssociation" class="">
11501150
<a href="#api-Files-createFileAssociation">createFileAssociation</a>
@@ -2746,10 +2746,11 @@ <h3>Usage and SDK Samples</h3>
27462746
String xeroTenantId = 'YOUR_XERO_TENANT_ID';
27472747
Integer pagesize = 50;
27482748
Integer page = 2;
2749-
String sort = 'CreatedDateUTC DESC';
2749+
String sort = 'CreatedDateUTC';
2750+
String direction = 'ASC';
27502751

27512752
try {
2752-
Files result = apiInstance.getFiles(accessToken, xeroTenantId, pagesize, page, sort);
2753+
Files result = apiInstance.getFiles(accessToken, xeroTenantId, pagesize, page, sort, direction);
27532754
System.out.println(result);
27542755
} catch (XeroException e) {
27552756
System.err.println("Exception when calling FilesApi#getFiles");
@@ -2868,6 +2869,26 @@ <h2>Parameters</h2>
28682869
</div>
28692870
</div>
28702871
</td>
2872+
</tr>
2873+
2874+
<tr><td style="width:150px;">direction</td>
2875+
<td>
2876+
2877+
2878+
<div id="d2e199_getFiles_direction">
2879+
<div class="json-schema-view">
2880+
<div class="primitive">
2881+
<span class="type">
2882+
String
2883+
</span>
2884+
2885+
<div class="inner description marked">
2886+
sort direction
2887+
</div>
2888+
</div>
2889+
</div>
2890+
</div>
2891+
</td>
28712892
</tr>
28722893

28732894
</table>

docs/v4/finance/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2712,7 +2712,7 @@
27122712
<nav id="scrollingNav">
27132713
<ul class="sidenav nav nav-list">
27142714
<li class="nav-header" data-group="Finance"><strong>SDK: </strong><span id='sdk-name'></span></li>
2715-
<li class="nav-header" data-group="Finance"><strong>VSN: </strong>10.2.0</li>
2715+
<li class="nav-header" data-group="Finance"><strong>VSN: </strong>11.0.0</li>
27162716
<li class="nav-header" data-group="Finance"><a href="#api-Finance">Methods</a></li>
27172717
<li data-group="Finance" data-name="getAccountingActivityAccountUsage" class="">
27182718
<a href="#api-Finance-getAccountingActivityAccountUsage">getAccountingActivityAccountUsage</a>

docs/v4/payroll-au/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3411,7 +3411,7 @@
34113411
<nav id="scrollingNav">
34123412
<ul class="sidenav nav nav-list">
34133413
<li class="nav-header" data-group="PayrollAu"><strong>SDK: </strong><span id='sdk-name'></span></li>
3414-
<li class="nav-header" data-group="PayrollAu"><strong>VSN: </strong>10.2.0</li>
3414+
<li class="nav-header" data-group="PayrollAu"><strong>VSN: </strong>11.0.0</li>
34153415
<li class="nav-header" data-group="PayrollAu"><a href="#api-PayrollAu">Methods</a></li>
34163416
<li data-group="PayrollAu" data-name="approveLeaveApplication" class="">
34173417
<a href="#api-PayrollAu-approveLeaveApplication">approveLeaveApplication</a>

docs/v4/payroll-nz/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4083,7 +4083,7 @@
40834083
<nav id="scrollingNav">
40844084
<ul class="sidenav nav nav-list">
40854085
<li class="nav-header" data-group="PayrollNz"><strong>SDK: </strong><span id='sdk-name'></span></li>
4086-
<li class="nav-header" data-group="PayrollNz"><strong>VSN: </strong>10.2.0</li>
4086+
<li class="nav-header" data-group="PayrollNz"><strong>VSN: </strong>11.0.0</li>
40874087
<li class="nav-header" data-group="PayrollNz"><a href="#api-PayrollNz">Methods</a></li>
40884088
<li data-group="PayrollNz" data-name="approveTimesheet" class="">
40894089
<a href="#api-PayrollNz-approveTimesheet">approveTimesheet</a>

docs/v4/payroll-uk/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1952,7 +1952,7 @@
19521952
"leaveType" : {
19531953
"type" : "string",
19541954
"description" : "The type of statutory leave",
1955-
"enum" : [ "Sick", "Adoption", "Maternity", "Paternity", "Sharedparental", "Bereavement" ]
1955+
"enum" : [ "Sick", "Adoption", "Maternity", "Paternity", "Sharedparental", "Bereavement", "NeonatalCare" ]
19561956
},
19571957
"balanceRemaining" : {
19581958
"type" : "number",
@@ -2000,7 +2000,7 @@
20002000
"type" : {
20012001
"type" : "string",
20022002
"description" : "The category of statutory leave",
2003-
"enum" : [ "Sick", "Adoption", "Maternity", "Paternity", "Sharedparental", "Bereavement" ]
2003+
"enum" : [ "Sick", "Adoption", "Maternity", "Paternity", "Sharedparental", "Bereavement", "NeonatalCare" ]
20042004
},
20052005
"startDate" : {
20062006
"type" : "string",
@@ -3596,7 +3596,7 @@
35963596
<nav id="scrollingNav">
35973597
<ul class="sidenav nav nav-list">
35983598
<li class="nav-header" data-group="PayrollUk"><strong>SDK: </strong><span id='sdk-name'></span></li>
3599-
<li class="nav-header" data-group="PayrollUk"><strong>VSN: </strong>10.2.0</li>
3599+
<li class="nav-header" data-group="PayrollUk"><strong>VSN: </strong>11.0.0</li>
36003600
<li class="nav-header" data-group="PayrollUk"><a href="#api-PayrollUk">Methods</a></li>
36013601
<li data-group="PayrollUk" data-name="approveTimesheet" class="">
36023602
<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>10.2.0</version>
8+
<version>11.0.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: 8.2.0
5+
* The version of the OpenAPI document: 8.3.0
66
* Contact: api@xero.com
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -102,7 +102,7 @@ public class AccountingApi {
102102
private ApiClient apiClient;
103103
private static AccountingApi instance = null;
104104
private String userAgent = "Default";
105-
private String version = "10.2.0";
105+
private String version = "11.0.0";
106106
static final Logger logger = LoggerFactory.getLogger(AccountingApi.class);
107107

108108
/** AccountingApi */

0 commit comments

Comments
 (0)