Skip to content

Commit 052ca5e

Browse files
version bump 1.0.11 -> 1.0.12 (#47)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 5edcac2 commit 052ca5e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ publishing {
4646
maven(MavenPublication) {
4747
groupId = 'dev.merge'
4848
artifactId = 'merge-java-client'
49-
version = '1.0.11'
49+
version = '1.0.12'
5050
from components.java
5151
pom {
5252
scm {

src/main/java/com/merge/api/MergeApiClient.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ public class MergeApiClient {
2222

2323
protected final Supplier<FilestorageClient> filestorageClient;
2424

25-
protected final Supplier<HrisClient> hrisClient;
26-
2725
protected final Supplier<TicketingClient> ticketingClient;
2826

27+
protected final Supplier<HrisClient> hrisClient;
28+
2929
protected final Supplier<AccountingClient> accountingClient;
3030

3131
public MergeApiClient(ClientOptions clientOptions) {
3232
this.clientOptions = clientOptions;
3333
this.atsClient = Suppliers.memoize(() -> new AtsClient(clientOptions));
3434
this.crmClient = Suppliers.memoize(() -> new CrmClient(clientOptions));
3535
this.filestorageClient = Suppliers.memoize(() -> new FilestorageClient(clientOptions));
36-
this.hrisClient = Suppliers.memoize(() -> new HrisClient(clientOptions));
3736
this.ticketingClient = Suppliers.memoize(() -> new TicketingClient(clientOptions));
37+
this.hrisClient = Suppliers.memoize(() -> new HrisClient(clientOptions));
3838
this.accountingClient = Suppliers.memoize(() -> new AccountingClient(clientOptions));
3939
}
4040

@@ -50,14 +50,14 @@ public FilestorageClient filestorage() {
5050
return this.filestorageClient.get();
5151
}
5252

53-
public HrisClient hris() {
54-
return this.hrisClient.get();
55-
}
56-
5753
public TicketingClient ticketing() {
5854
return this.ticketingClient.get();
5955
}
6056

57+
public HrisClient hris() {
58+
return this.hrisClient.get();
59+
}
60+
6161
public AccountingClient accounting() {
6262
return this.accountingClient.get();
6363
}

src/main/java/com/merge/api/core/ClientOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ private ClientOptions(
3030
{
3131
put("X-Fern-Language", "JAVA");
3232
put("X-Fern-SDK-Name", "com.merge.fern:api-sdk");
33-
put("X-Fern-SDK-Version", "1.0.11");
33+
put("X-Fern-SDK-Version", "1.0.12");
3434
}
3535
});
3636
this.headerSuppliers = headerSuppliers;

0 commit comments

Comments
 (0)