Skip to content

Commit b8a3b1e

Browse files
committed
Feature/test pipeline creation (#351)
* ECOOI-6890 Fix Vulnerable Packages in Dotnet SDK * use test project * trigger pipeline * trigger build * minor changes to trigger all pipelines
1 parent 149dfb2 commit b8a3b1e

File tree

547 files changed

+113745
-125431
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

547 files changed

+113745
-125431
lines changed

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

+25,305-33,428
Large diffs are not rendered by default.

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

+380-491
Large diffs are not rendered by default.

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

+678-813
Large diffs are not rendered by default.

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

+729-915
Large diffs are not rendered by default.

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

+1,703-2,086
Large diffs are not rendered by default.

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

+1,440-1,854
Large diffs are not rendered by default.

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

+227-248
Large diffs are not rendered by default.

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

+3,132-3,918
Large diffs are not rendered by default.

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

+6,380-8,231
Large diffs are not rendered by default.

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

+6,273-8,040
Large diffs are not rendered by default.

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

+1,853-2,331
Large diffs are not rendered by default.

src/main/java/com/xero/models/accounting/Account.java

+472-509
Large diffs are not rendered by default.

src/main/java/com/xero/models/accounting/AccountType.java

+96-49
Original file line numberDiff line numberDiff line change
@@ -9,67 +9,115 @@
99
* Do not edit the class manually.
1010
*/
1111

12-
package com.xero.models.accounting;
13-
1412

13+
package com.xero.models.accounting;
14+
import java.util.Objects;
15+
import java.util.Arrays;
16+
import io.swagger.annotations.ApiModel;
17+
import java.io.IOException;
18+
19+
import org.threeten.bp.OffsetDateTime;
20+
import org.threeten.bp.LocalDateTime;
21+
import org.threeten.bp.ZoneId;
22+
import org.threeten.bp.Instant;
23+
import org.threeten.bp.LocalDate;
24+
import com.xero.api.StringUtil;
1525
import com.fasterxml.jackson.annotation.JsonCreator;
1626
import com.fasterxml.jackson.annotation.JsonValue;
1727

18-
/** See Account Types */
28+
/**
29+
* See Account Types
30+
*/
1931
public enum AccountType {
20-
21-
/** BANK */
32+
33+
/**
34+
* BANK
35+
*/
2236
BANK("BANK"),
23-
24-
/** CURRENT */
37+
38+
/**
39+
* CURRENT
40+
*/
2541
CURRENT("CURRENT"),
26-
27-
/** CURRLIAB */
42+
43+
/**
44+
* CURRLIAB
45+
*/
2846
CURRLIAB("CURRLIAB"),
29-
30-
/** DEPRECIATN */
47+
48+
/**
49+
* DEPRECIATN
50+
*/
3151
DEPRECIATN("DEPRECIATN"),
32-
33-
/** DIRECTCOSTS */
52+
53+
/**
54+
* DIRECTCOSTS
55+
*/
3456
DIRECTCOSTS("DIRECTCOSTS"),
35-
36-
/** EQUITY */
57+
58+
/**
59+
* EQUITY
60+
*/
3761
EQUITY("EQUITY"),
38-
39-
/** EXPENSE */
62+
63+
/**
64+
* EXPENSE
65+
*/
4066
EXPENSE("EXPENSE"),
41-
42-
/** FIXED */
67+
68+
/**
69+
* FIXED
70+
*/
4371
FIXED("FIXED"),
44-
45-
/** INVENTORY */
72+
73+
/**
74+
* INVENTORY
75+
*/
4676
INVENTORY("INVENTORY"),
47-
48-
/** LIABILITY */
77+
78+
/**
79+
* LIABILITY
80+
*/
4981
LIABILITY("LIABILITY"),
50-
51-
/** NONCURRENT */
82+
83+
/**
84+
* NONCURRENT
85+
*/
5286
NONCURRENT("NONCURRENT"),
53-
54-
/** OTHERINCOME */
87+
88+
/**
89+
* OTHERINCOME
90+
*/
5591
OTHERINCOME("OTHERINCOME"),
56-
57-
/** OVERHEADS */
92+
93+
/**
94+
* OVERHEADS
95+
*/
5896
OVERHEADS("OVERHEADS"),
59-
60-
/** PREPAYMENT */
97+
98+
/**
99+
* PREPAYMENT
100+
*/
61101
PREPAYMENT("PREPAYMENT"),
62-
63-
/** REVENUE */
102+
103+
/**
104+
* REVENUE
105+
*/
64106
REVENUE("REVENUE"),
65-
66-
/** SALES */
107+
108+
/**
109+
* SALES
110+
*/
67111
SALES("SALES"),
68-
69-
/** TERMLIAB */
112+
113+
/**
114+
* TERMLIAB
115+
*/
70116
TERMLIAB("TERMLIAB"),
71-
72-
/** PAYG */
117+
118+
/**
119+
* PAYG
120+
*/
73121
PAYG("PAYG");
74122

75123
private String value;
@@ -78,26 +126,24 @@ public enum AccountType {
78126
this.value = value;
79127
}
80128

81-
/** @return String value */
129+
/**
130+
* @return String value
131+
*/
82132
@JsonValue
83133
public String getValue() {
84134
return value;
85135
}
86136

87-
/**
88-
* toString
89-
*
90-
* @return String value
91-
*/
137+
/** toString
138+
* @return String value
139+
*/
92140
@Override
93141
public String toString() {
94142
return String.valueOf(value);
95143
}
96144

97-
/**
98-
* fromValue
99-
*
100-
* @param value String
145+
/** fromValue
146+
* @param value String
101147
*/
102148
@JsonCreator
103149
public static AccountType fromValue(String value) {
@@ -109,3 +155,4 @@ public static AccountType fromValue(String value) {
109155
throw new IllegalArgumentException("Unexpected value '" + value + "'");
110156
}
111157
}
158+

src/main/java/com/xero/models/accounting/Accounts.java

+43-24
Original file line numberDiff line numberDiff line change
@@ -9,38 +9,54 @@
99
* Do not edit the class manually.
1010
*/
1111

12-
package com.xero.models.accounting;
1312

13+
package com.xero.models.accounting;
14+
import java.util.Objects;
15+
import java.util.Arrays;
16+
import com.fasterxml.jackson.annotation.JsonInclude;
1417
import com.fasterxml.jackson.annotation.JsonProperty;
15-
import com.xero.api.StringUtil;
18+
import com.fasterxml.jackson.annotation.JsonCreator;
19+
import com.fasterxml.jackson.annotation.JsonTypeName;
20+
import com.fasterxml.jackson.annotation.JsonValue;
21+
import com.xero.models.accounting.Account;
22+
import io.swagger.annotations.ApiModel;
1623
import io.swagger.annotations.ApiModelProperty;
1724
import java.util.ArrayList;
1825
import java.util.List;
19-
import java.util.Objects;
26+
import java.io.IOException;
27+
28+
import org.threeten.bp.OffsetDateTime;
29+
import org.threeten.bp.LocalDateTime;
30+
import org.threeten.bp.ZoneId;
31+
import org.threeten.bp.Instant;
32+
import org.threeten.bp.LocalDate;
33+
import com.xero.api.StringUtil;
34+
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
35+
36+
/**
37+
* Accounts
38+
*/
2039

21-
/** Accounts */
2240
public class Accounts {
2341
StringUtil util = new StringUtil();
2442

2543
@JsonProperty("Accounts")
2644
private List<Account> accounts = new ArrayList<Account>();
2745
/**
28-
* accounts
29-
*
30-
* @param accounts List&lt;Account&gt;
31-
* @return Accounts
32-
*/
46+
* accounts
47+
* @param accounts List&lt;Account&gt;
48+
* @return Accounts
49+
**/
3350
public Accounts accounts(List<Account> accounts) {
3451
this.accounts = accounts;
3552
return this;
3653
}
3754

3855
/**
3956
* accounts
40-
*
41-
* @param accountsItem Account
57+
* @param accountsItem Account
4258
* @return Accounts
43-
*/
59+
**/
4460
public Accounts addAccountsItem(Account accountsItem) {
4561
if (this.accounts == null) {
4662
this.accounts = new ArrayList<Account>();
@@ -49,30 +65,29 @@ public Accounts addAccountsItem(Account accountsItem) {
4965
return this;
5066
}
5167

52-
/**
68+
/**
5369
* Get accounts
54-
*
5570
* @return accounts
56-
*/
71+
**/
5772
@ApiModelProperty(value = "")
58-
/**
73+
/**
5974
* accounts
60-
*
6175
* @return accounts List<Account>
62-
*/
76+
**/
6377
public List<Account> getAccounts() {
6478
return accounts;
6579
}
6680

67-
/**
68-
* accounts
69-
*
70-
* @param accounts List&lt;Account&gt;
71-
*/
81+
/**
82+
* accounts
83+
* @param accounts List&lt;Account&gt;
84+
**/
85+
7286
public void setAccounts(List<Account> accounts) {
7387
this.accounts = accounts;
7488
}
7589

90+
7691
@Override
7792
public boolean equals(java.lang.Object o) {
7893
if (this == o) {
@@ -90,6 +105,7 @@ public int hashCode() {
90105
return Objects.hash(accounts);
91106
}
92107

108+
93109
@Override
94110
public String toString() {
95111
StringBuilder sb = new StringBuilder();
@@ -100,12 +116,15 @@ public String toString() {
100116
}
101117

102118
/**
103-
* Convert the given object to string with each line indented by 4 spaces (except the first line).
119+
* Convert the given object to string with each line indented by 4 spaces
120+
* (except the first line).
104121
*/
105122
private String toIndentedString(java.lang.Object o) {
106123
if (o == null) {
107124
return "null";
108125
}
109126
return o.toString().replace("\n", "\n ");
110127
}
128+
111129
}
130+

0 commit comments

Comments
 (0)